Application Development 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: 

PM Notification: Malfunction report fields

0 Kudos

Dear all,

Using transaction IW23 we're able to view PM Notification malfunction reports.

I know most data is stored in the physical table VIQMEL.

There is only one field I'm not able to locate in a physical table.

In transaction IW23 on the "Notification"-tab, int he mioddle, you'll see the subject with a textbox containing a description.

Does anybody know the physical table where the content of this textbox can be found.

Many, many thanks in advance.

Kind regards.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

That will not be available directly in tables as it is a LONG TEXT.

you can get the same using READ_TEXT function module using the following parameters.

Text Name 000010001848 (Notification number)

Language EN

Text ID LTXT Long text on PM notification

Text Object QMEL Message

for getting these details for any long text.. click on the editor icon which is place next to TEXT BOX. that will take you to an Script Editor. There GO TO --> HEADER. You will get the TEXT Object details. Using those details in READ_TEXT you can get the TEXT value.

4 REPLIES 4

Former Member
0 Kudos

Hi

That will not be available directly in tables as it is a LONG TEXT.

you can get the same using READ_TEXT function module using the following parameters.

Text Name 000010001848 (Notification number)

Language EN

Text ID LTXT Long text on PM notification

Text Object QMEL Message

for getting these details for any long text.. click on the editor icon which is place next to TEXT BOX. that will take you to an Script Editor. There GO TO --> HEADER. You will get the TEXT Object details. Using those details in READ_TEXT you can get the TEXT value.

0 Kudos

I see... Thanks for the explanation. It's a big help.

Do you know by heart if there is a bapi to read the longtext?

I need to fetch the longtext to an external program.

Many thanks in advance.

Kind regards.

0 Kudos

Hey

i hope the display BAPI itself shows long text for an external program..

did you try that one?

0 Kudos

Thanks guys...

I've quickly created a BAPI myself which fetches the data I need from the function module READ_TEXT.

Kind regards.