IN1PMD_MGEN_UI_APPLICATION_IMP 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 IN1PMD_MGEN_UI_APPLICATION_IMP 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!
ISH_EINRI_CHECK CALL FUNCTION 'ISH_EINRI_CHECK' EXPORTING ss_einri = ls_data-einri " Einrichtung IMPORTING ss_einkb = l_einkb " Bezeichnung der Einrichtung EXCEPTIONS OTHERS = 1.
DSYS_SHOW_FOR_F1HELP CALL FUNCTION 'DSYS_SHOW_FOR_F1HELP' EXPORTING dokclass = 'RE' " Klasse des anzuzeigenden Dokumentes dokname = 'RN1PMD_MGEN_UI' " Name des anzuzeigenden Dokumentes short_text = abap_true " Kurztext als Titel anzeigen EXCEPTIONS OTHERS = 0.
DOCU_OBJECT_NAME_CONCATENATE CALL FUNCTION 'DOCU_OBJECT_NAME_CONCATENATE' EXPORTING docu_id = 'NA' element = ls_protocol-msgid addition = ls_protocol-msgno IMPORTING object = l_object.
HELP_OBJECT_SHOW CALL FUNCTION 'HELP_OBJECT_SHOW' EXPORTING dokclass = 'NA' " Dokumentenklasse doklangu = sy-langu " Sprache, für Hilfe -> immer Sy-Langu dokname = l_object " Name des Dokuments msg_var_1 = ls_protocol-msgv1 " Nachricht: Variable 1 msg_var_2 = ls_protocol-msgv2 " Nachricht: Variable 2 msg_var_3 = ls_protocol-msgv3 " Nachricht: Variable 3 msg_var_4 = ls_protocol-msgv4 " Nachricht: Variable 4 TABLES links = lt_link " keine Verwendung EXCEPTIONS OTHERS = 0.
BP_JOBLOG_READ CALL FUNCTION 'BP_JOBLOG_READ' EXPORTING jobcount = i_jobcount jobname = i_jobname " Name des Jobs TABLES joblogtbl = me->gt_protocol " Job-Protokoll Einträge in List-Format EXCEPTIONS cant_read_joblog = 1 jobcount_missing = 2 joblog_does_not_exist = 3 joblog_is_empty = 4 joblog_name_missing = 5 jobname_missing = 6 job_does_not_exist = 7 OTHERS = 8.
TR_OBJECTS_CHECK CALL FUNCTION 'TR_OBJECTS_CHECK' EXPORTING iv_no_show_option = abap_true " Kein 'Anzeigen' auf Fehlerpopup IMPORTING we_order = l_order " gewählter Auftrag (Transportauftrag) TABLES wt_ko200 = lt_ko200 " Eingabetabelle zu editierender Objekte EXCEPTIONS cancel_edit_other_error = 1 show_only_other_error = 2 OTHERS = 3.
TR_OBJECTS_INSERT CALL FUNCTION 'TR_OBJECTS_INSERT' EXPORTING wi_order = l_order " vorgeschlagener Auftrag (Prio vor Auftragssuche) iv_no_show_option = abap_true " Kein 'Anzeigen' auf Fehlerpopup TABLES wt_ko200 = lt_ko200 " Eingabetabelle editierter Objekte EXCEPTIONS cancel_edit_other_error = 1 show_only_other_error = 2 OTHERS = 3.
BP_JOB_STATUS_GET CALL FUNCTION 'BP_JOB_STATUS_GET' EXPORTING jobcount = ls_lookup-jobcount " Kennummer eines Jobs jobname = ls_lookup-jobname " Name eines Hintergrundjobs read_only_status = abap_true " Referenztyp CHAR1 für die Hintergrundverarbeitung IMPORTING status = l_status " Zustand eines Batchjobs EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.