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

Get material document by reservation number function

berkuamit
Explorer
0 Likes
3,538

Hello,

I need to get material documents from MSEG table by RSNUM (I have RSPOS),

I know that there is an index on RSNUM so I can do simple select from this

table without being afraid of performance problems.

My question is, is there any standard function to do this operation ?

If not, is it safe enough to do what I'm tring to do ?

Thank you,

Kind Regards,

Amit B.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,529

HI,

The SELECT on MSEG using RSNUM, RSPOS, MJAHR and BWART can be used.

Regards

2 REPLIES 2
Read only

Former Member
0 Likes
1,530

HI,

The SELECT on MSEG using RSNUM, RSPOS, MJAHR and BWART can be used.

Regards

Read only

Former Member
0 Likes
1,529

To avoid the performance issues you need to include the primary key of table MSEG in your SELECT statement or you can use the secondary index for your SELECT Query.