Posts

Showing posts with the label GL_ACCT_MASTER_SAVE sample code

GL_ACCT_MASTER_SAVE - Upload G/L Master SAP Tool.

GL_ACCT_MASTER_SAVE is a standard SAP function module that can be used to create new General Ledger Account Master Record. If there is a requirement to upload G/L Account Master Records, then the below program can be used to achieve the same. SAMPLE CODE: *&---------------------------------------------------------------------* REPORT  zfi_create_gl_accounts . TYPES :  BEGIN  OF  gty_upload ,          sno ( 10 ) ,             " Serial No.             saknr ( 10 ) ,           " G/L Account             bukrs ( 40 ) ,           " Company Code           ...