Dear all,
I'm working on a new installed server and I'm facing an issue when I try to activate ENVIRONMENTSHELL through SE38 and program UJS_ACTIVATE_CONTENT. I got the error added at the end of this post.
I already made some searhes and found the following SAP notes :
Unfortunately, actions listed didn't solve the problem in my case.
FYI, all the applications (HANA, NW and BPC) are hosted on a single server operating SUSE and I've previously and succefully activated ENVIRONMENTSHELL when POASBC SP01 to SP05, CPMBPC SP01 to SP03 and HANABPC SP01 to SP03 were not yet installed.
Thank for any help.
Best regards.
----------------------------------------------------------------------------------------------------
Category ABAP Programming Error
Runtime Errors RAISE_EXCEPTION
ABAP Program CL_UJE_BUI_AUTH===============CP
Application Component EPM-BPC-NW-ADM-SEC
Date and Time 22.10.2014 23:53:58
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Short Text |
| Exception condition "BUI_ERROR" triggered |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|What happened? |
| The current ABAP program has encountered an unexpected situation. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|What can you do? |
| Note down which actions and inputs caused the error. |
| |
| |
| To process the problem further, contact you SAP system |
| administrator. |
| |
| Using Transaction ST22 for ABAP Dump Analysis, you can look |
| at and manage termination messages, and you can also |
| keep them for a long time. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Error analysis |
| A RAISE statement in program "SAPLUJE_10_API_SECURITY_MGMT" has raised |
| exception condition "BUI_ERROR". |
| Since the exception was not caught by a program higher up in the call |
| hierarchy, processing was terminated. |
| |
| Short text for exception condition: |
| You can find detailed documentation about the exception condition in |
| transaction SE37 (Function Library). You can find the name of the |
| function module called from the display of active calls. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|How to correct the error |
| If the error occurs in a non-modfied SAP program, you might be able to |
| find a solution in the SAP Notes system. If you have access to the SAP |
| Notes system, check there first using the following keywords: |
| |
| "RAISE_EXCEPTION" |
| "SAPLUJE_10_API_SECURITY_MGMT" bzw. LUJE_10_API_SECURITY_MGMTU04 |
| "UJE_UPDATE_BUI_FOLDER" |
| or |
| |
| "SAPLUJE_10_API_SECURITY_MGMT" BUI_ERROR |
| |
| or |
| |
| "UJS_ACTIVATE_CONTENT" "BUI_ERROR" |
| |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|System environment |
| SAP Release..... 740 |
| SAP Basis level |
| |
| Application server... <APP_SERVER> |
| Network address...... <APP_IP_ADDRESS> |
| Operating system... Linux |
| Release.............. 3.0.101-0.7.17-ec2 |
| Hardware type....... x86_64 |
| Character length..... 16 Bits |
| Pointer length........ 64 Bits |
| Work process number... 7 |
| Shortdump setting. full |
| |
| Database server... <DB_SERVER> |
| Database type..... HDB |
| Database name..... <DB_NAME> |
| Database user ID SAP<DB_NAME> |
| |
| Terminal.......... <TERMINAL> |
| |
| Character set C |
| |
| SAP kernel....... 742 |
| Created on....... Sep 2 2014 15:05:39 |
| Created at....... Linux GNU SLES-11 x86_64 cc4.3.4 use-pr140815 |
| Database version SQLDBC 1.00.72.00.0388670 |
| Patch level....... 17 |
| Patch text....... |
| |
| Database............. HDB 1.0 |
| SAP database version. 742 |
| Operating system... Linux 2.6, Linux 3 |
| |
| Memory consumption |
| Roll.... 0 |
| EM...... 18896384 |
| Heap.... 0 |
| Page.... 65536 |
| MM used. 7487624 |
| MM free. 52360 |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|User and Transaction |
| Client................. 001 |
| User.................. <USER> |
| Language key.......... E |
| Transaction......... SE38 |
| Transaction ID...... 5448DEA300BE3243E1000000AC1F25DA |
| |
| EPP whole context ID...... 12CCA94BFDE31ED496C4340123C3214A |
| EPP connection ID........ 00000000000000000000000000000000 |
| EPP call counter......... 0 |
| |
| Program.............. SAPLUJE_10_API_SECURITY_MGMT |
| Screen.............. SAPMSSY0 1000 |
| Screen line.......... 6 |
| Active debugger..... "none" |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Information on where terminated |
| The termination occurred in ABAP program "SAPLUJE_10_API_SECURITY_MGMT", in |
| "UJE_UPDATE_BUI_FOLDER". The main program |
| was "UJS_ACTIVATE_CONTENT". |
| |
| In the source code, the termination point is in line 170 of (Include) |
| program "LUJE_10_API_SECURITY_MGMTU04". |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Source Code Extract |
----------------------------------------------------------------------------------------------------
|Line |SourceCde |
----------------------------------------------------------------------------------------------------
| 140| ls_prop-prop_type = '/POA/DESCRIPTION'. |
| 141| ls_prop-prop_value = iv_team_desc. |
| 142| ls_prop-langu = iv_langu. |
| 143| append ls_prop to ls_res_in-properties. |
| 144| |
| 145| clear ls_res_out. |
| 146| lo_bui->update( |
| 147| exporting |
| 148| is_resource = ls_res_in |
| 149| importing |
| 150| es_resource = ls_res_out |
| 151| es_payload = ls_payload |
| 152| eo_request = lo_request |
| 153| ). |
| 154| |
| 155| if ls_folder_team is initial. |
| 156| ls_folder_team-appset_id = iv_appset_id. |
| 157| ls_folder_team-team_id = lv_team_id. |
| 158| ls_folder_team-folder_uuid = ls_res_out-uuid. |
| 159| ls_folder_team-acd = ls_res_out-acd. |
| 160| insert uje_fldr_team from ls_folder_team. |
| 161| else. |
| 162| ls_folder_team-folder_uuid = ls_res_out-uuid. |
| 163| ls_folder_team-acd = ls_res_out-acd. |
| 164| update uje_fldr_team set folder_uuid = ls_res_out-uuid acd = ls_res_out-acd |
| 165| where appset_id = iv_appset_id and team_id = lv_team_id. |
| 166| endif. |
| 167| |
| 168| ev_folder_uuid = ls_res_out-uuid. |
| 169| catch /poa/cx_bui_pst_exception. |
|>>>>>| RAISE BUI_ERROR. |
| 171| endtry. |
| 172| endif. |
| 173|ENDFUNCTION. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Contents of system fields |
----------------------------------------------------------------------------------------------------
|Name |Val. |
----------------------------------------------------------------------------------------------------
|SY-SUBRC|0 |
|SY-INDEX|0 |
|SY-TABIX|1 |
|SY-DBCNT|1 |
|SY-FDPOS|0 |
|SY-LSIND|0 |
|SY-PAGNO|0 |
|SY-LINNO|1 |
|SY-COLNO|1 |
|SY-PFKEY| |
|SY-UCOMM| |
|SY-TITLE|BPC: Content Activation |
|SY-MSGTY|E |
|SY-MSGID|CD |
|SY-MSGNO|327 |
|SY-MSGV1| |
|SY-MSGV2| |
|SY-MSGV3| |
|SY-MSGV4| |
|SY-MODNO|0 |
|SY-DATUM|20141022 |
|SY-UZEIT|235358 |
|SY-XPROG|SAPLSCD0 |
|SY-XFORM|NEW-LINE |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Active Calls/Events |
----------------------------------------------------------------------------------------------------
|No. Ty. Program Include Line |
| Name |
----------------------------------------------------------------------------------------------------
| 13 FUNCTION SAPLUJE_10_API_SECURITY_MGMT LUJE_10_API_SECURITY_MGMTU04 170 |
| UJE_UPDATE_BUI_FOLDER |
| 12 METHOD CL_UJE_BUI_AUTH===============CP CL_UJE_BUI_AUTH===============CM00M 3 |
| CL_UJE_BUI_AUTH=>UPDATE_FOLDER |
| 11 METHOD CL_UJE_TEAM_DAO===============CP CL_UJE_TEAM_DAO===============CM00O 122 |
| CL_UJE_TEAM_DAO=>UPDATE_TEAMS_NEW |
| 10 METHOD CL_UJE_TEAM_DAO===============CP CL_UJE_TEAM_DAO===============CM00D 4 |
| CL_UJE_TEAM_DAO=>UPDATE_TEAMS |
| 9 METHOD CL_UJE_USER_MGR===============CP CL_UJE_USER_MGR===============CM00C 105 |
| CL_UJE_USER_MGR=>CREATE_DEF_DATA |
| 8 METHOD CL_UJA_ENTITY_AAPS============CP CL_UJA_ENTITY_AAPS============CM007 179 |
| CL_UJA_ENTITY_AAPS=>IF_UJT_ENTITY~IMPORT |
| 7 METHOD CL_UJT_IMPORTER===============CP CL_UJT_IMPORTER===============CM005 10 |
| CL_UJT_IMPORTER=>_IMPORT_ENTITY |
| 6 METHOD CL_UJT_TRANSPORT_IMPORTER=====CP CL_UJT_TRANSPORT_IMPORTER=====CM003 2 |
| CL_UJT_TRANSPORT_IMPORTER=>IMPORT_ENTITY |
| 5 METHOD CL_UJT_IMPORTER===============CP CL_UJT_IMPORTER===============CM001 184 |
| CL_UJT_IMPORTER=>IMPORT_EXECUTION |
| 4 METHOD CL_UJT_TRANS_MGR==============CP CL_UJT_TRANS_MGR==============CM003 113 |
| CL_UJT_TRANS_MGR=>AFTER_IMPORT_EXECUTION |
| 3 METHOD CL_UJS_CONTENT_ACTIVATE_MGR===CP CL_UJS_CONTENT_ACTIVATE_MGR===CM00A 11 |
| CL_UJS_CONTENT_ACTIVATE_MGR=>DO_AFTER_IMPORT |
| 2 METHOD CL_UJS_CONTENT_ACTIVATE_MGR===CP CL_UJS_CONTENT_ACTIVATE_MGR===CM007 111 |
| CL_UJS_CONTENT_ACTIVATE_MGR=>START_ACTIVATION |
| 1 EVENT UJS_ACTIVATE_CONTENT UJS_ACTIVATE_CONTENT 174 |
| END-OF-SELECTION |
----------------------------------------------------------------------------------------------------