Some more xml help please

create table "HDTEST"
"ENTRY_DATE" VARCHAR2(50 BYTE),
"ENTRY_NUMBER" VARCHAR2(50 BYTE),
"ENTRY_DESCRIPTION" VARCHAR2(500 BYTE),
"ENTRY_TYPE" VARCHAR2(50 BYTE),
"OPEN_CLOSED" VARCHAR2(50 BYTE),
"RECORD_UPDATE_DATE" VARCHAR2(50 BYTE)
--drop table hdtest
INSERT INTO HDTEST (ENTRY_DATE,ENTRY_NUMBER,ENTRY_DESCRIPTION,ENTRY_TYPE,OPEN_CLOSED,RECORD_UPDATE_DATE) VALUES ('01-JAN-12','123456','TEST DESC 1','TYPE1','OPEN','05-JAN-12');
INSERT INTO HDTEST (ENTRY_DATE,ENTRY_NUMBER,ENTRY_DESCRIPTION,ENTRY_TYPE,OPEN_CLOSED,RECORD_UPDATE_DATE) VALUES ('01-JAN-12','123422','TEST DESC 2','TYPE2','CLOSED','08-JAN-12');
INSERT INTO HDTEST (ENTRY_DATE,ENTRY_NUMBER,ENTRY_DESCRIPTION,ENTRY_TYPE,OPEN_CLOSED,RECORD_UPDATE_DATE) VALUES ('03-JAN-12','123433','TEST DESC 3','TYPE3','OPEN','06-JAN-12');
INSERT INTO HDTEST (ENTRY_DATE,ENTRY_NUMBER,ENTRY_DESCRIPTION,ENTRY_TYPE,OPEN_CLOSED,RECORD_UPDATE_DATE) VALUES ('04-JAN-12','123444','TEST DESC 4','TYPE4','CLOSED','08-JAN-12');
INSERT INTO HDTEST (ENTRY_DATE,ENTRY_NUMBER,ENTRY_DESCRIPTION,ENTRY_TYPE,OPEN_CLOSED,RECORD_UPDATE_DATE) VALUES ('01-JAN-12','123422','TEST DESC 2','TYPE2','CLOSED','04-JAN-12');
--to generate xml
select XMLSERIALIZE( content (
  xmlelement(
    "TESTING",
    XMLAttributes('XMLTEST' as "NAME",systimestamp as "UPDATED_DATE"),
    xmlelement(
      "PAGE",
      XMLAGG(
        xmlelement(
          "ENTRY_DATE",
          xmlattributes(entry_date  "DATE" ),
          xmlagg(
            xmlelement(
              "ENTRY",
              xmlattributes(ENTRY_NUMBER "NUMBER",ENTRY_DESCRIPTION DESCRIPTION,ENTRY_TYPE "TYPE",OPEN_CLOSED,RECORD_UPDATE_DATE)
) indent )
as xml
from HDTEST
group by entry_date
order by entry_date;
--xml output
<TESTING NAME="XMLTEST" UPDATED_DATE="2012-10-03T09:34:11.501941-04:00">
  <PAGE>
    <ENTRY_DATE DATE="01-JAN-12">
      <ENTRY NUMBER="123456" DESCRIPTION="TEST DESC 1" TYPE="TYPE1" OPEN_CLOSED="OPEN" RECORD_UPDATE_DATE="05-JAN-12"/>
      <ENTRY NUMBER="123422" DESCRIPTION="TEST DESC 2" TYPE="TYPE2" OPEN_CLOSED="CLOSED" RECORD_UPDATE_DATE="08-JAN-12"/>
    </ENTRY_DATE>
    <ENTRY_DATE DATE="03-JAN-12">
      <ENTRY NUMBER="123433" DESCRIPTION="TEST DESC 3" TYPE="TYPE3" OPEN_CLOSED="OPEN" RECORD_UPDATE_DATE="06-JAN-12"/>
    </ENTRY_DATE>
    <ENTRY_DATE DATE="04-JAN-12">
      <ENTRY NUMBER="123444" DESCRIPTION="TEST DESC 4" TYPE="TYPE4" OPEN_CLOSED="CLOSED" RECORD_UPDATE_DATE="08-JAN-12"/>
    </ENTRY_DATE>
  </PAGE>
</TESTING>--im looking to have out put like this :
<TESTING NAME="XMLTEST" UPDATED_DATE="2012-10-03T09:34:11.501941-04:00">
  <PAGE> <DATE="01-JAN-12">
    <OPENED_TODAY>
      <ENTRY NUMBER="123456" DESCRIPTION="TEST DESC 1" TYPE="TYPE1" OPEN_CLOSED="OPEN" RECORD_UPDATE_DATE="05-JAN-12"/>
      <ENTRY NUMBER="123422" DESCRIPTION="TEST DESC 2" TYPE="TYPE2" OPEN_CLOSED="CLOSED" RECORD_UPDATE_DATE="08-JAN-12"/>
       <ENTRY NUMBER="123422" DESCRIPTION="TEST DESC 2" TYPE="TYPE2" OPEN_CLOSED="CLOSED" RECORD_UPDATE_DATE="04-JAN-12"/>
    </OPENED_TODAY>
    <CLOSED>
     </CLOSED>
    </DATE>
    <DATE="03-JAN-12">
    <OPENED_TODAY>
      <ENTRY NUMBER="123433" DESCRIPTION="TEST DESC 3" TYPE="TYPE3" OPEN_CLOSED="OPEN" RECORD_UPDATE_DATE="06-JAN-12"/>
    </OPENED_TODAY>
    <CLOSED>
     </CLOSED>
    </DATE>
    <DATE="04-JAN-12">
    <OPENED_TODAY>
      <ENTRY NUMBER="123444" DESCRIPTION="TEST DESC 4" TYPE="TYPE4" OPEN_CLOSED="CLOSED" RECORD_UPDATE_DATE="08-JAN-12"/>
    </OPENED_TODAY>
    <CLOSED>
       <ENTRY NUMBER="123422" DESCRIPTION="TEST DESC 2" TYPE="TYPE2" OPEN_CLOSED="CLOSED" RECORD_UPDATE_DATE="04-JAN-12"/>
     </CLOSED>
    </DATE>
  </PAGE>
</TESTING>1. <ENTRY_DATE DATE> changed to just <DATE>
2. 2 new sections under each DATE called <OPENED_TODAY> and <CLOSED>
everything should be listed under OPENED_TODAY that had an entry date of that day, but in the closed section, only records that have the OPEN_CLOSED = CLOSED and the RECORD_UPDATE_DATE = the date node
hope i explained this right and hope someone can help.
thanks again
Edited by: BluShadow on 03-Oct-2012 15:17
added {noformat}{noformat} tags for readability.  You should know how to do this by now.  See: {message:id=9360002}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Here is an attempt to provide what you say you want, although your input and your output don't seem to match.select XMLSERIALIZE( content (
  xmlelement(
    "TESTING",
    XMLAttributes('XMLTEST' as "NAME",systimestamp as "UPDATED_DATE"),
    xmlelement(
      "PAGE",
      XMLAGG(
        xmlelement(
          "DATE",
          xmlattributes(entry_date  "val" ),
          xmlelement(
            "OPEN_TODAY",
            xmlagg( case when closed_flag = 0 then
              xmlelement(
                "ENTRY",
                xmlattributes(ENTRY_NUMBER "NUMBER",ENTRY_DESCRIPTION DESCRIPTION,ENTRY_TYPE "TYPE",OPEN_CLOSED,RECORD_UPDATE_DATE)
              ) end
          xmlelement(
            "CLOSED",
            xmlagg( case when closed_flag = 1 then
              xmlelement(
                "ENTRY",
                xmlattributes(ENTRY_NUMBER "NUMBER",ENTRY_DESCRIPTION DESCRIPTION,ENTRY_TYPE "TYPE",OPEN_CLOSED,RECORD_UPDATE_DATE)
              ) end
) indent )
as xml
from (
  select a.*,
  case when open_closed = 'CLOSED' and entry_date = RECORD_UPDATE_DATE then 1 else 0 end closed_flag
  from HDTEST a
group by entry_date
order by entry_date;

Similar Messages

  • Hi, my iphone 4s shuts down randomly, Apple told me the phone is fine, I did a 2nd restore, deactivated iCloud, and no the frequency of shutting down is even more, any help please ?

    Hi, my iphone 4s ios 6.0.1 shuts down randomly, Apple told me the phone & battery are fine as it holds a charge, I did a 2nd restore, deactivated iCloud, and now the frequency of shutting down is even more, any help please ?

    It's almost impossible to say whether it's the battery or something else.  If you're running 6.0.1 and you've done a restore and set it up as new, there are no other software updates to try.
    If there's no Apple Store near you, contact Apple Care. If  you can't wait for a replacement phone, you may be able to get an express replacement (they ship you the replacement before you ship them yours, but they will put a hold on your credit card until yours is in their hands).
    http://www.apple.com/support/contact/

  • AS2 and XML help please

    Hi, I found a previous post in this forum that does exactly
    what I would like to do, but since I am new to adobe flash I am
    missing some knowledge. I have the actionscript code and the xml
    file - what I need help with is the GUI. I open a new AS2 project
    and press F9 to insert the action code. What do I do next? Please
    help!
    I attach the previous actionscript code posted by another
    member.
    Best Regards Eva

    Hi, thanks for Your reply. Yes, I have the .xml file, what I
    need help with is the 'frame' that You display the picture in. Do I
    need to create a layer or scene? I guess that myContainer_mc in the
    code needs to be identified in this 'frame'. How do I go about
    doing this?
    Any help is most appriciated!
    Best Regards Eva

  • Completely new to lab view and need to get some stop watch help please

    OK I am new to lab view so please be patient with me. I have a need for a stop watch that is triggered to start when two voltage values differ by more than 0.110V and then stop counting when they return to within 0.110v my goal is to capture the total amount of time the two voltages differ and record it along with the rest of the data is this possible and how would I do it? Thanks I am running 8.5

    danger831 wrote:
    thanks for the quick response but thats not really enough info to help me as I am very very unfamiliar with lab view and have only been using it for a few days(mainly just plugging in copied sections) so hopefully someone can give me a little more help. But the good news is I am now looking into taking one of the Lab view courses but that probably won't help me with this problem this week. thanks again for your help
    For starters, try to write the name correctly. It is LabVIEW, not lab view.
    Seriously though, your best way of learning to is try some things yourself first. Look through the examples that ship with LabVIEW for the components Raven suggested (while loops, shift registers, etc.) We could give you a working example but you will learn far more by trying things for yourself. As suggested, try a few things and then post what you have done and what you are having trouble with. From there we can answer your questions rather than just do it for you.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • Firefox used to distincly highlight previously visited sites (on results page) and 'snap to' the previously used part of the results page. Not any more! Help please.

    Firefox used to distinctly highlight sites already visited when returning to a results page.
    It also used to 'snap to' the area of the results page just visited.
    This no longer seems to happen. Please avise

    ''History not being saved was the solution to chrisjh's problem as solved by lynnebowes.''
    There are a couple of reasons why one might not be able to distinguish between visited and unvisited links on a web page.
    # History is not being preserved. ''(already covered)''
    # Bad web site design.
    '''History must be preserved'''
    :In Firefox '''Tools > Options > Privacy''' picture of " [http://img232.imageshack.us/img232/4928/clearcachew.png Using and Preserving History Settings]"
    '''Bad web site design and some solutions'''
    :There is another reason why one might not be able to distinguish between visited and unvisited sites and that is bad web page design, and one which Mozilla designing web pages should not be guilty of because they build web browsers but how many people can quickly identify between read(visited) and unread(unvisited) pages on Mozilla's pages including this one.
    Web browsers started with some things already in place; links were underlined no one had color monitors and the links were visible when printed. I guess you can tell by the off-color where links probably are. But what is more important is to be able to be able to '''distinguish visited''' from '''unvisited links''' so you don't keep reading the same old article each time, or so that you can find an article you've read before in either case visited links are an important identification in webpages. It's also important to be able to identify what the links are. You wouldn't want to go to one site that uses completely different colors or reversed the normal colors for links-- that would be very confusing.
    Some important tools for users are being to styling off, or to choose the colors. It is a it easier when you have a toolbar button to switch things rather going into '''Tools > Options > General > Advanced''' and mess with colors there.
    Another way is use a theme or a style to change the appearance ([http://www.csszengarden.com/ css Zen Garden]) of a specific website t0 something interesting but not necessarily for conveying information quickly.
    Some notes and a style to help make '''support.mozilla.com''', '''google.com''' and some '''mozillazine.com''' pages more readable can be found at [http://userstyles.org/styles/16842 Red: Mark visited links as read on unruly domains - userstyles.org]

  • Adobe Flash Player (AFP) not working on some websites. Help please?

    I am trying to view some websites, but the area turns gray where the interactivity is (where Flash Player is needed). I uninstalled everything related to AFP, then went to the sites so they could direct me to install. I installed (I hope) the most recent version of Flash, went back to the sites with no luck. Can someone please help me? Your assistance is appreciated. Thank you.

    Flash Player Help | Installation problems | Mac OS
    Flash Player Help | Installation problems | Flash Player | Windows
    Mylenium

  • Export Recordest to XML help, please

    I'm trying to display my database info using Spry in CS4. In
    CS3 there was a utility called "Export Recordest to XML" that was
    part of the toolkit, but was also available as a registration
    incentive. Is this functionality now built into CS4?
    I guess what I' m really looking for is a tutorial on how to
    bring data in directly from the database to the webpage. I've seen
    the video of how to do it from a static HTML page, but that doesn't
    help here.
    I've also seen this page (
    http://labs.adobe.com/technologies/spry/samples/utils/query2xml.html)
    but it doesn't offer any practical info for how to actually
    implement this into a dreamweaver/spry page.
    What is frustrating (aside from my own lack of knowledge) is
    that one of the original raison d'être for Dreamweaver and its
    ancestors, was the creation of dynamic sites from databases by
    people who were somewhat programming challenged.
    Maybe it is all there and I'm just missing it, but I would
    truly appreciate any help.

    RiddleyWalker2 wrote:
    > I'm trying to display my database info using Spry in
    CS4. In CS3 there was a
    > utility called "Export Recordest to XML" that was part
    of the toolkit, but was
    > also available as a registration incentive. Is this
    functionality now built
    > into CS4?
    >
    > I guess what I' m really looking for is a tutorial on
    how to bring data in
    > directly from the database to the webpage. I've seen the
    video of how to do it
    > from a static HTML page, but that doesn't help here.
    >
    > I've also seen this page
    > (
    http://labs.adobe.com/technologies/spry/samples/utils/query2xml.html)
    but it
    > doesn't offer any practical info for how to actually
    implement this into a
    > dreamweaver/spry page.
    >
    > What is frustrating (aside from my own lack of
    knowledge) is that one of the
    > original raison d'?tre for Dreamweaver and its
    ancestors, was the creation of
    > dynamic sites from databases by people who were somewhat
    programming
    > challenged.
    >
    > Maybe it is all there and I'm just missing it, but I
    would truly appreciate
    > any help.
    Once you have your page that creates the xml, just use that
    link in spry
    as your datasource. Ignore the fact that it doesn't end in
    xml, that
    doesn't matter, as the output content type is xml, so it will
    be treated
    like xml.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • Need some more scripting help

    [I'll be posting this over on the Google Group forum too.]
    File is here: https://acrobat.com/#d=m7zuQYiUoFrtz5isD7rErQ
    Form is a series of tables that can expand and contract their respective rows by clicking a button in the header - tables start out collapsed and filler can open the appropriate tables. I'm using + and - values on the buttons to check what they should do - they call a script object which handles looping through the table rows, etc (thanks Niall!).
    I also have similar loops set up on prePrint and docReady (on the form1 root) events so that the tables collapse down to only used rows for printing or after the form is saved and re-opened.
    I'm having a few issues that I'm having trouble figuring out. I'm thinking some of the problems might even have to do with which events I'm using but not sure.
    Resetting the value of the +/- button in the header rows:
    Unless a table is expanded and has rows that are empty showing I want the button caption to be a +. I've been trying to explicitly set this as part of the different loops but seem to be having issues.
    Problem with repeating header button caption:
    If a table breaks across a page, the button in the repeated header row doesn't reflect the caption of the button in the parent header row. I kind-of fixed this with some code from Paul Guerett which sets the caption based on xfa.layout.pageSpan and it works but if you click the repeated button again to collapse the table the main button caption doesn't update (should change back to a +), unless you click on the main button.
    Related to this one is when the file is saved and re-opened table headers that had been repeated show random multiple time (2-5 generally).
    I also ran into some trouble with Reader when using Unicode characters for the button caption. Instead of +/- I was trying to use \u25BC and \u25B2 (down and up triangles) but Reader seemed to choke on it.
    This form is ready to go except for these couple of issues that I can't seem to track down.

    Hi Jono,
    Here is the form with a few mods: https://acrobat.com/#d=rXwdoCcfDC0pWQz-39KWjg
    In relation to the repeating headers, I think the main problem is that the HeaderRow was set to repeat in the Object > Binding tab. I have deselected this. However you would need to test. I have seen this before and to get over it I have wrapped the header in a separate subform. I don't want to do it here because of the scripting, but see how you get on.
    On the reset button, I have included a execEvent for the docReady event in the form1 node. This resets the "+".
    Where a table spans more than one page (generating another "-" button). I have included another line to reset the original button back to "+":
    xfa.resolveNode("HeaderRow[0].Button1.caption.value.#text").value = "+";
    This seems to work.
    I haven't looked at the unicodes. I would stick with the +/-, as these are self evident and you will be less likely to have compatibility problems.
    Form looks good!
    Good luck,
    Niall

  • I am trying to make a documentary on my life using scanned photos and some video. Help please

    I am trying to make a documentary of my life using scanned photos and some video imported via disc from original cinefilm. I am having difficulty getting this sorted as I tried to import a whole event from aperture in which I had sorted the photos chronilogically. So it seems to have gone in as a project without an event which seems to be making life difficult. also I am having difficulty editing the imported video. any suggestions please.

    Click here for information. If you can't get the answers emailed to you for some reason(the email may take a few hours to arrive), contact the iTunes Store staff via the link in that article.
    (86384)

  • Coorilis / Phoca / crossdomain.xml help please

    Hello everyone,
         I am using Joomla with Phoca Gallery. It has cooliris embeded into it for a nice way to display your gallery. It states I need to put the crossdamain.xml file into the root directory. I have done this. I am using 1&1 Web hosting. I am using the code it tells me for the xml file I have upgraded to the latest versions on my website too. Any help would be great.
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM
        "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
        <allow-access-from domain="*.cooliris.com" secure="false" />
    </cross-domain-policy>

    Finally figured this out that it was due to a channel configuration issue. Within the remoting-config.xml file, the change made is shown below.
    The one below was causing the issue and was looking for crossdomain.xml
        <default-channels>
            <channel ref="my-secure-amf"/>
            <channel ref="my-amf"/>
        </default-channels>
    Changed the above to
        <default-channels>
            <channel ref="my-amf"/>
            <channel ref="my-secure-amf"/>
        </default-channels>
    Thanks
    Murugan.

  • Web pages are popping up unexpectedly-advertisement mainly-it takes up my MB on my router because of loading--I am already over my limit--registry defender keeps popping up from some web page--Help Please--

    My anti -virus program had some critical issues-deleted all of them-downloaded stopzilla to repair-but I was getting these before the repair and still afterwards--a new tab from a webpage will appear out of no where-usually advertisement-I have won something--and also a registry cleaner will appear-not knowing what program this is from-how do I stop my browser from doing this-thanks

    My anti -virus program had some critical issues-deleted all of them-downloaded stopzilla to repair-but I was getting these before the repair and still afterwards--a new tab from a webpage will appear out of no where-usually advertisement-I have won something--and also a registry cleaner will appear-not knowing what program this is from-how do I stop my browser from doing this-thanks

  • Xml help please.

    im trying to have xml file load swf into a loadMC
    cant figure this out
    so button name would be:
    <sub name="NAME" aW="0">
    this is where id like to reference xml to load an external
    swf file into a mc on stage<swf src="1.swf" w="450" h="253"
    />
    </sub>

    im trying to have xml file load swf into a loadMC
    cant figure this out
    so button name would be:
    <sub name="NAME" aW="0">
    this is where id like to reference xml to load an external
    swf file into a mc on stage<swf src="1.swf" w="450" h="253"
    />
    </sub>

  • Need a little more audiobook help please

    I received some excellent advice here regarding "how to" with audiobooks. I had a follow-up question but it might have gotten "lost" so I would like to repeat it.
    I transferred the books to audiobooks and I did the options as were recommended but when I go to audiobooks in the music main folder the books do not appear to be in sequence - ie. first listing might be disk 3 chapter 8, next listing disk 3 chapter 2, next listing disk 1 chapter 10, etc. My question is if I manually go to disk 1 chapter 1 to start will my iPod know to automatically go to disk 1 chapter 2 wherever that listing is and so on? Thanks.

    You may have to go back to the info screen > options and make sure the track and disc info are all in the right order as well. If that info is correct, then they should play in the right order.
    i

  • Need some more EEM help

    Here's what I'm trying to accomplish:
    When both g0/1/0 AND g0/1/1 go down, shut down p0/0/0.
    When either g0/1/0 OR g0/1/1 comes back up, wait 5 mins and if either is still up, bring up p0/0/0.
    While waiting, if the link that is up goes down, reset the countdown timer.
    Previously Joe Marcus Clarke helped solve a similar scenario (see attached) but this takes it a little further. I want to modify that script to accomodate this new scenario.
    Would appreciate any assistance.

    This one Tcl policy replaces your two existing applet policies.  Before you can register it, though, you need to set a few EEM environment variables:
    # pc_intf      : Name of the port channel interface to control.
    # pc_member_1  : Name of first interface to watch.
    # pc_member_2  : Name of second interface to watch.
    # pc_up_timer  : Value in seconds to wait before the port channel is brought
    #                back up when a member interface comes back up.
    For example:
    event manager environment pc_intf P0/0/0event manager environment pc_member_1 GigabitEthernet0/1/0event manager environment pc_member_2 GigabitEthernet0/1/1event manager environment pc_up_timer 300
    Then you can register the EEM Tcl policy.

  • Firefox crashes after some seconds. HELP PLEASE !

    firefox crushes directly when i open it.
    sometimes it doesn´t crush, but over 60% it does.

    Hi Bodo, can you try starting Firefox in Safe Mode? After making sure Firefox is fully shut down, hold the Shift key when double-clicking the Firefox icon. You should see a dialog with several choices. Ignore those and click "Continue in Safe Mode." This will start Firefox with your add-ons disabled. If this runs correctly, I would suspect a problem with one or more of your add-ons. To disable all of them, you can close Firefox, restart in Safe Mode, and check the box to disable all your add-ons (first box only!). Then click Make Changes and Restart.
    Does that make any difference? If so, you can re-enable your add-ons selectively starting with the most essential.

Maybe you are looking for

  • Can you set up a template for live performance in GarageBand for iPad Air?

    II'm trying to set up a template for live performance using GarageBand on my iPad Air. Can anyone advise? Thanks.

  • The class-default class map

    According to Cisco dumentation (http://www.cisco.com/en/US/docs/security/asa/asa81/config/guide/mpc.html) , the ASA is equipped with two default class-maps class-map inspection_default match default-inspection-traffic and class-map class-default matc

  • Switching ipod from windows to mac

    I have a windows computer and i am switching my ipod to my powebook but i can't update it and cannot put songs onto my ipod or get them from my ipod, i want to make it mac formatted. my ipod doesn't work on my windows computer anymore either which is

  • Want to open a abstract portal component in a popup window

    i have created two abstract portal components and corresponding jsp files, say a.jsp and b.jsp in a project. i have written a javascript "OpenNewWindow" in a.jsp. and i am calling it when user clicks on a link to b.jsp i have used window.open() funct

  • Offset account name for BP is missing in the general ledger report

    Hi all, while taking the ledger report of a cash account through General ledger report in the financials ,it is not showing the Business partner name ,it is only displaying the code. Regards, naresh k