Application Development and Automation 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: 
Read only

logical database

Former Member
0 Likes
566

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

4 REPLIES 4
Read only

Former Member
0 Likes
530

Hi Willard ,

You will have to use the GET command.

Regards

Arun

Read only

Former Member
0 Likes
530

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

Read only

Former Member
0 Likes
530

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

Read only

varma_narayana
Active Contributor
0 Likes
530

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,