MOIUCI_PPD_F03 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 MOIUCI_PPD_F03 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 MOIUCI_PPD_F03
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING NAME = p_name * TEXT = ' ' INFO = p_tooltip * ADD_STDINF = 'X' IMPORTING RESULT = p_result EXCEPTIONS ICON_NOT_FOUND = 1 OUTPUTFIELD_TOO_SHORT = 2 OTHERS = 3.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING TITLEBAR = text-031 * DIAGNOSE_OBJECT = ' ' TEXT_QUESTION = text-032 * TEXT_BUTTON_1 = 'Ja'(001) ICON_BUTTON_1 = 'ICON_OKAY' * TEXT_BUTTON_2 = 'Nein'(002) ICON_BUTTON_2 = 'ICON_CANCEL' DEFAULT_BUTTON = '2' DISPLAY_CANCEL_BUTTON = ' ' * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = IMPORTING ANSWER = prompt_answer * TABLES * PARAMETER = EXCEPTIONS TEXT_NOT_FOUND = 1 OTHERS = 2.
OIUCI_DOCUMENT_CREATE CALL FUNCTION 'OIUCI_DOCUMENT_CREATE' TABLES CHECKDTL = it_checkdtl ERRORS = it_errors ALERTS = it_alerts CHANGING CHECKHDR = oiuci_header EXCEPTIONS DUPLICATE_CHECK = 1 ERROR_EXIST = 2 ALERT_EXIST = 3 FAILED = 4 OTHERS = 5.
OIUCI_DOCUMENT_EDIT CALL FUNCTION 'OIUCI_DOCUMENT_EDIT' EXPORTING ITEMEDITED = ITEMEDITED TABLES CHKLINEITEMS = it_lineitem ERRORS = it_errors ALERTS = it_alerts NOTES = it_notes CHANGING CHECKHDR = oiuci_header EXCEPTIONS ERROR_EXIST = 1 ALERT_EXIST = 2 OTHERS = 3.
CONVERT_DATE_TO_INTERNAL CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL' EXPORTING DATE_EXTERNAL =
IMPORTING DATE_INTERNAL = EXCEPTIONS DATE_EXTERNAL_IS_INVALID = 1.
POPUP_GET_VALUES CALL FUNCTION 'POPUP_GET_VALUES' EXPORTING * NO_VALUE_CHECK = ' ' POPUP_TITLE = p_title * START_COLUMN = '5' * START_ROW = '5' IMPORTING RETURNCODE = p_answer TABLES FIELDS = p_field EXCEPTIONS ERROR_IN_FIELDS = 1 OTHERS = 2.
OIUCI_PROCESSING_MAIN CALL FUNCTION 'OIUCI_PROCESSING_MAIN' EXPORTING * FUNCTION = jobparms-function "SOHK004562 AG FUNCTION = p_check-process_function "SOHK004562 AG CHANGING CHECKHDR = p_check EXCEPTIONS UNAUTHORIZED = 1 BAD_STATUS = 2 LOCK_ERROR = 3 JOURNALIZATION_ERROR = 4 DISTRIBUTION_ERROR = 5 OTHERS = 6.
IGN_TABLECONTROL_PAGING CALL FUNCTION 'IGN_TABLECONTROL_PAGING' " JSU EXPORTING CODE = lf_ok_code COUNTER = lf_counter TOP_LINE = lf_top_line TOTAL_LINE = lf_total_line IMPORTING FIRST_LINE = detail-top_line.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.