HIDDEN_ATTR_GROUPS SAP Method Define which BP Attribute Groups are visible / hidden









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

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


Parameters of Method HIDDEN_ATTR_GROUPS

.

NameTypeData TypeDescriptionDefault Value
EV_COMP_CUSExportingTYPE
XFELD
Show hidden company code customer attributes
EV_COMP_VENExportingTYPE
XFELD
Show hidden company code supplier attributes
EV_GENACC_CUSExportingTYPE
XFELD
Show hidden general accounting customer attributes
EV_GENACC_VENExportingTYPE
XFELD
Show hidden general accounting supplier attributes
EV_GENGENCUSExportingTYPE
XFELD
Show hidden general data customer attributes
EV_GENGENVENExportingTYPE
XFELD
Show hidden general data supplier attributes
EV_GENPAY_VENExportingTYPE
XFELD
Show hidden general payment supplier attributes
EV_GENTAX_CUSExportingTYPE
XFELD
Show hidden general tax customer attributes
EV_GENTAX_VENExportingTYPE
XFELD
Show hidden general tax supplier attributes
EV_GENTRP_VENExportingTYPE
XFELD
Show hidden general shipping supplier attributes
EV_HIDE_90ExportingTYPE
XFELD
Hide fields from 9.0 on
EV_ORGCOM_VENExportingTYPE
XFELD
Show hidden org communication supplier attributes
EV_ORGGEN_CUSExportingTYPE
XFELD
Show hidden org general customer attributes
EV_ORGGEN_CUS81ExportingTYPE
XFELD
Show in TM 8.0 hidden org general customer attributes
EV_ORGGEN_VENExportingTYPE
XFELD
Show hidden org general supplier attributes
EV_ORGGEN_VEN81ExportingTYPE
XFELD
Show in TM 8.0 hidden org general customer attributes
EV_ORGPAY_CUSExportingTYPE
XFELD
Show hidden org payment customer attributes
EV_ORGPAY_VENExportingTYPE
XFELD
Show hidden org payment supplier attributes
EV_ORGTRP_CUSExportingTYPE
XFELD
Show hidden org shipping customer attributes
EV_ORGTRP_VENExportingTYPE
XFELD
Show hidden org shipping supplier attributes
EV_PARTFNC_CUSExportingTYPE
XFELD
Show hidden partner functions customer attributes
EV_PARTFNC_VENExportingTYPE
XFELD
Show hidden partner functions supplier attributes
EV_REGIONS_VENExportingTYPE
XFELD
Show hidden supplied regions supplier attributes



Exceptions of Method HIDDEN_ATTR_GROUPS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMB/IF_BPTMUI_HIDDEN_ATTR.
DATA: lv_EV_COMP_CUS TYPE XFELD,
lv_EV_COMP_VEN TYPE XFELD,
lv_EV_GENACC_CUS TYPE XFELD,
lv_EV_GENACC_VEN TYPE XFELD,
lv_EV_GENGENCUS TYPE XFELD,
lv_EV_GENGENVEN TYPE XFELD,
lv_EV_GENPAY_VEN TYPE XFELD,
lv_EV_GENTAX_CUS TYPE XFELD,
lv_EV_GENTAX_VEN TYPE XFELD,
lv_EV_GENTRP_VEN TYPE XFELD,
lv_EV_HIDE_90 TYPE XFELD,
lv_EV_ORGCOM_VEN TYPE XFELD,
lv_EV_ORGGEN_CUS TYPE XFELD,
lv_EV_ORGGEN_CUS81 TYPE XFELD,
lv_EV_ORGGEN_VEN TYPE XFELD,
lv_EV_ORGGEN_VEN81 TYPE XFELD,
lv_EV_ORGPAY_CUS TYPE XFELD,
lv_EV_ORGPAY_VEN TYPE XFELD,
lv_EV_ORGTRP_CUS TYPE XFELD,
lv_EV_ORGTRP_VEN TYPE XFELD,
lv_EV_PARTFNC_CUS TYPE XFELD,
lv_EV_PARTFNC_VEN TYPE XFELD,
lv_EV_REGIONS_VEN TYPE XFELD,
lv_other TYPE c.

CALL METHOD lo_class=>HIDDEN_ATTR_GROUPS(
IMPORTING
EV_COMP_CUS = lv_EV_COMP_CUS
EV_COMP_VEN = lv_EV_COMP_VEN
EV_GENACC_CUS = lv_EV_GENACC_CUS
EV_GENACC_VEN = lv_EV_GENACC_VEN
EV_GENGENCUS = lv_EV_GENGENCUS
EV_GENGENVEN = lv_EV_GENGENVEN
EV_GENPAY_VEN = lv_EV_GENPAY_VEN
EV_GENTAX_CUS = lv_EV_GENTAX_CUS
EV_GENTAX_VEN = lv_EV_GENTAX_VEN
EV_GENTRP_VEN = lv_EV_GENTRP_VEN
EV_HIDE_90 = lv_EV_HIDE_90
EV_ORGCOM_VEN = lv_EV_ORGCOM_VEN
EV_ORGGEN_CUS = lv_EV_ORGGEN_CUS
EV_ORGGEN_CUS81 = lv_EV_ORGGEN_CUS81
EV_ORGGEN_VEN = lv_EV_ORGGEN_VEN
EV_ORGGEN_VEN81 = lv_EV_ORGGEN_VEN81
EV_ORGPAY_CUS = lv_EV_ORGPAY_CUS
EV_ORGPAY_VEN = lv_EV_ORGPAY_VEN
EV_ORGTRP_CUS = lv_EV_ORGTRP_CUS
EV_ORGTRP_VEN = lv_EV_ORGTRP_VEN
EV_PARTFNC_CUS = lv_EV_PARTFNC_CUS
EV_PARTFNC_VEN = lv_EV_PARTFNC_VEN
EV_REGIONS_VEN = lv_EV_REGIONS_VEN ).

Links to Related Class(s)

/SCMB/IF...
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!