2008 Feb 08 11:10 AM
will someone guide me on usage of USER-EXIT ,
FUNCTION-EXIT & how to use them ? what all things i
have to do initially ? what transaction i have to use
for starting these EXITS?
2008 Feb 16 12:31 PM
Hi,
Source : Google
you may go through this user exit in IDES if you can and
understand the program so as to identify the possibility of
achieving the
desired results.
Quote:
During the Nobel Biocare rollout, they have used their existing
ZZMV60AFZZ user exit at the Billing stage (VF01, VF04 t-code) to
pickup a number from the number range based on the Company Code.
Although the Billing types remained the same for all the Co
Codes, in order to keep the Invoice numbers for the Co Code in
sequence, the user exit picks up the next number available in
the number range assigned to that Co Code, while generating the
Billing documents.
I guess 60AFZZ user exit is the one that we can use.
Solution for that i can give is:
Maintain a Z-table with key fields Billing Type and Company code,
with Number range ID as non-Key field.
Write the corresponding coding in the user exit ZZMV60AFZZ ,
where you will have the details of billing type and company code
based on it we need to query the Z-table and get the
corresponding Number range ID maintained.
Cheers,
Chaitanya
2008 Feb 08 11:18 AM
USER EXITS->
User exits (Function module exits) are exits developed by SAP.
The exit is implementerd as a call to a functionmodule.
The code for the function module is writeen by the developer.
You are not writing the code directly in the function module,
but in the include that is implemented in the function module.
The naming standard of function modules for functionmodule exits is:
EXIT_<program name><3 digit suffix>
The call to a functionmodule exit is implemented as:
CALL CUSTOMER.-FUNCTION ❤️ digit suffix>
http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
CUSTOMER EXITS-> t-code CMOD.
As of Release 4.6A SAP provides a new enhancement technique, the Business Add-Ins.
Among others, this enhancement technique has the advantage of
being based on a multi-level system landscape (SAP, country versions, IS solutions, partner,
customer, and so on)
instead of a two-level landscape (SAP, customer) as with the customer exits.
You can create definitions and implementations of business add-ins at any level of the system landscape.
To unify enhancements of the SAP Standard you can migrate customer exits to business add-ins.
http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm
*****************
In order to find out the user exits for any tcode,
1. get the developement class of the tcode from SE93.
2. Now goto transaction SMOD and press F4,
3. give in the Deve class in the dev class and Press ENTER
this will show u the exits for any tcode.
or execute this report
http://www.erpgenie.com/sap/abap/code/abap26.htm
which gives the list of exits for a tcode
http://help.sap.com/saphelp_nw04/helpdata/en/bf/ec079f5db911d295ae0000e82de14a/frameset.htm
For information on Exits, check these links
http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
http://www.sapgenie.com/abap/code/abap26.htm
http://www.sap-img.com/abap/what-is-user-exits.htm
http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
http://www.easymarketplace.de/userexit.php
http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
http://www.sappoint.com/abap/userexit.pdfUser-Exit
Look at the below link, it will solve your Prblem
http://www.sap-img.com/abap/what-is-user-exits.htm
the following links give u a clear picture abt customer & user exits
This will surely help:
Reward points if useful
Regards,
Nageswar
2008 Feb 08 12:11 PM
2008 Feb 16 12:31 PM
Hi,
Source : Google
you may go through this user exit in IDES if you can and
understand the program so as to identify the possibility of
achieving the
desired results.
Quote:
During the Nobel Biocare rollout, they have used their existing
ZZMV60AFZZ user exit at the Billing stage (VF01, VF04 t-code) to
pickup a number from the number range based on the Company Code.
Although the Billing types remained the same for all the Co
Codes, in order to keep the Invoice numbers for the Co Code in
sequence, the user exit picks up the next number available in
the number range assigned to that Co Code, while generating the
Billing documents.
I guess 60AFZZ user exit is the one that we can use.
Solution for that i can give is:
Maintain a Z-table with key fields Billing Type and Company code,
with Number range ID as non-Key field.
Write the corresponding coding in the user exit ZZMV60AFZZ ,
where you will have the details of billing type and company code
based on it we need to query the Z-table and get the
corresponding Number range ID maintained.
Cheers,
Chaitanya