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

Changes to the program RSSCD100

Former Member
0 Likes
2,930

Hello to all,

We have a request from a user to list all the master data changes made to specific materials during a specific time frame. I did suggest using the program RSSCSD150/RSSCD100 to the user. However, the user requested a modification that would allow them to enter a material range or individual material numbers.

Any suggestions on how to achieve this. Because this program uses Get Parameter and Set parameter ID.

I look forward to hearing from you all.

Thanks,

S.P

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,014

This being a stardard report you cant modify, you may copy the report into your own Z report and make changes.

Check the table CDHDR table to find how the data is stored for change documents

2 REPLIES 2
Read only

Former Member
0 Likes
2,015

This being a stardard report you cant modify, you may copy the report into your own Z report and make changes.

Check the table CDHDR table to find how the data is stored for change documents

Read only

0 Likes
2,014

I did copy the report. I did make some changes to the program.

The code is as below. I need suggestions on how to change the get parameter id and set parameter id in the program.

SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.

PARAMETERS: objekt LIKE cdhdr-objectclas.

SELECT-OPTIONS:s_objid FOR cdhdr-objectid OBLIGATORY.

PARAMETERS: aenderer LIKE cdhdr-username,

datum LIKE cdhdr-udate,

zeit LIKE cdhdr-utime,

nummer LIKE cdhdr-changenr DEFAULT ' ',

tabname LIKE cdpos-tabname DEFAULT ' ',

tabkey LIKE cdpos-tabkey DEFAULT ' ',

date_to TYPE cdhdr-udate DEFAULT sy-datum,

time_to TYPE cdhdr-utime DEFAULT '235959',

new_disp AS CHECKBOX DEFAULT 'X'.

SELECTION-SCREEN: END OF BLOCK b1.