Skip to Content
0
Former Member
Dec 10, 2009 at 05:26 AM

start routine for new status for change record

53 Views

anyone has an idea what could be the start routine for "new status for change record'i just only need the change record.

DATA:

DATA_PACKAGE TYPE STANDARD TABLE OF DATA_PACKAGE_STRUCTURE

WITH HEADER LINE

WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.

*fill the internal tables "MONITOR" and/or "MONITOR_RECNO",

  • to make monitor entries

LOOP AT DATA_PACKAGE.

IF DATA_PACKAGE-doc_categ NE 'C' AND

DATA_PACKAGE-doc_categ NE 'I'.

DELETE DATA_PACKAGE.

else if

if DATA_PACKAGE-record mode eq 'R'.

DATA_PACKAGE-record mode = 'X'.

modify DATA_PACKAGE.

ENDIF.

ENDLOOP.

if abort is not equal zero, the update process will be canceled

ABORT = 0.

i m using this butit sgiving me an erro on data-paackage it. any suggession