CALCULATE_HASH SAP Method Claculate the hash value for the sequencing context
Below is documentation, parameters and attributes of ABAP Method CALCULATE_HASH within SAP class CL_BS_SOA_INAPPSEQ. 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_BS_SOA_INAPPSEQ 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 CALCULATE_HASH can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CALCULATE_HASH
.| Name | Type | Data Type | Description | Default Value |
| IV_SEQUENCING_CONTEXT | Importing | TYPE BS_SOA_INAPPSEQ_CNTXT | Sequencing Context for Checks on Application level | |
| RV_CONTEXT_HASH | Returning | TYPE BS_SOA_INAPPSEQ_CNTXT_HASH | Sequencing Context for Checks on App. level - Hashed Value |
Exceptions of Method CALCULATE_HASH
CX_BS_SOA_EXCEPTION - Error message occurredExample ABAP coding
DATA: lv_IV_SEQUENCING_CONTEXT TYPE BS_SOA_INAPPSEQ_CNTXT,
lv_RV_CONTEXT_HASH TYPE BS_SOA_INAPPSEQ_CNTXT_HASH,
lv_other TYPE c.
CALL METHOD CL_BS_SOA_INAPPSEQ=>CALCULATE_HASH(
EXPORTING
IV_SEQUENCING_CONTEXT = lv_IV_SEQUENCING_CONTEXT
RECEIVING
RV_CONTEXT_HASH = lv_RV_CONTEXT_HASH )
"Alternate coding for Method Call with returning parameter
lv_RV_CONTEXT_HASH = CL_BS_SOA_INAPPSEQ=>CALCULATE_HASH(
EXPORTING
IV_SEQUENCING_CONTEXT = lv_IV_SEQUENCING_CONTEXT ).
Links to Related Class(s)
CL_BS_SO...Full list of available SAP object classes
Search for further information about these or an SAP related objects