SAP Reports / Programs

WDY_CONVERT_COMPONENT SAP ABAP Report - Convert Component







WDY_CONVERT_COMPONENT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Conversion of Web Dynpro component to the NW05 model...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 WDY_CONVERT_COMPONENT 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 WDY_CONVERT_COMPONENT. "Basic submit
SUBMIT WDY_CONVERT_COMPONENT AND RETURN. "Return to original report after report execution complete
SUBMIT WDY_CONVERT_COMPONENT 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: CHKMODE = Check Mode
Selection Text: COMPO = Component Name
Selection Text: FORCE = Force Mode
Title: Convert Component


INCLUDES used within this REPORT WDY_CONVERT_COMPONENT

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:

DB_COMMIT CALL FUNCTION 'DB_COMMIT'.

RS_INACTIVE_OBJECTS_IN_OBJECT CALL FUNCTION 'RS_INACTIVE_OBJECTS_IN_OBJECT' EXPORTING OBJ_NAME = l_name OBJECT = 'WDYN' * GLOBAL_CHECK = 'X' * IMPORTING * INACTIVE_INCLUDE_EXISTS = TABLES INACTIVE_OBJECTS = l_objlist EXCEPTIONS OBJECT_NOT_FOUND = 1 OTHERS = 2.

RS_ACCESS_PERMISSION CALL FUNCTION 'RS_ACCESS_PERMISSION' EXPORTING AUTHORITY_CHECK = ' ' GLOBAL_LOCK = 'X' MODE = 'MODIFY' OBJECT = p_component_name OBJECT_CLASS = 'WDYN' SUPPRESS_LANGUAGE_CHECK = ' ' GENFLAG = ' ' IMPORTING DEVCLASS = p_devclass TADIRE = l_tadir * MODIFICATION_LANGUAGE = modification_language EXCEPTIONS OTHERS = 1.

RS_CORR_INSERT CALL FUNCTION 'RS_CORR_INSERT' EXPORTING OBJECT = p_component_name OBJECT_CLASS = 'WDYN' MODE = 'MODIFY' GLOBAL_LOCK = 'X' * KORRNUM = l_corrnr devclass = p_devclass GENFLAG = ' ' IMPORTING KORRNUM = g_corrnr * DEVCLASS = me->devclass EXCEPTIONS CANCELLED = 1 PERMISSION_FAILURE = 2 UNKNOWN_OBJECTCLASS = 3 OTHERS = 4.

RS_ACCESS_PERMISSION CALL FUNCTION 'RS_ACCESS_PERMISSION' EXPORTING MODE = 'FREE' OBJECT = p_component_name OBJECT_CLASS = 'WDYN'.

WDY_WB_UPDATE_CIF_INTERFACE CALL FUNCTION 'WDY_WB_UPDATE_CIF_INTERFACE' EXPORTING P_REF_CONTROLLER = l_ref_controller P_CALL_ON_ACTIVATION = ' ' P_CORRNR = g_corrnr P_VERSION = 'I' EXCEPTIONS NO_GLOBAL_INTERFACE = 1 IF_NOT_GENERATED = 2 OTHERS = 3.

RS_INSERT_INTO_WORKING_AREA call function 'RS_INSERT_INTO_WORKING_AREA' exporting object = 'WDYV' obj_name = l_obj_name exceptions others = 1.

RS_INSERT_INTO_WORKING_AREA call function 'RS_INSERT_INTO_WORKING_AREA' exporting object = 'WDYC' obj_name = l_obj_name exceptions others = 1.

WDY_WB_DELETE_LOAD call function 'WDY_WB_DELETE_LOAD' exporting p_component = p_component_name.



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