GET_ASSIGNED_VENDORS_FOR_BPS SAP Method Supplies Vendors Already Assigned to Business Partners
Below is documentation, parameters and attributes of ABAP Method GET_ASSIGNED_VENDORS_FOR_BPS 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 GET_ASSIGNED_VENDORS_FOR_BPS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_ASSIGNED_VENDORS_FOR_BPS
.| Name | Type | Data Type | Description | Default Value |
| I_PARTNER_GUIDS | Importing | TYPE BU_PARTNER_GUID_T | Table Category for BU_PARTNER_GUID Category | |
| I_PARTNER_IDS | Importing | TYPE BU_PARTNER_T | Table Category for Category BU_PARTNER | |
| R_VENDORS | Returning | TYPE CVIS_VEND_LINK_T | Connection Between Vendor and Business Partner |
Exceptions of Method GET_ASSIGNED_VENDORS_FOR_BPS
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CVI_MAPPER.
DATA: lv_I_PARTNER_GUIDS TYPE BU_PARTNER_GUID_T,
lv_I_PARTNER_IDS TYPE BU_PARTNER_T,
lv_R_VENDORS TYPE CVIS_VEND_LINK_T,
lv_other TYPE c.
CALL METHOD lo_class=>GET_ASSIGNED_VENDORS_FOR_BPS(
EXPORTING
I_PARTNER_GUIDS = lv_I_PARTNER_GUIDS
I_PARTNER_IDS = lv_I_PARTNER_IDS
RECEIVING
R_VENDORS = lv_R_VENDORS )
"Alternate coding for Method Call with returning parameter
lv_R_VENDORS = lo_class=>GET_ASSIGNED_VENDORS_FOR_BPS(
EXPORTING
I_PARTNER_GUIDS = lv_I_PARTNER_GUIDS
I_PARTNER_IDS = lv_I_PARTNER_IDS ).
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