cancel
Showing results for 
Search instead for 
Did you mean: 

Hyperlink to Infoset Query filed

jogeswararao_kavala
Active Contributor
0 Kudos

Dear experts,

I need to achieve the following functionality in my infoset query.

Double click on a Notification number in the List output and go to the Notification header screen, the way we do in standard list outputs.

Requesting your help

Regards

Jogeswara Rao

Accepted Solutions (0)

Answers (3)

Answers (3)

peter_atkin
Active Contributor
0 Kudos

Jogeswara Rao

Did you mean that you wanted to double-click on the notification and navigate to IW23 via a SAP Query report?

If so, then you need to create a suit of utility programs that you link the SAP Query.

There is an OSS Note that explains how to do it, but here is some of my code:


report  zsq01_display_notification.

parameters p_notif like qmel-qmnum.

* Check user is authorised

authority-check object 'S_TCODE'

                    id 'TCD'

                 field 'IW23'.

if sy-subrc = 0.

  if not p_notif is initial. "Check notification number populated

    set parameter id 'IQM' field p_notif.

    call transaction 'IW23' and skip first screen.

  else.

    message w807(jj).  " This object cannot be displayed

  endif.

else.

  message e003(1w) with 'IW23'.

endif.

PeteA

jogeswararao_kavala
Active Contributor
0 Kudos

I had achieved what I wanted in this query with the in-built methods provided in SAP Query standard methods. This was years ago and documented these method as said above. However, thanks for the inputs.

Regards

KJogeswaraRao

0 Kudos

Sure thing. Thanks and best regards.

jogeswararao_kavala
Active Contributor
0 Kudos

Dear Experts,

I myself arrived at the solution throguh Google search.

Thanks to Google & SDN. The solution is available at the following link.

[Solution|;

Regards

Jogeswara Rao

0 Kudos

Hello Jogeswara,

I cannot access the linked solution. Can you post it here?

Thanks in advance,

Titus.

jogeswararao_kavala
Active Contributor
0 Kudos

Hello Titus,

Yes, that link is not available now.

That was my early stage of SAP/SCN. Later I acquired a little exertise in these matters  and  documented  something of  which  this query is also a part.    See Tip2 of this document:   The same thing was discussed there.

You may also like to go through this post:

Regards

KJogeswaraRao

0 Kudos

Hello Jogeswara,

I find your site with the tips very helpful indeed. The possibility to exclude lines was something I have long searched for.

However, my requirement is a little different: I have an actual hyperlink from the DRAW table, field FILEP. What I would like to happen is when the user clicks on the line to open the hyperlink in a browser window. Any idea if this is possible?

Best regards, Titus.

jogeswararao_kavala
Active Contributor
0 Kudos

Hello Titus,

It would be better if we do not continue this discussion in a closed thread and start a fresh discussion. So please start a discussion on your query either in ABAP space or in DMS space.

Also please note that you can RATE documents you visit and give LIKEs if you do.

Good luck

KJogeswaraRao