‎2007 Jun 22 9:04 AM
i want to use ligical database QMI to write a PM notifications notifications report. how do i use it to extract the required data, say notifications for a certain notification type. please expalin with an example code
‎2007 Jun 22 9:07 AM
‎2007 Jun 22 9:08 AM
Hi,
After declaration of the NODES, then use the GET statment to get the data from the NODES ..... then use the CHECK statment to check Notification type , if it passed then only insert the record into the Internal table ..
Regards
Sudheer
‎2007 Jun 22 9:10 AM
Hi
If you are not aware of the LDB , then don't use it
Sim paly write a report to get the all info of the PM noptifications
Just use a Select statement to the View <b>VIQMFEL</b> and fetch the data into an internal table and display all the needed fields in the output.
Reward points for useful Answers
Regards
Anji
‎2007 Jun 22 9:12 AM
Hi,
Plz Check the Logical Database definition in SE36
In the Structure of LDB - check out the Nodes (which are the DB tables)
In the report which is linked to the LDB
Declare the Nodes using the TABLES statement
Eg: Tables: MARA, MARC.
Display the data of the fields under the GET Event of the Respective table.
GET MARA.
Write:/ Mara-matnr.
GET MARC.
Write:/ Marc-werks.
Hope this gives the idea.
Regards,