Application Development 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: 

Function Module Functionality

Former Member
0 Kudos

Hi Gurus,

Can anyone explain me the functionality of the below FM.

pls treat this as urgent.

CONVERSION_EXIT_EAN11_INPUT

CONVERSION_EXIT_EAN11_OUTPUT

Regards..

Balaji

5 REPLIES 5

Former Member
0 Kudos

hi

CONVERSION_EXIT_EAN11_INPUT is used to remove the leading zeroes

Regards

karthik

Former Member
0 Kudos

Hi,

These are Conversion Exits.

CONVERSION_EXIT_EAN11_INPUT.

if input = 00010000

after execution

output = 10000

CONVERSION_EXIT_EAN11_OUTPUT

if input = 00010000

after execution

output = 00010000

The Functionality if u see the domain in SE11 -->EAN11 .

in definition tab -->Convers. routine EAN11.

in program if u pass 10000.IT will stored in unpacked Format in Tables.

For More Info see.

[Conversion Exits|http://help.sap.com/saphelp_erp2004/helpdata/en/33/206bc8012e11d3b495006094192fe3/content.htm]

Regards,

Morris Bond.

Reward Points if Helpful.

matt
Active Contributor
0 Kudos

Well, they call CONV_EXIT_EAN11_OUTPUT_INTERN and CONV_EXIT_EAN11_INPUT_INTERN, if they exist on the system. ( E.g. for BI, they don't exist, for R/3 they do ).

Then, from the SAP Help on EAN11:

EAN11 Conversion Routine

Use

The EAN11 conversion routine is used for European Article Numbers (EAN) and the American Universal Product Code (UPC).

Functions

It converts the external presentation, according to settings in transaction W4ES (in the R/3 source system), into the internal SAP presentation. In the SAP system, left-hand zeros are not saved as, according to EAN standards, these are not required. For example, the EAN ‘123’ is the same as the EAN ‘00123’. As such, the left-hand zeros are dispensed with.

UPC-E code short forms are converted into the long form.

The EAN11 conversion routine formats the internal presentation of each EAN type, according to settings in transaction W4ES, for output. This ensures that the internal presentation does have left-hand zeros, or that UPC codes are converted to the short form.

matt

Former Member
0 Kudos

Hi,

These are conversion exits for EAN code.

CONVERSION_EXIT_EAN11_INPUT will convert the EAN code to Internal SAP format which will remove all leading zeroes.

-somesh

*reward if it is helpful

Former Member
0 Kudos

thanks..