Hyper links not working in SQL Query in Version 1.6 using htf.anchor

hi All
have written a sql query to generate a hyperlink with htf.anchor and not able to generate the links for the same
following is the query:
select HTF.ANCHOR('F?P=119:1:'||:APP_SESSION,'ADMIT =>')
||COMPANY_NAME AS "AUTHORIZED VISITORS" from
company_details
any help is appreciated....
thanks in advance
Sukhmani

Hi Scott
The Hyperlinks are not getting generated...after using HTF.ANCHOR and was working fine with 1.5 after upgarding to 1.6 its just showing the <A href> as it is without the hyperlink.
The first one i was trying in the SQL workshop and the second one is 'm using in the code itself.
'm not able to c the hyperlinks at runtime
its showing it as
$ 0 Total Support
after using the code
select htf.anchor('f?p=119:8:'||:app_session,'$'||lpad(nvl(sum(apps_revenue+tech_revenue),0),10,' ')) ||lpad('Total Support',50,' ')
from company_details
where duns_no=:P3_DUNS_NO or
duns_no in (select duns_no from company_details where upper(company_name) like upper(:P3_COMPANIES))

Similar Messages

  • LIKE operator is not working in SQL Query in XML file

    Hi Gurus,
    LIKE operator is not working in SQL query in XML template.
    I am creating a PDF report in ADF using Jdeveloper10g. The XML template is as follows
    <?xml version="1.0" encoding="WINDOWS-1252" ?>
    <dataTemplate name="catalogDataTemplate" description="Magazine
    Catalog" defaultPackage="" Version="1.0">
    <parameters>
    <parameter name="id" dataType="number" />
    <parameter name="ename" dataType="character" />
    </parameters>
    <dataQuery>
    <sqlStatement name="Q1">
    <![CDATA[
       SELECT ename, empno, job, mgr from EMP where deptno=:id and ename LIKE :ename || '%']]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="EmployeeInfo" source="Q1">
    <element name="EmployeeName" value="ename" />
    <element name="EMPNO" value="empno" />
    <element name="JOB" value="job"/>
    <element name="MANAGER" value="mgr" />
    </group>
    </dataStructure>
    </dataTemplate>
    if i pass the parameter value of :ename from UI, it doesn't filter. But if I give ename = :ename it retrieves the data. Can anyone help me why LIKE operator doesn't work here?
    Appreciate your help,
    Shyamal
    email: [email protected]

    Hi
    Well for a start, you are doing some very strange conversions there. For example...
    and to_char(a.msd, 'MM/DD/YYYY') != '11/11/2030'
    and to_char(a.msd, 'MM/DD/YYYY') != '10/10/2030'If a.msd is a date then you should e converting on the other side ie.
    and a.msd != TO_DATE('11/11/2030', 'MM/DD/YYYY')
    and a.msd != TO_DATE('10/10/2030', 'MM/DD/YYYY')Also, you may want to take into consideration nothing being input in :P2_ITEM_NUMBER like this...
    AND INSTR(a.item_number,NVL(:P2_ITEM_NUMBER,a.item_number)) > 0Is item number actually a number or char field? If it's a number, you want to explicitly convert it to a string for using INSTR like this...
    AND INSTR(TO_CHAR(a.item_number),NVL(TO_CHAR(:P2_ITEM_NUMBER),TO_CHAR(a.item_number))) > 0?
    Cheers
    Ben

  • Email hyper-link not working on mobile

    Hi,
    We have created a report which sends out list of treasury transactions pending release with hyper-links against each transaction. On clicking the hyper-link, an email is created with a pre-defined recipient, subject and body. The user simply sends the email and based on the authorisation set in the inbound mail processing class in SAP, the transaction is approved.
    This is working perfectly in MS Outlook. However, when the approval link is clicked in a mobile handset, the new email is not composed with the pre-defined recipient, subject and body.
    Please let me know how the hyper-link can be created so as to also work with mobile handsets.
    Regards,
    Yusuf Sheikh

    Hi Rahul,
    I have created the hyperlinks in the interactive (html) mode.
    While creating the hyperlink you just need to check one option "Use Complete URL path". This option will enable the hyperlink
    in the pdf mode too.
    FYI.. I am on BO XI 3.1
    Regards,
    Rohit

  • No in not working in SQL Query

    Hii all ,
    I have one query 
    Select  FILE_ID,SCHEME_NAME FROM dbo.FILE_MASTER
    INNER JOIN  dbo.SCHEME_MASTER ON dbo.FILE_MASTER.SCHEME_ID = dbo.SCHEME_MASTER.SCHEME_ID
    WHERE dbo.FILE_MASTER.DEPARTMENT_ID=3
    this returns 
    FILE_ID SCHEME_NAME
    897 5
    898 10
    899 5
    900 10
    901 5
    902 10
    903 5
    904 10
    905 5%
    906 10%
    .. Scheme_name is nvarchar field..
    now as per my requirement i want to return the rows from scheme_master where scheme_name not matches with the result of above query 
    .. sub query is 
    SELECT SCHEME_NAME FROM  dbo.SCHEME_MASTER WHERE DEPARTMENT_ID=3 AND SCHEME_NAME IS NOT NULL
    this returns ..
    SCHEME_NAME
    5
    10
    6
    4
    15
    2
    not a single null value returning by sub query ..
    Now,
    Select  FILE_ID,SCHEME_NAME FROM dbo.FILE_MASTER
    INNER JOIN  dbo.SCHEME_MASTER ON dbo.FILE_MASTER.SCHEME_ID = dbo.SCHEME_MASTER.SCHEME_ID
    WHERE dbo.FILE_MASTER.DEPARTMENT_ID=3
    AND SCHEME_NAME IN 
    (SELECT SCHEME_NAME FROM  dbo.SCHEME_MASTER WHERE DEPARTMENT_ID=3 AND SCHEME_NAME IS NOT NULL)
    gives the same result as first query 
    FILE_ID
    SCHEME_NAME
    897
    5
    898
    10
    899
    5
    900
    10
    901
    5
    902
    10
    903
    5
    904
    10
    905
    5%
    906
    10%
    now when i specify Not in query returns nothing ..
    why not it is returning non -matching schemes ??
    please clear .. i have also tried left join where approach ..
    Dilip Patil..

    Thanks visakh ..
    same result which i have with In and Not in ..
    here exist returns the matching but not exist returns nothing ..
    Dilip Patil..
    Did you try it correctly? Visakh's solution will work.
    Check the below, If you are looking for something else, please elaborate.
    create Table SCHEME_MASTER(SCHEME_ID int, SCHEME_NAME nvarchar(100), DEPARTMENT_ID int)
    create Table FILE_MASTER(FILEE_ID int,SCHEME_ID int, DEPARTMENT_ID int)
    Insert into SCHEME_MASTER Values(500,5,3),(500,NULL,3),(600,6,3)
    Insert into FILE_MASTER Values(5000,500,3),(5001,500,3),(6001,600,3)
    Select FILEE_ID,SCHEME_NAME FROM dbo.FILE_MASTER
    INNER JOIN dbo.SCHEME_MASTER A1 ON dbo.FILE_MASTER.SCHEME_ID = A1.SCHEME_ID
    WHERE dbo.FILE_MASTER.DEPARTMENT_ID=3
    AND not exists
    (SELECT 1 FROM dbo.SCHEME_MASTER A WHERE DEPARTMENT_ID=3 AND SCHEME_NAME IS NOT NULL and A.SCHEME_NAME = A1.SCHEME_NAME)
    Drop table SCHEME_MASTER,FILE_MASTER
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped.
     [Blog]

  • DB Link not working from SQL Developer

    Hi All,
    I Have two databases say A and B. My DBA has created a DB link and when he logs in to sqlplus directly on the server and he can get the values from the other database. When I'm to get the values from the other database through SQL Developer from my client machine, it is giving me ORA-12154: TNS :could not resolve the connection identifier specified.
    I can access both the databases without any problem and i have the entries for bath in my TNSNAMES.ORA file.
    Thanks in advance.
    SK

    Check the dblink ddl. your tnsnames.ora should have exact same word as dblink_authentication as below.
    create public dblink dblink_name connect to username identified by password dblink_authentication;

  • Group By Clause not working in SQL Server CE Version 3.5.8080.0. Help needed

    SELECT Item_Type.Name AS Item_Type_Name,Category.Name AS Category_Name,UoM.UoM_Name AS Unit_Name,SUM(Invoice_Item.Quantity) AS Qty_Sold,SUM(Invoice_Item.Sold_Price) AS Sale_Price  
    FROM Invoice_Item 
    INNER JOIN Item_Type ON Invoice_Item.ItemType_ID = Item_Type.ID 
    INNER JOIN Category ON Item_Type.Category_ID = Category.ID 
    INNER JOIN UoM ON Item_Type.UoM_ID = UoM.ID  
    GROUP BY Item_Type.ID 
    Its giving following error.
    Unable to get data.In aggregate and grouping expressions, the SELECT clause can contain only aggregates and grouping expressions. [ Select clause = Item_Type,Name ]

    Hi, you have also group by
    Item_Type.Name,Category.Name,UoM.UoM_Name
    Questo post è fornito &quot;così com'è&quot;. Non conferisce garanzie o diritti di alcun tipo. Ricorda di usare la funzione &quot;segna come risposta&quot; per i post che ti hanno aiutato a risolvere il problema e &quot;deseleziona
    come risposta&quot; quando le risposte segnate non sono effettivamente utili. Questo è particolarmente utile per altri utenti che leggono il thread, alla ricerca di soluzioni a problemi similari. ENG: This posting is provided &quot;AS IS&quot;
    with no warranties, and confers no rights. Please remember to click &quot;Mark as Answer&quot; on the post that helps you, and to click &quot;Unmark as Answer&quot; if a marked post does not actually answer your question. Please Vote This As
    Helpful if it helps to solve your issue. This can be beneficial to other community members reading the thread.

  • (Substitution Variables) not working in "SQL Developer" Environment !!!!!!!

    this photo illustrate how that (Substitution Variables) not working in "SQL Developer" Environment :-
    http://www.imagehosting.com/show.php/1555180_ddddd.PNG.html
    any solve for this problem ?????!!!!!!!!!!

    There is a dedicated forum for SQL Developer related questions
    SQL Developer
    I should admit however, that query you have provided ( with substitution variables) works like a charme in my environment (SQL Developer 1.1.0.23 build 23.64)
    Best regards
    Maxim

  • ANCHOR LINKS NOT WORKING!...STILL :(

    Well another Muse update has come out and to much disappointment the same issues still exist with anchors. They do not work in Safari 6 running Mountain Lion, or iOS. Anchors in iOS have been an issue since the Muse Beta days... so I am now starting to doubt a fix for anchors in Safari.
    What is so frustrating is how an addition to the "Hyper link" Menu that allows for the downloading of files has made its way in, yet a bug in the exported Javascript file from muse that controls the scrolling of anchors has yet to be resolved.

    This problem should be fixed! Im using Anchors too in a vertical scroll page ive been working on for quite some time. The idea was to make it suiteable for not only safari, firefox etc but also ios devices. Now the whole site is unusable and since im doing this for a client my job is at stake. I went from dreamweaver and wordpress since i thought muse was a great tool concidering my background in visuals. I have also convinced others to convert to muse... quess i shouldnt. This problem or Bug seems to be here to stay. I've seen on the forum, several times, that a the Muse team are working on a fix but nothing is happening!
    Now with the new release i was sure that this bug would dissapear in ios and Mountain Lion, but as desmo848 said... nothing.
    Can the muse team give us an approximate answer on when its likely that this will be fixed? I have waited for a long time now and maybe i should just give up, leave muse and rebuild everything in another software.
    Perhaps you could provide us with a temporary workaround, if there's one... some code.. until this is solved?

  • Adobe Edge links not working

    Yeah I have also experienced links not working when I import my .oam file from Adobe Edge Animate also. Is there anything the Muse team is doing to fix this issue? I need a response from you guys by the end of the week. my company website is malfunctioning due to issues with your software. If there is some sort of hotfix please let us know.

    When you install the software illegally, using a volume license, there is a script you can run that will enter all of the adobe servers into your local DNS hosts file so the software can be activated. This makes accessing those domains impossible. This scenario fits the description of your issue, not suggesting anything beyond that.
    The hosts file is in /private/etc/hosts and can be accessed through the terminal:
    sudo nano /private/etc/hosts
    If you see a bunch of adobe servers in there, that is your problem.

  • Add new document link not working in upgraded sharepoint 2013?

    Hello there,
    Upgraded SharePoint team sites from 2010 to 2013. add new document link not working for shared document in upgraded sharepoint 2013?. it is specially not working on machine where Office web apps set up with this sharePoint server and it
    is working fine with environment  Office web apps not configured with Sharepoint.
    Looking resoluion /suggestion, thanks in advance.
    Regards,
    Sushil

    Hi  Sushil,
    According to your description, my understanding is that the add new document link was not working on machine where Office web apps set up with this SharePoint server after you upgraded SharePoint team sites
    from 2010 to 2013.
    For your issue, it can be caused by integrating Office Web Apps with upgraded SharePoint Site.
    Firstly please make sure claims-based authentication is used by the SharePoint web application that is used to create the new document. Only web applications that use claims-based authentication can open
    files in Office Web Apps. To determine the authentication provider for a web application, follow these steps:
    1.In SharePoint 2013 Central Administration, click Manage web applications.
    2.Select the web application that you want to check, and click Authentication Providers on the ribbon.
    The authentication provider must be displayed as Claims Based Authentication for Office Web Apps to work correctly with the web application. To resolve this issue, you can delete the web application and recreate
    it using claims-based authentication, or you can change the authentication method of the web application.
    Secondly, make sure the WOPI zones match on the SharePoint 2013 and the Office Web Apps Server farm.
    To do this, run the following command on the SharePoint Server:
    Get-SPWopiZone
    The result will be one of the following:.
    internal-https
    internal-http
    external-https
    external-http
    Next, run the following command on the SharePoint Server.
    Get-SPWOPIBinding
    In the output, look for WopiZone: zone. If the results from Get-SPWopiZone don’t match the zone that is returned by Get-SPWOPIBinding, run the Set-SPWOPIZone -Zone cmdlet on the SharePoint Server to change
    the WOPI zone to match the result from Get-SPWOPIBinding.
    If not work, you can try to disconnect SharePoint 2013 from Office Web Apps Server and re-configure Office Web Apps for SharePoint 2013.
    For more information, please refer to the article:
    http://technet.microsoft.com/en-us/library/ff431687(v=office.15).aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Fresh Install HCM 9.1 but Links not working. Help please

    Dear All,
    I'm trying to make a switch from SAP to PeopleSoft. I tought it easier to install PSFT since the number of source to install is much less than SAP. However, I kept getting same error where the links not working no matter which environment I tried to install.
    I downloaded all software from eDelivery.
    HCM 9.1, PTOOLS 8.52, Oracle 11g 64 bit, Oracle Client 32 bit.
    First Try:
    Install on windows 7 64bit. Everything works fine until first login to the PSFT and all links not working.
    Suggestion from Hakan is to apply the patch and gave me a link to the old FTP site. I downloaded the 85209 patch but got password.
    Finally I managed to get a customer ID from a friend and downloaded Patch 85211 and applied. But got java error so I scrapped it.
    Anyway, Gasparotto said the environment is not certified and will not fix my problem with the patch.
    Second Try:
    Installed Virtual Box.
    Installed Windows 2008 R2 and applied the SP1.
    Installed everything all over again.
    Ensured the PTWEBSERVER password similar the username.
    Everything works fine but when login to PSFT, again..... links not working and see on the bottom left corner there are some javascript error where they cannot find certain peoplesoft objects..
    Just upgraded to IE 9 because I read somewhere IE 8 is not certified.
    Tried to login again, no error message and everything looks fine but... links not working.
    Logs also looks normal to me.
    Does anyone ever encountered similar issues before?
    Does this is a normal behaviour before tools patch 85211 being applied ?
    Thanks,
    aLuNa
    My APPSRV Log:
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) PeopleTools Release 8.52 (WinX86) starting. Tuxedo server is APPSRV(99)/100
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) Cache Directory being used: C:\APPSRV_CONFIG\appserv\HCDMO\CACHE\PSSAMSRV_100\
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) Server started
    PSRENSRV.2808 [11/03/12 09:04:49](0) PeopleTools Release 8.52 (WinX86) starting. Tuxedo server is RENGRP(92)/101
    PSRENSRV.2808 [11/03/12 09:04:49](3) Switching to new log file C:\APPSRV_CONFIG\appserv\HCDMO\LOGS\PSRENSRV_1103.LOG
    PSADMIN.2124 (0) [11/03/12 09:04:52](0) End boot attempt on domain HCDMO
    PSAPPSRV.1488 (3) [11/03/12 09:13:16 GetCertificate](3) Returning context. ID=PTWEBSERVER, Lang=ENG, UStreamId=091316_1488.3, Token=PSFT_HR/2012-11-03-02.13.17.193528/PTWEBSERVER/ENG/XxZ3vyJWXF/S1MoQtG2Wox6wGJA=
    PSAPPSRV.1488 (5) [11/03/12 09:13:21 GetCertificate](3) Returning context. ID=PTWEBSERVER, Lang=ENG, UStreamId=091321_1488.5, Token=PSFT_HR/2012-11-03-02.13.22.193632/PTWEBSERVER/ENG/pS6ec6pIAJJSYc1oOWcNYiR0UFQ=
    PSAPPSRV.1488 (7) [11/03/12 09:13:29 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=091329_1488.7, Token=PSFT_HR/2012-11-03-02.13.30.193285/PS/ENG/3GnOezS6D9PUlzwrjPwqexv4ir0=
    PSAPPSRV.1488 (34) [11/03/12 09:18:47 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=091847_1488.34, Token=PSFT_HR/2012-11-03-02.18.48.194158/PS/ENG//oJB5tvSHYNzsmZ2Gs4g2vBLUVs=

    alunwawa wrote:
    Does anyone ever encountered similar issues before? Yes, I did already see the same, that was when installed the same with 8.52.00 (without Peopletools patch) or without applying the patch project...
    Does this is a normal behaviour before tools patch 85211 being applied ?Without patch, you have the error you mentioned. How many time I told that 8.52.03 min. is required, I did not go further, but there was some bugs before which make it not working.
    I understand that's rather frustrating for people who wants to jump to Peoplesoft. I don't know SAP, but here you go, Peoplesoft is not a simple toy.
    Unfortunately, if you have no access to My Oracle Support to get the Peoplesoft patches, you have no way but work on Peoplesoft OVM (free of use), and to use them on VirtualBox, the Jim's articles are worth to follow.
    Nicolas.
    PS: @Jim, thanks for the kind words.
    My last install guide is quite old now (PT8.50/Linux), even though it did not change very much within the last tools 8.52. But seeing the number of time such questions have asked over here (PT8.52 on Windows), I'm thinking to write one more, that time on Windows.

  • EXEC SP_EXECUTESQL not working in sql server 2014

    EXEC SP_EXECUTESQL not working in sql server 2014

    EXEC SP_EXECUTESQL not working in sql server 2014
    Hi Amar,
    What's the error when executing this stored procedure?
    I have tested it on my local environment, we can run this SP without any problems.
    Please provide us more information, so that we can make further analysis.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Purchased Lightroom 5 and Download link not working. Please advise

    I have Purchased Lightroom 5 followed the download instructions and Download link not working.
    I get a dialog box stating that I have Explorer 4 and I need a later version.
    I am in fact running Explorer 10.
    Please advise.
    Bob Spree
    England

    Please see http://forums.adobe.com/thread/1229333 where this topic has been discussed.

  • File- Print not working from SQL Developer 1.2.1 Build MAIN-32.13

    File->Print not working from SQL Developer 1.2.1 Build MAIN-32.13.
    I downloaded sqldeveloper-1.2.1.3213.ZIP and extract to a local directory. From the extracted directory I ran ..\sqldeveloper\sqldeveloper.exe from Windows XP sp2. The program itself seems to run just fine but File-Print doesn't do anything. In Help-About, Java Platform is reported as 1.5.0_06 and Oracle IDE is 1.2.1.3213. I'm not sure where to look for what is causing the problem.
    Thanks

    I hadn't tried CTRL-P before but I did today. On the first attempt, I saw a small jump in the memory usage for sqldeveloper.exe as reported in Windows Task Manager. Otherwise, there was no change. A second CTRL-P in the same session produced a further bump but subsequent attempts in the same session produced no further change in CPU or Memory Usage.
    Using Task Manager to monitor this further, I tried File->Print again and saw that sqldeveloper would periodically climb to 1 or 2 percent CPU and consume a little more memory. After a minute or so, though, all activity stops again.
    I do not get a print dialog box from SQLDeveloper using either CTRL-P or File->Print

  • Links not working correctly in PCUI for CRM

    Hi All,
    We are implementing mySAP CRM 4.0 through PCUI on Portal
    EP6 SP14.
    I have integrated the CRM Business Package 60.2 in Portal.
    Proper User has been created in the backend and assigned Sales Manager Role both in the portal and in the CRM backend.
    We are facing problem of links not working in the CRM Contents. When we click on the links in the CRM Portal Contents ( BSPs) we don’t get the desired application opening.
    When we click any links in the BSP's ( Activity Links in Opportunity Management BSP ) we get a blank page popped up.
    I have the screen shots with me. Any one responding can get the screen shots from me.
    Thanks in Advance
    Rohit

    Rohit,
    Have you maintained configuration in (transaction CRMC_BLUEPRINT_C --> Navigation (URL Generation) --> Assign Object Method to Role)? Be sure that the role that you are using is present and ID Page/Service field correctly points to the pcd url for your portal.
    When testing, it may be helpful to set parameter CRM_URL_BUFFER_OFF = X on the user profile (SU01) to turn off the url buffer. That way changes made above are immediate.
    Best Regards,
    Bernard

Maybe you are looking for

  • Dynamic sql and updating cursors

    hi to anyone, we use few temporary global tables which will be created on the fly if not present ( the reason is - they are not created by power designer ). addressing theses tables is only possible by using dynamic sql via "execute immediate" becaus

  • HT1689 Why is there a limit on the size of apps I can download in the App Store using 3G/4G?

    I understand that this is helpful for those that have limited data each month, but for me, and I'm sure everyone else who has unlimited data, this is just a nuisance and rather frustrating. I'm in the Air Force and where I am right now I have zero ac

  • RV13B is not defined in the ABAP dictionary

    Hi Experts, Iu2019ve a requirement to create a smartform,and then save it as a pdf and email. I have all of this done except for one part. At present my email address (for testing purposes) is hard coded as the email address. However I want to automa

  • Whats a site similar to Feedburner? (and free)

    I am unable to submit my feedburner rss to the itunes store (I have a seperate topic on that, I get an error everytime) so I was wondering if there is a similar feed burning site to use for free out there just like feedburner that I can use to submit

  • BI CONTENT IMPLEMENTATION

    Hi Friends,                       I just need some help from you experts, actually i have installed BI Content and shown 130 standard business content reports from those, now they are asking me to transport all the standard business content queries t