Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

memory id

Former Member
0 Likes
2,972

hi xpert..

how can i know from this statement

IMPORT TP_warranty_exp_ind

FROM MEMORY ID ID_IPRT_PRT_WAR_STAT

the memory id for ID_IPRT_PRT_WAR_STAT?

i used where used list for this... its only show in that program

where i should find this?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
781

Hi Fidah

Just check for the 'Where-Used' of this FM. In one of the FM/Program there must be an EXPORT to this memory ID. I had a similar issue where Data was imported from a field in the method AFTER_ACTIONS (project specific method). I checked the Before_Action method where it had been exported.

Hope this is useful.

Regards

Harsh

5 REPLIES 5
Read only

Former Member
0 Likes
781

Search for Export in main program or Function module.

Read only

Former Member
0 Likes
782

Hi Fidah

Just check for the 'Where-Used' of this FM. In one of the FM/Program there must be an EXPORT to this memory ID. I had a similar issue where Data was imported from a field in the method AFTER_ACTIONS (project specific method). I checked the Before_Action method where it had been exported.

Hope this is useful.

Regards

Harsh

Read only

Former Member
0 Likes
781

While processing the T-code , put the break-point on the EXPORT statement, you will get one export with mentioned memory id variable.

Read only

Former Member
0 Likes
781

Hi,

Check out this link for information regarding memory id.

http://help.sap.com/saphelp_nw04/Helpdata/EN/fc/eb3bde358411d1829f0000e829fbfe/frameset.htm

Regards,

Deepthi.

Read only

Former Member
0 Likes
781

hi

memory id "dxprogname" is defined using:

SET PARAMETER ID 'dxprogname' FIELD p_dxappl.

double click 'dxprogname' it will creatre spa/gpa parameter in sap memmory.

to acces use:

GET PARAMETER ID 'dxprogname' FIELD p_dxappl.

regards

Prashant