‎2006 Feb 02 5:55 AM
Hai All,
In a module program i saw this below
CALL CUSTOMER-FUNCTION '001'
EXPORTING
DEFAULTAPPROVER = APPROVER025018
DEFAULTUSAPPROVER = USAPPROVER015019
APPROVER_OR_TABLE = 'L'
TABLES
POSSIBLE_APPROVERS = sel_approver
what is customer-function and how to find the code for this.
kindly help me
regards,
kiran i
‎2006 Feb 02 9:47 AM
Hi,
Those are user-exit when you double click on it it will take you to includes where you can place your code , make used tcode cmod, smod.
regards,
John.
‎2006 Feb 02 5:58 AM
It is a use exit. Double click and it will take u to the relavant exit.
‎2006 Feb 02 6:00 AM
Customer-function is user exit. You can directly double click on 001 to goto the code for the implemented user exit.
You can activate these user exits thru tcode CMOD
‎2006 Feb 02 6:00 AM
Hi kiran,
just double-click on the '001' and check whether it is taking you to the code.if it does then use the where-used icon and search for the code.
Thanks,
Vasanth.
‎2006 Feb 02 6:03 AM
Hi All,
when i double click on the '001' it is asking do you want to create the object.
regards,
kiran i
‎2006 Feb 02 6:09 AM
Hi
use the export parameters from the function call as import parametes in your program which you could create by double-clicking on '001' and do the needed business logic inside as explained by Patrick Yee
thanks
‎2006 Feb 02 6:10 AM
That means it is not implemented, so if you want to implement it will create a program, so there you need to implement the logic for that.
regards
vijay
Message was edited by: Vijay Babu Dudla
‎2006 Feb 02 6:01 AM
Hi Kiran,
This is a User Exit. It allows you to insert you own code to enhance the functionality of this program. This looks like a workflow user exit. What it allows you to do is pass into the user exit some approver information and allows you to modify the table of possible approvers.
If you double click on the '001' it will allow you to create your new INCLUDE program to insert your User Exit code.
Hope this makes sense. Hit me back if you need any clarification.
Cheers,
Pat.
‎2006 Feb 02 6:02 AM
Hi,
CUSTOMER-FUNCTION is a function module used for calling user exits from standard SAP programs. Double click on the name of the function module to find the user exit. You have to create a project for this user exit using the transaction CMOD.
With Regards,
Nelson
‎2006 Feb 02 6:08 AM
Hi,
that is nothing but user-exit, if you want to see the code, just double click on '001' , it will take you to the code , there you can see the forms routines.
related to that customer exit.
regards
vijay
‎2006 Feb 02 7:16 AM
Hello kiran,
When you double click on the '001', it will open another screen to display function module EXIT_XXXXX_001. Here you will c and Z include. Double click this include and if not created it will ask you for option of creating it.Say yes and code your logic. Once this is done u will have to create project and activate it for this FE to operate.
Hope this helps.
‎2006 Feb 02 9:47 AM
Hi,
Those are user-exit when you double click on it it will take you to includes where you can place your code , make used tcode cmod, smod.
regards,
John.