‎2007 Jun 22 12:07 PM
I want to create an User-Exit for transaction XK01,so that for a particular organization it should not allow to enter schema other than some selected schema group.
Ex - For Purchase Org. 5000
It should not allow schema group other than india
Please help.......
‎2007 Jun 22 12:13 PM
Hi,
If you are on release 2004 or higher you can use the BADIs VENDOR_ADD_DATA and VENDOR_ADD_DATA_CS
user exit
EXIT_SAPMF02K_001
<b>Reward points</b>
Regards
‎2007 Jun 22 12:13 PM
Hi,
If you are on release 2004 or higher you can use the BADIs VENDOR_ADD_DATA and VENDOR_ADD_DATA_CS
user exit
EXIT_SAPMF02K_001
<b>Reward points</b>
Regards
‎2007 Jun 22 12:17 PM
Do you have the idea of how i can disable the other value in schema group.[
‎2007 Jun 22 12:19 PM
Hi,
Somewhere in your PBO module you will have the following statement:
SET PF-STATUS '<name of status>' EXCLUDING lt_excl.
When you are on your "first" screen then lt_excl will be empty, i.e. all functions are active.
Now, when the user execute "Create customer" you could fill the itab somewhere in the PAI module USER_COMMAND_xxxx:
REFRESH: lt_excl.
APPEND '<fcode to be inactive>' TO lt_excl.
In the next screen this function will be disabled.
<b>Reward points</b>
Regards
‎2007 Jun 26 12:10 PM