Problem in passing Modified date through Go url

Hi All
I am trying to pass parameters through url to report.
Its working fine and passing row id of the record but when i try to pass modified date also, it takes me to no result view where i can see that value has been passed to report but the results are not filtered, instead no result view.
While passing date in url as parameter do we have extra consideration?
Anybody has faced smilar kind of scenario.

I am getting the following error when trying to pass modified date for oppty.
Error getting drill information: SELECT Opportunity.Name saw_0, Opportunity."Opportunity ID" saw_1, Opportunity."Sales Type" saw_2, Opportunity.Priority saw_3, Opportunity."Last Modified" saw_4 FROM "Opportunity Lists" WHERE (Opportunity."Opportunity ID" = 'AAPA-6EEC9X') AND (Opportunity."Last Modified" = timestamp '0000-00-00 00:00:00')
Error Details
Error Codes: YQCO4T56:OPR4ONWY:U9IM8TAC:OI2DL65P
Odbc driver returned an error (SQLExecDirectW).
State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 46048] Datetime Month value 0 from 0000-00-01 is out of range. (HY000)
SQL Issued: {call NQSGetLevelDrillability('SELECT Opportunity.Name saw_0, Opportunity."Opportunity ID" saw_1, Opportunity."Sales Type" saw_2, Opportunity.Priority saw_3, Opportunity."Last Modified" saw_4 FROM "Opportunity Lists" WHERE (Opportunity."Opportunity ID" = ''AAPA-6EEC9X'') AND (Opportunity."Last Modified" = timestamp ''0000-00-00 00:00:00'')')                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Passing 2 varibles through a URL

    I don't know how to pass 2 variables through a URL. I am
    familiar with ASP
    but it doesn't work the same. Please help
    <cflocation
    url="payment.cfm?username=#FORM.username#&email="#FORM.email#"">
    Wally Kolcz
    Developer / Support

    It looks like you've got an extra set of quotes:
    Take out the double quotes around #FORM.email#
    I think that will solve the problem you are having with them
    not showing up in the hidden form fields as well.

  • How to pass delivery date through BAPI while creating a sale order

    Dear frndz,
         I am using 'BAPI_SALESORDER_CREATEFROMDAT1'
    to create a sale order .
        I don't have any problem..
        But I have to pass schedule line delivery date through this bapi .
       I used REQ_DATE in structure BAPISCHDL.
       But I can' t get it.
       Through which parameter can i meet this..
       The sale order should be created line item wise along with my delivery date..
      Any suggestions...
    regards.
    siva

    Dear frnd,
        Danq for your response..I can't use DLV_DATE for this requirement..
        But I used REQ_DATE in the structure BAPISCHEDULE .
       I came to know that the problem i faced previously  was only
    internal data conversion.
        Now am able to pass my delivery date..
        so I am closing the thread..
    Regards.
    siva

  • Passing Image data through JNI?

    Hello,
    I am trying find the fastest way to pass image data from Java through JNI. Passing Java images through JNI seems to be a very common thing to do so I expect there's an oft-used approach. Can anyone give me a good explanation of this or point me to some references?
    I need to pass the image data to a C++ function which operates on this data, writing the results to a destination buffer which goes back to Java and gets put back into an image.
    Currently, I'm using BufferedImages and getRGB to get an int array from my source image, passing this through JNI along with another int array to be used as the destination buffer, then calling setRGB with my destination buffer after the JNI function returns. getRGB() preserves the alpha channel of png files, which is functionality I need. The problem with this approach is that getRGB is extremely slow. It can take up to two seconds with a large image on my 1.2 Ghz Athlon. It seems to be performing a copy of the entire source image's data. Maybe there is a way to decode a jpg or png directly into an int array?
    -Aaron Dwyer

    Here's how you could do it for TYPE_4BYTE_ABGR
    BufferedImage img=new BufferedImage(13,10,BufferedImage.TYPE_4BYTE_ABGR);
    img.setRGB(0,0,0xff0000);     
    img.setRGB(5,1,0x00ff00);        
    img.setRGB(1,1,0xcafebabe);
    DataBuffer db=img.getRaster().getDataBuffer();
    int dataType=db.getDataType();
    if (dataType!=DataBuffer.TYPE_BYTE)
         throw new IllegalStateException("I can do it only for TYPE_BYTE");
    int imgType=img.getType();
    if (imgType!=BufferedImage.TYPE_4BYTE_ABGR)
         throw new IllegalStateException("I can do it only for TYPE_4BYTE_ABGR");
    DataBufferByte dbi=(DataBufferByte)db;
    byte[] array=dbi.getData();
    SampleModel model=img.getSampleModel();
    if (!(model instanceof PixelInterleavedSampleModel))
         throw new IllegalStateException("I can do it only for PixelInterleavedSampleModel");
    PixelInterleavedSampleModel pisModel=(PixelInterleavedSampleModel)model;
    if (pisModel.getPixelStride()!=4)
         throw new IllegalStateException("I can do it only for pixel stride of 4");
    if (dbi.getNumBanks()!=1)
         throw new IllegalStateException("I can do it only for 1 band");
    int scanlineBytes=pisModel.getScanlineStride();
    // Access the green Pixel on Position 5,1
    System.out.println( (int)array[5*4 + scanlineBytes] &0xff);     // Alpha        
    System.out.println( (int)array[5*4+1 + scanlineBytes] &0xff);     // Red        
    System.out.println( (int)array[5*4+2 + scanlineBytes] &0xff);     // Green        
    System.out.println( (int)array[5*4+3 + scanlineBytes] &0xff);     // Blue     I've added some checks to make sure we're accessing the data the right way.

  • Problem in passing a date field to initilaize a VO query

    Hi,
    I am stuck with date issue
    I am passing end date to a VO query as parameter.
    this date is oracle.jbo.domain.date
    public void initQuery(Number swapHeaderId, Date start_date, Date end_date)
    setWhereClauseParam(0, end_date);
    When i print this end_date I get 2011-08-15
    In VO query I have mentioned
    Select Srsf.Swap_Header_Id From Sfifin.Sfi_Rm_Swap_Fills Srsf ,Sfifin.Sfi_Rm_Swap_Header Srsh, Sfifin.Sfi_Rm_Offer_Lines Srol Where Srsf.Swap_Header_Id = Srsh.Swap_Header_Id
    And Srol.Offer_Line_Id = Srsf.Offer_Line_Id And Srol.Offer_Header_Id = Srsf.Offer_Header_Id And Srsf.Swap_Header_Id = 124
    And to_char(Srol.End_Date,'YYYY-MM-DD') > to_char(to_date(:1,'YYYY-MM-DD'),'YYYY-MM-DD')
    Now when this Vo executes I get this error.
    java.sql.SQLException: ORA-01858: a non-numeric character was found where a numeric was expected
    I have tried all means but am unable to solve this issue.I have even tried to use
    Srol.End_Date>to_date(:1,'YYYY-MM-DD') in where clause but still the same error when I am hardcoding this parameter its working fine .
    Please help.

    setWhereClauseParam(0, end_date);Change this to
    setWhereClauseParam(0, end_date.toString());In VO query change
    Srol.End_Date > TO_DATE((to_char(trunc(to_date(:1)),'DD-MON-YYYY') ),'DD-MON-YYYY')Hope it helps!!
    Thanks
    AJ

  • Passing double data in go url

    Hi guys
    i need to pass double value in Go url how to do that... as i am getting error:
    '<a href="http://localhost:9704/analytics/saw.dll?Go&Path=/shared/test/cust_details&Action=navigate&P0=1&P1=call&P2=%22cust%20dim%22.%22cust%20id%22&P3='||CAST("cust dim"."cust id" AS DOUBLE)||'">'||"cust dim"."cust id"||'</a>'[nQSError: 10058] A general error has occurred. [nQSError: 22020] Function Concat does not support non-text types. (HY000)
    thanks

    Hi Kart
    thanks for your reply.. i have tried char as well as varchar but still getting same error :(
    '<a href="http://localhost:9704/analytics/saw.dll?Go&Path=/shared/test/cust_details&Action=navigate&P0=1&P1=call&P2=%22cust%20dim%22.%22cust%20id%22&P3='||CAST("cust dim"."cust id" AS CHAR(100))||'">'||"cust dim"."cust id"||'</a>'
    '<a href="http://localhost:9704/analytics/saw.dll?Go&Path=/shared/test/cust_details&Action=navigate&P0=1&P1=call&P2=%22cust%20dim%22.%22cust%20id%22&P3='||CAST("cust dim"."cust id" AS VARCHAR(100))||'">'||"cust dim"."cust id"||'</a>'Any other option?
    regards

  • Passing prompt filters through an URL

    My report has very long results table.
    The user ask to have, instead of the table view (which sometimes crashes the browser), a way to execute the report and download it to xls.
    I want to add section in the page, below the prompts, which will display the user a URL link to this report.
    I've read that I can add in the end of the URL the xls format: https://myip/analytics/saw.dll?Go&Path=mypath&format=XLS
    The issue is how to pass the presentation variables, which the report require.
    For example, the report has filter:
    day>@{p_day}
    The p_day is populated by the prompt in the upper side of the page, when the URL link should appear.
    I read the http://gerardnico.com/wiki/dat/obiee/url_filter, where he mentioned the case of 'Data Quality Metrics is prompt', but he didn't show the solution.
    How can I pass the presentaiton variable value in the URL link?

    Nir,
    You should really search through the forums before posting your questions as this/similar question has been answers a few times.
    But I'll take the points that you are going to award me though for providing you with the information and answer to your question. : )
    Towards the bottom of this blog post you will find the answer you seek on how to pas the presentation variables in the URL,
    http://www.iwarelogic.com/blog/integrating-oracle-obiee-content-using-go-url-850
    Other Forum Threads:
    Filter a dashboard prompt using GO URL
    Code snippet from iwarelogic's blog post:
    You can also pass Presentation variable in form @{variable_name} as a filter using GOURL.
    And static variable in form VALUEOF(static_var_name)
    Ex :
    '<a href=http:// '||VALUEOF(domain_name)|| ' :9704/analytics/saw.dll?GO&path=/shared/Operational%20Reports/Scorecard&Options=d&Action=Navigate&P0=3&P1=eq&P2=%22Reporting%20Line%22.%22Reporting%20Line%20Domain%22&P3='||REPLACE("Reporting Line"."Reporting Line Domain",' ','%20')|| '&P4=eq&P5=Geography.Dominion&P6='||REPLACE('@{DominionPromptVar',' ','%20') ||'&P7=eq&P8=Geography.%22Country%20Name%22 &P9='||REPLACE('@{CountryNamePromptVar}',' ','%20') ||'>' || Link || ''
    Note : Passing Parameters to the Report using GO URL is optional argument
    Cheers,
    Christian
    http://www.artofbi.com

  • Problem in passing xstring data from abap to webservice method.

    Hi,
    I want to upload the document from ABAP to Microsoft SharePoint. So for that i have created the webservice in .net for uploading the document in SharePoint.
    Now in Abap i have consumed this service by creating proxy class. The web service has one method as Upload_File which takes byte[] as paramerter, so in wsdl file this parameter get converted into s:base64Binary and in abap it get converted into RAWSTRING.
    Now, when i try to upload the file with very small content (less than 54 character mean the rawstring variable which contain the file content has length less than 108 ), file gets uploaded with no problem, but when the file has content more than 54 character, it give error like "SOAP:1.032 SRT: Wrong Content-Type and empty HTTP-Body received"
    And also one thing when i have created the proxy class it gives warning that "The XSD type base64Binary does not exactly correspond to the ABAP type RAWSTRING"
    What can be the problem? how to pass file content to external web service?
    Thanks,
    Vikram

    Hi Nick,
    Yes, when i declare the data type as string in XSD it get converted into xsd:string.
    I have already tried using String as parameter in WebService method instead of byte[].
    But then in .Net, I need to write some code for converting the string variable ( which content the file content in hexadecimal format) into byte array and for that there is a method provided by .Net framework but when I use it, it write the hexadecimal content in file.
    So I have written my own code for converting hexadecimal content which string variable content to byte array.
    By doing this, it working fine and all type of file getting uploaded in SharePoint but when I try to open the file only .TXT file get open properly and other type of file give me some error.

  • How to pass multiple dates through open document syntax

    Hi Team,
    I am need to pass more than one date from the summary report to detail report. What is the open document syntax to achieve this requirement. Thanks in advance
    pra

    Hi Pra,
    I believe you would need to use the lsM[NAME] syntax.
    lsM[NAME] is used to specify multiple values for prompts, separated by a comma.
    For instance:
    http://<servername>:<port>/OpenDocument/opendoc/<platformSpecific>?iDocID=Aa6GrrM79cRAmaOSMGoadKI&sID
    Type=CUID&sRefresh=Y&lsMparamStringDR=[c],[d]&lsMparamNumberDR=[3],[4]&lsMparamDateDR=[Date(2003,6,3)],[Date(2003,6,4)]&lsMparamDateTimeDR=[DateTime(2003,6,1,3,1,1)],[DateTime(2003,6,1,4,1,1)]
    Crystal reports
    If the target is a Crystal report, each value must be enclosed in square brackets.
    Web Intelligence documents
    The character ? is a reserved prompt value for Web Intelligence documents in an openDocument URL. Setting the prompt value to lsM[NAME]=? in the URL forces the "Prompts" dialog box to appear for that particular prompt.
    I hope this is a very helpful answer to you.
    Kind regards,
    John

  • Problem in displaying CLOB data through procedure

    Can anyone suggest me the stored procedure which will output CLOB data which is stored in table
    SQL>Create table XMLDOC
    (col1 number(11,0),col2 CLOB);
    Thanks in Advance

    Create the stored procedure with one OUT VARCHAR2 parameter,then select the CLOB column value from the
    table into this OUT parameter and then display this
    using DBMS_OUTPUT package.
    Or by using bind variable of type VARCHAR2(4000) you
    can print that value of clob column.
    I think this will solve your problem.

  • Problem while uploading master data through two files

    Hi all,
    When i try to upload master data of CUSTOMER with two files , Attribute and Text.
    Text gets uploaded perfectly.
    for Attribute, the data upload is done and psa i can see the exact data. But when i check the CUSTOMER object, i am not able to find the actually Attributs data. Instead those colmns are filed with 'E'.
    Can anybdy please explain me wheret the problem is.
    Thanks..

    Hi Sun,
    First check the data in PSA whether the records are fine or any discrepancy in them. Also check the properties of the COSTUMER object into which you are loading. The properties "type" or the "size" of the object may not be matching with the same in the file.
    Check them and try to load once again.
    Hope this helps u...
    Regards,
    Koundinya Karanam.
    Edited by: koundinya karanam on Jan 15, 2008 12:05 AM

  • Passing of data through GUI

    Hi all ,
    I have a simple question here..... but being a newbie and extremely pressed for time , I hope some kind soul can help me with thiis ....
    I hava a main class. From the main class I involve a GUI to collect information from the user ....
    public void collectinformation ( )
    abc = new abcGUI();
    // rest of the codes
    if (abc.getStatus = true)
    else
    how do i make the application to wait for the GUI to get dispose before executing the rest of the codes ???
    (Instead of running the GUI and immediately proceed with the rest of the codes ???)
    Thank a lot in advance !!

    my situation is like this
    I have 2 classes: 1 main one, 2 subclass that helps to collect user data
    *************************** subclass *******************************************
    public class subclass implements ActionListener
    public AuthGUIG8()
    //Create and set up the window.
    mainFrame = new JFrame("Authentication");
    mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //converterFrame.setSize(new Dimension(120, 40));
    //Create and set up the panel.
    mainPanel = new JPanel(new GridLayout(3, 3));
    //Add the widgets.
    addControls();
    //Set the default button.
    mainFrame.getRootPane().setDefaultButton(okButton);
    //Add the panel to the window.
    mainFrame.getContentPane().add(mainPanel, BorderLayout.CENTER);
    //Display the window.
    mainFrame.pack();
         mainFrame.addWindowListener
    mainFrame.setVisible(true);
         iFailAttempt = 0;
         bNewbie = false;
    ************* main class *************************
    public class mainclass
    subclass abc = new subclass()
    // rest of the codes
    if abc.getStatus == true
    else
    unless I can implement window Listener for window closing event on the main class to listen to the GUI created in the subclass, otherwise the window listener will not work rite ??
    In this case I will still have the "rest of the codes" been run b4 the GUI in the subclass was disposed rite ??
    how can i get rid of this multithreading situation ???
    please advise. Thank you in advance ..

  • Pass form data through web service to session bean

    Hello,
    i want to create an insert in a database table using a web dynpros that call my method createEntry i a sessionbean. The sessionbean is ok, it worked with a jsp.
    My Problem:
    The inputfields of my form are blocked so that i cannot insert the values. This problem only occurs if i bind the inputfields to the attributes of my web service in the view context.
    What i already did:
    I defined a web service in my EJB Module Project.
    I imported this model into my web dynpro.
    I bound the elements of the web service into the custom controller.
    I bound the elements from the custom controller to my view context.
    I did not bind the result of the web service in any way because i do not need it.
    Did i miss something i had to do?
    Thanks for help or any advices, it is my first time using a web service and i already tried to get along with the CarRental and the Email example.
    André

    Hi,
    I think you problem is not a Web Service but the fact that Model Context Elements are not created automatically.
    >I bound the elements of the web service into the custom >controller.
    You made a binding but here you should <b>create</b> the elemnts itself wich means:
    1. Create the instance of the element for you cotext node.
    2. Call wdContext.node<You Context Name>.bind(<instance created in previous step>
    This step is the same as for RFC Model so if you fill that my explanation is not clear enought go to Adptive RFC Model tutorial (calling BAPI_FLIGHT_GET_LIST) and see the code in wdDoInit() method.
    Hope it helps.
    Victor

  • Passing a UUID through URL

    I am having trouble passing a CreateUUID() through a URL
    because of the hyphens
    Is there a quick and easy way to get around this or do I need
    a script that will strip hyphens for the URL, and then add the
    hyphens back in once the page has changed locations?
    thanks for your comments in advance

    Adam Cameron wrote:
    >> i pass this
    >> &selection=D8660E35-1372-69E5-F732112DB40A7696
    >>
    >> and get this
    >> [Macromedia][SequeLink JDBC Driver][ODBC
    Socket][Microsoft][ODBC SQL Server
    >> Driver][SQL Server]Invalid column name 'D8660E35'.
    >>
    >> i guess this is more of a sql problem than a CF
    problem
    >
    > Yeah. Your query sounds screwed, as if you're using the
    VALUE (ie: the
    > UUID in this case) in place of a column name. Which is
    what the error
    > suggests.
    >
    > What's your query SQL?
    >
    Actually that is the error one gets when one forgets the
    quotes around a
    string with dashes in it. The SQL parser is trying to
    subtract what it
    perceives as one column name "D8660E35" from what it
    perceives as
    another "1372".
    Try putting single quotes around your string value.

  • How to pass date parameter in URL in system date format

    Hi All,
    I am working on a requirement where I need to pass the date parameter in URL. Where date format needs to be system default date format. How can we format date without providing specific date format.
    Also, I got some post which had below example. Can you let me know what this format does.
    '/analysis/report?queryGroupName=Custom-ProjectInfo&TimePeriodBeginning=', <%+%> FCI_CHARFMT(TIME_PERIOD_START_DATE),' <%+%>
    '&TimePeriodBeginning_format=17&link_crumb=true'
    Waiting for response.
    Thanks,
    Saloni

    Hi,
    If you're running this in SQL*Plus, you can use substitution variables.
    If you have a file called my_query.sql, like this
    select    A.agent_no,
              (a.first_name || A.agent_name)     as agent_Name,
              P.Policy_No,
              D.Driver_No,
              D.mvr_predict_score,
           D.mvr_received
    from        policy  P,
           agent   A,
           Driver  D
    where       D.request_mvr_hit   = 'M'
    AND       D.mvr_predict_Score > 540
    And       D.request_mvr          = 'D'
    AND        p.fullkey           = d.fullkey
    AND       p.agent_no          = a.agent_no
    AND       d.mvr_received     >= TO_DATE ('&1', 'DD-Mon-YYYY')          -- New
    AND       d.mvr_received     <  TO_DATE ('&2', 'DD-Mon-YYYY') + 1     -- New
    order by  a.agent_no,
                 CASE  a.producer_type
               when  'S'  then 1
               when  'C'  then 2
               when  'R'  then 3
           end
    ;Then you can run it from SQL*Plus by saying something like:
    @my_query  1-Jan-2009  31-Dec-2009&1 in the script will be replace by the 1st argument (1-Jan-2009) and &2 will be replaced by the 2nd argument (31-Dec-2009).
    Notice that the last condition adds 1 to the argument
    AND       d.mvr_received     <  TO_DATE ('&2', 'DD-Mon-YYYY') + 1     -- Newbut uses the < operator (not <=). The result is that if mvr_received is any time on the last day (e.g. 31-Dec-2009 11:59 pm) will be included.

Maybe you are looking for

  • Convert contents of a formatted excel cell to HTML format

    Hi All, Background: I am writing a script that uploads some test cases written in excel into Quality Center. For those who are familiar with the QC Excel Addin, this script would do a pretty similar job except for reducing the steps involved. I'm usi

  • Export from 8.1.5; import to 8.1.7

    I need to export from one schema in 8.1.5 db on Win/2000 server and import to a schema with same name in another Win2k server which has 8.1.7 db on it. When we do the export, it gives the error 'EXP-00022 or 21 which says 'have to be SYS or SYSTEM to

  • Satellite P300-18M - AC adapter is dead

    Cable melted today around the square plug that goes into laptop. You can see the wires, lately adapter has been buzzing/making insect noises. It's still under warranty. Will Toshiba provide a replacement adapter and how long is it gonna take for me t

  • Gettinfg error in RFC to Web Service scenario

    hi friends, I am getting the following error while configuring RFC to Web Service scenario. I have used the ws :http://webservices.imacination.com/distance/Distance.jwsPlease help me out. <!--  Inbound Message   --> - <SAP:Error xmlns:SAP="http://sap

  • Air 3.1 iOS In-App Purchase and Exit on Suspend

    Hello my dear friends. During building my app I received a new task. Early was implemented UIApplicationExitsOnSuspend value, so our app exits when we pressed HOME button. It's ok, each app execution works as new executions. But when we want to add I