Quantcast
Channel: SCN : All Content - Web Dynpro Java
Viewing all articles
Browse latest Browse all 1288

User Notification Message on Portal using Web Dynpro Java

$
0
0

Hi All,

 

I am working on adding user notification message (error message) on Portal Application.If user is locked in SAP backend,users should be able to see error message on Portal.

And development team has added ABAP code in Function Module in SAP backend.Please find below the same.

 

ABAP code in SAP:

 

IF wa_tab-ustyp EQ 'A'.

         IF wa_tab-uflag EQ c_1 OR wa_tab-uflag EQ c_2 OR wa_tab-uflag EQ c_3

            OR wa_tab-uflag EQ c_4 OR wa_tab-uflag EQ c_5 OR wa_tab-uflag EQ c_6.

 

           wa_return-type = 'E'.

           wa_return-message = text-019.

           wa_return-parameter = p_userid.

           APPEND wa_return TO return.

 

         ENDIF.

 

We have done testing in SAP backend and it is working fine.

 

But when we are trying to read this message on Portal using Web dynpro Java-SAP Netweaver Developer Studio,we are not able to see the message (text-019) on Portal from SAP Backend..

 

Please help me to resolve this issue.

 

 

Thanks and Regards,

Snehal Raghoji


Viewing all articles
Browse latest Browse all 1288

Trending Articles