PACATSDYNSTRUF is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter PACATSDYNSTRUF 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.
Title: Include PACATSDYNSTRUF
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-007 * DIAGNOSE_OBJECT = ' ' text_question = lv_confirm text_button_1 = 'Ja'(003) icon_button_1 = ' ' text_button_2 = 'Nein'(004) icon_button_2 = ' ' default_button = '1' display_cancel_button = 'X' IMPORTING answer = lv_proceed.
HR_DISPLAY_BASIC_LIST CALL FUNCTION 'HR_DISPLAY_BASIC_LIST' "#EC FB_OLDED EXPORTING basic_list_title = 'Review Changes' "#EC NOTEXT head_line1 = lv_headline1 head_line2 = lv_headline2 head_line3 = lv_headline3 head_line4 = lv_headline4 file_name = sy-repid dyn_pushbutton_text1 = l_download IMPORTING return_code = l_fcode TABLES data_tab = gt_display_data fieldname_tab = g_field_name.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = lv_title text_question = lv_text1 text_button_1 = text-003 text_button_2 = text-004 * DEFAULT_BUTTON = '2' * DISPLAY_CANCEL_BUTTON = 'X' * POPUP_TYPE = IMPORTING answer = confirm_answer EXCEPTIONS text_not_found = 1 OTHERS = 2.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = log_header IMPORTING e_log_handle = log_handle EXCEPTIONS log_header_inconsistent = 1 OTHERS = 2.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = log_handle i_s_msg = gs_log_message EXCEPTIONS log_not_found = 1 msg_inconsistent = 2 log_is_full = 3 OTHERS = 4.
BAL_DB_SAVE CALL FUNCTION 'BAL_DB_SAVE' EXPORTING i_t_log_handle = log_handles EXCEPTIONS log_not_found = 1 save_not_allowed = 2 numbering_error = 3 OTHERS = 4.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING * I_S_DISPLAY_PROFILE = i_t_log_handle = log_handles EXCEPTIONS profile_inconsistent = 1 internal_error = 2 no_data_available = 3 no_authority = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.