‎2008 Jun 02 4:17 PM
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
‎2008 Jun 02 5:30 PM
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
‎2008 Jun 02 5:30 PM
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
‎2008 Jun 02 5:45 PM
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.