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

Finding vars in Exit user

Former Member
0 Likes
736

Hi

I code Exit user for MIR7 but don't see global var xblnr (field on screen rbkp-xblnr) in include EXIT_SAPLMRMP_004 (ZXM08U29).

How to check which vars are visibles in this include?

Edited by: Kosmo on Aug 21, 2008 6:51 PM

Hi

I code Exit user for MIR7 but don't see global var xblnr (field on screen rbkp-xblnr) in include EXIT_SAPLMRMP_004 (ZXM08U29).

How to check which vars are visibles in this include?

Edited by: Kosmo on Aug 21, 2008 6:51 PM

4 REPLIES 4
Read only

former_member585060
Active Contributor
0 Likes
688

Declare the following in ur Include

TYPE-POOLS : MMCR

in that it has a structure mmcr_ek08rn it has XBLNR

U can see the structure MMCR_TDRSEG in Tables Tab of the EXIT.

Read only

Former Member
0 Likes
688

How to read this data from this structure?

I declared type-pool but don't see this data.

MMCR_TDRSEG don't have xblnr

Edited by: Kosmo on Aug 22, 2008 9:45 AM

Read only

0 Likes
688

Hi,

the globals are globals of caller ! So they not exist in user-exit, you have normaly only the values from function interface. If you need more informations (only for reading!) you have 3 design possibilitys :

- may be possible to use a flow of exits to transfer data from other point

- may be´possible to reread from database

- last tecnical with many riscs to harm - read the value from memory of the call program ..

regards

Holger

Read only

Former Member
0 Likes
688

I resolved problem yet