Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Queries in IQS4_GET_NOTIFICATION

Former Member
0 Kudos

Hi Experts,

Is there a way to retrieve the values TXTGRSA and TXTCDSA from riwoo3 Structure , instead of using IQS4 GET NOTIFICATION,

CALL FUNCTION 'IQS4_GET_NOTIFICATION'

EXPORTING

i_qmnum =

  • IMPORTING

  • E_RIWO03 =

  • TABLES

  • E_IVIQMFE_T =

  • E_IVIQMSM_T =

  • E_INLINES_T =

I have been able to retrieve INLINES using READ TEXT and ivqmfe and iviqmsm using views vqmfe and viqmsm, but not being able to find a way to retrieve the values riw003 values for my program, so can you please let me know if there is a way to retrieve the values.

Thank you.

2 REPLIES 2

Former Member
0 Kudos

Hi,

use function module BAPI_ALM_NOTIF_GET_DETAIL

-


> call FM IQS1_REFRESH_ALL that refreshes the buffer before

you use the function BAPI_ALM_NOTIF_GET_DETAIL

Regards,

ravi

Former Member
0 Kudos

Thanks Ravi.

But i didnt want to use any function modules, i wanted to retrive from internal tables since using function modules took more time since they were in loops , but was able to find a way to retreive from the tables QPCT and QPGT . This solved the performace issue .

Thanks.