Question:
I read another SAPFAN message with the same problem I am having below. I tried to using the BADI for the Infospoke. I created a text field in the output structure. I tried to input code in the transform method of the BADI interface but failed on syntax error (1: unable to define the text table and 2: unable to reference the new field in the output structure).
PROBLEM:
Is there a way to get the text elements of the Characterstics out of InfoSpoke. The problem I am having is for Master Data Character(0MATERIAL) I get only the ID not the text associated with it in the output file.
Please advise.
Thanks.
JRZ
Answer:
Yes u can get the text field. In Output structure add a field of name
/bi0/tcustomer-txdmd.
In the BADI u write code to populate with respect mat. i.e
select txdmd from /bi0/tmaterial where material = input_structure-material into output_structure-txdmd.
This code will get the text data of that particular material.
THanks
Svennnn