2006 Sep 24 6:03 PM
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.
2006 Sep 24 6:17 PM
2006 Sep 24 6:19 PM
I am not clear ... BTE 00001360 ??... where n how??
Please guide me
Thank You,
SB
2006 Sep 24 6:21 PM
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
2010 Aug 26 8:19 AM
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
2011 Mar 16 3:42 AM