When we develop Sap abap applications, it is hard to avoid to use 'Loop' key words to implement our business requirments, even it is very often to use two loops or using 'read table' in a loop. Under this condition, many loops or using 'read table' in loops could occur very bad pe...
SAP Managed Tags: ABAP Development Fine Tune your program using these. 1. Always check the driver internal tables is not empty, while using FOR ALL ENTRIES. 2. Avoid for all entries in JOINS . 3. Try to avoid joins and use FOR ALL ENTRIES. 4. Try to restrict the joins to 1 leve...
SAP Managed Tags: ABAP Development Hi. I have an internal table. I want to read a particular field in the internal table and transport it to an work area. I tried the following codes but encounterd an error. Why is that so? Thanks. Error: No component exists with the name into. *...
SAP Managed Tags: ABAP Development Hello Experts , i want to calculate the Return Order for the materials . so i am plan to use BAPI_CUSTOMERRETURN_CREATE .i want to know what are the inputs for this BAPI when i search in SCN i got this thread . but it not clear to me . ...
SAP HANA Software Product View products (1) Purpose: Describe a method to address a common DW/BI problem of not having a matching row in a dimension for a given fact where the fact column is blank ('' ) whitespace. In general, we want to avoid returning null attribute values for a ...
Standard table is quite easy to use, but you might loose performance with it. Most of the time hash table is the fastest. Using standard table and sort it is a good choice, when you access in READ TABLE via BINARY SEARCH. Check 'ABAP for Power Users' SAP tutorial in SDN, it very ...
(see below). The importance of the buffers in the SAP system are discussed in chaptr five. Of all ABAP statements mainly the usage of internal tables is important for a good performance. With all the presented knowledge you will able to analyse your programs and optimize them. The ...
table on SAP. * Note on running DOS commands from ABAP * The first time this procedure is executed you will see a DOS window which you will have to close manually. To get round this use windows explorer to select the file ABAP.BAT and then right mouse click on the file name. Select...
SAP Managed Tags: ABAP Development Hi , To get the file at application server with no data in it each time when u r going for download use stmt OPEN DATASET. eg: OPEN DATASET V_FILE FOR OUTPUT IN BINARY MODE. (where V_FILE is application server path) IF SY-SUBRC NE 0. MESSAGE ...
While reading one of the post asking about same thing one of the users has mention something really nice - SAPNote 488765 "Do-it-yourself EWB programming". This note shows how to use FM used in CEWB, so we can create/change/delete bom and routings. The example available in the note ...