‎2008 Jun 12 8:31 AM
how can i find memory id for importing and exporting a data
‎2008 Jun 12 8:35 AM
Refer table INDX.
IMPORT sflight_tab FROM DATABASE indx(ST) ID 'FLIGHTS' .
If you are using the screens or transactions and want to transfer the data to program, check the data element and in FURTHER CHARACTERISTICS, you can find the Parameter ID and use SET PARAMETER ID and GET PARAMETER ID.
Regards
Kannaiah
‎2008 Jun 12 8:32 AM
hi,
check this table.
TPARA - Directory of Memory IDs.
Reward points if hlpful.
‎2008 Jun 12 8:34 AM
Hi Rocky,
F1 in the field that you want to know the parameter id.
F1--> Technical Information --> Parameter ID.
Hope it's help,
Victor.
‎2008 Jun 12 8:35 AM
Refer table INDX.
IMPORT sflight_tab FROM DATABASE indx(ST) ID 'FLIGHTS' .
If you are using the screens or transactions and want to transfer the data to program, check the data element and in FURTHER CHARACTERISTICS, you can find the Parameter ID and use SET PARAMETER ID and GET PARAMETER ID.
Regards
Kannaiah
‎2008 Jun 12 8:35 AM
Hi,
If you are looking for a specific one, say the document number for sales order in transaction VA03 then go to that transaction and press F1 on the field, then view the technical information. You will see a box called Parameter ID (AUN for sales document).
Gareth.
‎2008 Jun 12 8:42 AM
hii
go to that transaction And press F1 on textfield.You will get new window..in that press on Technical Info Button.there you will get information & parameter Id will be there.that is memory id.
F.Ex
go to T-code XK01 & put cursor on Vendor Text input field.Press F1.there press technical info & you can see parameter ID LIF for Vendor.that is memory id
reward points if useful
thx
twinkal
‎2008 Jun 12 8:58 AM
Hi,
see this for memory related
SAP memory is a memory area to which all main sessions within a SAPgui have access. You can use SAP memory either to pass data from one program to another within a session, or to pass data from one session to another. Application programs that use SAP memory must do so using SPA/GPA parameters (also known as SET/GET parameters). These parameters can be set either for a particular user or for a particular program using the SET PARAMETER statement. Other ABAP programs can then retrieve the set parameters using the GET PARAMETER statement. The most frequent use of SPA/GPA parameters is to fill input fields on screens
SAP global memory retains field value through out session.
set parameter id 'MAT' field v_matnr.
get parameter id 'MAT' field v_matnr.
They are stored in table TPARA.
ABAP memory is a memory area that all ABAP programs within the same internal session can access using the EXPORT and IMPORT statements. Data within this area remains intact during a whole sequence of program calls. To pass data
to a program which you are calling, the data needs to be placed in ABAP memory before the call is made. The internal session of the called program then replaces that of the calling program. The program called can then read from the ABAP memory. If control is then returned to the program which made the initial call, the same process operates in reverse.
Here itab should be declared of same type and length.
http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm
ABAP Memmory & SAP Memmory
http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm
http://www.sap-img.com/abap/type-and-uses-of-lock-objects-in-sap.htm
Please reward points if it helps
Thanks
Vikranth