CONVERT_OUTPUT_JDEF_SPCIFIC SAP Method of class /SOMO/CL_EX_UNIJOBMONDC_SMSE









Below is documentation, parameters and attributes of ABAP Method CONVERT_OUTPUT_JDEF_SPCIFIC within SAP class /SOMO/CL_EX_UNIJOBMONDC_SMSE. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /SOMO/CL_EX_UNIJOBMONDC_SMSE into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method CONVERT_OUTPUT_JDEF_SPCIFIC can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method CONVERT_OUTPUT_JDEF_SPCIFIC

.

NameTypeData TypeDescriptionDefault Value
IN_MANSYS_TZONEImportingTYPE
TIMEZONE
Time Zone
IS_JOB_INSTANCE_COREImportingTYPE
/SOMO/MA_S_JOBCORE_INTST_INTF
Unified job monitoring job core instance info interface
IS_JOB_INSTANCE_INFO_TEMPLATEImportingTYPE
/SOMO/JOBMON12
Job instance information
IS_OUTPUT_TABImportingTYPE
/SOMO/CL_EX_UNIJOBMONDC_SMSE=>TYPE_OUTPUT_TAB
CT_JOB_INSTANCE_INFOChangingTYPE
/SOMO/MA_T_JOBINSTANCE_INFO
Table type job instance information



Exceptions of Method CONVERT_OUTPUT_JDEF_SPCIFIC

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /SOMO/CL_EX_UNIJOBMONDC_SMSE.
DATA: lv_CT_JOB_INSTANCE_INFO TYPE /SOMO/MA_T_JOBINSTANCE_INFO,
lv_IN_MANSYS_TZONE TYPE TIMEZONE,
lv_IS_JOB_INSTANCE_CORE TYPE /SOMO/MA_S_JOBCORE_INTST_INTF,
lv_IS_JOB_INSTANCE_INFO_TEMPLATE TYPE /SOMO/JOBMON12,
lv_IS_OUTPUT_TAB TYPE /SOMO/CL_EX_UNIJOBMONDC_SMSE=>TYPE_OUTPUT_TAB,
lv_other TYPE c.

CALL METHOD lo_class=>CONVERT_OUTPUT_JDEF_SPCIFIC(
EXPORTING
IN_MANSYS_TZONE = lv_IN_MANSYS_TZONE
IS_JOB_INSTANCE_CORE = lv_IS_JOB_INSTANCE_CORE
IS_JOB_INSTANCE_INFO_TEMPLATE = lv_IS_JOB_INSTANCE_INFO_TEMPLATE
IS_OUTPUT_TAB = lv_IS_OUTPUT_TAB
CHANGING
CT_JOB_INSTANCE_INFO = lv_CT_JOB_INSTANCE_INFO ).

Links to Related Class(s)

/SOMO/CL...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!