|
Written by Anon.
|
|
Thursday, 10 May 2007 |
|
tables: aufk "Order master data jest, "Object status tj02t. "Status Description * Order Status - To Retrieve & Filter select stat from jest where objnr = aufk-objnr " objnr means object no and stat in ('I0012', 'I0045', 'I0074', 'I0076') and inact ne 'X' "Flag: Status inactive order by stat. select single * from tj02t where istat = jest-stat and spras = 'E'. |
|
|
Written by Tom Demuyt
|
|
Wednesday, 09 May 2007 |
|
Is it possible to run abap program from commnad prompt like DOS on windows or unix command line? Yes. But in my experience it is not advised, use it as a last resort (because of lack of time or lack of technical expertise to write C or java or .NET code ) If yes, what's the command RFC command syntax? |
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Friday, 04 May 2007 |
AT LINE-SELECTION.
SELECT * FROM KNA1 WHERE KUNNR = GV_KUNNR. WINDOW STARTING AT 05 10 ENDING AT 50 20. WRITE: KNA1-KUNNR. ENDSELECT. |
|
|
Written by Sven
|
|
Friday, 27 April 2007 |
|
Program Checks: The system checks ABAP programs statically when you create them and dynamically when they are running. |
|
Read more...
|
|
|
Written by Anon.
|
|
Thursday, 12 April 2007 |
(This is to make the field output only) parameter: p_parm1(2) default 'MY'. at selection-screen output. loop at screen. if screen-name = 'P_PARM1'. screen-output = 1. modify screen. exit. endif. endloop.
|
|
|
Written by Anon.
|
|
Wednesday, 11 April 2007 |
|
parameters: p_infile like ibipparms-path default 'C:\'. * Executes the pull-down to search C:\ drive for input file at selection-screen on value-request for p_infile. call function 'F4_FILENAME' "allows user to select path/file exporting program_name = syst-repid dynpro_number = syst-dynnr field_name = 'p_infile' importing file_name = p_infile. if sy-subrc ne 0. write: / 'Error'. endif. |
|
|
Written by Anon.
|
|
Thursday, 15 March 2007 |
|
The following is a suggestion of possible naming standards for your ABAP environment: |
|
Read more...
|
|
|
Written by Anon.
|
|
Wednesday, 14 March 2007 |
|
Review and evaluate the use of alternate index tables before creating indexes on any existing SAP transaction tables. Matchcode tables for example M_VMVAB, M_VMVAC or matchcode views for example M_VMVAA, M_VMVAE also allow efficient data access. |
|
Read more...
|
|
|
Written by Anon.
|
|
Tuesday, 13 March 2007 |
|
A subquery is a SELECT command within another SELECT, specified in the WHERE condition, that checks whether data from a database table or view meets certain conditions. Subqueries are available as of SAP Release 4.0. In addition, subqueries can be used in UPDATE and DELETE statements as well. |
|
Read more...
|
|
|
Written by Anon.
|
|
Tuesday, 13 March 2007 |
|
Some extensions / versions of the SELECT statement don't support usage of SAPs internal database buffer. This causes additional unnecessary database accesses. |
|
Read more...
|
|
|
Written by Anon.
|
|
Tuesday, 13 March 2007 |
|
Selectct, delete and Insert Statement described... |
|
Read more...
|
|
|
Written by Anon.
|
|
Tuesday, 13 March 2007 |
An index will not be used if the following operators are present on the indexed fields in your WHERE clause:
- NOT or NE or <>
- LIKE ‘%pattern’
- IS NULL
- IS NOT NULL
- NOT IN
|
|
Read more...
|
|
|
Written by Anon.
|
|
Sunday, 11 March 2007 |
|
This version of the SELECT statement was the only way to join tables until SAP release 3.0E. It is recommended that the SQL JOIN be used. However, this is an alternate method of joining tables that may be used in some circumstances. Remember, SQL JOIN doesn’t utilize the SAP internal database buffer. |
|
Read more...
|
|
|
Written by Anon.
|
|
Saturday, 10 March 2007 |
|
Custom reports often summarize data extracted from large volume tables. If the SQL statement used to extract the data from the large volume table is designed to use the table's primary index or a secondary index performance will dramatically. The developer should check all SQL statements and attempt to conform to the available indexes. |
|
Read more...
|
|
|
Written by Anon.
|
|
Saturday, 10 March 2007 |
|
|
|
Read more...
|
|