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

CS module : notification number

Former Member
0 Likes
266

how to find a notification number corressponding to a sales or repair order number?.

1 REPLY 1
Read only

Former Member
0 Likes
239

hi,

Please clarify where you want to search it.

Inside SE11 or in a program.

If you want it in a program use the following code.

Check that whether notification number has some value in the table and use the following code.

REPORT Z101754_TEST.

tables vbak.

data itab type vbak occurs 0 with header line.

select-options : s_vbeln for vbak-vbeln.

AT SELECTION-SCREEN ON s_vbeln.

SELECT *

INTO CORRESPONDING FIELDS OF TABLE itab

FROM vbak WHERE vbeln IN s_vbeln.

end-of-selection.

LOOP AT itab.

WRITE : / sy-vline,

itab-vbeln ,

5 sy-vline,

itab-QMNUM,

50 sy-vline.

endloop.

If you want to search in the table you can search for the corresponding values of notification number directly.