Description The program is used to transfer periodic unit-of-productiondepreciation from a sequential file to Asset Accounting. The file musthave the structure below: MANDT CHAR 3 : client BUKRS CHAR 4 : company code AFASL CHAR 4 : depreciation key GGJAHR NUMC 4 : fiscal year (1900 - 9999) AFPER NUMC 3 : period (001 - 099) STZAHL NUMC 15 : no. of units in period ( 0 - 999999999999999 ) GSTZAHL NUMC 15 : total number of units ( 0 - 999999999999999) The transfer program transfers only those records that are intended forthe given client. It also checks whether the company code and thedepreciation key are defined. Processing is terminated immediately whenthe program reaches an invalid company code or depreciation key. The program does not have comprehensive error handling, since it isintended for mass processing. As soon as an error occurs, processingterminates and no data records are transferred. In this way, theprogram ensures that either all data records are imported, or no datarecords are imported. When errors occur, remove those data records from the file, andtransfer them manually. |