Sending multiple variables in chart url

HI, I have aseries of charts where users can drill down into
the data. That's fine.
The problem is the first graph is based on users form
selections, which are used in the chart query as url variables. How
do I then pass those variables when I drill down into the chart
using cfchart url????
Hope that's clear. Code below
Thanks
<cfquery name="Domicile" datasource="MI" maxrows="20">
select count([06Student]) as stucount, domicileDesc
from tbl_StudentRecord, tbl_People, LUtbl_Domicile,
LUtbl_FeeStatus, IMPtbl_Programmes
where tbl_StudentRecord.[06PersonNo] = tbl_People.PersonNo
and tbl_People.Domicile = LUtbl_Domicile.DomicileCode
and tbl_StudentRecord.[06FeeStatus] =
LUtbl_FeeStatus.FeeStatus
and tbl_StudentRecord.[06Programme] =
IMPtbl_Programmes.Programme
and Faculty in ('#url.fac#')
Group by DomicileDesc
ORDER BY count([06Student]) DESC
</cfquery>
<cfchart chartwidth="700" chartheight="400"
url="school/Filter_All_Domicile_Sch.cfm?item=$itemlabel">
<cfchartseries type="bar" query="Domicile"
itemcolumn="DomicileDesc" valuecolumn="stucount"
></cfchartseries>
</cfchart>

iirc, just like you normally would with any url variable: by
appending
it to the url
in your case that would be the url attribute of cfchart tag:
url="school/Filter_All_Domicile_Sch.cfm?item=$itemlabel$&faculty=#url.fac#
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com

Similar Messages

  • Sending multiple variable to flash

    I did the following in passing several multiple to flash
    PHP code
    <?php
         $d  = array();
         $p = array();
         $t = array();
         require_once('C:\xampp\htdocs\moodle\config.php');
        $data = $DB->get_records_sql('SELECT questiontext,id FROM {question}');
        foreach ($data  as $element)  {
        $d[] = $element->questiontext ;
        $p[] = $element->id;}
        echo "var1=".urlencode($d[1])."&var2=".urlencode($p[1]);
    ?>
    Actionscript code
    var myLoader:URLLoader = new URLLoader();
    myLoader.dataFormat = URLLoaderDataFormat.TEXT;
    var myRequest:URLRequest=new URLRequest("http://localhost/moodle/selectquestion.php");
    myLoader.load(myRequest);
    myLoader.addEventListener(Event.COMPLETE,onCompleteHandler);
    var myValue: String;
    var valuetwo: String;
    function onCompleteHandler(e:Event):void{
       myValue = e.target.data.var1;
                          valuetwo = e.target.data.var2;
       trace(myValue);
       trace(valuetwo);
    However, error shows in actionscript that
    ReferenceError: Error #1069: Property var1 not found on String and there is no default value.
    Is there anything wrong in my php code or in the actionscript? How should I pass multiple variable to flash?

    I can fix it now as I should add
    var myvariable: URLVariables = new URLVariables(e.target.data);      
    to my actionscript code and then
    myValue = myvariable.var1;
    valuetwo = myvariable.var2;
    trace(myValue);
    trace(valuetwo);
    I can then trace back.

  • How to send different value of presentation variable in GO URL??

    Hi there,
    I'm using GO URL to send presentation Variable (d_pv) to filter other report on 'day' column.....
    '(a href = http://server/analytics/saw.dll?GO&path=/shared/BI%20Reports/Ki1/KPIs%20Detail%20Priority%203%20Shipped&Action=Navigate&p0=1&p1=eq&p2="Time".Day&p3=@{d_pv})SHIPPED(/a)'
    This is working fine. But my goal is to filter the other report using previous day of the value of d_pv (eg. if d_pv value is '2010-04-27' , I need to filter other report using '2010-04-26')
    I couldn't find to pass one day back value of presentation variable using go url.
    Please Help..
    Edited by: bob123 on Apr 28, 2010 10:15 AM

    I'd say use TIMESTAMPADD(SQL_TSI_DAY,....,1) and use pass your pres variable to this column.
    so when you pass 28/04/2010 to the target report day+1 column, it will show 27/04/2010 data.

  • [Forum FAQ] How do I send multiple rows returned by Execute SQL Task as Email content in SQL Server Integration Services?

    Question:
    There is a scenario that users want to send multiple rows returned by Execute SQL Task as Email content to send to someone. With Execute SQL Task, the Full result set is used when the query returns multiple rows, it must map to a variable of the Object data
    type, then the return result is a rowset object, so we cannot directly send the result variable as Email content. Is there a way that we can extract the table row values that are stored in the Object variable as Email content to send to someone?
    Answer:
    To achieve this requirement, we can use a Foreach Loop container to extract the table row values that are stored in the Object variable into package variables, then use a Script Task to write the data stored in packages variables to a variable, and then set
    the variable as MessageSource in the Send Mail Task. 
    Add four variables in the package as below:
    Double-click the Execute SQL Task to open the Execute SQL Task Editor, then change the ResultSet property to “Full result set”. Assuming that the SQL Statement like below:
    SELECT   Category, CntRecords
    FROM         [table_name]
    In the Result Set pane, add a result like below (please note that we must use 0 as the result set name when the result set type is Full result set):
    Drag a Foreach Loop Container connects to the Execute SQL Task. 
    Double-click the Foreach Loop Container to open the Foreach Loop Editor, in the Collection tab, change the Enumerator to Foreach ADO Enumerator, then select User:result as ADO object source variable.
    Click the Variable Mappings pane, add two Variables as below:
    Drag a Script Task within the Foreach Loop Container.
    The C# code that can be used only in SSIS 2008 and above in Script Task as below:
    public void Main()
       // TODO: Add your code here
                Variables varCollection = null;
                string message = string.Empty;
                Dts.VariableDispenser.LockForWrite("User::Message");
                Dts.VariableDispenser.LockForWrite("User::Category");
                Dts.VariableDispenser.LockForWrite("User::CntRecords");     
                Dts.VariableDispenser.GetVariables(ref varCollection);
                //Format the query result with tab delimiters
                message = string.Format("{0}\t{1}\n",
                                            varCollection["User::Category"].Value,
                                            varCollection["User::CntRecords"].Value
               varCollection["User::Message"].Value = varCollection["User::Message"].Value + message;   
               Dts.TaskResult = (int)ScriptResults.Success;
    The VB code that can be used only in SSIS 2005 and above in Script Task as below, please note that in SSIS 2005, we should
    change PrecompileScriptIntoBinaryCode property to False and Run64BitRuntime property to False
    Public Sub Main()
            ' Add your code here
            Dim varCollection As Variables = Nothing
            Dim message As String = String.Empty
            Dts.VariableDispenser.LockForWrite("User::Message")
            Dts.VariableDispenser.LockForWrite("User::Category")
            Dts.VariableDispenser.LockForWrite("User::CntRecords")
            Dts.VariableDispenser.GetVariables(varCollection)
            'Format the query result with tab delimiters
            message = String.Format("{0}" & vbTab & "{1}" & vbLf, varCollection("User::Category").Value, varCollection("User::CntRecords").Value)
            varCollection("User::Message").Value = DirectCast(varCollection("User::Message").Value,String) + message
            Dts.TaskResult = ScriptResults.Success
    End Sub
    Drag Send Mail Task to Control Flow pane and connect it to Foreach Loop Container.
    Double-click the Send Mail Task to specify the appropriate settings, then in the Expressions tab, use the Message variable as the MessageSource Property as below:
    The final design surface like below:
    References:
    Result Sets in the Execute SQL Task
    Applies to:
    Integration Services 2005
    Integration Services 2008
    Integration Services 2008 R2
    Integration Services 2012
    Integration Services 2014
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thanks,
    Is this a supported scenario, or does it use unsupported features?
    For example, can we call exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    in a supported way?
    Thanks! Josh

  • How do I send multiple credentials for a user when he/she connects to iTune

    I want to be able to send multiple credentials when a user connects. For example, all students will get a generic student credential and may have one or more more specific credentials for access in certain sections or course pages. I presume I can send multiple credentials but haven't found a how-to. Since the credentials are strings, I presume all I need do is concatenate them to send them all at once. What is the delimiter character so that iTunes can parse it?
    Thanks,
    Rob

    Yes, you can send multiple credentials in an iTunes U URL request. The delimiter is the semi-colon.
    So, let's say you want to send two credentials ...
    Student@urn:mace:itunesu.com:sites:hogwarts.ac.uk
    Student@urn:mace:itunesu.com:sites:hogwarts.ac.uk:potions3yr
    your token string would have the following "credentials" token ...
    credentials=Student@urn:mace:itunesu.com:sites:hogwarts.ac.uk;Student@urn:mace:i tunesu.com:sites:hogwarts.ac.uk:potions3yr

  • How to send multiple data for a single element

    Hi All,
    I have a requirement where I have to send multiple data for single element per single transaction. For example
    Id details
    1 abcd
    1 efgh
    1 def
    Now, when I am selecting this ID from database, I have to get all the details in a single xsd like
    <id>1</id>
    ---><details>abcd</details>
    <details>efgh</details>
    <details>def</details>
    Thanks

    Hi,
    The following XSLT...
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:template match="/">
    <xsl:variable name="root" select="/"/>
    <root>
    <xsl:for-each select="distinct-values(/root/entry/id)">
    <xsl:variable name="id" select="."/>
    <entry>
    <id><xsl:value-of select="$id"/></id>
    <xsl:for-each select="$root/root/entry[id = $id]">
    <details><xsl:value-of select="details"/></details>
    </xsl:for-each>
    </entry>
    </xsl:for-each>
    </root>
    </xsl:template>
    </xsl:stylesheet>Will work for a document like this...
    <root>
    <entry>
    <id>1</id>
    <details>detail1</details>
    </entry>
    <entry>
    <id>1</id>
    <details>detail2</details>
    </entry>
    <entry>
    <id>2</id>
    <details>detail3</details>
    </entry>
    </root>Hope this helps...
    Cheers,
    Vlad

  • How to send multiple docs in soa suite 10g ?

    Hi All ,
    I am using Soa Suite 10g (10.1.1.3).
    I had a requirement to send multiple docs for single id. say for example, i have table emp and document and for single empid field i have multiple documents. i need to transform in such a way that details from emp along with multiple documents for the corresponding empid
    in emp table i have : empname , empid, dept, place
    in document table i have : empid1 document1,document2 , empid1 document3,document4
    means for the same emp id , i have two documents rows.
    I dont want send emp details multiple times, but for the single emp details i need to send multiple docs.
    say empid1,empname,dept,place and document1,document2,document3,document4
    i use transformation, multiple docs are not transforming, second details overiding my fitrst transformation.
    plese help me , how can i send multiple docs to another service
    Thanks in advance

    Hi,
    I must say that your explanation of your problem is a little fuzzy. But as far as I understand it, you would need an xsd of your external service with a list of documents per employee.
    The more or less simplest/straightforward way to do it is using a loop in BPEL. Then within an assign in the loop you could do:
    <copy>
    <from variable="inputVariable"
    query="/ns1:a/ns1:b/ns1:c"
    part="payload"/>
    <to variable="ServiceDocumentProperty"
    query="/ns22:Property/ns22:value"/>
    </copy>
    <bpelx:append>
    <bpelx:from variable="ServiceDocumentProperty"/>
    <bpelx:to variable="lServiceDocumentPropertyList"
    query="/ns22:PropertyList"/>
    </bpelx:append>
    I think you could do it as well in a transform, but then you should create a (set of) custom templates that traverses the source list of documents in a recursive way. For some examples you could read this article: http://blog.darwin-it.nl/2013/02/sending-and-saving-emails-in-soasuite.html. Because the difficulty in your case is (as I understand correctly) you have a detail table with 2 documents per row. What would be more logical and simpeler is if you would had 1 document per child-row.
    If you could redesign your source-model into a single document per row, then in the xslt-transform you could do just the for-each construct.
    Regards,
    Martien

  • How to send multiple attachments with the mail in jsp

    hi.I wrote a code to send mail.but i need to send mail with multiple attachments.when i run this code iam able to send message but not files.i want to send files as attachments with the message.please help me.
    <%@ page import="javax.mail.*,javax.mail.internet.*,java.util.Date,java.io.*,java.net.InetAddress,java.sql.*,java.util.Properties,java.net.*,javax.sql.*,javax.activation.*,java.util.*,java.text.*" %>
    <%@ page import="java.io.*,java.sql.*,java.net.*,java.util.*,java.text.*" %>
    <%
         String Attachfiles1="";
         String Attachfiles2="";
    String Attachfiles3="";
    if("Send".equalsIgnoreCase("send"))
    try
    String subject="",from="",url = null,to="";
    String mailhost = "localhost";
    Properties props = System.getProperties();
    String msg_txt="";
    String strStatus="";
    String mailer = "MyMailerProgram";
    to=request.getParameter("to");
    from=request.getParameter("from");
    subject=request.getParameter("subject");
    msg_txt=request.getParameter("message");
    props.put("mail.smtp.host", mailhost);
    Session mailsession = Session.getDefaultInstance(props, null);
    Message message = new MimeMessage(mailsession);
    message.setFrom(new InternetAddress(from));
    message.setRecipients(Message.RecipientType.TO,InternetAddress.parse(to, false));
    message.setSubject(subject);
    message.setHeader("X-Mailer", mailer);
    message.setSentDate(new Date());
    message.setText(msg_txt);
    BodyPart messageBodyPart = new MimeBodyPart();
    BodyPart messageBodyPart2 = new MimeBodyPart();
    Multipart multipart = new MimeMultipart(); // to add many part to your messge
    messageBodyPart = new MimeBodyPart();
    javax.activation.DataSource source = new javax.activation.FileDataSource("path of the file");
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName("file_name");
    messageBodyPart2.setText("message"); // set the txt message
    multipart.addBodyPart(messageBodyPart);
    multipart.addBodyPart(messageBodyPart2);
    Transport.send(message);
    out.println("Message Sent");
    catch (Exception e)
    e.printStackTrace();
    if("Attachfiles".equalsIgnoreCase("attachfiles"))
    Attachfiles1=request.getParameter("fieldname1");
    Attachfiles2=request.getParameter("fieldname2");
    Attachfiles3=request.getParameter("fieldname3");
    %>
    <html>
    <body>
    <div class="frame">
    <form action="Composemail.jsp" method="post">
    <b>SelectPosition:</b> <select name="cars" >
    <option value="ABAP">ABAP
    <option value="saab">Saab
    <option value="fiat">Fiat
    <option value="audi">Audi
    </select><br><br>
    <table border="1" cellpadding="2" cellspacing="2">
    <tr><th>Name</th>
    <th>EmailId</th>
    <th>ContactNumber</th>
    <th>Position</th>
    </tr>
    <tr>
    <td>
    </td>
    </tr>
    </table><br>
    <b>SelectUser :</b><select name="cars">
    <option value="Administrator">Administrator
    <option value="saab">Saab
    <option value="fiat">Fiat
    <option value="audi">Audi
    </select>
    <br>
    <b>To :</b>�����������<input type="text" name="to" size="72"><br>
    <b>From :</b>�������<input type="text" name="from" size="72"><br>
    <b>Subject :</b>���<input type="text" name="subject" size="72"><br>
    <%=Attachfiles1%><br><%=Attachfiles2%><br><%=Attachfiles3%><br><br>
    <b>Message:</b><br>
    ������������<textarea rows="10" cols="50" name="message">
    </textarea> <br><br>
    <b>AttachedFile:</b>�<input type="file" name="fieldname1" value="filename" size="50"><br><br>
    <b>AttachedFile:</b>�<input type="file" name="fieldname2" value="filename" size="50"><br><br>
    <b>AttachedFile:</b>�<input type="file" name="fieldname3" value="filename" size="50"><br><br>
    ������������<input type="submit" name="attachfiles" value="Attachfiles">
    <center>
    <input type="submit" name="send" value="Send" >
    </center>
    </form>
    </div>
    </body>
    </html>

    Most likely you're not specifying the path of a file on the server machine.

  • MapViewer Html5 API. Error with Variable Pie Chart Style Model

    Hello,
    I have a serious problem related to Variable Pie Chart Style. MapViewer - Mapbuilder version: 11.1.1.7.3.
    [ALERT]  MAPVIEWER_9023:Cannot load style.
        Source: OM.style.StyleStore.parseXMLStyle
    OMS: oracle.mapviewer.share.stylex.VariablePieChartStyleModel cannot be cast to oracle.mapviewer.share.stylex.BucketStyleModel
    In Mapbuilder, I have a geometry theme with rendering style, an advanced variable pie with variable range, style. This is the XML of advanced style:
    <?xml version="1.0" ?>
    <AdvancedStyle>
        <VariablePieChartStyle startradius="5" increment="4">
               <PieSlice name="T004_2009" color="#0033FF"/>
               <PieSlice name="T004_2010" color="#FF0033"/>
               <PieSlice name="T004_2011" color="#33FF00"/>
            <Buckets>
                <RangedBucket seq="0" label="0 - 20%" low="0" high="100000"/>
                <RangedBucket seq="1" label="20 - 40%" low="100001" high="370000"/>
                <RangedBucket seq="2" label="40 - 60%" low="370001" high="1000000"/>
                <RangedBucket seq="3" label="60 - 80%" low="1000001" high="2500000"/>
                <RangedBucket seq="4" label="80 - 100%" low="2500001" high="2.0E7"/>
        </Buckets>
       </VariablePieChartStyle>
    </AdvancedStyle>
    and this is the XML of the theme:
    <?xml version="1.0" standalone="yes"?>
    <styling_rules key_column="ID" caching="NONE">
        <hidden_info>
            <field column="INSTITUTION1" name="Port Name"/>
            <field column="T004_2009_CHAR" name="2009"/>
            <field column="T004_2010_CHAR" name="2010"/>
            <field column="T004_2011_CHAR" name="2011"/>
            <field column="T004_2012_CHAR" name="2012"/>
            <field column="T004_2013_CHAR" name="2013"/>
            <field column="T004_2014_CHAR" name="2014"/>
      </hidden_info>
        <rule column="PASSENGERS_2009,PASSENGERS_2010,PASSENGERS_2011">
            <features style="V.T004_PASSENGERS_VPIE"> (NVL(PASSENGERS_2009, 0) !=0 AND NVL(PASSENGERS_2010,0) != 0 AND NVL(PASSENGERS_2011, 0) != 0) </features>
            <label column="INSTITUTION1" style="T.CITY_NAME_H"> 1 </label>
      </rule>
    </styling_rules>
    When I preview the theme in mapbuilder everything seems fine.
    The problem arises, when I try to add a layer with this theme and style in my map in my APEX (version:4.2.6) application.
    This is the javascript:
    layer = new OM.layer.VectorLayer("layer1",
                def:{
                    type:OM.layer.VectorLayer.TYPE_PREDEFINED,
                    dataSource:ds, theme:themename,
                    url: baseURL
            map.addLayer(layer) ;
    and this is the error I get:
    [ALERT]  MAPVIEWER_9023:Cannot load style.
        Source: OM.style.StyleStore.parseXMLStyle
    OMS: oracle.mapviewer.share.stylex.VariablePieChartStyleModel cannot be cast to oracle.mapviewer.share.stylex.BucketStyleModel
    I' d appreciate any help.
    Thanks in advance,
    Vasso

    Hi,
    You're setting XML data in a JSON model, that's why the binding is incorrect.
    Depending on what your MII transaction is returning, you need to either retrieve the JSON part in the XML, or use a XML Model.
    Regards,
    Tanguy

  • Send two variables to frame

    Hi there,
    I have a link in a home made coldfusion crm system that I am
    trying to make functional. The link displays a meeting date that
    our staff can register a client for. It links to a registration
    form that automatically should show the meeting form for that date
    and the contact's info.
    Here is the URL I am trying to use:
    <a
    href="meetingadministrationframe.cfm?leftsrc=maleftframe.cfm&rightsrc=registration/new_re gistration.cfm?reg_meets=#Get_mtgs.sched_key#&contact_pick=#contact_key#"
    target="_self"> --Register #dateformat(get_mtgs.start_date,
    'yyyy-mmmm-dd')# MTG</a>
    It seems that if I have more than one variable for my right
    src, on the resulting page after the sql error message it says:
    Parameters
    URL Parameters:
    REG_MEETS=3234contact_pick=54678
    thus it is treating my two variables as just one long
    variable equal to the first variable in the URL. Can any of you
    experts out there help me. I've consultants breathing down my neck
    (as usual) thanks!!!

    I would try sending just one set of variables to the frameset
    and re-arranging them there for the individual frames.

  • Canvas disappear on sending multiple requests specifically from IE 11

    I have a page which displays few javascript charts on it. I am using RGraph chart API to generate charts. The charts are been generated from a separate Ajax call.
    The page is working fine with IE 7, 8, 9 and 10. Then recently I have upgraded to IE 11. After upgrade the page is not working as intended. On performing refresh operation for about 3-4 times, section of some charts are been disappers. It displays
    blank section instead of chart. And random charts gets disapper. It is not fix that some specific charts will fade away.
    And when this issue occur, all the CSS on the page goes messy.
    I have checked for any javascript related error generated or not. But I didn't found any javascript error on the console.
    I have checked from development tool. The canvas tag is available, bit it does not display on the page. It shows a blank section instead.
    Any idea why this is happening?
    I have moved this question from IE 11 Community Support Forum. Here is the link of the forum. 
    http://answers.microsoft.com/en-us/ie/forum/ie11-iewindows8_1/canvas-disappear-on-sending-multiple-requests/c433cf9b-fb82-48f1-8554-ebb3354795fe

    I have a page which displays few javascript charts on it. I am using RGraph chart API to generate charts. The charts are been generated from a separate Ajax call.
    The page is working fine with IE 7, 8, 9 and 10. Then recently I have upgraded to IE 11. After upgrade the page is not working as intended. On performing refresh operation for about 3-4 times, section of some charts are been disappers. It displays blank
    section instead of chart. And random charts gets disapper. It is not fix that some specific charts will fade away.
    And when this issue occur, all the CSS on the page goes messy.
    I have checked for any javascript related error generated or not. But I didn't found any javascript error on the console.
    I have checked from development tool. The canvas tag is available, bit it does not display on the page. It shows a blank section instead.
    Any idea why this is happening?
    I have moved this question from IE 11 Community Support Forum. Here is the link of the forum. 
    http://answers.microsoft.com/en-us/ie/forum/ie11-iewindows8_1/canvas-disappear-on-sending-multiple-requests/c433cf9b-fb82-48f1-8554-ebb3354795fe
    Hi,
    In order to get your issue solved more efficiently, I would recommend you post another thread in
    https://forums.asp.net forum to get dedicated supports, since based on your description, you are having this issue with your web applications and that forum is for web development issues.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Not Working-LexicalParamater used to send multiple values with one prameter

    Hi,
    I am calling a reportname.rdf from the web(using apache webserver and url as follows:
    http://localhost/cgi-bin/rwcgi60.exe?server=reportservername&report=acctActivity.rdf&userid=bizsystest/[email protected]&destype=cache&desformat=pdf&placeholdercolumnname='2,3,4'&docid=2
    I have to send multiple values for fundid.
    To accomplish this,
    I created a placeholder column and initialized the value '0' and type taken as character(even though datatype of this column is number).
    In sql query
    select table1.c1, table2.c2 from table1, table2, table3, table4 where table1.cl in (&placeholdercolumname)
    and table1.c2 = table2.c2(+)
    and table3.doccode = :docid
    From Web, URL contains the placeholdercolumnnmae='2,3,4'
    Still its taking the value zero and output is generating.
    Its not taking my newvalues ('2,3,4') in IN parameter.
    I donot know the reason, where exactly is wrong.
    Please help me to resolve.
    2. My Second Issue:
    Is there anyway, can we hide all key/value parameters send through the URL not visible to endusers
    like servername, database userid and password and configure some where, so system can pickup each time when I run report.
    Please help me to resolve.
    Thanks,
    Usha.

    Hi Usha,
    First of all, I assume that the place holder column you have specified is a UserParameter which you have specified on the command line. I don't think there is any direct way of doing that.
    I created a placeholder column and initialized the value '0' and type taken as character(even though datatype of this column is number). If I infer correctly from what you are saying, you can't mix and match the datatypes of the columns, you can't define the parameter as a number and pass characters. I suggest you declare your parameter as a character with sufficient width to hold your LOV and then process them convert them to numbers.
    Another suggestion is try replacing your "Placeholder" with another query construct.
    For your Second issue,
    You can use the Key-Map file Oracle Reports provides for the Web client. Please refer to
    <ORACLE_HOME>\Report60\server\cgicmd.dat.
    In the cgicmd.dat,you can alias your entire commandline with a single key and use that key in your URL.
    Regards
    Oracle Reports Team.

  • Sending multiple records to WebSerivce datacontrol

    hi,
    i need to send an array of complex type of objects to webservice in ADF mobile.
    i read the following,
    http://docs.oracle.com/cd/E38668_01/apirefs.111230/e27204/oracle/adfmf/framework/api/AdfmfJavaUtilities.html#invokeDataControlMethod_java_lang_String__java_lang_String__java_lang_String__java_util_List__java_util_List__java_util_List_
    here is what i am doing-
    i have multiple employee records in a dept.
    when i click a button, i want to send all the employee records in the sqllite db in the mobile device for a dept at once.
    for that i have a webservice data control and in there i have a method which takes a parameter of List type.
    how to use GenericTypeBeanSerializationHelper.toGenericType for sending the List type of parameters?
    regards,
    ad

    below URL explains about sending a single record,
    https://blogs.oracle.com/blueberry/entry/adf_mobile_and_sdo_making
    how to send multiple records with a single call to webservice method?
    regards,
    ad

  • Sending Two Values Through the URL

    Morning Everyone,
    Iv got a small problem. I want to sent 2 variables through a URL. I can send 1 no problem but im unsure about how to send 2. Here is my code to send 1:
    select COL_1, COL_2, COL_3,
       '<a. href="'
    || 'f?p=&APP_ID.:30:&SESSION.::&DEBUG.::'
    || 'P30_DB_NAME:'
    || 'CSTRNPA'
    || '">'
    || 'link'
    || '</a>'
    from tableWhat is happening here is i am sending the simple string value 'CSTRNPA' to the item P30_DB_NAME on my target page. Please can someone show me the way to send 2. I have tried different combos but have yet to successfully do it.
    Thanks in Advance,
    -N.S.N.O.

    Hey Guys,
    Iv got another question. I want to know how to send the value of a column instead of a string. What i mean by this is if i go to
    report attributes > link then i can select the item names and the values from which column i choose. For Example if the column was called DB the pop up list would give me the option of #DB#
    how can i incoperate this into me code?
    select COL_1, COL_2, COL_3,
       '<a. href="'
    || 'f?p=&APP_ID.:30:&SESSION.::&DEBUG.::'
    || 'P30_DB_NAME,P30_ANOTHER:'
    || 'CSTRNPA,VALUE'
    || '">'
    || 'link'
    || '</a>'
    from tableThanks,
    -N.S.N.O.

  • Sending multiple email for free goods item category??

    Hi,
    we have requirement to send email (Z report in smartforms) automatically when sale order save in tcode VA01/VA02.
    we made reqd config in tcode NACE and we set access sequence on ORDER TYPE and it's working fine. but the problem is that when order booked for item category free goods it sends multiple emails. (i.e. no. of line items = no. of email) for one order no. All other item category is working fine. only problem with the free goods.
    I am an abaper. all config are made with the consent of SD consultant.
    pls help.
    thanks
    Radhashyam Sahoo.

    If you are an ABAPer, then it sounds like you simply need to debug the processing to identify where/why the fault occurs.  As for the NACE settings, you should understand the config as well as your functional counterpart.  It will make you a better developer and help you understand the processing code.

Maybe you are looking for

  • Problem is When  i click the record in alv report it has to go to Va02 tran

    Hi Everyone, When i click on sales order number it has to go to transaction code Va02 for that i wrote code as like this.... *& Report  ZOPEN_SALES_ORDER Report  ZOPEN_SALES_ORDER1. TYPE-POOLs : slis. tables:kna1,mara. DATA       : FIELDCAT     TYPE

  • Iphone 3gs in recovery mode and gets error on itunes

    Hi my iphone 3gs in stuck recovery mode and gets an unknown error on itunes when afterdownloading ios6 and trying to restore. My phone is useless right now:( I did have a uncomplete cloud backup inprogress when I tried ti update the ios

  • Is it possible without a join

    Hi oracle guru I have this query result expected is same but without using a join with t as ( select 1 job_id,'First a' mess,to_date('18:08:2010 13:54:21','DD-MM-YYYY HH24:MI:SS) jtime from dual union all select 2 ,'First b' ,to_date('18:08:2010 13:5

  • Track Routing history

    Hi all, Is there any way we can track changes in routing or rate routing. i.e who made the changes. Please let me knwo. Regards, Suman

  • Upgrading from Crystal Reports 8.5 to 11 - ADAPT00538716

    I recently upgraded to version 11 and found that most of my reports don't work due to the fact that I have different join types in a report.  Using the knowledge base, I found the problem had been encountered and assigned <a href="http://technicalsup