output_options= ls_output_options EXCEPTIONS formatting_error=1 internal_error=2 send_error=3 user_canceled=4 OTHERS=5. CALLFUNCTION'SSF_CLOSE' EXCEPTIONS formatting_error=1 internal_error=2 send_error=3 OTHERS=4. 修改为: ls_control_parameters-no_open=''"." 打开打印对话框 ls_control_paramete...
im printing one material id per page .i want the dialog box for printing appear just once and all the records should be printed for that i have used ssf_open and ssf_close. but still the dialog box is coming.Is my code correct form print_smartform1X3. DATA : fm_name TYPE RS38L_...
DATA fm_name TYPE tdsfname. DATA: ls_control_param TYPE ssfctrlop . DATA: ls_composer_param TYPE ssfcompop . DATA: outopt TYPE ssfcresop. DATA: i_job_output_info TYPE ssfcrescl. ls_control_param-langu = '1'. ls_control_param-no_open = 'X'. ls_control_param-no_close = 'X'...
DATA: lf_fm_name TYPE rs38l_fnam. DATA: i_job_output_info TYPE ssfcrescl. DATA: ls_outopt TYPE ssfcompop. DATA: ls_control TYPE ssfctrlop. data: ls_opt type SSFCRESOP. *打印控制参数 ls_control-no_open = 'X'. ls_control-no_close = 'X'. ls_control-langu = '1'. * output...
29、NUMBER sy - msgnoWITH sy - msgv1 sy - msgv2 sy - msgv3 sy - msgv4 .ENDIF .ENDLOOP.CALL FUNCTION 'SSF_CLOSE'* IMPORTING* JOB_OUTPUT_INFO =EXCEPTIONSformatting_error=1internal_error=2send_error=3OTHERS=4.IF sy - subrc <>0.* error handlingMESSAGE ID sy - msgid TYPE sy - ...
症状a) 您需要将文件从 SAP 应用程序服务器传输到仅支持 SFTP 协议的接收方。但是,SAP 应用程序服务器只能使用 HTTPS 协议发送文件。此外,您可能希望在发送...
CALL FUNCTION'SSF_CLOSE' * IMPORTING * JOB_OUTPUT_INFO = EXCEPTIONS formatting_error=1 internal_error=2 send_error=3 OTHERS=4. IFsy-subrc <>0. * error handling MESSAGE IDsy-msgidTYPEsy-msgtyNUMBERsy-msgno WITHsy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4. ENDIF. * analyse internal error ta...
Since I need to call the smartform in a loop I am using functions SSF_OPEN and SSF_CLOSE . SmartForm Y_R_EITAN_TEST_31_03 The form source is y_r_eitan_test_31_03.xml (attach file) Note the use of Y_R_EITAN_TEST_31_03_CL=> ...
CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME' EXPORTING formname = 'ZDEMO_SFM_01' * VARIANT = ' ' * DIRECT_CALL = ' ' IMPORTING fm_name = lv_fm_name EXCEPTIONS no_form = 1 no_function_module = 2 OTHERS = 3. IF sy-subrc <> 0. * Implement suitable error handling here ENDIF. ls_...
how can i do this without using the ssf_open and ssf_close functions. or, if i don't use ssf_open, can i use ssf_close anyway? but this doesn't really matter, i will use both functions. Does someone have a coding which works with the cancel-button? thanks for your help, harry ...