cancel
Showing results for 
Search instead for 
Did you mean: 

Sidepanel BSSP_NOTES and other BSSP* is empty

manuel_horn3
Explorer
0 Kudos

Hi Experts,

I am currently testing the sidepanel with standard role SAP_EP_RW_FDMN. I am able to open the Sidepanel in NWBC. But all Siedpanel applications are empty. Even notes or attachments application is not usable. It is displayed but all buttons are inactive. And the master data application does not show any information. The WebServices are not working, too. It seems that no data is transported to the sidepanel applications. What could be missing?

I did not change the tagging.

It's really frustrating.... I hope you can help me.

Best regards

Manuel

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member204264
Participant
0 Kudos

Hi Manuel,

I have the same problem that you describe in this thread. Did you resolve it? I'm thinking to create my custom Side Panel to do the same functionality that BSSP_NOTES CHIP offers.

Regards.

Luis.

former_member204264
Participant
0 Kudos

Hi,

I've got standard side Panel BSSP_NOTES is active and it displays data. In my case, I've used a POWL embedded in a custom web dynpro as described in next post:

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60f1d5ee-84ab-2c10-ce97-97dfd89bc....


Retrieving the selected row from POWL into Web Dynpro's Context like following document describes:



The context contains the tags defined to inbound parameters (in my example, POWL is related with Purchase Orders):




In method WDDOINIT in Web Dynpro View, I set the tag from Host Web Dynpro's context for wiring the side panel:


DATA lo_tagging_service TYPE REF TO if_wd_tagging_service.

DATA: lo_nd_tags TYPE REF TO if_wd_context_node.


  lo_tagging_service->set_tag_by_path_context(

      EXPORTING

        context_path      = 'TAGS.EBELN'

        wd_context        = lo_nd_tags

        tag               = '/BSSP/:EBELN'

        scope             = '00' ).

     lo_tagging_service->set_tag_by_path_context(

      EXPORTING

        context_path      = 'TAGS.BANFN'

        wd_context        = lo_nd_tags

        tag               = '/BSSP/:BANFN'

        scope             = '00' ).

     lo_tagging_service->set_tag_by_path_context(

      EXPORTING

        context_path      = 'TAGS.BORTYPE'

        wd_context        = lo_nd_tags

        tag               = '/BSSP/:BORTYPE'

        scope             = '00' ).



Regards.


Luis.

kmoore007
Active Contributor
0 Kudos

Thanks, Luis!  This helped me alot!