IN1MOBILE_INSTALL_CONTROLLER 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 IN1MOBILE_INSTALL_CONTROLLER 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!
DYNP_VALUES_READ * CALL FUNCTION 'DYNP_VALUES_READ' * EXPORTING * dyname = sy-repid " Programmname * dynumb = sy-dynnr " Dynpronummer * TABLES * dynpfields = lt_dynpfields. " Tabelle zum Lesen der aktuellen Dynprowerte
SCMS_BINARY_TO_XSTRING CALL FUNCTION 'SCMS_BINARY_TO_XSTRING' EXPORTING input_length = l_input_length IMPORTING buffer = l_zip_file TABLES binary_tab = lt_data_tab.
ISHMED_F4_ALLG_ACTIVEX CALL FUNCTION 'ISHMED_F4_ALLG_ACTIVEX' EXPORTING it_f4tab = lt_zip_sources " Tabelle mit den anzuzeigenden Daten -> it_fieldcat = lt_fieldtab " Spaltenbeschreibung der Ausgabetabelle -> * it_function = " IS-H*MED: Tabellentyp für Funktionsstruktur RN1FUNC -> * it_def_marks = " Default-Markierungen -> i_height = 5 " Höhe des Popups * i_vcode = 'UPD' " Verarbeitungscode: 'DIS'...Anzeige, 'UPD'...Auswahl
SCMS_BINARY_TO_XSTRING CALL FUNCTION 'SCMS_BINARY_TO_XSTRING' EXPORTING input_length = l_size IMPORTING buffer = l_input_x TABLES binary_tab = l_bin_data.
SDOK_LOIOS_PHIOS_GET CALL FUNCTION 'SDOK_LOIOS_PHIOS_GET' TABLES object_list = lt_sdok_loios " Liste der logischen Informationsobjekte physical_objects = lt_sdok_phios. " Physische Informationsobjekte zu den logischen
SDOK_PHIO_CREATE_NEW_VERSION CALL FUNCTION 'SDOK_PHIO_CREATE_NEW_VERSION' EXPORTING old_object_id = ls_sdok_phio_old " BOR-Schlüssel des alten Objekts IMPORTING new_object_id = ls_sdok_phio_new " BOR-Schlüssel des neuen Objekts EXCEPTIONS not_existing = 1 bad_class = 2 initial = 3 checked_out = 4 not_authorized = 5 duplicate_object_id = 6 enqueue_failure = 7 exception_in_exit = 8 mimetype_not_allowed = 9 OTHERS = 10.
SDOK_PHIO_PROPERTIES_GET CALL FUNCTION 'SDOK_PHIO_PROPERTIES_GET' EXPORTING object_id = ls_sdok_phio_new " BOR-Schlüssel des Objekts TABLES properties = lt_property " Name und Ausprägung von Attributen EXCEPTIONS not_existing = 1 not_authorized = 2 exception_in_exit = 3 OTHERS = 4.
SDOK_PHIO_STORE_CONTENT CALL FUNCTION 'SDOK_PHIO_STORE_CONTENT' EXPORTING object_id = ls_sdok_phio_new " Identifikation des physischen Objekts allow_store_by_url = abap_true " 'X' --> Inhaltsbeschaffung über externe URLs erlaubt TABLES file_access_url = lt_file_access_url " Komponenteneigenschaften und Zugriffs-URL (alternativ zu FIL EXCEPTIONS not_existing = 1 not_allowed = 2 not_authorized = 3 no_content = 4 bad_storage_type = 5 blocked_by_policy = 6 OTHERS = 7.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.