Need help adding filter criteria for reports with the GO URL + Post method.

In attempts to hide some of the information from the URL, we've decided to go pull the parameters out of the url used in the GO Url method. We've managed to get it to retrieve the report and display it without showing the user name and password how we cannot seem to pass in any search criterias.
The following is what i have:
Can anyone help me with this issue? or provide any suggestions?
Thanks!
form id="form1" runat="server" action="http://452.342.424.421/analytics/saw.dll?Go" method="post">
<input runat="server" id="Cmd" type="hidden" name="Cmd" value="Answers"/>
<input runat="server" id="nqUser" type="hidden" name="nqUser" value="admin"/>
<input runat="server" id="nqPassword" type="hidden" name="nqPassword" value="admin"/>
<input runat="server" id="Path" type="hidden" name="Path" value="/users/abid.farooq/Countries" />
<input type="hidden" name="Options" value="fr" />
<input type="hidden" name="Action" value="Navigate" />
<input type="hidden" name="P0" value="1" />
<input type="hidden" name="P1" value="eq" />
<input type="hidden" name="P2" value="%22Location%22.%22Country%20ID%22" />
<input type="hidden" name="P3" value="CHN" />

Hi,
Instead of this,
<input type="hidden" name="P2" value="%22Location%22.%22Country%20ID%22" />
can you try this:
<input type="hidden" name="P2" value='"Location"."Country ID"' />
Here, instead of enclosing the value in double quotes, enclose in single quotes. Also replace %22 and %20 with double quotes and space.
Try it and let me know if this helps!
Thanks

Similar Messages

  • I need to learn how to build reports with the latest technologies

    Hi everybody
    I hope you can help me out in enlighten me by giving me the keys about how to start building the report with the latest technologies and using them in java applications either web apps or desktop apps
    I really do hope you assist me to go learn it .....
    Thanks folks

    All you ever wanted to know about Oracle Reports:
    http://www.oracle.com/technetwork/middleware/reports/documentation/index.html

  • I have a godaddy website with a welcome page- I need help adding a few additional pages with a hyperlink to my welcome page.

    I need help attaching a few hyperlinks my godaddy welcome page. I have 2 more ipages articles, I also converted them to pdf. Godaddy only helped (last year) with the 1st article.  I do not know how to attach a hyperlink to the artlcles and add the hyperlinks to my welcome page.

    The program is called Pages not iPages. Just let us know if you do not speak English and what language you do speak so we can adjust for that.
    The issues are to do with your web page not with Pages.
    I think you are asking how to link from your web page to your pdf articles. You must first copy those pdfs to your web server, or some other web location, and then provide html links on your welcome page to those pdf files.
    The pdfs themselves may contain links to other locations but I can not see that that is what you are asking for.
    Nor to what those links would be to.
    From your heading I think you may have confused the name of Pages, the word processing program, with web pages which are two different things.
    Peter

  • Need help setting up an IP phone with the Westell 9100EM router

    I have an IP phone that I use for work - it's an old fashioned Axxess phone by InterTel but it works. I've had both DSL and cable service before, using a Netgear wireless router with the phone and never had an issue with the phone connecting to our office phone system. I just recently moved and have FIOS and chose not to hook up the Netgear, since the Westell does DHCP just fine.
    When I connect the phone, the phone is receiving an IP address from the router and I can see it's connected when I'm logged onto the router but it will not connect with our system. The phone runs through UDP port 5567 but connects usually with TCP port 5566. I can ping 5566 and get a reply. I can telnet our Remote IPC IP using 5566 and get a response but the phone times out after 60 seconds of not being able to connect.
    I have checked out this website and am guessing it has something to do with port forwarding. I tried to make some changes but I'm not sure I understand enough about how it's supposed to work to feel confident that I put the right information in the right places!
    I could really use a nudge in the right direction. The phone worked a few days ago on a DSL connection so I know the phone is working. Other users who work from home are not having issues with their IP phones so I've narrowed it down to the router. Both my computers are working on the system too.
    Thanks!
    Anne

    #1 http://i27.tinypic.com/2due29v.jpg
    At that screen in your router, change the Starting IP so that it is
    192.168.1.100
    #2 On the Axxess phone by InterTel, setup a static IP outside of that range.
    You can set any number that you want to BUT NOT: 0, 1, 100 to 255.
    #3 Here is/are guide(s) for that router (This is based upon the screen images seen so far)
    http://www.portforward.com/english/routers/port_forwarding/Actiontec/MI-424-WRv2/MI-424-WRv2index.htm
    ^^
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

  • Need help on Query Criteria for GET Import Definition.

    Hi,
    For GET Contact Import Definition, I tried to hit URI /contacts/imports?q="id<50" and I received totalRecords=30.
    In same way, I tried to hit URI /contacts/imports?q="id<50" OR "id=8", Eloqua returned totalResults=1 whose id=8.
    But expected result was fetching all records where id is less than 50.
    Why only second criteria worked in this case? Am I missing something here?
    Thanks

    Add the NOCYCLE clause to your connect by statement CONNECT BY NOCYCLE PRIOR
    You also might want to add the organization ID into your join.

  • I need help adding a mouse motion listner to my game. PLEASE i need it for

    I need help adding a mouse motion listner to my game. PLEASE i need it for a grade.
    i have a basic game that shoots target how can use the motion listner so that paint objects (the aim) move with the mouse.
    i am able to shoot targets but it jus clicks to them ive been using this:
    public void mouse() {
    dotX = mouseX;
    dotY = mouseY;
    int d = Math.abs(dotX - (targetX + 60/2)) + Math.abs(dotY - (targetY + 60/2));
    if(d < 15) {
    score++;
    s1 = "" + score;
    else {
    score--;
    s1 = "" + score;
    and here's my cross hairs used for aiming
    //lines
    page.setStroke(new BasicStroke(1));
    page.setColor(Color.green);
    page.drawLine(dotX-10,dotY,dotX+10,dotY);
    page.drawLine(dotX,dotY-10,dotX,dotY+10);
    //cricle
    page.setColor(new Color(0,168,0,100));
    page.fillOval(dotX-10,dotY-10,20,20);
    please can some1 help me

    please can some1 help meNot when you triple post a question:
    http://forum.java.sun.com/thread.jspa?threadID=5244281
    http://forum.java.sun.com/thread.jspa?threadID=5244277

  • Creation of report with the help of report painter

    Dear Experts,
                         I need report painter material, if any body have  pls  farward to me.
    my intension to create controlling report with the help of report painter.
    I am ready to award full points.
    Thanks in advance
    Regards
    avudaiappan
    Moderator - Please read this:
    /thread/931177 [original link is broken]
    Thread locked

    Hello Chinasammy,
    Report Painter allows you to create reports using data from SAP application components, which you can adapt to meet your individual requirements.
    Many of your reporting requirements can already be met by using the standard reports provided by various SAP application components. If these SAP standard reports do not meet your reporting needs, Report Painter enables you to define your specific reports quickly and easily.
    When executing a Report Painter report, it is displayed by the system in Report Writer format. You thus have access to the same functions as for Report Writer reports defined in the same way, and can combine Report Painter and Report Writer reports together in a report group.
    Report Painter uses a graphical report structure, which forms the basis for your report definition and displays the rows and columns as they appear in the final report output.
    To facilitate report definition, you can use many of the standard reporting objects provided by SAP (such as libraries, row/column models, and standard layouts) in your own specific reports. When you define a Report Painter report you can use groups (sets). You can also enter characteristic values directly.
    Advantages of Report Painter include:
    Flexible and simple report definition
    Report definition without using sets
    Direct layout control: The rows and columns are displayed in the report definition as they appear in the final report output, making test runs unnecessary.
    =============================================
    Below mentioned is the process for creating reports using Report Painter as a tool.
    Selecting and maintaining a library for your report: As the transfer structure to Report Painter you use a report table, which is defaulted by SAP and can not be maintained. This table contains characteristics, key figures and predefined columns. In a library, you collect the characteristics, key figures, and predefined columns from the report table, which you need for your Report Painter reports.
    When you define a Report Painter report, you assign it to a library. Reports assigned to one library can only use the characteristics, key figures, and predefined columns selected for that library.
    When you create or maintain a library, the Position field determines the sequence in which the characteristics, key figures or (predefined) key figures appear in the Report Painter selection lists when you define a report. This allows you to position the objects that you use regularly in your reports at the beginning of the selection lists. If you do not make an entry in the Position field, you will not be able to use this object in Report Painter reports.
    You can use either the standard SAP libraries for your reports or define your own.
    (ii) Selecting or maintaining a standard layout for your report: Standard layouts determine report layout features and the format of your report data.If the SAP standard layouts do not meet your reporting requirements, you can create a new  standard layout or change an existing one.
    (iii) Defining row and column models: A model is a one-dimensional, predefined reporting structure that you can insert in either the rows or columns of your report.If you often use the same or similar row or column definitions in your reports, it is recommended that you create row or column models.
    You must define the row and/or column models that you want to include in your report definition before you define the report.
    You can also use the standard column models supplied by SAP.
    (iv) Defining the report: Defining a Report Painter report involves the following steps.
    (a) Define the report columns: You define the report columns using the characteristics, key figures, and predefined columns selected for the library that the report uses. Alternatively, you can use a column model for column definition. Column models are predefined column structures which you insert into your entire column definition, instead of defining each individual column.
    (b) Define the report rows: You define the report rows using the characteristics selected for the library selected for the report.
    Alternatively, you can use a row model for your row definition. Row models serve the same purpose as column models, but are used to define a report row.
    Edit and format the report rows and columns in line with your requirements. (For example, you can hide rows or columns, define the column width or define colors for your report rows).
    (iii)Define general data selection criteria for the selection of your report data: Selection criteria are the characteristics used to select data for the entire report. You cannot enter characteristics as data selection criteria if they are already being used in the report rows or columns.
    (iv) Assigning the report to a report group: Once you have defined a report, you must assign it to a report group. A report group can contain one or more reports from the same library. However, reports that share the same data will select data more quickly and improve processing time.
    Hopw this helps you. Please let me know if you need anything more and assign points.
    Rgds
    Manish

  • I need a report with the following fields

    Hi All,
    I need a report with the following fields & G/L "Expenses" only.
    1)G/L Code.
    2) G/L Name.
    3) G/L Balance
    & Selection Criteria From Date, To Date , & Location(for me locations is PROFITCENTRE).
    Please some body suggest me an SQL Querry to fetch this result.
    Thanks in Advance,
    S. Mobin

    Hi!
    Individual G/L means i didn't understand
    check this for only Expence Acc
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    Declare @Location nvarchar(20)
    set @FromDate = (Select min(S0.RefDate) from jdt1 s0 where s0.Refdate >='[%0]')
    set @ToDate = (Select max(S1.RefDate) from jdt1 s1 where s1.Refdate >='[%1]')
    set @Location = (Select max(s2.ProfitCode) from jdt1 s2 where s2.ProfitCode  = '[%2]')
    select
    J1.Account,
    max(A0.AcctName) as Name,
    j1.ProfitCode as Location,
    sum(J1.debit-j1.credit) as Balance
    From
    JDT1 J1,OACT A0
    Where
    J1.Account=A0.AcctCode and
    J1.RefDate >=@FromDate and
    J1.RefDate<= @ToDate and
    j1.ProfitCode=@Location and
    A0.GroupMask = 5
    Group By
    J1.Account,j1.ProfitCode

  • Need help adding schedule to xcode 4

    I need help adding a tour schedule for an iphone app building an app for 13 djs and they want thier tour schedules added these need to be updated monthly is there a way to add this????

    I don't know if this is the easiest way but it works for me. I connect the DVD player to my camcorder (so it's the 3 plugs yellow/red/white on one end and a single jack into the camera). Then I connect my camcorder to the computer (I think it's through a firewire port). Then I just play the DVD and the footage is digitized via the camcorder and I import it into iMovie 4 as it's playing. I believe the camcorder is just in VCR mode.
    I have also used this method to transfer VHS tapes onto DVDs via the camera by connecting the VCR to the camera.
    I haven't had much luck with movies over about 40 minutes on iMovie. But if it's home movies, there may be a logical break. Do maybe 20 minute segments (it's also really easy on iMovie to add a soundtrack if these are OLD films with no sound.
    As you can see, I'm low tech!
    Good luck!
    Powerbook G4   Mac OS X (10.3.9)  

  • NEED HELP - Skype Phone icons for my site - one fo...

    I need help please
    I have a website with 1000+ members (1000+ phone numbers). I need members to call each other once we give them approval to contact via phone. However, I don't want them to see each other's number (also, it should show while dialing) but just click on logo and the other site phone rings (system will search database and call number assosiated to a profile.)
    I have my PHP developers but they are not sure how to even start and out of ideas. And even if we do it on our website, will it destroy our site's performance/bandwidth...etc

    Hi, Tamer732,
    I have learned the best course is to please contact Skype Customer Service with your enquiry.  Here is the link to use: https://support.skype.com/en/faq/FA1170/how-can-i-contact-skype-customer-service
    Please report back if you do not receive a timely or complete reply.
    Best regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • CRM 7.0 = ECC 6.0 Upload: Filter criteria for BUPA_MAIN

    Dear Experts,
    concerning filtering of BUPA_MAIN in CRM 7.0 => ECC 6.0 Upload we have already learned from SAP (to our surprise) that the only way is to redefine publication BUPA_MAIN as "simple intelligent" (Standard is simple bulk). BUPA_MAIN as "simple intelligent" offers a couple of fields (e.g. partner_no, is_customer) which can be defined as filter criteria.
    We have the requirement to filter by a bp status field which is not part of this set. By the way, we expected the filtering in object management (TX R3AC1, filters are only valid for ECC=>CRM Dowload) or at least in the TX CRMC_BUT_CALL_FU by registrating a ZFunction module in CRM outbound for BUPA_MAIN. Under certain circumstances the later leads to errors  in the subsequent middleware processing.
    Has anybody a similiar requirement or does face the same problems?
    Thanks for your help.
    Regards, Mark

    Hi Mark
    Please put this request in the correct forum of CRM Middleware.
    I am sure your will get the right help from the middleware experts.
    Regards

  • Need help in developing BADI for IT0001

    Hi All,
    I need help in developing BADI for IT0001.
    On IT0001 create or change, there is need to update IT0017 with following data from IT0001
    -Company Code
    -Cost center
    -Business Area
    -Begin and End Date.
    Other fields from IT0017 need to be derived from Position and update in IT0017.
    Please guide me how I can address this. I do not want to go for dynamic action, as it is not getting evoked during background jobs.
    I am new to BADI development and will appreciate step by step instructions.
    Thanks

    Hi,
         follow the below steps to achive
    Steps:
    1.     Execute Business Add-In(BADI) transaction SE18
    2.     Enter BADI name i.e. HRPAD00INFTY and press the display
            button
    3.     Select menu option Implementation->Create
    4.     Give implementation a name such as Z_HRPAD00INFTY
    5.      You can now make any changes you require to the BADI within this
            implementation, for example choose the Interface tab there are 3 methods avialble
    6.     Double click on the method you want to change, you can now enter
            any code you require.
    7.      Please note to find out what import and export parameters a
            method has got return the original BADI definition
            (i.e. HRPAD00INFTY) and double click on the method name
            for example within HRPAD00INFTY contract is a method
    8.      When changes have been made activate the implementation
    <b>Reward points</b>
    Regards

  • Need to download printer driver for 3510 with windows 10

    I need to download printer driver for 3510 with Windows 10

    Here is the link to the Deskjet 3510 drivers.
    Please mark the post that solves your issue as "Accept as Solution".
    If my answer was helpful click the “Thumbs Up" on the left to say “Thanks”!
    I am not a HP employee.

  • I need help installing Lightroom 5.  I tried the trial and it does not have an uninstall feature.  Thus, I'm trying to activate with my new $9.99 per month subscription and it simply will not work. Very frustrating you already took my money and no results

    I need help installing Lightroom 5.  I tried the trial and it does not have an uninstall feature.  Thus, I'm trying to activate with my new $9.99 per month subscription and it simply will not work. Very frustrating you already took my money and no results, and very difficult to get help.

    Lightroom Trial uninstall wrote:
    Very frustrating you already took my money and no results, and very difficult to get help.
    Just for clarity, "we" haven't taken your money - this is a user-to-user forum, and you're not talking to Adobe.
    Like Rob I'm a Windows user, and - like him - I thought "uninstalling" on Macs was simply a case of trashing the application. Google would seem to concur.
    Not really a Lightroom/Adobe issue, then?

  • WRVS4400N v2: Need help setting up VPN for Mac

    I'm having problems trying to establish a IP Sec tunnel from the office to home. All of our machines are Macs so I have been using the directions described in "How to create an IP Sec tunnel for MAC Clients, A QVPN alternative" but I still can't get it to work. My setup is as follows:
    The office is connected to the outside world through a MODEM (Sagemcom 2864 Connection Hub). This MODEM is also a wireless router. It's DHCP server provides addresses 192.168.2.x.
    The WRVS4400N's WAN port is connected to one of the LAN ports on the MODEM. It's IP address from the MODEM is 192.168.2.x. The WRVS4400N provides addresses 192.168.21.x to devices connected to it.
    We have a DynDNS account and are using the DDNS client on the WRVS4400N router to connect to it.
    At home, we have a DIR-655 router with IP Sec Passthru enabled. The router provides IP addresses 192.168.1.x for all devices connected to it. I am fairly sure there are no issues with the router setup at home since I am able to VPN into the office of my full-time job without any problems.
    I have tried just about everything I can think of but have not been able to get this to work. Can someone please help with setting up the Local and Remote Group Settings on the WRVS4400N and the IP address settings in IP Securitas?
    TIA

    Hi,
    If you need to establish a client vpn connection with the WRVS4400N, first you need to insure that the modem infront support IPSec Passthrough and that UDP ports 500 and 4500 are forwarded to the WAN IP of WRVS4400N.
    On WRVS4400N you have to configure IPSec VPN tunnel, and when configuring IPSecuritas insure that you have the same encryption as on the router.
    It could help if you enable the Local logs and see the error message.
    You can provide the log output and print screens of the IPSec configuration, also screenshot of configuration of IPsecuritas

Maybe you are looking for

  • How do i transfer audi files from iPhone to my PC?

    I am new with iTunes and iPhone. I try to save my audio files from my iPhone to my new PC. If I sync with the PCs iTunes library I'll lose all my songs on my iPhone. I need help with a reverse sync, meaning tranfering my songs from iPhone to my PC. T

  • From MacBook to TV

    Hi all, I've seen at least ten different cables at the online Apple Store. And I don't want to buy the wrong one... I'd like to connect my MacBook to a TV to show my audience a Keynote. What do I have to buy? Thanks, Antonio

  • Music or sound equalizer app

    Any suggestions for a sound equalizer app that runs on TB v 2.2.0?  I use Spotify, so don't need another media player with integrated equalizer.  I can find some apps for v.2.3.0, but I don't want to wait for that update.  Thanks in advance.

  • I updated to latest itunes and now username and pw don't work

    hello. i updated to version 9.1 and then tried to sign in as admin in itunes u and i am being told my appleconnect acct or pw is incorrect. have then been any issues like this? i can't get in. thanks for any help.

  • Crystal Reports Version for Visual Studio 2010 Fails to Install

    Hi - I am trying to install the CR redistribution package for .Net 4.  When I run CRRuntime_32bit_13_0.msi I get an Error 1904 when it tries to register the commonobjmodel.dll.  If I manually register the dll using regsvr32 I get the following messag