Ansicht
Dokumentation

CATS0002 - CATS: Supplement recorded data

CATS0002 - CATS: Supplement recorded data

ROGBILLS - Synchronize billing plans   TXBHW - Original Tax Base Amount in Local Currency  
This documentation is copyright by SAP AG.
SAP E-Book

You can use this SAP enhancement to supplement the data entered using the Time Sheet.

The internal table ENRICH_TABLE is used to communicate with the SAP System. When the enhancement is called, the table contains one data record. You can then change the contents of the record and use the internal table ENRICH_TABLE to return it to the standard program.

Example: You want to replace the receiver cost center "0000000666", recorded on January 3, 1997, with the cost center that is currently valid (cost center "0000003200").


LOOP AT ENRICH_TABLE.
IF ENRICH_TABLE-RKOSTL = '0000000666'
AND ENRICH_TABLE-WORKDATE = '19970103'.
ENRICH_TABLE-RKOSTL = '0000003200'.
MODIFY ENRICH_TABLE.
ENDIF.
ENDLOOP.

You can also return more than one data record. The system then inserts another line for the new record.






General Data in Customer Master   Vendor Master (General Section)  
This documentation is copyright by SAP AG.

Length: 1020 Date: 20240426 Time: 030341     sap01-206 ( 21 ms )