GET_PAIRS_VB_ORDR SAP Method Getting partner pairs from the Visibility Buffer for ORDR
Below is documentation, parameters and attributes of ABAP Method GET_PAIRS_VB_ORDR within SAP class /SCMB/CL_DM_SOH_VISBUF. 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 /SCMB/CL_DM_SOH_VISBUF into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method GET_PAIRS_VB_ORDR can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_PAIRS_VB_ORDR
.| Name | Type | Data Type | Description | Default Value |
| IT_PRTFR_GUID | Importing | TYPE /SCMB/MDL_PRTID_TAB | Business Partner ID Table | |
| IT_PRTFR_RNG | Importing | TYPE /SCMB/MDE_PRTNO_RTAB | Partner: Number Range Table | |
| IT_PRTTO_GUID | Importing | TYPE /SCMB/MDL_PRTID_TAB | Business Partner ID Table | |
| IT_PRTTO_RNG | Importing | TYPE /SCMB/MDE_PRTNO_RTAB | Partner: Number Range Table | |
| ET_PRTPAIR | Exporting | TYPE GTTY_PRT_PAIR |
Exceptions of Method GET_PAIRS_VB_ORDR
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_PRTPAIR TYPE GTTY_PRT_PAIR,
lv_IT_PRTFR_GUID TYPE /SCMB/MDL_PRTID_TAB,
lv_IT_PRTFR_RNG TYPE /SCMB/MDE_PRTNO_RTAB,
lv_IT_PRTTO_GUID TYPE /SCMB/MDL_PRTID_TAB,
lv_IT_PRTTO_RNG TYPE /SCMB/MDE_PRTNO_RTAB,
lv_other TYPE c.
CALL METHOD /SCMB/CL_DM_SOH_VISBUF=>GET_PAIRS_VB_ORDR(
EXPORTING
IT_PRTFR_GUID = lv_IT_PRTFR_GUID
IT_PRTFR_RNG = lv_IT_PRTFR_RNG
IT_PRTTO_GUID = lv_IT_PRTTO_GUID
IT_PRTTO_RNG = lv_IT_PRTTO_RNG
IMPORTING
ET_PRTPAIR = lv_ET_PRTPAIR ).
Links to Related Class(s)
/SCMB/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects