PCLIBAR3 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 PCLIBAR3 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
OPEN_FORM CALL FUNCTION 'OPEN_FORM' EXPORTING * APPLICATION = 'TX' * Estos dos parámetros son para ArchiveLink. No están en PH4.
READ_FORM_ELEMENTS CALL FUNCTION 'READ_FORM_ELEMENTS' EXPORTING FORM = RF_FORM LANGUAGE = SYST-LANGU TABLES ELEMENTS = RF_ITAB EXCEPTIONS FORM = 1 UNOPENED = 2 OTHERS = 3.
WRITE_FORM CALL FUNCTION 'WRITE_FORM' EXPORTING ELEMENT = WF_ELEMENT * FUNCTION = 'SET' * type = 'BODY' WINDOW = WF_WINDOW * IMPORTING * PENDING_LINES = EXCEPTIONS ELEMENT = 1 FUNCTION = 2 TYPE = 3 UNOPENED = 4 UNSTARTED = 5 WINDOW = 6 OTHERS = 7.
CLOSE_FORM CALL FUNCTION 'CLOSE_FORM' IMPORTING RESULT = CF_RESULT * RDI_RESULT = * TABLES * OTFDATA = EXCEPTIONS UNOPENED = 1 OTHERS = 2.
HR_PAL_FORMS_ROW_ADD CALL FUNCTION 'HR_PAL_FORMS_ROW_ADD' EXPORTING * i_node_key = i_name = l_pal_name i_form_type = 'OTF' i_text = l_foltxt i_rqid = l_rqid EXCEPTIONS OTHERS = 99.
START_FORM CALL FUNCTION 'START_FORM' EXPORTING * PARÁMETRO PARA ARCHIVELINK.
END_FORM CALL FUNCTION 'END_FORM' * IMPORTING * RESULT = EXCEPTIONS UNOPENED = 1 BAD_PAGEFORMAT_FOR_PRINT = 2 OTHERS = 3.
GET_PRINT_PARAMETERS * CALL FUNCTION 'GET_PRINT_PARAMETERS' * EXPORTING * NO_DIALOG = 'X' * IMPORTING * OUT_PARAMETERS = GD_PRINTER_PARAMETER * EXCEPTIONS * OTHERS = 4.
GET_PRINT_PARAMETERS * CALL FUNCTION 'GET_PRINT_PARAMETERS' * EXPORTING * NO_DIALOG = 'X' * DESTINATION = GP_PDEST * ARCHIVE_MODE = GP_ARMOD * LINE_COUNT = GP_LINCT * LINE_SIZE = GP_LINSZ * LIST_TEXT = GP_PRTXT * NEW_LIST_ID = GP_PRNEW * IMMEDIATELY = GP_PRIMM * RELEASE = GP_PRREL * ARCHIVE_TEXT = GP_LOCAL_ARCTEXT * DATA_SET = GP_PRDSN * SAP_OBJECT = GP_SAP_OBJECT * AR_OBJECT = GP_AR_OBJECT * IN_PARAMETERS = GP_PRINT_PARAMETERS * IN_ARCHIVE_PARAMETERS = GP_ARCHIVE_PARAMETERS * IMPORTING * OUT_PARAMETERS = GP_PRINT_PARAMETERS * OUT_ARCHIVE_PARAMETERS = GP_ARCHIVE_PARAMETERS * EXCEPTIONS * OTHERS = 4.
GET_PRINT_PARAMETERS * CALL FUNCTION 'GET_PRINT_PARAMETERS' * EXPORTING * NO_DIALOG = ' ' * IN_PARAMETERS = GP_PRINT_PARAMETERS * IN_ARCHIVE_PARAMETERS = GP_ARCHIVE_PARAMETERS * IMPORTING * OUT_PARAMETERS = GP_PRINT_PARAMETERS * OUT_ARCHIVE_PARAMETERS = GP_ARCHIVE_PARAMETERS * VALID = GP_VALID * EXCEPTIONS * OTHERS = 4.
REUSE_ALV_LIST_DISPLAY * CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' * EXPORTING * I_CALLBACK_PROGRAM = REPID * I_CALLBACK_USER_COMMAND = LIB_VIS_SALIDAS * I_STRUCTURE_NAME = 'PAR20' * IS_LAYOUT = LAYOUT * IT_FIELDCAT = FIELDCATALOGUE * TABLES * T_OUTTAB = RESULT * EXCEPTIONS * PROGRAM_ERROR = 1 * OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.