Need to retrive the name-value pair of concurrent request

Hello All,
I need to write a query that takes the concurrent request ID (executed concurrent request) as input and retrives the concurrent request parameter names and the values submitted to run that request.
we have considered the following tables to acheive the result:
fnd_descr_flex_col_usage_tl
fnd_concurrent_requests
fnd_concurrent_programs
however unable to map the parameter name-value pairs properly.
Thanks
Krrish

declangallagher .. I am sorry for not being very clear ...
I am sorry for taking your time.But I appreciate your effort .and time ..
I
I have two servlets 1. result (existing) 2. preResult ( probable wrap around)
The servlet
1.result : takes in the Name and gets the result from the db ( Actually uses Castor and JDO ) to get the result
and the GET is as follows
http://128.173.99.68:8080/WebApplication/result?queryFor=Experiment&Name="john"
where "queryFor" is for the name of the form and Name is the text in the VTL ( View)
2.preResult is supposed to be a wrapper around the servlet "result" this takes in the ID from the user
and is of the form
http://128.173.99.68:8080/WebApplication/preResult?queryFor=Wrapper&ID="1234"
There exists a DB mapping to ID and Name .
So Instead of calling the result servlet ..I'll directly call the preResult servlet ...get the ID from the user ...
and get the corresponding Name from the db
....here
I wish to (If possible) tweak the "request" parameter
change
1.The queryFor value to Experiment
2. add The Name="john"
and send this to the result servlet so that it process it ...........

Similar Messages

  • How do I count the unique value pairs in two columns of a table?

    I have a table (Table 2) that is populated with data from an imported .csv file. On table 1 I need to count the unique value pairs in two columns of Table 2.
    Here's what I have:
    Date                                        Person
    7/10/2011                         A
    7/12/2011                         W
    7/12/2011                         X
    7/12/2011                         X
    7/12/2011                         X
    7/12/2011                         Z
    7/14/2011                         Z
    7/15/2011                 X
    7/16/2011                         Z
    I'm focusing on person "X" and can easily count how many days that person shows up but what I want is to see on how many unique days that person shows up.
    Here's the result I'm looking for (Person "X" shows up on 2 different days - 3 times on 7/12/2011 and once on 7/15/2011):
    X                    2
    I can't seem to find a function that allows me to do that. I also am not allowed to modify Table 2 so that leaves me to come up with a solution on Table 1.
    Any ideas would be greatly appreciated.

    Hi John,
    Not being allowed to modify Table 2 is a minor inconvenience. Just copy (using a formula) the necessary two columns onto Table 1.
    Yellow columns may be hidden. The procedure progresses from left to right. All formulas are entered into row 2 then filled down that column to the end of the table. The table must be as long as the list in column A of Table 2.
    A2: =Table 2::A
    Fill right to column B.
    Fill both columns down as far as needed.
    I've used actual Date and Time values in column A, formatted to show only the Date part, but the technique will work with text in these cells, provided all cells representing the same 'date' have exactly the same content.
    C2: =A&B
    This concatenates the contents of each row of columns A and B into a single text string.
    D2: =COUNTIF($C$2:C2,C)
    This counts the number of occurrences of the Date&Name string on the current row from the first regular cell in column C (C2) to the current cell.
    E2: =IF(COUNTIF($B$2:B2,B)=1,MAX($E$1:E1)+1,"")
    This constructs the index of first occurrences of each name, in the order they first occur. The index is used by LOOKUP in column F.
    F2: =IF(ROW()-1>MAX(E),"",LOOKUP(ROW()-1,$E,$B))
    This uses the index value created in E as a search-for value to extract a single copy of the names in column B. The result is a list of all distinct names in the list. Note that spelling differences will be counted as distinct names.The IF statement stops the listing when the last distinct name is extracted.
    G2: =IF(LEN(F)>0,COUNTIFS($B,"="&F,$D,"=1"),"")
    This counts the number of 'first occurrences of distinct Date & Name strings for each name on the list (ie. the number of distinct dates on which each name appears in the original list).
    All of the functions used are described, with at least one example for each, in the iWork formulas and Functions User Guide. You can download the guide, and the Numbers '09 User Guide, via the Help menu in numbers.
    Regards,
    Barry

  • Name-value pairs in SQL Tag

    Hi all,
    The problem in my code shown bellow is in "AND ? LIKE ?"
    since the name parameter cannot be ? in the name-value pairs
    But I really need the "name" param can be choosen by me :(
    Please help!! thks :)
    <sql:query var="plates" dataSource="${applicationScope.aod}">
    SELECT DISTINCT id, filename, project
    FROM xxxx
    WHERE project = ?
    AND ? LIKE ?
    <sql:param value="${param.project}"/>
    <sql:param value="${param.which}"/>
    <sql:param value="%${param.what}%"/>
    </sql:query>
    Cheers,
    George

    You would have to do it like this I think:
    <sql:query var="plates" dataSource="${applicationScope.aod}">
    SELECT DISTINCT id, filename, project
    FROM xxxx
    WHERE project = ?
    AND <c:out value="${param.which}"/> LIKE ?
    <sql:param value="${param.project}"/>
    <sql:param value="%${param.what}%"/>
    </sql:query>You then have to count on the param "which" generating correct SQL.

  • Converting Name-Value pair to XML

    Hi,
    I have configured the proxy service to listen for "&" delimited HTTP post string. I have been able to tokenize the "&" delimited string and get the name-value pair as below:
    ============================================================
    <CUSTOMER>
    <param name="amp;STATE_NAME" value="abc_test" />
    <param name="amp;EMAIL_ADDRESS" value="[email protected]" />
    </CUSTOMER>
    =====================================================
    Now I want to convert this name-value pair into XML format to comply with the xml schema. Kindly suggest the way how can this be achieved?

    Hi Hisaak,
    Thanks for the pointer But I am not able to access the Name-Value pair to form the desired XML.
    The output of first action is below and assigned to "payload" variable.
    ================================================
    <query-params>
    <param name="Model1" value="model1_test"/>
    <param name="Option1" value="option1_test"/>
    <param name="Quantity1" value="quantity1_test"/>
    </query-params>
    =================================================
    In second assign action , I have used your given code and assigned to "Order" variable.
    =====================================================
    <Order>
    <Model1>{$payload//param[@name = Model1]/@value}</Model1>
    <Options1>{$payload//param[@name = Options1]/@value}</Options1>
    <Quantity1>{$payload//param[@name = Quantity1]/@value}</Quantity1>
    <Model2>{$payload//param[@name = Model2]/@value}</Model2>
    </Order>
    =====================================================
    But after testing , I got the following output:
    ================================
    <Order>
    <Model1/>
    <Options1/>
    <Quantity1/>
    <Model2/>
    </Order>
    ====================================
    The values didn't update. Let me know if I am missing anything.

  • Is there a way around the mod_plsql name value pair limit of 2000?

    Hello,
    I was just surprised by the mod_plsql limit on POST of 2000 name-value pairs. I have a pretty complex page with several associative arrays picking up multiple pairs for the same medium sized set of named parameters. Is the 2000 a hard limit or can it be reset?
    Thanks for any help on this.
    Regards,
    --Jack                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    However, after some more searching, thanks for heading me over to Metalink. I found the answer there
    I have to go into the file plsql.conf and add or adjust a parameter named PlsqlMaxParameters
    --Jack                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Name Value pairs

    Hi All,
    I am trying to achieve the following using the graphical mapping tool.
    Source:
    rows..................0-unbounded
    .....indicator1......1-1
    .....indicator2......1-1
    .....indicator3......1-1
    Target:
    Attributes...........0-unbounded
    .....constant............1-1
    .....field...................1-1
    Sample Source xml:
    <rows>
    ....<indicator1>Blue</indicator1>
    ....<indicator2>Large</indicator2>
    ....<indicator3>Hot</indicator3>
    </rows>
    In the target structure, I want to create name value pairs where constant1 is assigned constant 'Colour' and field1 is assigned indicator1.
    My issue is that in the target structure, I also want to create new name value pairs for each of the values in the source. This is illustrated in the target document example below:
    <Attributes>
    ......<constant>"Constant"</constant>
    ......<field>indicator1</field>
    </Attributes>
    <Attributes>
    ......<constant>"Constant"</constant>
    ......<field>indicator2</field>
    </Attributes>
    <Attributes>
    ......<constant>"Constant"</constant>
    ......<field>indicator3</field>
    </Attributes>
    An example would be (using the sample values above):
    <Attributes>
    ......<constant>Color</constant>
    ......<field>Blue</field>
    </Attributes>
    <Attributes>
    ......<constant>Size</constant>
    ......<field>Large</field>
    </Attributes>
    <Attributes>
    ......<constant>Wash</constant>
    ......<field>Hot</field>
    </Attributes>
    Can this be achieved in the graphical mapping tool before I turn to xslt?
    Please help!
    Regards,
    JS

    Hi - I have marked as helpful answer but I fear that I did not make it clear in my original question...
    The JDBC fragment below needs to be converted to the XML fragment... I am having difficulty doing this in the graphical interface.
    Thank you for your helpful answer up to now.
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Debtor_JDBC xmlns:ns0="urn:finance">
       <row>
          <NO_BUNDLE>1</NO_BUNDLE>
          <PROMPT_SHIP_TO>0</PROMPT_SHIP_TO>
       </row>
    </ns0:Debtor_JDBC>
    <?xml version="1.0" encoding="UTF-8"?>
    <MASTER>
        <Debtors>
            <Attributes>
                <attributetype IsValueSet="1">1</attributetype>
                <name IsValueSet="1">No Bundle</name>
                <value IsValueSet="1">1</value>
            </Attributes>
            <Attributes>
                <attributetype IsValueSet="1">1</attributetype>
                <name IsValueSet="1">PromptForAddress</name>
                <value IsValueSet="1">0</value>
            </Attributes></Debtors>
    </MASTER>

  • Vertical Tables (name value pairs)

    I inherited the maintenance of a system built on Oracle. To make it 'configurable', the user data is stored in a single table as name value pairs. What I mean is, instead of creating a new table when the end user needs a new record type, all data is stored in a single table where one column is the record ID, one column is the attribute name, and another column is the value that is associated with that attribute.
    In other words, if I had a new record type that had two attributes, 'Name' and 'Age', instead of having a table that looks like this:
    Name Age
    Jim 10
    Joe 25
    John 45
    I have a table that looks like this:
    Record Attribute Value
    1 Name Jim
    1 Age 10
    2 Name Joe
    2 Age 25
    3 Name John
    3 Age 45
    This table can easily have several million records in it. As you can guess, the query statements are pretty tangled and run very slow.
    Does anyone have any clever ideas (aside from scrapping this approach and migrating to real tables) that can simplify this monster and improve its performance? Indexing helped the performance (it is now only awful instead of unusable), but it is still slow and a nightmare for us to maintain.
    Thanks,
    Ron

    Hi,
    But what do you enter in the value column in fixValues?
    Consider the input:
    <Pair>
    ........<Name>Vishal</Name>
    ........<Value>100</Value>
    </Pair>
    <Pair>
    ........<Name>Andy</Name>
    ........<Value>200</Value>
    </Pair>  and so on..
    Requirement is:
    If Name=Vishal, ABC(target field) should have corresponding Value(i.e 100 in this case)
    If Name=Andyl, XYZ(target field) should have corresponding Value(i.e 200 in this case)
    I did use fixValues, but always only ABC gets created properly. XYZ doesn't get created.

  • Convert name value pair to flat structure in Biztalk mapper

    Hi,
    I have an input xml file with name value pairs and have to access all the values in the same iteration to concatenate fname and lname and assign that to a fullname in the target schema.
    I am trying with logical eq functoid and value mapping flattening but i can't access both the fname and lname at the same time.
    Does any one have an idea on how to get this done?
    My input file is
    <?xml version="1.0" encoding="UTF-8"?>
    <InputData dateFormat="yyyyMMdd">
    <CharacteristicList>
        <characteristic>
          <name>fname</name>
          <value>hello</value>
        </characteristic>
        <characteristic>
          <name>lname</name>
          <value>world</value>
        </characteristic>
    </CharacteristicList>
    </InputData>
    And the output file is 
    <ns0:Root xmlns:ns0="http://test.Transforms.Schema1">
      <Test >
        <Fullname>Hello World</Fullname>
      </Test>
    </ns0:Root>
    Thanks
    Janardhan Reddy Bikka

    Hi Janardhan,
    All you need is Cumulative Concatenate functiod with logical & value mapping functiod as shown:
    Add a Logical-Equal functiod. Link name element as its first parameter. And add “fname” as second parameter.
    Add another Logical-Equal functiod. Link name element as its first parameter. And add “lname” as second parameter.
    Add a Logical-Or functiod. Link the Logical-Equal functiod from fname as its first parameter. And Link the Logical-Equal functiod from lname as its second parameter
    Add value mapping (not the flattening one) functiod and link Logical-Or functiod.
    Add Cumulative Concatenate functiod. Link value mapping functiod to Cumulative Concatenate functiod as its first parameter. And add “1” as the second parameter. This second parameter provides the scope.
    Connect Cumulative Concatenate functiod to the fullname parameter.
    Add a looping functiod and connect parent CharacteristicList in source and Test in destination.
    With this map, if I use the input instance(XML) file as you have shown, I would get output as below:
    <ns0:Root xmlns:ns0="http://test.Transforms.Schema1">
    <Test>
    <Fullname>helloworld</Fullname>
    </Test>
    </ns0:Root>
    if I use following input with more than one Characteristlist
    <?xml version="1.0" encoding="UTF-8"?>
    <InputData dateFormat="yyyyMMdd">
    <CharacteristicList>
    <characteristic>
    <name>fname</name>
    <value>hello</value>
    </characteristic>
    <characteristic>
    <name>lname</name>
    <value>world</value>
    </characteristic>
    </CharacteristicList>
    <CharacteristicList>
    <characteristic>
    <name>fname</name>
    <value>Ashwin</value>
    </characteristic>
    <characteristic>
    <name>lname</name>
    <value>Prabhu</value>
    </characteristic>
    </CharacteristicList>
    </InputData>
    I will get output as below:
    <ns0:Root xmlns:ns0="http://test.Transforms.Schema1">
      <Test>
        <Fullname>helloworld</Fullname>
      </Test>
      <Test>
        <Fullname>AshwinPrabhu</Fullname>
      </Test>
    </ns0:Root>
    FYI: I have shown another sample instance with more first name and lastname because, you'r requirement is to have names concatenated with in a CharacteristicList
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Using JcomboBox name value pair

    Hi,
    I am designing a database system in Java using Swing for interfaces .. I have an issue with the ComboBox .. I was wondering if it is possible to have a name value pair for a combobox just like the html <select> tag .. becasue i am getting the data for the combobox from the database but I want it to display one column in the list and when chosen the value should be another field from the database.
    example: it should dispplay empFirstName .. nut when selected the value should be EmpID.
    Can someone hel me wtih this one ..
    thanks
    sandeep      

    You asked the same question in this thread:
    http://forum.java.sun.com/thread.jsp?forum=31&thread=475554
    You were given answers and example code. If the answers and code are not what you need then you need to restate your question, to make your requirements clearer because you have been given the same answer three times.

  • Sending more than one name value pair via ajaxRequest.add()

    Hi all,
    I'm implementing AJAX in Oracle Application Express to perform DML operations on a table. I need to send more than one name value pair via the ajaxRequest object. Can someone guide me how to achieve this? Say for example i need to send 2 values(need to send 2 form elements when submit button is clicked) P3_region and P3_scope. i tried the following methods.
    Method 1:
    ======
    ajaxRequest.add('P3_region',document.getElementById('P3_region').value);
    ajaxRequest.add('P3_scope',document.getElementById('P3_scope').value);
    Method 2:
    ======
    ajaxRequest.add('P3_region',document.getElementById('P3_region').value,'P3_scope',document.getElementById('P3_scope').value);
    Neither of them is fruitful. Can someone guide me how to achieve this?
    Regards,
    Balaji Radhakrishnan.

    Hi Roel,
    The javascript goes like this.
    <script language="JavaScript" type="text/javascript">
    function getElement1()
    document.getElementById('P3_Element1').value = '';
    var ajaxRequest = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=Element1Process',0);
    ajaxRequest.add('P3_Element2',document.getElementById('P3_Element2').value);
    ajaxRequest.add('P3_Element3',document.getElementById('P3_Element3').value);
    ajaxRequest.add('P3_Element4',document.getElementById('P3_Element4').value);
    ajaxRequest.add('P3_Element5',document.getElementById('P3_Element5').value);
    ajaxRequest.add('P3_Element6',document.getElementById('P3_Element6').value);
    ajaxResult = ajaxRequest.get();
    if(ajaxResult)
    var wsArray = ajaxResult.split("~");
    document.getElementById('P3_Element1').value = wsArray[0];
    </script>
    The application Process goes like this..
    declare
    v_Element1 VARCHAR2(60);
    begin
    select distinct Element1 into v_Element1 from TableA where Element2=:P3_Element2 AND Element3=:P3_Element3 AND Element4=:P3_Element4 AND Element5=:P3_Element5 AND Element6=:P3_Element6;
    htp.prn(v_Element1);
    exception
    when others then
    v_Element1 := 'Invalid Header Combination';
    htp.prn(v_Element1);
    end;
    The requirement goes like this..
    When i give Element2, Element3,Element4,Element5,Element6 as input in the form page the Element1 should get displayed automatically without refreshing the page. But when i use the above javascript and application process i get the Element1 loaded with some html scripts. I call the javascript using onChange() function.
    Regards,
    Balaji Radhakrishnan.

  • HTTP adapter as receiver to POST name-value pairs - How to?

    Hi,
    Scenario: HTTP Sender <> XI <> HTTP receiver (Sync throughout; no BPM)
    In this scenario, a HTTP channel is configured to the target URL to post data.
    The message mapping results in a XML. HTTP posts the same XML to the target URL.
    However,the target URL expects data Posted as name-value pairs.
    eg. eid=45678&zip=11011&ename=Tom%20Lee
    How can we configure HTTP adapter channel to post XML data as
    name-value pairs (as in standard HTTP Form Post)?
    Any pointers?
    thanx,
    Pops

    Hi Udo,
    I currently have a solution (simpler than having a BP), but do not expect it to be the right way of doing.
    I am using Java Mapping to convert the XML structure into Name-Value pair. So the output of Mapping is a string like how HTTP post is expected. So the interface mapping having multiple mappings - firstly, the original Message mapping, and then the Java mapping to do the conversion. So, with a small extension, the solution is still kept simple.
    However, I thought the POST requirement to HTTP URLs would be a common requirement, and expected the HTTP adapter doing this conversion. So, I am still looking for a straight solution (without any custom extensions).
    Any one else faced this situation?
    Can't this be handled by HTTP Adapter?
    -- Pops V

  • Name-value pairs in item editor

    I am setting up a datagrid that must have in some fields an itemEditor displaying a combobox with name/value pairs:
        <mx:DataGrid height="100%" width="100%" id="dgTaxa" editable="true">
                            <mx:columns>
                                <mx:DataGridColumn headerText="Codice" dataField="taxonCode" width="60"/>
                                <mx:DataGridColumn id="colFamily" headerText="Famiglia" dataField="family" width="80">
                                    <mx:itemEditor>
                                        <fx:Component>
                                            <mx:ComboBox width="80" labelField="familyId" dataProvider="{parentDocument.families}" >
                                            </mx:ComboBox>
                                        </fx:Component>
                                    </mx:itemEditor>
                                </mx:DataGridColumn>                           
                            </mx:columns>
                        </mx:DataGrid>
    This combobox has a dataprovider that it's this one:
    [Bindable]
    public var families:ArrayCollection = new ArrayCollection([
            { familyId:1, name:"cactacee"},
            { familyId:2, name:"liliacee"}
    My problem is that I want to show name as combobox labels, but get familyId as combobox values to send back to the webservice.
    Does anyone know how to help me?
    Thanks
    Paolo

    Thanks for the correct answer.
    I realized it's the right thing to be done.

  • Translating a String (name value pair) to XML

    Hi Guys,
    I am trying to find an elegant way of translating a string containing name value pairs to XML within BPEL. The string looks as following:
    name=Bob
    dob = 28/09/1993
    This string has to be transformed to XML. Any of the two cases:
    either
    <root>
         <name>Bob</name>
         <dob>28/09/1993</dob>
    </root>
    or
    <root>
         <entry>
              <key>name</name>
              <value>BOB</value>
         </entry>
         <entry>
              <key>dob</name>
              <value>28/09/1993</value>
         </entry>
    </root>
    I am thinking of using embedded java for translation, but if there is any XPath function that can be used for that would be great. There is doTranslateFromNative but documentation is not descriptive enough and did not find anything on the web either.
    Thanks!

    Hi,
    Use substring-before(line,'=') and substring-after(line,'=') on each line in the string in an assign activity. Separate lines also with substring-before using a newline.
    Hope that helps.

  • Name-value pair

    Hi,
    The following data is encoded as a string of name value pairs separated by semi colons.
    ST 0.04398148148148148;AT 0.0625;SW 0.05555555555555555;TC 0.07523148148148148;GA 0.11921296296296297;AG 0.12037037037037036;CC 0.16203703703703703;CA 0.12615740740740738;AC 0.08680555555555555;AA 0.14699074074074076;
    I want to create ST,AT,TC .... as separate columns and store the values in those columns respectively. Can anyone tell me how can I extract the data into those columns from one single column. All the above data is stored in one single column - nucleotide.
    Thanks
    Suresh

    There is more than one way to slice a cabbage. Here is the pipelined function approach, if you're using Oracle 9i or higher.
    SQL> create or replace type nucleotide as object (code varchar2(4), amt number);
      2  /
    Type created.
    SQL> create or replace type nucleotide_nt as table of nucleotide
      2  /
    Type created.
    SQL> create table gene_data (nucleotide_text varchar2(4000))
      2  /
    Table created.
    SQL> insert into gene_data
      2  values ('ST 0.04398148148148148;AT 0.0625;SW 0.05555555555555555;'
      3  ||'TC 0.07523148148148148;GA 0.11921296296296297;AG 0.12037037037037036;'
      4  ||'CC 0.16203703703703703;CA 0.12615740740740738;AC 0.086805555'
      5  ||'55555555;AA 0.14699074074074076;')
      6  /
    1 row created.
    SQL>
    SQL> CREATE OR REPLACE FUNCTION split_nucleotides
      2      (p_string in varchar2)
      3      RETURN nucleotide_nt
      4      PIPELINED
      5  AS
      6      return_value nucleotide := nucleotide(null,null);
      7      remainder varchar2(4000);
      8      offset pls_integer;
      9  BEGIN
    10      remainder := p_string;
    11      LOOP
    12       return_value.code := substr(remainder, 1, instr(remainder, ' ')-1);
    13       remainder := substr(remainder, instr(remainder, ' ')+1);
    14       return_value.amt := to_number(substr(remainder, 1,instr(remainder, ';')-1 ));
    15       PIPE ROW (return_value);
    16   exit when instr(remainder, ' ') = 0;
    17       remainder := substr(remainder, instr(remainder, ';')+1);
    18     END LOOP;
    19     RETURN;
    20  END;
    21  /
    Function created.
    SQL>
    SQL> select * from table(select SPLIT_NUCLEOTIDES(nucleotide_text) from gene_data)
      2  /
    CODE        AMT
    ST   .043981481
    AT        .0625
    SW   .055555556
    TC   .075231481
    GA   .119212963
    AG    .12037037
    CC   .162037037
    CA   .126157407
    AC   .086805556
    AA   .146990741
    10 rows selected.
    SQL> Cheers, APC

  • What technology to use to store a huge list of name-value pairs?

    Hi:
    I have a list of name value pairs (the size of the list is ~500). I get the name from the request parameter, and depending on the value for that, I have to display images on my webpage.
    How should I go about this? Should I use a Hashtable to store the values or should I use an array or should I got for XML and some pattern matching or should I write to a text file and do some pattern matching?
    Please help.
    Thanks

    Did you mean huge (several million) or is 500 more like the number? For "huge" you use a database. For 500, if you want to access the value when you are given the name, you use a Map. Probably a HashMap would be best.

Maybe you are looking for

  • Adobe Cloud Price Increase

    I only use Photoshop and Lightroom, and my monthly subscription is going up from $30 to $50.  I have been unable to find anywhere on the Adobe website to send a complaint.  There seems to be no way to penetrate Adobe's defenses against customer conta

  • HT3209 Unable to transfer rented movie to I pad, error message indicates already transferred to device, but it is not

    I cannot stand that assistance is not readily available, I rented 2 movies that will not transfer from my coomputer to my I pad, error message said they were already transferred to another device, this is not true???

  • SQL *Plus Function

    Is there a reason why my system account is not listed when I try and generate the listing of users assigned the sqlplus function? I'm using the query "select * from product_profile" Edited by: 997626 on Apr 2, 2013 2:03 PM

  • Creating Modules using Open API

    Hi, I am trying to create Form module using Open API. What I would like to know is :- 1. How to link the source file (c++) against the Open API library (f60d2f32.lib). The c++ source file, Does it have to be .c extension ? 2. Compile the files to cre

  • Photocasts slideshows in iMovie

    Is it possible to import Photocasts into iMovie for creating slideshows? Any pointers gratefully received