FSG XML If statemenet not working

Hi,
From XML generated from an FSG report, I am trying to ONLY print Discounts. RtpCell[1] is the header and below if statement is supposed to print if the column name is Discounts... doesn't work. Any ideas? Thanks.
<?for-each:fsg:RptLine?>
<?if: fsg:RptCell[1] =’Discounts’?>
<?fsg:RptCell[1]?>
<?end if?>
<?end for-each?>

Hi Hasan
The problem is that the FSG XML has some extra white space added to tag values so 'Total Sales' is actually 'Total Sales ' in the XML (IE kindly strips this out for you!) so when you try and test in your if statement it never evaluates to true so the if condition is not satisfied and your row does not show.
Now I doubt FSG will change the XML for you anytime soon so we need to work around it, there is an XSL function called normalize-space(ELEMENT) which will remove the leading and trailing space so you can use your if condition successfully.
So you if condition will look like:
<?if:normalize-space(fsg:RptCell[1]) = 'Gross Sales'?>
So you can now compare data against an expected value successfully. Now if you wanted to make the row heading or total row bold based on a fixed string you could add:
<?if:normalize-space(fsg:RptCell[1]) = 'Gross Sales'?>
<xsl:attribute xdofo:ctx="block" name="font-weight">bold</xsl:attribute>
<?end if?>
This is basically setting the font weight to bold if the condition is satisfied.
Hope this helps
Regards
Tim

Similar Messages

  • A STANDARD XML TAG IS NOT WORKING PROPERLY WHEN USED IN RTF FILE FOR XML RE

    Hi,
    I am using the following tag :
    <?if:TASK_STATUS='Open'?><xsl:attribute xdofo:ctx="block“name="color">red</xsl:attribute>
    <?end if?>
    for changing foreground color of text which depending on certain conditiosi need to print in
    pdf format using xml reports and rtf files.
    But i was able to get only 3 colors (Red,Blue,Green) for use, other colors such as orange,cyan etc are not
    working.
    Please let me know what all colors are supported by oracle in printing in pdf format using xml reports.
    Suggest if we need to do some settings related stuff or so.
    I am usning XML 5.6.3 version.
    Regards,
    Amar

    Colors can be expressed by known name and by a hex value. The hex value format is widely used in HTML programming, and has a format of #abcdef, and "abcdef" can be values like aaddcc and so on. For some primary colors, you can get away with #abc, but that is not very common.
    You should always design with Web-safe colors in mind. That limits you to 16, but should be plenty for most purposes (plus all 16 have known names like red, cyan, yellow, etc.).
    http://www.w3schools.com/Html/html_colors.asp has a good explanation of the standards.

  • Oracle Service Bus 11g omit-xml-declaration="yes" not working in XSL-T

    I have the requirement of removing the XML header from xsl output.
    eg: <?xml version="1.0" encoding="UTF-8" ?> this part has to removed
    I tried using the following in XSLT:
    <xsl:output indent="yes" omit-xml-declaration="yes" />.
    It seems to work in all online xml compilers. It does not work in work in OSB.
    I posted the message in a JMS Queue and it contains the xml header.
    Is this a work around for this issue?

    I'm pretty sure XSLT has nothing to do with that PI.
    After all, XSLT in OSB doesn't format text, it generates an XmlObject. The formatting (including adding the <?xml?> PI) are done by other parts of the engine. Probably the XmlBeans serializator.
    The only option I see is to serialize the XML, then cut off everything until first ?>.
    Why would you need that, I wonder? May be there is a better way.
    Vlad @ genericparallel.com

  • XML Template was not working correctly in 11.5.9

    Hi
    I am currently working on XML rtf template for Invoice. And the rtf XML template is working fine (getting results as expected) in 11.5.10 but the same rtf is not working fine in 11.5.9( not getting the results as expected). My current version of XML Publisher in 11.5.9 is 4.5 and in 11.5.10 is 5.6. My question is there any to make the rtf work correctly in 11.5.9 aslo.
    Thanks,
    Ram.

    I have seen such issues earlier. What you can do is to either upgrade xml publisher version or you have to play around with template a bit like adding dummy rows with lines invisible and consume very less space, dummy columns etc to get desired results

  • XML Data Button Not working when Exported onto BusinessObjectEnterprise

    I have an XML data button on a dashboard. It works fine in preview and on web. It does not work if it is exported onto Business Object server using XCelsius' Export to  BusinessObjectEnterprise.
    In the InfoView, I double click on the flash file, the flash files opens as expected, but when XML Data button is clicked, no new data seem to come in...
    If I export as Adobe file, and then post it onto the server, and view it using Info View, the XML data button works just fine.
    Please advise.

    Hi All,
    Even I have similar requirement.
    Any work around is appreciable.
    Thanks
    Vinod

  • Hello World XML/XSL example not working in IE

    I am trying to get the "Hello World" XML/XSL example to work in IE.
    Could anyone help me out?
    The code follows:
    hello.xml
    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" href="hello.xsl"?>
    <hello-world>
    <greeter>An XSLT Programmer</greeter>
    <greeting>Hello, World!</greeting>
    </hello-world>
    hello.xsl
    <?xml version="1.0"?>
    <xsl:stylesheet
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0">
    <xsl:template match="/hello-world">
    <HTML>
    <HEAD>
    <TITLE></TITLE>
    </HEAD>
    <BODY>
    <H1><xsl:value-of select="greeting"/></H1>
    <xsl:apply-templates select="greeter"/>
    </BODY>
    </HTML>
    </xsl:template>
    <xsl:template match="greeter">
    <DIV>from
    <I><xsl:value-of select="."/></I>
    </DIV>
    </xsl:template>
    </xsl:stylesheet>
    Both files are in the same directory.
    When hello.xml is opened in IE, the output displayed is just, "from".
    What's wrong, and where?
    Please help!
    - Edwin.

    Hi edwinwaz,
    In response to your question, pls refer to this url
    http://www.w3schools.com/xsl/el_template.asp
    and take a look at the "note" in red.
    It says that IE5.X have non-standard behavior on the element <xsl:template>
    In addition, I have tested your code it works fine.
    Just to add something on your code here.
    I noticed that you do this
    <xsl:apply-templates select="greeter"/>
    and then in another template you do this
    <xsl:template match="greeter">
    <!-- code -->
    </xsl:template>
    In this case, it does work because "greeter" is a top-level element but if "greeter" is anything underneath the top-level element. It won't work.
    Actually, I discovered this after taking a look at your example and
    I was surprised that the code above worked and then I did some testing and discovered this.
    I am learning XML too now... So, I am happy to know this :).
    regards

  • Beta xml editor tool not working

    Hi,
    I have downloded and installed ( twice ) in my pc ( Windows 2000 ). But
    XML editor is not starting at all.
    How to start XML editor?
    -regards
    Abdul

    i tried all the ways, but no use
    "Sam Pullara" <[email protected]> wrote in message
    news:[email protected]..
    I installed it on my home machine and started it off the Start menu under
    XMLEditor -> XMLEditor.
    Sam
    "Abdul Malik" <[email protected]> wrote in message
    news:[email protected]..
    Hi,
    I have downloded and installed ( twice ) in my pc ( Windows 2000 ). But
    XML editor is not starting at all.
    How to start XML editor?
    -regards
    Abdul

  • XML Publishers Report not Working Properly

    I have developed the Report in XML Publisher EBS R12 as follwing:
    1. Successfully Built RTF
    2. Successfully register Data Definition
    3. Successfully register Template in Apps and setting default output RTF
    4. Successfully attach Template With Concurrent Programm with XML output option and Save and Print check box set to Yes
    But when i run report in Apps it does not pick the Template and showing the output in XML tags and showing log as following
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_ORG_ID='116'
    P_INVOICE_NO='STM-HT/3509/2012'
    Forcing NLS_NUMERIC_CHARACTERS to: '.,' for XDO processing
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    AMERICAN_AMERICA.US7ASCII
    Enter Password:
    Report Builder: Release 10.1.2.3.0 - Production on Tue Oct 30 10:39:17 2012
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    Output file size:
    4260
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 11842999 on node PRODAPPS at 30-OCT-2012 10:39:18.
    Post-processing of request 11842999 failed at 30-OCT-2012 10:39:18 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 30-OCT-2012 10:39:18
    It working Manually properly i.e Manual load XML data in RTF and generating output correct as i wants.
    Thanks in Advance
    Regards
    Sami Ullah

    I found the following errors in OOP log file. Please guide me.
    [10/31/12 11:55:40 AM] [2284847:RT11474553] Output file was found but is zero sized - Deleted
    [10/31/12 11:55:40 AM] [UNEXPECTED] [2284847:RT11474553] java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(XSLT10gR1.java:611)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:239)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:182)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1665)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:975)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5936)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3459)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3548)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:302)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:176)
    Caused by: oracle.xdo.parser.v2.XPathException: Namespace prefix 'ref' used but not declared.
         at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:806)
         at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:571)
         ... 17 more
    [10/31/12 11:55:40 AM] [2284847:RT11474553] Completed post-processing actions for request 11474553.

  • Sessions.xml data source not working using toplink

    I'm having some difficulty getting a data source to work. I have an ADF selectOneChoice component and I want the list of values available to be bound to a database given by the JNDI name and controlled at the j2ee container level.
    I have created a sessions.xml file
    <toplink-configuration>
    <session>
    <name>PIMSSession</name>
    <project-xml>META-INF/PIMS_ADF_TLMap.xml</project-xml>
    <session-type>
    <server-session/>
    </session-type>
    <login>
    <datasource>jdbc/PIMSDS</datasource>
    <uses-external-connection-pool>true</uses-external-connection-pool>
    </login>
    <connection-pool>
    <is-read-connection-pool>true</is-read-connection-pool>
    <name>default</name>
    <login>
    <datasource>jdbc/PIMSDS</datasource>
    <platform-class>Oracle10g</platform-class>
    <uses-external-connection-pool>true</uses-external-connection-pool>
    </login>
    </connection-pool>
    </session>
    </toplink-configuration>
    The sessions.xml points to the toplink mapping file PIMS_ADF_TLMap.xml, which contains information about the database view that is used to populate the drop down list. It also contains a deployment connection:
    <toplink:login xsi:type="toplink:database-login">
    <toplink:platform-class>oracle.toplink.platform.database.oracle.Oracle10Platform</toplink:platform-class>
    <toplink:user-name>pimsdev</toplink:user-name>
    <toplink:password>BB742416276274A494F7008B3AE0FB10</toplink:password>
    <toplink:driver-class>oracle.jdbc.OracleDriver</toplink:driver-class>
    <toplink:connection-url>jdbc:oracle:thin:@yvworad01:1521:PIMSD</toplink:connection-url>
    </toplink:login>
    The problem I'm having is that my ADF application always binds the selectOneChoice to the connection-url in the toplink mapping file instead of the datasource in the sessions.xml.
    If I remove the deployment connection from the mwp file, recompile and deploy I get a JBO-29000 error about not having a suitable driver.
    Does anyone know how to get the selectOneChoice to bind to a datasource instead of the toplink mapping connection-url?

    Hi Aaakar,
    From the error message, please try to change the setting of Credential type for the data source on report manager as follows:
    Go to the Data Sources properties page.
    For the Connect Using option, select Credentials stored securely in the report server.
    In User Name and Password, type credentials that can be used to access the database. If you are using SQL Server as the data source, the user name must be valid for both logging on to the server and for accessing the database that contains the data for
    the report.
    If the user name and password are credentials for a Windows account, select Use as Windows Credentials.
    If you want the report server to pass the credentials of the user accessing the report to the server hosting the external data source, click Windows Integrated Security. In this case, the user is not prompted to type a user name or password.
    For more details about Configure Data Source Properties, please see:
    http://technet.microsoft.com/en-us/library/ms155882.aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • XML Definition Exception not working

    I want to display ON and OFF a footer in oracle report based on a database field. My code is as follows but when I run the report it says that
    ErrorAttribute 'hide' used but not declared. Any suggestions? Appreciate your help in advance..
    <?xml version="1.0"?>
    <report name="corr" DTDVersion="1.0">
    <layout>
    <section name="margin">
    <field name="F_4" source="CF_footer">
    <exception textColor="red" hide="no">
    <condition source="eligbility_code" operator="eq" operand1="A"/>
    </exception>
    <exception textColor="blue" hide="yes">
    <condition source="eligbility_code" operator="eq" operand1="B"/>
    </exception>
    </field>
    </section>
    </layout>
    </report>

    When will be the next release. I have a lot of issues that I'm not sure how to solve. I've been trying to get unique, key, and keyref to work (I'm using the Dom parser version 2.0.2.9.1 Production) with just the simple example ORACLE downloads called report.xsd and it doesn't work. I've also cut and pasted some pretty basic code off the w3c site where it gives the whole standard for schemas and I can't use the extension functionality. Could your oracle team please send me some example code of how to use this stuff. It very well may be I'm just an idiot who can't figure it out. I would really appreciate any help.
    null

  • UIX XML test did not work

    I created a sample project based on the Scott Schema for BC4J Business Objects.
    I then created sample projects for:
    BC4J JSP
    UIX JSP
    UIX XML
    When I run the BC4J LSP and UIX JSP projects the main menus open and I can browse, edit and update all of the scott tables.
    However when I run the UIX XML project, the main menu comes up but if I select ANY view to work with I get the following error.
    Servlet error: Renderer failed: java.lang.ArrayIndexOutOfBoundsException: -10
    What coulbe wrong?

    To confirm, you say that the files generated okay, and you were able
    to run Main.uix and see it in your browser correctly, but clicking on the
    link to the view object generated a Renderer failed exception in the browser.
    Is this correct?
    What customizations have you made to your View object (or is it simply
    as the wizard generated it)? Can you look at the log window in jdev
    (or your OC4J servlet log) to see if there is additional debugging
    information available? Yes the files generated and compiled ok. I can see the main menu in my browser.
    The UIX-XML project was created using the wizard generated VO's. No customizations were made at all.
    The Embedded OC4J Server messages window in Jdev shows no errors. The Messages window shows no errors.
    FYI, this is on an NT machine that has the full install of Jdeveloper9iDS (Jdev, Forms 9i, Designer, SCM etc.) not just Jdev9i. I'd hope this does not matter but thought I'd mention it. No other Jdev windows (Forms 9i etc.) are up when I run this test.
    TIA,
    Ed.

  • XML toString method not working as expected.

    Why is the XML.toString method inconsistant?
    var xml:XML = new XML( "<root/>" );
    var xml_withtext:XML = new XML( "<root>a</root>" );
    var xml_withchild:XML = new XML( "<root><child/></root>" );
    trace(xml.toString()); //traces "" (blank)
    trace(xml_withtext.toString()); //traces "a"
    trace(xml_withchild.toString()); //traces "<root><child/></root>"
    If the XML contains only a root node, toString prints nothing.  When it contains text, it prints the text.  That would make sense if toString was printing only the contents of the root node, but if the root node contains a child, it doesn't print "<child/>" as one would expect.  Instead, it suddenly includes the root node as well in the string.  That is inconsistant/unexpected.  For some reason, there is also a separate toXMLString method that consistantly prints the entire XML structure.  Was that some kind of patch since toString doesn't work in a consistant manner, instead opting to sometimes include the root node depending on whether it contains simple or complex content?

    Andrei1:
    1. No, it's not what it is.  No, there aren't hundreds of reasons/dependencies why more descriptive or intuitive conventions are not chosen. In this case, the reason (singular) is spelled out in the E4X spec, and it basically boils down to them naively thinking it would be easier for programmers if the node would just magically return text if that's all it contains.  In other words, they thought it would be simpler for a node to run specialized arbitrary logic to decide what to return, than it would for a programmer to explicitly select what they want by typing ".text".  I see no reason why XML.toString should return anything other than the underlying/original string of characters that originally represented the node in the first place.  If programmers wanted the child text of a node, they should call a method like "getTextContent".  Since an original, unaltered string of XML character had to exist in the first place in order to instantiate an XML object, anything that creates a new string based on arbitrary logic, for whatever reason, has no business existing within the toString method.  For classes that represent data that is not fundamentally a string, any string representation is by definition arbitrary and in that case they can override the universal (i.e. a member of every base Object) toString method.  But for classes that represent strings, toString should return the string they represent, unaltered.
    2.  An AS3 XML object IS an XML-type object, but the AS3 XML class is actually instantiated from String-type data or from  bytes that represent encoded String data (i.e. sequences of known  characters), because XML is very strictly and fundamentally a "markup language" which is essentially a format of a string of characters.  Its rules are based around characters, exact unicode character classes, and a logical ordering of those characters.  XML is logically and fundamentally the kind of data that a String class represents, text, so its converstion to a String instance should be straightforward.   As a string, a "toString" method for a node should return the original string representation of that node from the first character that is part of that XML node to the last character that is part of that node.  XML may contain data the represents anything, but XML itself is a string of characters.  Period.
    3.  There is a universal string method called toString and it's a member of the most basic class "Object" which all other classes inherit from.  Although the technical details are different in different object-oriented langauges, they all tend to have a method like that, whether we're talking about AS3, C#, Java, or JavaScript.  Calling toString on a String returns the string itself.  Calling toString on a class that represents a string, should return the string it represents; not some arbitrary tranformation of that string.  Calling toString on a class that doesn't represent a string, has no default string representation to return, and therefore any string returned is by definition arbitrary.
    4.
    In other words toString() does not return XML at all but an un-interpreted representation that is cast to String
    That's precisely what it DOESN'T do.  Instead of returning the original, un-interpretted representation of the string FROM WHICH THE NODE WAS CONSTRUCTED, it returns some arbitrarily interpretted represention.  It decides whether the XML string is interpretted as complex or simple content, and then it arbitrarily decides to include or not include the outermost tags representing the XML of that node.  The fact remains, the string representation PRECEDES the existance of the XML instance, so toString should not be performing arbitrary logic to construct a brand new string.
    In other languages datatype string can be a totally different animal.
    No, actually a string always refers to a secquence of characters.  Each of those character may contain one or more bytes, they may be contiguous in memory or not, they may be represented by arrays, linked lists, doubly-linked lists, etc. but their logical data is always a sequence of characters.  That is the same in every programming language, and is even codified in the Unicode standards which represents characters in hundreds of different written languages.
    5.
    Again, XML is not a string until application says so and XML in AS3 is not a String but a special object.
    XML is actually a string BEFORE the application says it is XML, since the XML is constructed FROM A STRING.  XML is a special object, which is constructed from, represents, and processes a string.
    I could very easily create a class named "AllCapsSentence" and like "XML", the class itself is not "String", but they logically represent a string of characters and any "toString" method on either of such classes should return the underlying string representation without mangling it.

  • Importing text from XML file, "\n" not working

    Hi I'm currently trying to set up my game so it pulls in all text from an external XML file (to make switching between different languages easier). The problem is that on several occasions I need to use the special code "\n" to start a new line (for formatting purposes) but when I'm pulling the text in from the XML file this is not starting a new line any more - it is just appearing as normal in the text. (e.g "Here is some \n example game text") How do I get around this?
    Any help here appreciated, I'm supposed to be finished everything by tomorrow so I need suggestions asap haha Thanks.

    I don't see how I can be setting it wrongly, I have the exact line:
    XML.ignoreWhitespace = false;
    Before this I tried myXMLDocName.ignoreWhitespace = false; (before I realised it was a static function)
    This line is placed immediately after I have loaded my XML document and assigned it to a variable. e.g.
    private function XMLLoaded(e:Event):void
                trace("XML Loaded");
                MyGameGlobalVars.xmlDoc = new XML(e.target.data);
                XML.ignoreWhitespace = false;       //previously: MyGameGlobalVars.xmlDoc.ignoreWhitespace = false;
                xmlLoaded = true;

  • Spry xml data does not work in ie

    Hello all,
    I'm attempting to use a spry data set / xml. Works great in FF. I can't get it to function in IE. On my test machine, it will blink the html content without the xml data and then just disappear. No error. I've created a simple test page for trouble shooting. I'm using Spry version 1.6.1.
    Can you please take a look and see if you can tell what I'm doing wrong? Thanks in advance.
    Links to the test pages:
    http://psstudios.com/clients/tesseract/caltest.htm
    <meta http-equiv="Content-Type" content="text/xml; charset=UTF-8" />
    http://psstudios.com/clients/tesseract/caltest1.htm
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    and the xml:
    http://psstudios.com/clients/tesseract/tesseract_events.xml
    http://psstudios.com/clients/tesseract/tesseract_news.xml

    Your server is sending xml files with the content-type header text/plain. XML files should have the content-type text/xml. If you fix this, it would work. If you cannot change the server settings to serve the appropriate header see my post over at the Spry forums: http://forums.adobe.com/message/2179253#2179253
    It might fixes the issue for you, but that still doesn't mean it would fix your server

  • Instanceconfig.xml Allow address not working

    Hello all,
    In our 10g installation, we limited access to our OBI using the <Listener><Firewall> tags. They had following format:
    <Listener>
         <Firewall>
              <Allow address="127.0.0.1"/>
         </Firewall>
    </Listener>
    But moving this to our 11g installation prevents the OBIPS service to start. Does anyone know if the tags or location of this has changed? I did not find any working examples in the documentation so far...

    Hi,
    I found just a way to allow a particular range of IP access to OBIEE 11g.
    You can use the Weblogic Connection Filter but you will stop the access for all the application on the domain.
    http://weblogicissuesolutions.blogspot.it/2011/05/steps-to-configure-weblogic-connection.html
    http://weblogic-wonders.com/weblogic/2011/03/03/weblogic-connection-filters/
    http://jvzoggel.wordpress.com/2011/07/12/using-weblogic-network-connection-filters/
    http://docs.oracle.com/cd/E13222_01/wls/docs81/security/con_filtr.html
    Luigi

Maybe you are looking for

  • Connecting Mac Mini to Sharp LCD 45" TV

    I just purchased a MINI for Xmas 09'. I have tried to connect it to my 45" tv via: DVI and S-Video connections, both have been un-successful! The only time the Mini shows a display is if I connect to a 17" computer monitor..... I purchased the Mivi-

  • Why will my new iPad no longer sync my non-iTunes TV shows?

    My original iPad, as well as my iPhone 4S, synced perfectly with iTunes 10.6. I usually use the option Sync 3 Oldest Unwatched for the TV Shows that I add myself, but this no longer works for my new iPad; it does not recognize non-iTunes TV shows in

  • What program should I use to transfer Music midi files to MP3 files using Lion OS10.8.5?

    I'm having a problem transferring MIDI music files from i-Tunes into use on i-Movie6? I've recently upgraded to Lion OSX 10.8.5. I never had a problem previously and I'm now wondering if I need a new program to transfer these Music files for use in i

  • Combine three different cases

    We want to display client information with order count basd on different status like Pending, Error, back Order, expedited, std shipping. Output will look something like. client name   pending    error   backorder   expedited   std shipping ABC      

  • How to Filter & Sort on Cached view object data?

    We are using JDeveloper 9.0.3.4 and implemeting a Struts/JSP application that query's via view object on one table. Is it possible to sort and order by on the view object's cached data? How does one do this? Thanks Natalie