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

ABAP question

Former Member
0 Likes
495

1.function module "CONVERSION_EXIT_AUART_INPUT":

when can i use this function module?

what's the usage of this function module?

2. when i use this syntax: "AUTHORITY-CHECK"

i have saw this syntax help document ,but I also can't understand this usage ,don't know how to use?

who can help me??? Thanks in Advance!!

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
465

Hi Ming,,

The FM 'CONVERSION_EXIT_AUART_INPUT' is used to conert AUART(Sales document type) to 4 charcters. When we use '02' to this field using this FM it converts to '0002'.

AUTHORITY-CHECK :

AUTHORITY-CHECK OBJECT (auth_obj)

ID (id1) .

(auth_obj) - This will be provided by the Basis guys also called as DAGG

(id1) - what do u want to do with DAGG whether change or display.

Srini

4 REPLIES 4
Read only

Former Member
0 Likes
466

Hi Ming,,

The FM 'CONVERSION_EXIT_AUART_INPUT' is used to conert AUART(Sales document type) to 4 charcters. When we use '02' to this field using this FM it converts to '0002'.

AUTHORITY-CHECK :

AUTHORITY-CHECK OBJECT (auth_obj)

ID (id1) .

(auth_obj) - This will be provided by the Basis guys also called as DAGG

(id1) - what do u want to do with DAGG whether change or display.

Srini

Read only

0 Likes
465

but when i input the sale order type 'OR' ,the output will be 'TA'.

not add the 'zero'. why?

Read only

Former Member
0 Likes
465

Hi Ming,

The Purpose of the funtion module is to add the Zeros in front of the code.

like if your data is 99 and when you pass this variable to this function module then you will get the Preceding zeros with this number.

Suppose Input data you entered 99.

then output data from this Function Module is 0099.

Read only

Former Member
0 Likes
465

thank you very much for your help