cancel
Showing results for 
Search instead for 
Did you mean: 

Hyperlink issue in Smartform PDF

Former Member
0 Kudos

Hi  All,

           I am facing below issue with Smartform after it converted to PDF. The PDF file has below link

(http://www.vocakiri.co.uk/_assets/media/StandardTC3_(including_REG_31_Requirements).pdf) in footer window.

But when i am selecting the hyperlink it is getting truncated as "http://www.vocakiri.co.uk/_assets/media/StandardTC3_" .it opens window with truncated

web address which leads to error.

could you please let me know what is the problem or is there any note need to be applied.

Thanks and Regards,

Prasanna B

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Thanks to All issue is resolved it is  all because Open Parentheses and close paranthese cannot be interpreted as hyper link so i replaced all these reserved strings with %28 and % 29 respectively.

Thanks and Regards,

Prasanna B

Answers (2)

Answers (2)

aidan_black
Active Contributor
0 Kudos

Hi Prasanna B,

See thread http://scn.sap.com/thread/1819587.

You can try using the callback method described in the following Notes:

622718 - SF Web Forms: Callback for the URL format

707931 - Web Forms: Incorrect URL address with the HTML output

You can get a different title of the link by using a kind of user exit for the URL processing, which is described in Note 622718.

You must create your own function module with the following interface:

*"

*"  CHANGING

*"     REFERENCE(DATA) TYPE  TTXCTOKEN

*"

Data: i_data type STXCTOKEN,

(see note 622718; TTXCTOKEN is an internal table of type STXCTOKEN)

Now when you call the function module of the Smart Form, you should fill the parameter OUTPUT_OPTIONS-URLCALL with the name of the new function module. As a result your function module is called, when the URL is processed by the Smart Forms composer.

This method allows you to use a shorter alias for a longer URL link.

Regards,

Aidan

Florian
Active Contributor
0 Kudos

Hi prasanna,

you could try to set the link in this statement <(> your link <)>. This is the statement, that it is just text. By converting it to a pdf it should get a link again. Perhaps the converting has a problem with the underline.

Never had to provide such a long link in the footer so I'm not sure if this solution will work in your case.

~Florian