SAP Managed Tags: ABAP Development Hi, i need to now how to declare table (like in fm) in method, because when i try declare table in parameters (SE24) with type the structure i build in se11 i get error: ""LT_TAB" is not an internal table "OCCURS n" specification is problem ...
SAP Managed Tags: ABAP Development Hi, i have a requirement to create two internal table of same data type, the input string will be table name say "MARA" now i have create dynamically the two internal table like as below data : itab1 like mara occurs 0 with header line. data : i...
SAP Managed Tags: ABAP Development You can do one more thing, Declare one more field into internal table itab i.e DATA : BEGIN OF itab OCCURS 0, kunnr LIKE kna1-kunnr, matnr LIKE mara-matnr, <b>ernam like vbak-ernam,</b> END OF itab. in Select statement, select ERNAM al...
The only way is to LOOP across one table a READ in the second one and then MOVE CORRESPONDING. Regards, Ivan Reply Former Member 2010 Mar 09 4:36 AM 0 Kudos 15,767 SAP Managed Tags: ABAP Development Hi, why dont you declare the 2nd internal table also in the same order...
Here, the tables which were created in the ABAP Dictionary during the first stage will be accessed. The first step toward doing this is to include a table’s statement in the program, which will be placed below the REPORT statement. Following this, the table name which was created is typed...
In the above statement, nothing is specified to be inserted. This is where the concept of the work area enters. The statement here expects a work area to exist which has been created when an internal table was declared. This type of work area is often referred to as a header record: ...
As BDCMSGCOLL is structure, you need to declare a internal table which can contain multiple records (unlike structure). Steps for CALL TRANSACTION method 1. Internal table for the data (structure similar to your local file) 2. BDCTAB like BDCDATA 3. UPLOAD or WS_UPLOAD function to upload ...
Former Member In response to Former Member 2007 Sep 01 3:59 AM 0 Kudos 9,597 SAP Managed Tags: ABAP Development Check the below process: First declare one internal table : data : i_ztreglog like ztreglog occurs 0 with header line." Internal table data : wa_ztreglog like...
In the end there are absolutely unsupported ways like direct database table access which shouldn‟t be used at all. Besides the fact that a customer might lose SAP support it‟s also a technical challenge as the SAP BI internal Meta data layer related to hierarchies isn‟t public. ...
Hi , Sort the Table with Descending order... Read Table with index 1...It will fetch Last Record of the Table... Thanks & Regards VamsiRecommended Posts: What is SAP ABAP? SAP ABAP Training Tutorials for Beginners ABAP Data Types and Objects ABAP Internal Tables ABAP Data Dictionary ABAP...