cancel
Showing results for 
Search instead for 
Did you mean: 

Issue with langu object

Former Member
0 Kudos

Hi All,

I have a small doubt,we are having an Language object in generic extractor which is hold data as "EN",when i loded it to psa then it looks good but whn it loded to DSO it just taking "E".


In BI we are using "0LANGU"(convserison type is ISOLA) info object,which is having length as 1 ans out out 2.

But i need to get "EN" in my out put.

NOTE: when i tried to test conversion routine("CONVERSION_EXIT_ISOLA_INPUT") and given "EN" in the input and out put is "E"
I think this is not working

Please let me know if any tot!

Thanks,
Bobby

Accepted Solutions (1)

Accepted Solutions (1)

anshu_lilhori
Active Contributor
0 Kudos

Hi,

Use FM 'CONVERSION_EXIT_ISOLA_OUTPUT'

This will give the output as desired.

Hope this helps.

Regards,

AL

Former Member
0 Kudos

Hi,

FM"'CONVERSION_EXIT_ISOLA_OUTPUT'" is working as expected but any idea how to use this in Info-Object converstion routine?

anshu_lilhori
Active Contributor
0 Kudos

Hi,

As that infoobject is standard one so wont advice to modify it.

Best thing what you can do is call this function module in field level routine and pass the value which is coming from 0langu.

Hope this helps.

Regards,

AL

Former Member
0 Kudos

Hi,

I am not really sure about the field routine thing...it would be really help full if any one can just dump an sample code for this calling of function module in field routine..

Former Member
0 Kudos

Can any one please provide me the the ABAP logic for field routine??

anshu_lilhori
Active Contributor
0 Kudos

Hi,

can you provide your exact requirement what exactly are you going to do with 0langu infoobject.

Please throw some light on it.

Regards,

AL

Former Member
0 Kudos

CALL FUNCTION 'CONVERSION_EXIT_ISOLA_OUTPUT'

EXPORTING

INPUT = source_fields-<fieldname>

IMPORTING

OUTPUT = RESULT.

Prathish

Former Member
0 Kudos

Hi,

Up to PSA data  for LANGU is "EN",while loading to DSO using Info object "0LANGU" the data is "E" at DSO out put..

Now i need "EN" as my DSO out put.

Thanks,

Bobby

anshu_lilhori
Active Contributor
0 Kudos

Hi,

As far as i understand that is not going to happen because the length itself is 1 so while storing it will be 1 only but while displaying it will show 2.

So please share the requirement for more inputs on the same.

Regards,

AL

Former Member
0 Kudos

Hi ,

In BI we are using "0LANGU"(convserison type is ISOLA) info object,which is having length as 1 and out put is  2.

But i need to get "EN" in my out put.

NOTE: when i tried to test conversion routine("CONVERSION_EXIT_ISOLA_INPUT") and given "EN" in the input and out put is "E"
I think this is not working

P095090
Participant
0 Kudos

Bobby,

Till the time you are using 0LANGU object which has a defined length of one you cannot have an output 'EN'.What you can try doing is do not use this object fro your language definition and create another generic infoobject with length 2 and pass the value from DS and use it for reporting.You will get the value EN in your report.


Surbhi

Answers (0)