on ‎2020 May 06 2:46 PM
Hi all you smart people
If I have a user parameter, from Customer Activity Repository: /posdw/analysis_flag, with the value of S.
Is there a place where I can view what the parameter does, and what other values it could have?
So that I can evaluate the consequences of adding it to users.
Hope you can help
Request clarification before answering.
I checked on a CAR system that is currently SAP CARAB 4.0 FPS01 (04/2019):
To find what I was looking for, I did an ABAP Search Scan (Report RS_ABAP_SOURCE_SCAN) in SAP Logon of SAP CAR with search string /posdw/analysis_flag and limited to packages that start with /POSDW/*.
Based on my analysis, I assume, that this is for transaction data that comes from POS with a status, and with that parameter, you have the option to change the status of the POS transaction in CAR, because you, being a super user, know what you are doing. Otherwise the status of the POS transaction can not be changed manually.
Possible values for the parameter /posdw/analysis_flag:
The flag and authorization object are checked for "Change Task Status of Transaction" in the following codings:
Parameter is read in Class /POSDW/CL_DEBUG_INFO in Method GET_ANALYSIS_MODE:
method get_analysis_mode.
if analysis is initial.
get parameter id '/POSDW/ANALYSIS_FLAG'
field analysis.
case analysis.
when 'X' or 'D'.
analysis = c_mode_diag.
when 'S'.
authority-check object 'W_POS_SUSR'
id 'ACTVT' field '02'.
if sy-subrc eq 0.
analysis = c_mode_super.
else.
analysis = c_mode_diag.
endif.
when others.
analysis = c_mode_normal.
endcase.
endif.
r_analysis = analysis.
endmethod.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
jesperw, please follow up on your open question.
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.