J_1UF_ACT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The J_1UF_ACT program is designed for printing Ukrainian act of services provided in accordance with existing legislation...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter J_1UF_ACT into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Text Symbol: 001 = uah.
Text Symbol: 002 = kop.
INCLUDE J_1UF_ACT_TOP.
INCLUDE RLB_INVOICE_DATA_DECLARE.
INCLUDE J_1UF_ACT_FORMS.
No SAP DATABASE tables are accessed within this REPORT code!
SSF_FUNCTION_MODULE_NAME CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME' EXPORTING formname = lf_formname * variant = ' ' * direct_call = ' ' IMPORTING fm_name = lf_fm_name EXCEPTIONS no_form = 1 no_function_module = 2 OTHERS = 3.
SD_PRINT_TERMS_OF_PAYMENT_SPLI CALL FUNCTION 'SD_PRINT_TERMS_OF_PAYMENT_SPLI' EXPORTING I_COUNTRY = VBDKR-LAND1 BLDAT = H_FKDAT BUDAT = H_FKDAT CPUDT = H_FKDAT LANGUAGE = VBCO3-SPRAS TERMS_OF_PAYMENT = VBDKR-ZTERM WERT = H_FKWRT "Warenwert + Tax WAERK = VBDKR-WAERK FKDAT = VBDKR-FKDAT SKFBT = H_SKFBT I_COMPANY_CODE = VBDKR-BUKRS TABLES TOP_TEXT_SPLIT = PAYMENT_SPLIT EXCEPTIONS TERMS_OF_PAYMENT_NOT_IN_T052 = 01 TERMS_OF_PAYMENT_NOT_IN_T052S = 02.
CONTROL_FORM CALL FUNCTION 'CONTROL_FORM' EXPORTING COMMAND = 'PROTECT'.
WRITE_FORM CALL FUNCTION 'WRITE_FORM' EXPORTING ELEMENT = 'TERMS_OF_PAYMENT_SPLIT_HEADER'.
WRITE_FORM CALL FUNCTION 'WRITE_FORM' EXPORTING ELEMENT = 'TERMS_OF_PAYMENT_SPLIT' EXCEPTIONS ELEMENT = 1 WINDOW = 2.
CONTROL_FORM CALL FUNCTION 'CONTROL_FORM' EXPORTING COMMAND = 'ENDPROTECT'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.