SAP Reports / Programs | Basis Components | Basis Services / Communication Interfaces | Smart Forms(BC-SRV-SSF) SAP BC

SF_MIGRATE SAP ABAP Report - Report for migrating SAPscript forms







SF_MIGRATE 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 SF_MIGRATE into the relevant SAP transactions such as SE38 or SE80


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 SF_MIGRATE. "Basic submit
SUBMIT SF_MIGRATE AND RETURN. "Return to original report after report execution complete
SUBMIT SF_MIGRATE VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


The following migrations were executed:
Selection Text: P_ALLMDT = from all clients
Selection Text: P_SSOLAN = Original language
Selection Text: P_SYMDT = from the current client
Selection Text: SO_FDATE = Created on
Selection Text: SO_SSNAM = Name(s)
Title: Report for migrating SAPscript forms
Text Symbol: E06 = could not be migrated
Text Symbol: C01 = SAPscript forms from which to generate SAPSmart Forms:
Text Symbol: C02 = From which client do you want to take the forms?
Text Symbol: E01 = No Forms Found
Text Symbol: E02 = No forms found for the specified name
Text Symbol: E03 = No forms found for the specified language
Text Symbol: E04 = No forms found for specified name(s) and language
Text Symbol: E05 = You do not have adequate authorization
001 Client SAPscript Language SAP Smart Form Language


INCLUDES used within this REPORT SF_MIGRATE

No INCLUDES are used within this REPORT code!


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:

SSF_READ_CATALOG CALL FUNCTION 'SSF_READ_CATALOG' IMPORTING o_tcatalog = smartform_catalog.

FB_MIGRATE_FORM CALL FUNCTION 'FB_MIGRATE_FORM' EXPORTING i_formname_sapscript = p_sapscript_form-tdform i_language_sapscript = p_sapscript_form-tdospras i_client_sapscript = p_sapscript_form-mandt i_formname_smartform = l_smartform_name i_with_dialog = space i_with_form_builder = space i_check_forms_are_ok = space EXCEPTIONS no_name = c_no_name no_language = c_no_language no_form = c_no_form form_exists = c_form_exists no_access_permission = c_no_access_permission illegal_language = c_illegal_language illegal_name = c_illegal_name no_success = c_no_success OTHERS = 9.



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 SF_MIGRATE or its description.