UA_GENERATE_DATABASIS is a standard Executable ABAP Report 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 UA_GENERATE_DATABASIS into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
UA_DATABASIS - Define Data Basis
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.
Selection Text: G_ACT = Activate
Selection Text: G_ACTONL = Only Activate
Selection Text: G_DEL = Delete
Selection Text: G_IOC_C = InfoObject Catalog: Charas
Selection Text: G_IOC_K = InfoObject Catalog: Key Figs
Selection Text: G_SAVEON = Save
Selection Text: G_WODEP = Ignore Dependents
Selection Text: G_DATAB = D .
Selection Text: G_LOGSYS = D .
Title: Program UA_GENERATE_DATABASIS
Text Symbol: 001 = Delete Data Basis:
Text Symbol: 002 = Dependent settings will also be deleted
Text Symbol: 003 = Data Basis Definition
Text Symbol: 004 = Mode
Text Symbol: 011 = Another logical system has been saved for the data basis. Do you want to overwrite?
Text Symbol: 012 = Another characteristic catalog has been saved for the data basis. Do you want to overwrite?
Text Symbol: 013 = Another key figure catalog has been saved for the data basis. Do you want to overwrite?
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = 'ACC_S_DBS01' fieldname = 'ACC_DATABASIS' TABLES dfies_tab = lt_dfies.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'ACC_DATABASIS' value_org = 'S' TABLES value_tab = lt_datab field_tab = lt_dfies return_tab = lt2_f4v.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'LOGICSYS' dynpprog = sy-repid dynpnr = '0100' dynprofield = 'DYNP0100-LOGICSYS' value_org = 'S' TABLES value_tab = t_bw field_tab = t_dfies return_tab = lt2_f4v.
ACC_MSG_TEXT_POPUP CALL FUNCTION 'ACC_MSG_TEXT_POPUP' EXPORTING i_popup_title = space i_msgid = 'ACC_BUSDOM' i_msgno = '012' i_msgv1 = space i_msgv2 = space i_msgv3 = space i_msgv4 = space EXCEPTIONS OTHERS = 0.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'INFOOBJCAT' dynpprog = sy-repid dynpnr = '0100' dynprofield = 'GS_SCREEN_0100-INFOOBJCAT' value_org = 'S' TABLES value_tab = lt_iobc_list field_tab = t_dfies.
ACC_DATABASIS_GET CALL FUNCTION 'ACC_DATABASIS_GET' EXPORTING i_popup = ' ' IMPORTING e_acc_databasis = g_datab.
ENQUEUE_E_UA_XML CALL FUNCTION 'ENQUEUE_E_UA_XML' EXPORTING mode_uab_s_databasis = 'E' databasis = g_datab EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
ACC_MSG_TEXT_POPUP CALL FUNCTION 'ACC_MSG_TEXT_POPUP' EXPORTING i_popup_title = space i_msgid = 'ACC_BUSDOM' i_msgno = '012' i_msgv1 = space i_msgv2 = space i_msgv3 = space i_msgv4 = space EXCEPTIONS OTHERS = 0.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = text-011 display_cancel_button = ' ' IMPORTING answer = answer.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = text-012 display_cancel_button = ' ' IMPORTING answer = answer.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = text-013 display_cancel_button = ' ' IMPORTING answer = answer.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'Abhängige Einstellungen werden ebenfalls gelöscht'(002) * DIAGNOSE_OBJECT = ' ' text_question = l_char35 * TEXT_BUTTON_1 = 'Ja'(001) * ICON_BUTTON_1 = ' ' * TEXT_BUTTON_2 = 'Nein'(002) * ICON_BUTTON_2 = ' ' default_button = '2' * DISPLAY_CANCEL_BUTTON = 'X' * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = * IV_QUICKINFO_BUTTON_1 = ' ' * IV_QUICKINFO_BUTTON_2 = ' ' IMPORTING answer = l_char_tmp.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.