URL Navigation problem GO

I started using a URL to GO for the first time. I raised my issues in this forum as well and some articles online.

So I wanted to pass the filters of a report to another via a URL.

So in the report the brand column must be transmitted to the other report.

If in the column of the brand formula, I replaced it with this

' <-a href = "http://mgd-1560b7b78e:9704/analytics/saw.dll?Go & Path = / users/admin/sales summaries/Central region of sales of $/ central region districts Sales Summary & Action = Browse & P0 = 1 & P1 = eq & P2 = Products.Brand" > ' <-/a > ' (I had the '-' only here to view)

and in the format of column, I changed to HTML. I see no problem with my syntax that there aren't any errors

I have not until here no error, but the brand column is empty.

I expected to see values of the brand with a link on this interaction so that when you click on it, it will take me to the other report mentioned in the path, passing the value of the brand clicked

Please guide me if I am missing something here

Thank you
Prash

Published by: Prash11 on May 10, 2010 13:52

I agree with BIPuser. You didn't get a GoURL format. P0 - the number of parameters, and then must follow the triplets: P1 - P2 - operator ., P3 - the value and so on. If your link – '<--a href="http://mgd-1560b7b78e:9704/analytics/saw.dll?Go&Path=/users/administrator/Sales Summaries/Central Region Sales by dollars/Central Region Districts Sales Summary&Action=Navigate&P0=1&P1=eq&P2=Products.Brand">'<-->'-incorrect. You did not show a parameter P3.
BIPuser wrote a correct link but with some errors:
(1) P0 should be 1
(2) I guess all spaces in a link must be replaced with % 20, or the link must be a quote unquote - '(or 22%)
So the correct link, I guess that
'<--a href="http://mgd-1560b7b78e:9704/analytics/saw.dll?Go&Path=/users/administrator/Sales%20Summaries/Central%20Region%20Sales%20by%20dollars/Central%20Region%20Districts%20Sales%20Summary&Action=Navigate&P0=1&P1=eq&P2=Products.Brand&P3='||Products.Brand||'">'|| Products.Brand |' <-->'

I hope this helps.

Tags: Business Intelligence

Similar Questions

  • Database navigation problems

    I have a problem with the display of the records in my database where I wish to navigate between records.

    I use a set of frames where I collect research data into a form on the left side of the page and view the database results in a frame on the right side of the page.

    The Web site I have displays 1 sheet at a time in a table. There is no problem getting the database records - if I try to display 1 plug on the page, its Ok, if I disply X records on the page its fine - the problem comes when I view 1 folder and then use hyperlinks to move to the next record overall in data.

    The code is defined so that the navigation links appear only where there is more than 1 record so I know that I don't mean to call records that do not exist.

    The error appears when I try to navigate through folders to view you 2nd record returned by your search, there seems to be something to do with the RecordCount.

    Any help appreciated.

    For reference the previous/next record is all here- http://tutorial20.easycfm.com/#

    The error is:

    [quote]

    Element RECORDCOUNT is undefined in GETDATABASESEARCHRESULT.

    The error occurred in * / testquery.cfm: line 36

    34:

    35: < CFSET end = start + disp >

    36: < CFIF start + disp GREATER THAN GetDatabaseSearchResult.RecordCount >

    37: < CFSET end = 999 >

    38: CFELSE >

    [/ quote]

    The site code is:

    [quote]

    <!-start is the default value from line for output.

    DISP determines the number of records to display in a-> time

    <! - start playback with record 1 if not specified via url - >

    < name CFPARAM = "DΘmarrer" default = "1" / >

    <!--> number of records to display on a page

    < name CFPARAM = 'disp' default = "1" / >

    <! - holds the variables passed to the form on the previous page when this page is called-. >

    < Name = "CFPARAM Form.Forename" Default ="" > "

    < Name = "CFPARAM Form.Surname" Default ="" > "

    < Name = "CFPARAM Form.Battalion" Default ="" > "

    < HTML >

    < HEAD >

    < / HEAD >

    < BODY >

    <!-query the database table. Cache the results of 15 minutes. ->

    < #Form.Battalion # CFIF IS "Sixth" >

    < CFQUERY NAME = "GetDatabaseSearchResult" DATASOURCE = "durhamli_durhamli".

    CACHEDWITHIN = "#CreateTimeSpan (0,0,15,0) #" >

    SELECT the name, Pre1917ServiceNumber, Post1917ServiceNumber, battalion, YearOfBirth, DateEnlisted, PlaceEnlisted, DateOverseas, Notes

    OF SixthDLI

    WHERE name LIKE '#Form.Forename#% %' AND name LIKE '% #Form.Surname#% '.

    < / CFQUERY >

    < / CFIF >

    < CFSET end = start + disp >

    < CFIF start + disp GREATER THAN GetDatabaseSearchResult.RecordCount >

    < end CFSET 999 = >

    < CFELSE >

    < CFSET end = disp >

    < / CFIF >

    <!-the range of records that are displayed on the page as well as the total amount of output

    number of records in the result set->

    < request CFOUTPUT = "GetDatabaseSearchResult" StartRowOptional = "" #start # "LignesMax =" #end #">"

    < table border = "2" cellpadding = "5" cellspacing = "2" width = "90%" cols = "5" >

    < /th > < th > family name

    First name < th > < /th >

    Pre1917 No. < /th > < th >

    Post1917 No. < /th > < th >

    < /Th > < th > battalion

    < b >

    < td >

    #GetDatabaseSearchResult.Surname #.

    < table >

    < td >

    #GetDatabaseSearchResult.Forename #.

    < table >

    < td >

    #GetDatabaseSearchResult.Pre1917ServiceNumber #.

    < table >

    < td >

    #GetDatabaseSearchResult.Post1917ServiceNumber #.

    < table >

    < td >

    #GetDatabaseSearchResult.Battalion # battalion

    < table >

    < /tr >

    < th > year birth < /th >

    < th > Date listed < /th >

    < th colspan = "2" > Place < /th >

    < th > posted < /th > overseas

    < b >

    < td >

    #GetDatabaseSearchResult.YearOfBirth #.

    < table >

    < td >

    #GetDatabaseSearchResult.DateEnlisted #.

    < table >

    < td colspan = "2" >

    #GetDatabaseSearchResult.PlaceEnlisted #.

    < table >

    < td >

    #GetDatabaseSearchResult.DateOverseas #.

    < table >

    < /tr >

    < th colspan = "5" align = "left" > Notes < /th >

    < b >

    < td colspan = "5" >

    #GetDatabaseSearchResult.Notes #.

    < table >

    < b >

    < /table >

    Registration number: #CurrentRow # of #GetDatabaseSearchResult.RecordCount #.

    < / CFOUTPUT >

    <!-displays the hyperlinks in the required-> recordset navigation

    < CFOUTPUT >

    < table border = "0" cellpadding = "10" >

    < b >

    <!-display previous link->

    < CFIF not START NOT EQUAL 1 >

    < CFIF start GTE disp >

    < CFSET prev = disp / >

    < CFSET prevrec = start - disp / >

    < CFELSE >

    < CFSET prev = start - 1 / >

    < CFSET prevrec = 1 / >

    < / CFIF >

    <!-displays only link if more than 1 record returned--->

    < CFIF #GetDatabaseSearchResult.RecordCount # GT 1 >

    < td > < of police = 'wingdings' > c < / police > < a href = "testquery.cfm? start = #prevrec # ' > Previous #prev # file < /a > < table > '"

    < CFELSE >

    < / CFIF >

    < / CFIF >

    <! - display link - >

    < CFIF GetDatabaseSearchResult.RecordCount LT end >

    < CFIF start + disp * 2 GTE GetDatabaseSearchResult.RecordCount >

    < CFSET next = GetDatabaseSearchResult.RecordCount - start - disp + 1 / >

    < CFELSE >

    < CFSET = then disp / >

    < / CFIF >

    <!-displays only link if more than 1 record returned--->

    < CFIF #GetDatabaseSearchResult.RecordCount # GT 1 >

    < a href = "testquery.cfm? start = #Evaluate (start + disp") #"> check following < /a > < of police = 'wingdings' > < table >

    < CFELSE >

    < / CFIF >

    < / cfif >

    < /tr >

    < /table >

    < / CFOUTPUT >

    < / BODY >

    < / HTML >

    [/ quote]

    Your request is that when form.battalion is 'sixth '.   You probably use your page when form.battalion is not "sixth."

  • I have a scooter that can not go on the road. It is a navigation problem for cards from Apple and Google Maps for the watch. Does anyone have a solution?

    Hello

    I recently got a scooter that goes from a maximum of 40 mph and cannot legally go on the highways. I was worried about navigation on the thing, since I can't hear my phone, but I thought the directions can get sent to my watch. My problem is that Google Maps can really follow the navigation on the watch, so I can still see the signs when I put my wrist; still, he turns back to the lock screen. So I stop, remove my gloves, and pull up the directions. On the other hand, Apple cards can't do navigation for bicycles or avoiding the road. I tried to use cards of Apple walking directions, thinking I can correct errors on one-way streets myself, but Siri decided I was going too fast, spent my navigation to drive and tried to send me on the highway.

    Anyone has a solution, or am I better off memorizing the card before entering the thing?

    Thank you!

    Hello

    To have your watch to return to the last used app to raise your wrist:

    -On your iPhone, in the application of Eve, go to: Watch My > General > screen Wake > under the heading "Raise the wrist", choose the RESUME last activity.

    If we consider how you could use your watch, note the safety information important in the Apple Watch user's Guide, which includes sections headed Distraction and Navigation:

    https://help.Apple.com/watch/#/apdcf2ff54e9

  • Apple Watch turn-by-turn navigation problem

    When Im using the navigation turn by turn on the Apple Watch plan it does not have the option to start navigation, rather 'INFO and CLEAR' are my only choices in the menu. What is the problem with that? How can I start my browsing directly from my watch? Please help thanks

    before the card gets directions the departure is always visible and still not interactive but when loading is done will start last and change to 'hang' what I need to do?

  • URL WRT310N problem

    Well, this is my second WRT310N (version 2), I couldn't believe that this thing was so bad that he acted with the first one I got (and back), so I try again.

    The first thing I get after the router has been completely configured, internet "worked" was:

    URLThe Invalid URL requested ' / ', is not valid.

    Reference #9.6c6d1160.1250371680.0

    by clicking on my bookmark yahoo.com or hit 'home' on any of my browsers (Chrome, Firefox, and IE8 all "original" is set to www.yahoo.com).  I have ping would be yahoo.com in a window DOS command and got the IP digital and was able to go.  But not from www.yahoo.com.  And other URL like google.com, facebook.com, etc are fine.  Same "us.yahoo.com" works very well.

    Only a reboot will fix it.  And then only for a while... 20 minutes later, I have experienced the same problem, click on yahoo.com and get "invalid URL".

    Has anyone else experienced this problem and solved, or Version 2 of this router is just a piece of junk?

    I'm perfectly willing to work with this, but it goes back to the store pretty soon if I can't get out of frequent reboots.  If it wasn't the second router I had who encounters this problem, I have undertaken my own mental health.

    Thank you.

    -Roger

    Yes, when I disabled the firewall and antivirus disabled, my regular www.yahoo.com link was broken again.

    I solved this problem by opting for a Dlink DIR-655 Router, no problems now.  I can go wherever I want to, I have the gigabit wired ports that I was looking for, and I have n wireless.  It's nice not to have to wince before clicking on a URL.

    I think that there is something seriously wrong with the firmware for version 2 WRT310N router.  Or maybe I had 2 guys that Linksys extinguish.  I'm dubious on this subject, I have it from very different sources.  I have not seen the specific problem I had with the WRT54GS Linksys or Dlink DIR-655, so I'm pretty darn sure that points to the problem being the version router WRT310N 2 somehow.

    Thank you for trying to help, there is no help for this problem.  I really tried to make the WRT310N I got work, both were defective in exactly in the same way, this is why I finally gave up.

    -Roger

  • In Streaming URL access problem

    I'm developing an audio application for the Webkit browser HTML5-based streaming.

    This application allows the user to select the URL about 500 each belonging to a different radio station.

    The problem is that if everything works as expected in the simulators, audio streams don't come throug when a test is performed on a real blackberry. Of the app to different URLS external links to retrieve image of radio station logos, but audio external URLS do not work. I've had two users try on two different blackberries with the same result. They use the OS6 and OS7 so these are the two new phones. Can someone tell me what could go wrong?

    Looks like I need set the permissions of the configuration file, after doing some research on this site.

    It's something youdon t need to do this when you use the simulators.

  • Strange: Objectchoicefield and ObjectListField in Gridfieldmanager - navigation problem

    Hi @all,

    I have a very strange problem, because running Simulator runs as I would have liked, but the device, the navigation is bad:

    running OS 5.0.0.42 3 on device (BB9700) and the Simulator

    1. the building screen

    2. put verticalfieldmanager on it that contains the background image

    3. put gridscreenmanager (with a column - the problem is with more then one column, too) on the first position of the vfm

    4. turn objectchoicefield with 5 points on the 1st row of the gsm

    5. put the objectlistfield with 5 points on the second line of gsm

    Program running in the Simulator:

    View all as I prefer.

    The first objectchoicefield and beyond the objectlistfield.

    When I scroll with trackpad OCF Gets the focus first and after that the olf on its first line.

    I can scroll up and down, and everything's fine.

    Program running on the device:

    View all as I prefer.

    The first objectchoicefield and beyond the objectlistfield.

    When I scroll with trackpad OCF Gets the focus first and after that the olf on its first line.

    So far so good:

    When I scroll down to the olf, all things are working properly. For example, point 4 a now focus.

    Now, if I try to go back in the OLF, it should go back to article 3 of the olf, but this is the leap into objectchoicefield. After that, if I try to go back to the objectlistfield, it jumps directly to point 4, which he came before.

    If I don't put the objectchoicefield in the first row, everything works fine.

    What can I do?

    I did something wrong?

    All ideas are very appeciated.

    Thanks in advance.

    CUA

    Michael

    Well, I found it.

    I made a mistake in the application of my own gridfieldmanager navigationmovement method.

    What is already strange: I used the same gridfieldmanager within 2 screens in my application. First screen was working fine, the second one was bad. Same content in both screens.

    Sorry for that.

    Thank you for all.

    CUA

    Michael

  • URL parameter problem

    Hello

    I'm new to the development of blackberry applications. I try to access a Web service, I can access using the http connection. When passing a parameter in the URL includes only one word then it works fine and answers correctly, but when I pass the same variable with a different value that contains several words separated by space, then it generates an error. I tried to pass the same URL in the browser, but the browser gives me good performance.

    I believe strongly that there is a problem when the parameter is sent. Please help me

    Thanks in advance

    If you only want to add parameters using percent encoding:

    http://en.Wikipedia.org/wiki/percent-encoding

  • Streaming and URL redirection problem

    Hello

    I have a problem with an application that I have developed, the application plays a remote mp3 file via the player class (player player = Manager.createPlayer (url); player.start ();) but to access the url of the file physical I follow two different redirects.

    Is there a way for the player to follow automatically the different redirects or I need to manipulate them manually

    Thank you

    Abdeslam Jakjoud

    Unfortunately, you face within your application. Please refer to this topic too. http://supportforums.BlackBerry.com/T5/Java-development/RTSP-player-can-redirect/m-p/1380467#M179370

  • Edge Navigation problem

    Hi all

    I implemented the RIM navigation in my widget, but I'm having problems with getting the focus on my select element.

    My page has a selection to the top and a Div containing a table in the lower section. I added the CSS to highlight the div or select whereby is concentrated (scoring event). My Div points out correctly, but my select never for highlights. Here is my HTML code and an excerpt of my css as well as some screenshots.

    
        
            
            Emit
            
        
        
            
    last updated: 2/11/2010 7:15:00 AM
    DescriptionValue
    Current Day Volume67
    Previous Day Volume1302
    Differential Pressure51.95
    Corrected Flow Rate1331.5
    Pressure65.12
    RTU Supply Voltage12.41
    Tubing Pressure99.22
    Casing Pressure344.12
    Separator Pressure68.39
    Tank 1 Level57.32

    CSS

    select:hover
    {
        background-color:#FFE773;
        color: white;
    }
    div:hover
    {
        background-color:#FFE773;
    }
    
  • URL monitor problem

    Hello

    I have a problem with the url monitors in sitescope 11.12.I have a lot of monitors, but occasionally monitors URLs go to error status and send email... a lot of e-mails due to the large number of monitors. When I go to the details of every monitor I see that status has value of sub zero (for the most part-1) and I have no idea why, because when I run a monitor manually, he goes to the good condition and everything seems to be ok. I am flooded with e-mail messages, and helps the single server restart. After the reboot, everything is ok... for the next ~ 12 h. Then it goes crazy again... and again reboot and still ok and so on and so forth. I did not any changes in SiS recently. I've seen is that, when I go to Network Status Tool, there are dozens of connections which are in a State of "TimeWait". Operating system is windows server 2003 64-bit. Please help me, I can't stand these emails any more ;-)

    Thanks in advance,
    Przemysaw

    Hello Przemysaw,

    It's the level of consumer forums.

    Your question is better asked in the Forums of company/Business more here.

  • Navigation problem and debugging

    JDeveloper 12.1.3

    Once again the warning: I am far from ADF pro, trying to learn, and maybe my question would be little sense:

    Scenario:

    1 Page 1 is a search with the results table page. Say with VO1Iterator VO1. If it's important at all, the page itself is jsff the activity view the BTF1 fragment with two cases of flow of control out of it: CFtoPage2 and CFtoPage3, both going activities Parent returns control to the main configuration adfc UTF. The user can click on Button1 or Button2 that fire corresponding Action bean method support and navigate to CFtoPage2 (Button1) or CFtoPage3 (Button2).

    2 page 2 is another fragment jsff in BTF2 with the link1, link3 to Page 3 and back to Page 1.

    3 page 3 (another BTF) has link to Page 1 only

    Problem:

    -While on Page 1, the user may access the Page 2 and 3 of the Page without problem

    -If on Page 1, the user goes to Page 2, and then to the Page 2 user link3 click nothing happens.

    -If on Page 1, the user accesses the Page 3, first, then goes back to Page 1, then Page 2 and click link3, navigation is successful!

    I don't see errors in case of a failed navigation. No idea how to debug this problem?

    Responses to 1)

    Have you implemented exceptions?

    If so, you should have then taken the NPE in the exception handler. For more information read Oracle ADF

    (2) the logging.xml is the build of the managed server. So if you bounce the server managed (in your case the embedded server) it will be re-created. For this, you can remove the system12.1.3... x.x.x./DefaultDomain. Then you can re-create the embedded weblogic server. Disadvantage is that each parameter that you did in your embedded server has disappeared.

    Timo

  • APEX URL SYNTAX PROBLEM

    APex 4.2

    I think I still have a problem with the syntax of URL Apex. I have a question where I am a link within the query and try to get inside several pairs of element value. I have no problem passing a pair of point value, but when I try to do multiple, I have a problem. My query is below:

    SELECT project_id, content_type,
    '<a href="javascript:apex.submit({request:''SAVE'',set:{''P3_GO_TO_FL'':'''||'Y'||''',''IREQ_PROJECT_ID'':#PROJECT_ID#}});">Project</a>' as "Project Link"
    FROM MY_TABLE
    WHERE THIS_ID = :P3_ID
    
    

    I feel as if there's some place apostraphes. I tried a variation of things, but I just don't get it. I had a similar problem before, but it is within a link of the column. It is within a query which I assume has something to do with why my syntax was interrupted. Any help on this would be greatly appreciated. Thanks in advance

    OK, so I made some progress. Consider the following query:

    SELECT project_id, content_type,
    case
       when content_type is not null then 'Not Null Case'
       else 'Null Case'
    end as "TESTING_QUERY"
    FROM THIS_TABLE
    WHERE THIS_ID = :P3_THAT_ID
    

    So I'm still trying to build a link inside a query (don't see any solution to my problem). I have two branches. One who makes something when the value of the indicator is set on 'Y' and a branch that made another when the value of the indicator is set 'n'. In my case, 'Y', the content_type must be passed in a page element. The syntax is correct. The only problem is that the string substitution #CONTENT_TYPE # gives me problems. I don't know if this should be a substitution string or not, but I know that if I had to replace this with a random value, that random value substitution string passed to the order of the day of the P3_CONTENT_TYPE page (I tried several times) and I am able to use/view the content of this page P3_CONTENT_TYPE element. Even when I fly over my link, the url is correct, but instead to display the actual value of the substitution string, it just shows "#CONTENT_TYPE # Rather than use the substitution string my request, I also tried to use 'content_type' but is not no longer works.

    It is the last problem or obstacle that I am jumping. Getting the substitution string to display real value would be solve my problem overall. Any ideas on what could be the problem?

    Thanks in advance.

    As soon as I posted this, I've done a few steps more and I realized what the problem was. This is the syntax of the query. I guess that it will not allow you to use a substitution string. Must concatenate it thus:

    SELECT
    ....
    ....
    when content_type is not null then 'Not Null Case'
    else...
    end as..
    ....
    ....
    

    This is the correct syntax... I guess I should since I'm pulling the value of content_type itself in the actual query. But it works for me. Maybe not the best way, but it solved my problem. Thanks for your help. Maybe this will be useful to someone else.

  • Palm Pre Sprint Navigation problem

    I did have a problem with my function of Navigation of Sprint on my pre so far.  Usually, when I open the app it was asking me if it was OK to use my position to help in directions (location, etc.).  In recent weeks, he asked that more.  When I put the address where I'm trying to go, the GPS said they can't find my current position and I need to make sure that I am in heaven.  I'm usually in the light of the sky but move and try again, but it still does the same thing.  Does anyone else have this problem?  All the patches?  Thank you!

    My first suggestion would be to open the application location Services and ensure that this automatic location feature and use GPS are on.

  • Bean in 11.1.1.7 navigation problem

    Hi all

    JDeveloper 11.1.1.7 code below

    FacesContext context = FacesContext.getCurrentInstance ();

    context.getApplication () .getNavigationHandler () .handleNavigation (context, "", result);

    does not work sometimes. If you clicked many times popup with inlineFrame user on the page, the navigation fails, user always on the same page instead of this move. It never happened in JDeveloper 11.1.1.5. Is - everyone faced and solved the problem?

    Thank you

    SNikiforov

    You may not use the Manager of navigation at all. Check

    "How to navigate workflows bounded in http://www.oracle.com/technetwork/developer-tools/adf/learnmore/nov2010-otn-harvest-190744.pdf

    Timo

Maybe you are looking for