GET_FFF_PARTS_IN_SETS SAP Method Finds all interchangeable parts in sets









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

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


Parameters of Method GET_FFF_PARTS_IN_SETS

.

NameTypeData TypeDescriptionDefault Value
IR_APPL_LOGImportingTYPE REF TO
CL_CCM_APPLICATION_LOG
IT_PART_AT_NODEImportingTYPE
TAB_MPL_PART_AT_NODE
Table of Materials at PVS Nodes
IT_PART_NOT_FOUNDImportingTYPE
TAB_MPL_PNGUID
Table of iPPE Nodes
IT_VALID_PARTS_SETImportingTYPE
TAB_MPL_MATERIALS_FOR_NODE
Table of Material Details for a Given PVS Node
LEVELImportingTYPE
BALLEVEL
Application Log: Level of Detail
MATNRImportingTYPE
MATNR
Material Number
OBJID_EXTImportingTYPE
BALPVAL
Application Log: Parameter Value
PNGUIDImportingTYPE
PVS_GUID
PNTEXTImportingTYPE
PPET_PNODID_EXT
PROBCLASSImportingTYPE
BALPROBCL
Application Log: Message Problem Class
SETGUIDImportingTYPE
PVS_PNGUID
ERROR_FLAGChangingTYPE
XFELD
Checkbox



Exceptions of Method GET_FFF_PARTS_IN_SETS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_CCM_INTERNAL.
DATA: lv_ERROR_FLAG TYPE XFELD,
lv_IR_APPL_LOG TYPE CL_CCM_APPLICATION_LOG,
lv_IT_PART_AT_NODE TYPE TAB_MPL_PART_AT_NODE,
lv_IT_PART_NOT_FOUND TYPE TAB_MPL_PNGUID,
lv_IT_VALID_PARTS_SET TYPE TAB_MPL_MATERIALS_FOR_NODE,
lv_LEVEL TYPE BALLEVEL,
lv_MATNR TYPE MATNR,
lv_OBJID_EXT TYPE BALPVAL,
lv_PNGUID TYPE PVS_GUID,
lv_PNTEXT TYPE PPET_PNODID_EXT,
lv_PROBCLASS TYPE BALPROBCL,
lv_SETGUID TYPE PVS_PNGUID,
lv_other TYPE c.

CALL METHOD lo_class=>GET_FFF_PARTS_IN_SETS(
EXPORTING
IR_APPL_LOG = lv_IR_APPL_LOG
IT_PART_AT_NODE = lv_IT_PART_AT_NODE
IT_PART_NOT_FOUND = lv_IT_PART_NOT_FOUND
IT_VALID_PARTS_SET = lv_IT_VALID_PARTS_SET
LEVEL = lv_LEVEL
MATNR = lv_MATNR
OBJID_EXT = lv_OBJID_EXT
PNGUID = lv_PNGUID
PNTEXT = lv_PNTEXT
PROBCLASS = lv_PROBCLASS
SETGUID = lv_SETGUID
CHANGING
ERROR_FLAG = lv_ERROR_FLAG ).

Links to Related Class(s)

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