SAP Reports / Programs | Basis Components | Installation Tools | LM Automation Runtime Framework(BC-INS-CTC-RT) SAP BC

SCTC_TEST_EXECUTE SAP ABAP Report - CTC Execute Task







SCTC_TEST_EXECUTE 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 SCTC_TEST_EXECUTE 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 SCTC_TEST_EXECUTE. "Basic submit
SUBMIT SCTC_TEST_EXECUTE AND RETURN. "Return to original report after report execution complete
SUBMIT SCTC_TEST_EXECUTE 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: HOST = D .
Selection Text: PASSWORD = D .
Selection Text: PORT = D .
Selection Text: USER = D .
Selection Text: USE_SSO = Use Single Sign On
Title: CTC Execute Task
Text Symbol: 001 = Targetsystem
Text Symbol: 002 = Logon data
Text Symbol: H01 = Name
Text Symbol: H02 = Namespace
Text Symbol: H03 = End of Execution
Text Symbol: H04 = State
Text Symbol: H05 = Id
Text Symbol: H06 = Description
Text Symbol: H07 = Path
Text Symbol: H08 = Protocol Url
Text Symbol: H09 = Breadcrump
Text Symbol: H11 = Component
Text Symbol: H12 = Type
Text Symbol: H13 = XML


INCLUDES used within this REPORT SCTC_TEST_EXECUTE

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:

SCTC_CREATE_LOGICAL_PORT CALL FUNCTION 'SCTC_CREATE_LOGICAL_PORT' EXPORTING ip_host = host ip_port = port ip_use_sso = use_sso ip_user = user ip_password = password IMPORTING ep_logical_port_name = logical_port_name EXCEPTIONS no_authority = 1 lp_not_created = 2 OTHERS = 3.

SCTC_DELETE_LOGICAL_PORT CALL FUNCTION 'SCTC_DELETE_LOGICAL_PORT' EXPORTING ip_host = host ip_port = port EXCEPTIONS no_authority = 1 lp_not_deleted = 2 OTHERS = 3.

LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'SCTCS_EVENT' i_client_never_display = abap_false CHANGING ct_fieldcat = lt_fieldcatalog EXCEPTIONS OTHERS = 3.

LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'SCTC_CTCCONTEXT_MESSAGE' i_client_never_display = abap_false CHANGING ct_fieldcat = lt_messages_fieldcatalog EXCEPTIONS OTHERS = 3.

LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'SCTC_CTCRESOURCE' i_client_never_display = abap_false CHANGING ct_fieldcat = lt_resources_fieldcatalog EXCEPTIONS OTHERS = 3.

SCTC_EXECUTE_TASK CALL FUNCTION 'SCTC_EXECUTE_TASK' EXPORTING ip_logical_port_name = logical_port_name is_ressource_identifier = ressource_identifier it_context_messages = lt_context_messages it_resources = lt_resources ip_synchronious = abap_true ip_notification_popup = abap_true IMPORTING et_events = lt_events ep_output_message = output_message EXCEPTIONS no_authority = 1 system_fault = 2 application_fault = 3 ctc_execute_fault = 4 OTHERS = 5.



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