reg hyperlink in oracle report built by oracle reports builder

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • tatipellinaresh
    New Member
    • Aug 2008
    • 10

    reg hyperlink in oracle report built by oracle reports builder

    Hi,
    I am using Oracle Reports builder for reports.
    I have one pie graph in my report.
    It contains 3 fields like lastmonth, lastweek, today.
    what I want to do is, when I click on a field it should go to particular page.
    Like putting seperate hyperlinks for fields
    Please any one can help me

    Thanks
    Naresh
  • amitpatel66
    Recognized Expert Top Contributor
    • Mar 2007
    • 2358

    #2
    Use SRW.SET_HYPERLI NK property for creating hyperlinks. Check Report 6i help for detailed information

    Comment

    • tatipellinaresh
      New Member
      • Aug 2008
      • 10

      #3
      Hi Amit,

      Thanks for your reply.
      I used following code
      <Graph version="3.2.0. 22" pieDepth="60" seriesTooltipLa belType="TLT_ME MBER" groupTooltipLab elType="TLT_MEM BER" markerTooltipTy pe="MTT_PERCENT _VAL_VALUES_TEX T" pieTilt="40" graphType="PIE" >
      <LegendArea automaticPlacem ent="AP_NEVER" position="LAP_R IGHT" borderColor="#c c33cc" fillColor="#66f fff" borderTranspare nt="false" fillTransparent ="false"/>
      <PieLabel visible="false"/>
      <SeriesItems defaultColor="" >
      <Series id="0" color="#99ff99" SRW.SET_HYPERLI NK="www.google. com"/>
      <Series id="1" color="#66ffff" SRW.SET_HYPERLI NK="www.yahoo.c om"/>
      <Series id="2" color="#ffff00" SRW.SET_HYPERLI NK="www.gmail.c om"//>
      </SeriesItems>
      <Slice labelPosition=" LP_OUTSIDE_WITH _FEELER"/>
      <SliceLabel textType="LD_TE XT_PERCENT"/>
      </Graph>

      but it is not working.
      I gone throught Oracle 6i but I am unable to find the solution
      Can you give me some sample code..

      Thanks
      Naresh

      Originally posted by amitpatel66
      Use SRW.SET_HYPERLI NK property for creating hyperlinks. Check Report 6i help for detailed information

      Comment

      • amitpatel66
        Recognized Expert Top Contributor
        • Mar 2007
        • 2358

        #4
        Check here .

        Comment

        • tatipellinaresh
          New Member
          • Aug 2008
          • 10

          #5
          Hi Amit,

          Thanks for your reply.

          solution for this is: in graphHyperlink we have to give field name in "&< >"


          <rw:graph id="graph" src="G_DISPATCH ENDDATE" groups="DISPATC HENDDATE" dataValues="DIS PATCHCOUNT" graphHyperlink= "javascript:che ck('&<P_DISPATC HENDDATE>')">

          Comment

          Working...