SET_REL_PROFILE_AND_AS_DATA SAP Method change release profiles and assignments









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

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


Parameters of Method SET_REL_PROFILE_AND_AS_DATA

.

NameTypeData TypeDescriptionDefault Value
FRE_BIF_PROPOFASChangingTYPE
FRE_BIF_PROPRLA_TTY
assignment of release profile
FRE_BIF_PROPRLChangingTYPE
FRE_BIF_PROPRL_TTY
release profile
FRE_BIF_PROPRLIChangingTYPE
FRE_BIF_PROPRLI_TTY
release profile detail
FRE_BIF_PROPRLTChangingTYPE
FRE_BIF_PROPRLT_TTY
release profile description



Exceptions of Method SET_REL_PROFILE_AND_AS_DATA

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_SET_RELEASE_PROFILE.
DATA: lv_FRE_BIF_PROPOFAS TYPE FRE_BIF_PROPRLA_TTY,
lv_FRE_BIF_PROPRL TYPE FRE_BIF_PROPRL_TTY,
lv_FRE_BIF_PROPRLI TYPE FRE_BIF_PROPRLI_TTY,
lv_FRE_BIF_PROPRLT TYPE FRE_BIF_PROPRLT_TTY,
lv_other TYPE c.

CALL METHOD lo_class=>SET_REL_PROFILE_AND_AS_DATA(
CHANGING
FRE_BIF_PROPOFAS = lv_FRE_BIF_PROPOFAS
FRE_BIF_PROPRL = lv_FRE_BIF_PROPRL
FRE_BIF_PROPRLI = lv_FRE_BIF_PROPRLI
FRE_BIF_PROPRLT = lv_FRE_BIF_PROPRLT ).

Links to Related Class(s)

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