GET_COOKIE_LOGON SAP Method Reads Cookie with Logon Data
Below is documentation, parameters and attributes of ABAP Method GET_COOKIE_LOGON within SAP class CL_BSP_BROK_SERVICE_DATA. 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 CL_BSP_BROK_SERVICE_DATA into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method GET_COOKIE_LOGON can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_COOKIE_LOGON
.| Name | Type | Data Type | Description | Default Value |
| ES_CASHDESK | Exporting | TYPE SITAGCYCDM | Cash Desk Data Structure | |
| ES_ORGUNIT | Exporting | TYPE SITAGCYORG | Organizational Unit Data | |
| ES_USERDATA | Exporting | TYPE SITAGCYUSERDATA | User Data Structure | |
| ET_USER_ORGUNITS | Exporting | TYPE OBJEC_T | Org. Management: Table of Object Entries |
Exceptions of Method GET_COOKIE_LOGON
This method does not have any exceptionsExample ABAP coding
DATA: lv_ES_CASHDESK TYPE SITAGCYCDM,
lv_ES_ORGUNIT TYPE SITAGCYORG,
lv_ES_USERDATA TYPE SITAGCYUSERDATA,
lv_ET_USER_ORGUNITS TYPE OBJEC_T,
lv_other TYPE c.
CALL METHOD CL_BSP_BROK_SERVICE_DATA=>GET_COOKIE_LOGON(
IMPORTING
ES_CASHDESK = lv_ES_CASHDESK
ES_ORGUNIT = lv_ES_ORGUNIT
ES_USERDATA = lv_ES_USERDATA
ET_USER_ORGUNITS = lv_ET_USER_ORGUNITS ).
Links to Related Class(s)
CL_BSP_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects