cancel
Showing results for 
Search instead for 
Did you mean: 

GRC10 SP9 NWBC menus empty

Former Member
0 Kudos

Dear all,

we've just set up a new GRC AC10 System at patch level SP9. SAP_BASIS, ABA, BW and PI_BASIS are all version 7.02 SP11.

After the initial Post-Installation and role/profile generation we do not see any menu items in NWBC.

The user has the following roles assigned:

SAP_GRC_FN_ALL

SAP_GRC_FN_BASE

SAP_GRC_NWBC

SAP_GRAC_SETUP

SAP_GRAC_ALL

SAP_GRAC_NWBC

SAP_GRAC_BASE

We also already implemented SAP NOTE 1681453 on our system but that didn't help so far.

However when we go to transaction LPD_CUST the role GRCACCMGMT does contain several folders but all of these folders just have a subfolder called "Inactive Application" but no other entries. I suppose that there should be all the WebDynpro ABAP applications from AC10 linked.

Is there any way to fix that? (Probably a Business Set or something like that?)

Thanks in advance.

Best regards

Andreas Dietrich

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Andreas,

Kindly apply below SAP Notes to resolve the issue:

1708513 - NWBC issue after upgrading to NW 7.02 SP11

1681453 - LPD: Einträge auf Repositories werden nicht angezeigt

Best regards,

Smriti

Former Member
0 Kudos

Hi,

thanks for the quick reply, but we've already implemented SAP Note "1681453 - LPD: Einträge auf Repositories werden nicht angezeigt" and we're still facing the same problem.

SAP Note "1708513 - NWBC issue after upgrading to NW 7.02 SP11" seems just to be a reference to 1681453.

Any other suggestions?

Best regards,

Andreas Dietrich

Former Member
0 Kudos

Hi Andreas,

Please check whether this note is correctly implemented or not?

Since most of the customers who were facing the above issue resolved it after applying this note.

Best Regards,

Smriti

Former Member
0 Kudos

Hi,

for me the SAP Note seems to be implemented correctly.

The Shared memory components are deleted and the XSLT Program "APB_LPD_XML_TO_TABLE" currently looks like this:

...

<xsl:template match="lpd:Folder">

     <xsl:if test="./lpd:APPLICATION_TYPE = 'FOL' or ./lpd:APPLICATION_TYPE = 'FOLI'">

       <sap:call-external method="XSLT_ADD_FOL" name="ir_service">

         <sap:callvalue param="id_application_id" select="string(@ID)"/>

         <sap:callvalue param="id_parent" select="string(../../@ID)"/>

         <sap:callvalue param="id_application_type" select="string(./lpd:APPLICATION_TYPE)"/>

         <sap:callvalue param="id_obligatory" select="string(./lpd:OBLIGATORY)"/>

         <sap:callvalue param="id_link_text_ref" select="string(./lpd:LINK_TEXT/@text_ref)"/>

         <sap:callvalue param="id_longtext_ref" select="string(./lpd:LONGTEXT/@text_ref)"/>

         <sap:callvalue param="id_icon_path" select="string(./lpd:ICON_PATH)"/>

         <sap:callvalue param="id_folder_type" select="string(@type)"/>

         <sap:callvalue param="id_application_alias" select="string(./lpd:APPLICATION_ALIAS)"/>

         <sap:callvalue param="id_invisible" select="string(@invisible)"/>

         <sap:callvalue param="id_disabled" select="string(@disabled)"/>

         <sap:callvalue param="id_emphasized" select="string(@emphasized)"/>

         <sap:callvalue param="id_navigation_mode" select="string(./lpd:NAVIGATION_MODE)"/>

         <sap:callvalue param="id_window_features" select="string(./lpd:WINDOW_FEATURES)"/>

         <sap:callvalue param="id_parameter_forwarding" select="string(./lpd:PARAMETER_FORWARDING)"/>

         <sap:callvalue param="id_history_mode" select="string(./lpd:HISTORY_MODE)"/>

         <sap:callvalue param="id_proxy_class" select="string(./lpd:PROXY_CLASS)"/>

         <sap:callvalue param="id_additional_information" select="string(./lpd:ADDITIONAL_INFORMATION)"/>

         <sap:callvalue param="id_switch_id" select="string(./lpd:SWITCH_ID)"/>

         <sap:callvalue param="id_replace_appl_id" select="string(./lpd:REPLACE_APPL_ID)"/>

       </sap:call-external>

     </xsl:if>

     <xsl:apply-templates/>

   </xsl:template>

...

<xsl:when test="./lpd:APPLICATION_TYPE = 'TRA'">

             <sap:call-external method="XSLT_ADD_TRA" name="ir_service">

               <sap:callvalue param="id_application_id" select="string(@ID)"/>

               <sap:callvalue param="id_parent" select="string(../../@ID)"/>

               <sap:callvalue param="id_tcode" select="string(./lpd:TCODE)"/>

               <sap:callvalue param="id_sel_opt" select="string(./lpd:SEL_OPT)"/>

               <sap:callvalue param="id_pers_dialog" select="string(./lpd:PERS_DIALOG)"/>

               <sap:callvalue param="id_variant" select="string(./lpd:VARIANT)"/>

               <sap:callvalue param="id_fix_variant" select="string(./lpd:FIX_VARIANT)"/>

               <sap:callvalue param="id_system_alias" select="string(./lpd:SYSTEM_ALIAS)"/>

               <sap:callvalue param="id_parameter_string" select="string(PARAMETER_STRING)"/>

               <sap:callvalue param="id_gui_type" select="string(./lpd:GUI_TYPE)"/>

               <sap:callvalue param="id_application_type" select="string(./lpd:APPLICATION_TYPE)"/>

               <sap:callvalue param="id_obligatory" select="string(./lpd:OBLIGATORY)"/>

               <sap:callvalue param="id_link_text_ref" select="string(./lpd:LINK_TEXT/@text_ref)"/>

               <sap:callvalue param="id_longtext_ref" select="string(./lpd:LONGTEXT/@text_ref)"/>

               <sap:callvalue param="id_icon_path" select="string(./lpd:ICON_PATH)"/>

               <sap:callvalue param="id_application_alias" select="string(./lpd:APPLICATION_ALIAS)"/>

               <sap:callvalue param="id_invisible" select="string(@invisible)"/>

               <sap:callvalue param="id_disabled" select="string(@disabled)"/>

               <sap:callvalue param="id_emphasized" select="string(@emphasized)"/>

               <sap:callvalue param="id_navigation_mode" select="string(./lpd:NAVIGATION_MODE)"/>

               <sap:callvalue param="id_window_features" select="string(./lpd:WINDOW_FEATURES)"/>

               <sap:callvalue param="id_parameter_forwarding" select="string(./lpd:PARAMETER_FORWARDING)"/>

               <sap:callvalue param="id_history_mode" select="string(./lpd:HISTORY_MODE)"/>

               <sap:callvalue param="id_proxy_class" select="string(./lpd:PROXY_CLASS)"/>

               <sap:callvalue param="id_additional_information" select="string(./lpd:ADDITIONAL_INFORMATION)"/>

               <sap:callvalue param="id_switch_id" select="string(./lpd:SWITCH_ID)"/>

               <sap:callvalue param="id_replace_appl_id" select="string(./lpd:REPLACE_APPL_ID)"/>

               <sap:callvalue param="id_DISMODE" select="string(./lpd:DISMODE)"/>

               <sap:callvalue param="id_UPDMODE" select="string(./lpd:UPDMODE)"/>

               <sap:callvalue param="id_CATTMODE" select="string(./lpd:CATTMODE)"/>

               <sap:callvalue param="id_DEFSIZE" select="string(./lpd:DEFSIZE)"/>

               <sap:callvalue param="id_RACOMMIT" select="string(./lpd:RACOMMIT)"/>

               <sap:callvalue param="id_NOBINPT" select="string(./lpd:NOBINPT)"/>

               <sap:callvalue param="id_NOBIEND" select="string(./lpd:NOBIEND)"/>

             </sap:call-external>

....

Best regards,

Andreas

Former Member
0 Kudos

Okay after checking the implementation of the SAP Note again we finally got our mistake... the modified XSLT program has not been activated. After activiating everything works fine!

Thanks for the support!

Answers (2)

Answers (2)

neerajmanocha
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi Andreas,

It seems to be an issue with your LPD_CUST roles. Ideally roles should have all the active folders and their links. In your case, these are empty and having only one entry which is inactive application.

You can create or copy these roles from your other system where you have these roles working/active with all the required folders.

This should resolve your issue.

Thanks & Regards

Neeraj

matthias_hettler
Explorer
0 Kudos

note 1604326 !?