cancel
Showing results for 
Search instead for 
Did you mean: 

Look and feel in my WDA

Former Member
0 Kudos

Hi,

I've a Iview type WDA, but that Iview didn't shows my portal-theme.

I've created a folder in /SAP/PUBLIC/BC/UR/NW5/THEMES/my_theme and I've uploaded it with BSP_UPDATE_MIMEREPOS.

I've created a WDA with the next code in the Handler Inboud Plug (also I've created a OutBound Plug with a parameter URL type String):

  DATA run TYPE string.
  DATA: lr_ref TYPE REF TO cl_wd_utilities, lv_url TYPE string.
*Only if this is the first call
  IF run IS INITIAL.
*Construct URL
    CREATE OBJECT lr_ref.
    CALL METHOD cl_wd_utilities=>construct_wd_url
      EXPORTING
        application_name = 'my_application'
      IMPORTING
        out_absolute_url = lv_url.

    CONCATENATE lv_url '?sap-cssurl=/SAP/PUBLIC/BC/UR/NW5/THEMES/my_theme' '&run=X' INTO lv_url.
    wd_this->fire_salida_plg( url = lv_url ).
  ENDIF.

But When I run this application, and that application open my_application, this don´t show my_theme.

Can somebody help me for my_application show my_theme?

Thanks.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

I have not much worked with themes but still I was told that the themes need to be in the default folder themes and no other folder.

Can you just try saving your theme into themes folder.

Secondly you can try assiging that theme to your user id and the whole portal should open up according to that theme.

Please update the thread accordingly.

Regards

Atul Shrivastava