cancel
Showing results for 
Search instead for 
Did you mean: 

Link to documentation in any object Web UI

Former Member
0 Kudos

Hello,

User want to see link to documentation (user guide) in any object (activity, first page, sales order etc.) in Web UI.

For example,

user creates an activity and want to press on a link,

that shows user guides "How to create an activity"

How we can do this task?

Denis

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

One option would be a button in the button bar which opens an HTML-page in the intranet. There is documentation arounbd on how to create a button and how to call a web page in a popup.

Best regards,

Thomas

Answers (1)

Answers (1)

former_member210661
Active Contributor
0 Kudos

Hi Denis,

First tel me one thing where exactly customer want to click? have you provide any hyper link?

and one more thing do you have any standard or custom link for displaying whenever customer click on that link?

if you have hyper link you want to open document then call that doc link into that event.

You need to modify the .htm page coding in order to achieve this requirement. First of all capture the hyperlink click event in event handler method and store it in a global variable. Check this variable's value in the .htm page from controller and implement the following sample code.

<script type="text/javascript" language="javascript">

<%

  IF controller->gv_quotation_url IS NOT INITIAL .

%>

window.open ("http://www.google.com","mywindow","menubar=1,resizable=1,width=350,height=250");

<%

  clear controller-> gv_quotation_url.

  ENDIF.

%>

</script>

Thanks & Regards,

Srinivas.