SAP Classes

Share |

FREE SAP Method - Give back the memory


FREE 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 FREE

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 FREE or its description.


Class Name: RS_BCT_PBPC_ADD_DATA_SVC

Method Name: FREE

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.


Exceptions:


Example ABAP coding

DATA: lo_SVC TYPE REF TO RS_BCT_PBPC_ADD_DATA_SVC .
CALL METHOD lo_SVC->FREE( ).


comments powered by Disqus