SAP Classes

Share |

SET_BYEXP SAP Method - Set the by expression


SET_BYEXP is a standard SAP ABAP method of class RS_BCT_PBPC_ADD_DATA_SVC available within R/3 SAP systems depending on your version and release level. Below is the standard documentation available for it. You can view this information and more if you enter the class name RS_BCT_PBPC_ADD_DATA_SVC into the relevant SAP transaction such as SE24 or SE80 and then select the method SET_BYEXP

Contribute(Add Comment)
See the comments section below for any useful hints, tips and information specific to this SAP Method. Also please feel free to add any further details you feel would be useful or ask any questions you may have. You can then easily find this info again simply by searching on the method name SET_BYEXP or its description.


Class Name: RS_BCT_PBPC_ADD_DATA_SVC

Method Name: SET_BYEXP

Method Type: Instance Method
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.

Importing Parameters:
   IT_BYEXP " TYPE T_BYEXP

Exceptions:


Example ABAP coding

DATA:
   ld_IT_BYEXP TYPE T_BYEXP.

" ld_IT_BYEXP = "<Populate with value>

DATA: lo_SVC TYPE REF TO RS_BCT_PBPC_ADD_DATA_SVC .
CALL METHOD lo_SVC->SET_BYEXP(
EXPORTING
   IT_BYEXP = ld_IT_BYEXP ).


comments powered by Disqus