SAP Reports / Programs

RFVOBJ01_CREATE_STRUCTURE SAP ABAP Report - Generate Structure to Prepare Object Transfer







RFVOBJ01_CREATE_STRUCTURE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Creating a Structure to Transfer Objects You intend to transfer objects...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter RFVOBJ01_CREATE_STRUCTURE into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

RFVOBJ01CS - Structure for Object Transfer


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RFVOBJ01_CREATE_STRUCTURE. "Basic submit
SUBMIT RFVOBJ01_CREATE_STRUCTURE AND RETURN. "Return to original report after report execution complete
SUBMIT RFVOBJ01_CREATE_STRUCTURE VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_XLS =
Selection Text: P_UPL =
Selection Text: P_TXT =
Selection Text: P_TRZ =
Selection Text: P_TEX =
Selection Text: P_OUPL =
Selection Text: P_OFILE = File Name
Selection Text: P_ODBS =
Selection Text: P_LENG = Length
Selection Text: P_LANGU = Language
Selection Text: P_INTTY = Internal Data Type
Selection Text: P_HEADER =
Selection Text: P_FTEXT = Field Text
Selection Text: P_FNAME = Field Name
Selection Text: P_FILE = File Name
Selection Text: P_EXCEL =
Selection Text: P_DECIM = Number of Decimal Places
Selection Text: P_DBS =
Selection Text: P_DATAT = External Data Type
Selection Text: P_CSV =
Selection Text: P_ASC =
Title: Generate Structure to Prepare Object Transfer
Text Symbol: XML = XML
Text Symbol: XLS = Excel
Text Symbol: UPL = Presentation Server
Text Symbol: TXT = TXT Format (Fld Separator = TAB)
Text Symbol: TRZ = Fld Separator
Text Symbol: TEX = Text File w. Fld Separator
Text Symbol: SXL = Display File in Excel
Text Symbol: OUT = Output File
Text Symbol: IN1 = Input File
Text Symbol: HEA = 1st Line Only Contains Fld Names
Text Symbol: FTX = Fld Text
Text Symbol: FNM = Fld Name
Text Symbol: DTF = File Format
Text Symbol: DD1 = Struct. of Column Content
Text Symbol: DBS = Application Server
Text Symbol: CSV = CSV Format (Fld Separator = ;)





Text Symbol: ASC = Text wo.Field Separator
Text Symbol: 001 = Generate Structure for Transferring Objects


INCLUDES used within this REPORT RFVOBJ01_CREATE_STRUCTURE

INCLUDE TRUX_SELECTION_SCREEN_FRAME.
INCLUDE TRUX_SELECTION_SCREEN_DATA.


TABLES used within REPORT and the associated SELECT statement:

No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

CREATE_XLS_HEADER_FROM_DDIC CALL FUNCTION 'CREATE_XLS_HEADER_FROM_DDIC' EXPORTING I_FILEFORMAT = L_FILEFORMAT I_FIELDNAME = P_FNAME I_FIELDTEXT = P_FTEXT I_DATATYPE = P_DATAT I_INTTYPE = P_INTTY I_LENG = P_LENG I_DECIMALS = P_DECIM I_TABNAME = C_TABLE I_LANGU = P_LANGU TABLES T_HEADER = T_COLUMNS EXCEPTIONS OTHERS = 4.

SAP_DATA_CONVERT_WRITE_FILE CALL FUNCTION 'SAP_DATA_CONVERT_WRITE_FILE' EXPORTING I_FILENAME = P_OFILE I_SERVERTYP = L_OUT_SERVERTYP I_FIELD_SEPERATOR = L_FIELD_SEPERATOR I_FILEFORMAT = L_FILEFORMAT I_LINE_HEADER = P_HEADER I_APPL_KEEP = P_EXCEL TABLES I_TAB_SENDER = T_COLUMNS EXCEPTIONS OTHERS = 4.

REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING I_LIST_TYPE = 0 IMPORTING ET_EVENTS = T_EVENT.

REUSE_ALV_COMMENTARY_WRITE * call function 'REUSE_ALV_COMMENTARY_WRITE' * exporting * it_list_commentary =
ENDFORM.

REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING I_PROGRAM_NAME = ALV_REPID I_INTERNAL_TABNAME = TABNAME I_STRUCTURE_NAME = REF_TABNAME CHANGING CT_FIELDCAT = T_FIELDCAT EXCEPTIONS OTHERS = 1.

FILE_GET_NAME CALL FUNCTION 'FILE_GET_NAME' EXPORTING logical_filename = u_file IMPORTING file_name = c_filename_ext EXCEPTIONS OTHERS = 1.

FILE_LOGFILE_ALIAS_PAI CALL FUNCTION 'FILE_LOGFILE_ALIAS_PAI' EXPORTING ed_logfile_appl = u_logfile CHANGING cd_logfile = l_file_log EXCEPTIONS OTHERS = 1.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RFVOBJ01_CREATE_STRUCTURE or its description.