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

CUSTOMER_FUNCTION

Former Member
0 Likes
1,314

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,283

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.

11 REPLIES 11
Read only

Former Member
0 Likes
1,283

It is a use exit. Double click and it will take u to the relavant exit.

Read only

Former Member
0 Likes
1,283

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

Read only

Former Member
0 Likes
1,283

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.

Read only

0 Likes
1,283

Hi All,

when i double click on the '001' it is asking do you want to create the object.

regards,

kiran i

Read only

0 Likes
1,283

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

Read only

0 Likes
1,283

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

Read only

former_member221770
Contributor
0 Likes
1,283

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.

Read only

Former Member
0 Likes
1,283

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

Read only

Former Member
0 Likes
1,283

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

Read only

Former Member
0 Likes
1,283

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.

Read only

Former Member
0 Likes
1,284

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.