UNDO_ASSIGNMENTS SAP Method Revises Creation of Assignment for Each Object Pair









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

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


Parameters of Method UNDO_ASSIGNMENTS

.

NameTypeData TypeDescriptionDefault Value
I_FOR_CUSTOMERSImportingTYPE
CVIS_CUSTOMER_T
Customers
I_FOR_PARTNERSImportingTYPE
BU_PARTNER_GUID_T
Table Category for BU_PARTNER_GUID Category
I_FOR_VENDORSImportingTYPE
CVIS_VENDOR_T
Vendors
R_MESSAGESReturningTYPE
CVIS_ERROR
Error Indicator Plus System Messages



Exceptions of Method UNDO_ASSIGNMENTS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO CVI_MAPPER.
DATA: lv_I_FOR_CUSTOMERS TYPE CVIS_CUSTOMER_T,
lv_I_FOR_PARTNERS TYPE BU_PARTNER_GUID_T,
lv_I_FOR_VENDORS TYPE CVIS_VENDOR_T,
lv_R_MESSAGES TYPE CVIS_ERROR,
lv_other TYPE c.

CALL METHOD lo_class=>UNDO_ASSIGNMENTS(
EXPORTING
I_FOR_CUSTOMERS = lv_I_FOR_CUSTOMERS
I_FOR_PARTNERS = lv_I_FOR_PARTNERS
I_FOR_VENDORS = lv_I_FOR_VENDORS
RECEIVING
R_MESSAGES = lv_R_MESSAGES )



"Alternate coding for Method Call with returning parameter
lv_R_MESSAGES = lo_class=>UNDO_ASSIGNMENTS(
EXPORTING
I_FOR_CUSTOMERS = lv_I_FOR_CUSTOMERS
I_FOR_PARTNERS = lv_I_FOR_PARTNERS
I_FOR_VENDORS = lv_I_FOR_VENDORS ).

Links to Related Class(s)

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