2007 Mar 27 10:01 PM
Hi
I want to capture the long text for a particular message belonging to a message class.
Please tell me where(basically which SAP Table) is the text stored in SAP?
Thanks
2007 Mar 27 10:08 PM
Try using fm BAPI_MESSAGE_GETDETAIL -
Import: Message Id, #, variables and formats;
Export: formatted message text and long text.
2007 Mar 27 10:32 PM
Hi,
You can use the FM 'FORMAT_MESSAGE' to get the long text. You need to pass the Message ID ( Message Class), Language, Message Number & the 4 variants. You will get the long text in the msg parameter.
Suresh
2007 Mar 27 10:34 PM
You can refer to table T100 also. This table holds the Application area, message number & text.
Suresh
2007 Mar 28 1:14 AM
You have to use function modules for that. Use DOCU_GET function module and pass ID = NA, LANGU = SY-LANGU, OBJECT = <value obtained by calling another function module DOCU_OBJECT_NAME_CONCATENATE and passing DOCU_ID = NA, ELEMENT = MESSAGE CLASS and ADDITION = MESSAGE NUMBER>.