Application Development 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: 

Get screen field values.

Former Member
0 Kudos
308

Hi,

In t-code XD01 ... whatever account group gets selected I want to capture that that value... How can I do that ??

Thank You,

SB.

5 REPLIES 5

Former Member
0 Kudos
99

Hi

Try to use the BTE 00001360

Max

0 Kudos
99

I am not clear ... BTE 00001360 ??... where n how??

Please guide me

Thank You,

SB

0 Kudos
99

Hi

The BTE 00001360 is CUSTOMER MASTER DATA: Auth. Check: Acct Group.

The BTEs are like user-exit

Run trx FIBF: here to active a BTE you have to create a fm and assign it to the event 00001360.

Trx FIBF:

- A) Create FM: Enviroment->Info system(P/S):

- insert 00001360 in Business Transaction Event and press F8;

- Press Sample Function Module and get the function name (SAMPLE_INTERFACE_00001360);

- Run trx SE37 and create a new fm Z_INTERFACE_00001360 as copy of SAMPLE_INTERFACE_00001360

- B) Assign your FM to event 00001360: Setting-> P/S Function Modules-> of a SAP appl

- Insert the hit with the event 00001360 and your fm

- C) Insert the code you need in your fm by trx SE37

Max

Message was edited by: max bianchi

Former Member
0 Kudos
99

Hi there,

You can get that using field symbols.

First get the screen field name of that particular field and the program name (from technical description).

Now concatenate program name and field name and store it in a variable (type string).

Declare a field symbol of type any and assign the variable to this field symbol.

Now you can capture the selected / entered selection screen field.

Regards,

Debi

0 Kudos
99

Thanx