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

FUNCTION CONVERSION_EXIT_ISOLA_OUTPUT

Former Member
0 Likes
2,672

Hello Experts,

when I debug a report, I get always the following lines instead of my written source code:

SAPLLANG / LLANGU04 / 9 SY-SUBRC 0

FUNCTION / CONVERSION_EXIT_ISOLA_OUTPUT SY-TABIX 4

FUNCTION CONVERSION_EXIT_ISOLA_OUTPUT.

*"----


*" IMPORTING

*" VALUE(INPUT)

*" EXPORTING

*" VALUE(OUTPUT)

*"----


OUTPUT = SAVE_INPUT(1) = INPUT.

CHECK SAVE_INPUT(1) NA ' *'.

SELECT SINGLE * FROM T002 WHERE SPRAS = INPUT.

CHECK SY-SUBRC = 0.

OUTPUT = T002-LAISO.

ENDFUNCTION.

What does that mean? Is this an error in my source code?

Best regards,

Tobias

8 REPLIES 8
Read only

Former Member
0 Likes
1,751

Hi

That means u have an input/output parameter defined like a dictionary field (I suppose something like SPRAS) assigned to a domain having ISOLA as input/output format conversion.

Every time that field has to be displayed this convertion routine will be triggered.

Max

Read only

Former Member
0 Likes
1,751

This is nothing but the Conersion Exit assigned in domain for a fileld that u want to display. Say material u r passing 000000000000000123, the conversion exit CONVERSION_EXIT_ALPHA_OUTPUT will remove the leading Zeros and give the output as 123.

Read only

0 Likes
1,751

Ok, if I have understood that right, this code will always appear if parameters are defined and the debugger is executed. Right?

Best regards,

Tobias

Read only

0 Likes
1,751

Hi Tobias,

If you go through debugging mode and if you enter in this FM, you will see this code.

Thnaks

Sumesh

Read only

Former Member
0 Likes
1,751

Hi,

Is this problem solved?

Even i had faced the problem. i was able to solve the problem by checking all the events.

I had missed START-OF-SELECTION..

Regards,

Tejaswini

Read only

0 Likes
1,751

No, the problem isn`t really solved.

I have checked the events in my code. It contains start-of-selection.

Read only

0 Likes
1,751

Hi

Are u using a WRITE statament?

A convertion routine is triggered as soon as a variable has to be displayed.

Max

Read only

0 Likes
1,751

Yes, I am using a WRITE statement, but what does that implies? I don`t think that always using a WRITE statement, while debugging the FM mentioned above is opened.