SAVE_IMAGE_DATA_TO_CC SAP Method Saves Image Data in Cleansing Case BO









Below is documentation, parameters and attributes of ABAP Method SAVE_IMAGE_DATA_TO_CC within SAP class AC_FSBP_CC_STATE. 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 AC_FSBP_CC_STATE 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 SAVE_IMAGE_DATA_TO_CC can also be found below:

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


Parameters of Method SAVE_IMAGE_DATA_TO_CC

.

NameTypeData TypeDescriptionDefault Value
I_BP_OBJECTSImportingTYPE
LTTY_CLEANSING_OBJECTS
Business Partner (Objects) in Data Cleansing Case
I_CLEANSING_CASEImportingTYPE REF TO
IF_XO_BUSINESS_OBJECT
Business Object Definition
I_RELATIONSHIPSImportingTYPE
BURS_EI_EXTERN_T
Complex External Interface of Relationships (Tab.)
I_RELATIONSHIPS_NEWImportingTYPE
BURS_EI_EXTERN_T
Complex External Interface of Relationships (Tab.)
I_SOURCEImportingTYPE
BUS_EI_EXTERN_T
Business Object References
I_SOURCE_NEWImportingTYPE
BUS_EI_EXTERN_T
Business Object References
I_TARGETImportingTYPE
BUS_EI_EXTERN
Reference Line for Business Object
I_TARGET_NEWImportingTYPE
BUS_EI_EXTERN
Reference Line for Business Object



Exceptions of Method SAVE_IMAGE_DATA_TO_CC

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO AC_FSBP_CC_STATE.
DATA: lv_I_BP_OBJECTS TYPE LTTY_CLEANSING_OBJECTS,
lv_I_CLEANSING_CASE TYPE IF_XO_BUSINESS_OBJECT,
lv_I_RELATIONSHIPS TYPE BURS_EI_EXTERN_T,
lv_I_RELATIONSHIPS_NEW TYPE BURS_EI_EXTERN_T,
lv_I_SOURCE TYPE BUS_EI_EXTERN_T,
lv_I_SOURCE_NEW TYPE BUS_EI_EXTERN_T,
lv_I_TARGET TYPE BUS_EI_EXTERN,
lv_I_TARGET_NEW TYPE BUS_EI_EXTERN,
lv_other TYPE c.

CALL METHOD lo_class=>SAVE_IMAGE_DATA_TO_CC(
EXPORTING
I_BP_OBJECTS = lv_I_BP_OBJECTS
I_CLEANSING_CASE = lv_I_CLEANSING_CASE
I_RELATIONSHIPS = lv_I_RELATIONSHIPS
I_RELATIONSHIPS_NEW = lv_I_RELATIONSHIPS_NEW
I_SOURCE = lv_I_SOURCE
I_SOURCE_NEW = lv_I_SOURCE_NEW
I_TARGET = lv_I_TARGET
I_TARGET_NEW = lv_I_TARGET_NEW ).

Links to Related Class(s)

AC_FSBP_...
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!