FRE_STRUCT_ARTICLE_LOAD is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You run this report after you have made all Customizing changes under
If you would like to execute this report or see the full code listing simply enter FRE_STRUCT_ARTICLE_LOAD into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FRE27 - Transfer Structured Materials to F&R
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: P_ATTYP = Material Category
Selection Text: P_DIRECT = Access F&R direct
Selection Text: P_MATNR = Material
Selection Text: P_SYDEST = Destination system
Title: Transfer Structured Materials to F&R After Customizing Changes
Text Symbol: 001 = Structured Article
Text Symbol: 002 = Transfer Setting
Text Symbol: 003 = wrong Material Category
Text Symbol: T01 = ******* Processing completed! *******
Text Symbol: T02 = (For more details use transaction FRE_UI)
Text Symbol: T03 = Another Interface is already active!!! (Lock on table FRE_DB_ART_SITE failed)
Text Symbol: T04 = ******************** Transaction FRE27 stopped ************************
INCLUDE FRE_STRUCT_ARTICLE_LOADTOP . " GLOBAL DATA
INCLUDE FRE_STRUCT_ARTICLE_LOADI01 . " PAI-MODULES
INCLUDE FRE_STRUCT_ARTICLE_LOADF01 . " FORM-ROUTINES
No SAP DATABASE tables are accessed within this REPORT code!
FRE_DB_CONVERT_50 CALL FUNCTION 'FRE_DB_CONVERT_50' EXCEPTIONS conversion_error = 1 nothing_to_do = 2 OTHERS = 3.
ENQUEUE_E_FRE_DB_ARTSITE CALL FUNCTION 'ENQUEUE_E_FRE_DB_ARTSITE' EXPORTING mode_fre_db_art_site = 'X' mandt = sy-mandt * WERKS = * MATNR = * X_WERKS = ' ' * X_MATNR = ' ' * _SCOPE = '2' * _WAIT = ' ' * _COLLECT = ' ' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3 .
FRE_MESSAGE_DB CALL FUNCTION 'FRE_MESSAGE_DB' EXPORTING mode = 'I' TABLES messages = gt_msg EXCEPTIONS database_error = 0 wrong_mode = 0 foreign_lock = 0 OTHERS = 0.
DEQUEUE_E_FRE_DB_ARTSITE CALL FUNCTION 'DEQUEUE_E_FRE_DB_ARTSITE' EXPORTING mode_fre_db_art_site = 'X' mandt = sy-mandt.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
FRE_STRUCT_ARTICLE_LOAD - Transfer Structured Materials to F&R After Customizing Changes FRE_STRUCT_ARTICLE_LOAD - Transfer Structured Materials to F&R After Customizing Changes FRE_SEND_TSD_TOP - Include FRE_LOAD_TS_TOP FRE_SEND_TSD_F01 - Include FRE_LOAD_TS_F01 FRE_SEND_TSD - Transfer consumption data and stock information to F&R FRE_SEND_TSD - Transfer consumption data and stock information to F&R