XMLElement nesting limit?

Hopefully I can ask this in a way that makes sense. I have a very basic query I have been working with to extract data and wrap it in XML. This query runs fine from the command line but when executing via JDBC if I exceed 20 nested elements each row returned in the result set is truncated to 48 characters almost all of which are null code=0 when viewed in hex. DB is 10.2.0.4. Driver is ojdbc6_g.jar. jdk is 1.6.0_19. Any ideas? Thx
SELECT
XMLElement("Item",
XMLElement("TEST1", 'Some test data'),
XMLElement("TEST2", 'Some test data'),
XMLElement("TEST3", 'Some test data'),
XMLElement("TEST4", 'Some test data'),
XMLElement("TEST5", 'Some test data'),
XMLElement("TEST6", 'Some test data'),
XMLElement("TEST7", 'Some test data'),
XMLElement("TEST8", 'Some test data'),
XMLElement("TEST9", 'Some test data'),
XMLElement("TEST10", 'Some test data'),
XMLElement("TEST11", 'Some test data'),
XMLElement("TEST12", 'Some test data'),
XMLElement("TEST13", 'Some test data'),
XMLElement("TEST14", 'Some test data'),
XMLElement("TEST15", 'Some test data'),
XMLElement("TEST16", 'Some test data'),
XMLElement("TEST17", 'Some test data'),
XMLElement("TEST18", 'Some test data'),
XMLElement("TEST19", 'Some test data'),
XMLElement("TEST20", 'Some test data'),
XMLElement("TEST21", 'Some test data')) AS ITEM
FROM TABLE
Edited by: user13072114 on Aug 6, 2010 9:31 AM

Apparently it is not just exceeding 20 XMLElement calls that causes the problem. It is also counting nested XMLAttribute calls as well.
SELECT
     XMLElement("Item",
          XMLElement("TEST1", XMLAttributes('Test Value' AS "Attribute"), 'Some test data'),
          XMLElement("TEST2", 'Some test data'),
          XMLElement("TEST3", 'Some test data'),
          XMLElement("TEST4", 'Some test data'),
          XMLElement("TEST5", 'Some test data'),
          XMLElement("TEST6", 'Some test data'),
          XMLElement("TEST7", 'Some test data'),
          XMLElement("TEST8", 'Some test data'),
          XMLElement("TEST9", 'Some test data'),
          XMLElement("TEST10", 'Some test data'),
          XMLElement("TEST11", 'Some test data'),
          XMLElement("TEST12", 'Some test data'),
          XMLElement("TEST13", 'Some test data'),
          XMLElement("TEST14", 'Some test data'),
          XMLElement("TEST15", 'Some test data'),
          XMLElement("TEST16", 'Some test data'),
          XMLElement("TEST17", 'Some test data'),
          XMLElement("TEST18", 'Some test data'),
          XMLElement("TEST_19", 'Some test data')) AS ITEM
FROM ITEMS

Similar Messages

  • Is there a limit to MC nesting?

    I'm trying to access a particular movie clip that's buried about 4 layers deep inside other movie clips.  I have a an on release event handler attached to it but it doesn't respond.  I double-checked my syntax and there are no errors.  Is there a nesting limit when it comes to mc addressing?
    -David

    OK, for the moment, I've stopped trying to figure out why I can't communicate with my buried MC from the main timeline.  I've decided to attach the actionscript to the mc itself (I know, this is bad practice but my goal is to get this working first, then i'll worry about code etiquette).
    on (release) {
        _root.attachMovie("videoHolder","mc_videoHolder",_root.getNextHighestDepth());
        var ncConnection:NetConnection = new NetConnection();
        ncConnection.connect(null);
        var nsStream:NetStream = new NetStream;
        nsStream = new NetStream(ncConnection);
        mc_videoHolder.vMyVideo.attachVideo(nsStream);
        nsStream.play("MyVideo.flv");
    The problem now is with the attachMovie() method.  The way it's set up now, I can hear the FLV's audio but I can't see the video anywhere--even after messing with the x and y coords.
    If I change that line of code to this.attachMovie("videoHolder","mc_videoHolder",_root.getNextHighestDepth());, I can see the video, but it basically replaces the MC that I clicked on to launch it, and is only as large as the MCs size.  Am I not targeting the main timeline correctly using _root?

  • Applying LIMIT (dimen.) TO TOP (...) BASEDON (...) structure in OLAP_TABLE

    Hi
    I'd like to know how to apply structure
    LIMIT dimension TO TOP (number of top member performers) BASEDON (measure)
    in OLAP_TABLE.
    For instance I have a cube SALES with 2 measures: SALES_VALUE and QUANTITY and a dimension PRODUCT with two levels: TOTAL and PRODUCT_NAME. Then I want to list 3 products with the highest SALES_VALUE and QUANTITY > 100.
    I can create for example such query:
    SELECT sales_val, quant, product_dsc
    FROM TABLE(OLAP_TABLE(
    'test_schema.test_aw DURATION SESSION',
    null,
    null,
    MEASURE sales_val FROM sales_value
    MEASURE quant FROM quantity
    DIMENSION product WITH
    HIERARCHY product_parentrel
    INHIERARCHY product_inhier
    ATTRIBUTE product_dsc FROM product_description
    ROW2CELL r2c'))
    WHERE
    OLAP_CONDITION(R2C, 'LIMIT product TO product_levelrel eq ''PRODUCT_NAME''', 1)=1
    AND OLAP_EXPRESSION_BOOL(R2C, ' quantity gt 100')=1
    AND OLAP_CONDITION(R2C, 'LIMIT product TO TOP 3 BASEDON sales_value, 1)=1;  ???????
    Instruction above does not work completely well, because it will give 3 rows with top values of SALES_VALUE measure, but in this case OLAP_CONDITION(R2C, 'LIMIT product TO product_levelrel eq ''PRODUCT_NAME''', 1)=1 is not fulfilled (row with values of TOTAL_PRODUCT level appears).
    One can create such query:
    SELECT sales_val, quant, product_dsc
    FROM TABLE(OLAP_TABLE(
    'test_schema.test_aw DURATION SESSION',
    null,
    *'LIMIT product TO TOP 3 BASEDON sales_value', ?????*
    MEASURE sales_val FROM sales_value
    MEASURE quant FROM quantity
    DIMENSION product WITH
    HIERARCHY product_parentrel
    INHIERARCHY product_inhier
    ATTRIBUTE product_dsc FROM product_description
    ROW2CELL r2c'))
    where
    OLAP_CONDITION(R2C, 'LIMIT product TO product_levelrel eq ''PRODUCT_NAME''', 1)=1
    AND OLAP_EXPRESSION_BOOL(R2C, ' quantity gt 100')=1;
    It leads to the same result as the first query.
    What shuold I do to make OLAP_CONDITION(R2C, 'LIMIT product TO product_levelrel eq ''PRODUCT_NAME''', 1)
    fulfill in query above?
    I can add that query below works as it should (LIMIT TO TOP... omitted).
    SELECT sales_val, quant, product_dsc
    FROM TABLE(OLAP_TABLE(
    'test_schema.test_aw DURATION SESSION',
    null,
    null,
    MEASURE sales_val FROM sales_value
    MEASURE quant FROM quantity
    DIMENSION product WITH
    HIERARCHY product_parentrel
    INHIERARCHY product_inhier
    ATTRIBUTE product_dsc FROM product_description
    ROW2CELL r2c'))
    WHERE
    OLAP_CONDITION(R2C, 'LIMIT product TO product_levelrel eq ''PRODUCT_NAME''', 1)=1
    AND OLAP_EXPRESSION_BOOL(R2C, ' quantity gt 100')=1;
    Thank you in advance for any help
    Peter

    Peter, Yes, I hadn't considered the condition sales_value greater than 100 in my mail.
    You can try either of the below limit cmds to include that condition too:
    limit product to limit(limit(limit(product to (product_levelrel eq 'PRODUCT_NAME') AND (sales_value gt 100)) keep top 3 basedon sales_value) sort top 3 basedon sales_value)
    -or-
    limit product to limit(limit(limit(limit(product to product_levelrel eq 'PRODUCT_NAME') keep sales_value gt 100) keep top 3 basedon sales_value) sort top 3 basedon sales_value)
    I dont think one can be sure that having separate olap_condition filters for each condition will work fine all the time. To simulate the cascading of AND operations of where clause (filters) in SQL, we can use the nested limit() function to act on progressively smaller/better qualified resultsets (cells). SQL query would apply the AND filters in any manner or order that the optimizer deems fit whereas using the limit function with keyword "keep" within it indicates an implicit order of filters. SQL query with multiple olap_conditions might rank and find top 3 -or- bottom 5 before it applies the filter "sales_value gt 100". In such a case, you may find that the query will return no rows or return only the top 1 or 2 out of top 3 which are gt 100 -or- in case of bottom, return no rows or return less than 5 members (only those above 100) -- not necessarily 3 "top 3" or 5 "bottom 5" members.
    rgds
    Shankar

  • Transfer from old computer stymied

    Just brought my new MacBook Pro home. Started it up, plugged a firewire cable into my old trusty eMac, started up the eMac with the T key pressed, got the firewire transfer image on the eMac screen. Pressed continue on the new MacBook Pro and got the window calculating sizes of my user account, applications folder and so on from the old eMac. The MacBook correctly calculated the size of the applications folder, network settings and folders and so on on my eMac hard disk BUT calculated my user account on the eMac as containing something like 57,000 gig. hence transfer impossible.
    As a result I restarted the eMac and repaired permissions, then restarted the emac via a Mac OS X 10.4 DVD and repaired the emac hard disk. That process resulted in telling me the disk was AOK but that the nesting limit of 100 had been exceeded.
    I then re-ran the MacBook Pro startup process and started the migration process only to achieve the original result (i.e. 57,000 gig, so transfer button stays grayed out). HELP!!!!
    Cheers,
    Simon

    You will be ahead of the game if you use the Finder to just copy your essential documents, pictures, and music over -- rather than using the migration assistant. And then re-install any applications from their original discs.
    Bringing over old settings and apps from a PPC mac is often a source of mysterious problems on an Intel Mac. Just MHO.

  • Formating XML formed with nested XMLELEMENT's

    Hi, maybe this is a silly question, could not find an answer though...
    When I use nested XMLELEMENT everything comes out in one long line, how can I do it so every level comes on a new line and with the apropriate indentation?
    Also .. I need to generate a different tag depending of the value of a field in the table, what is better DECODE or case statements, does it make any significant difference...It is something like this:
    select
    case cdsitfam
    when 1 then
    xmlelement("Situacion1").extract('/*')
    when 2 then
    xmlelement("Situacion2", xmlelement("NifC", cdnifc))
    else xmlelement("Situacion3").extract('/*')
    end somexml
    from BPNSo now in the second case it returns:
    <Situacion2><NifC>02545222L</NifC></Situacion2>and I would like it to be
    <Situacion2>
        <NifC>02545222L</NifC>
    </Situacion2>Not too terrible in this case I know but the nesting gets a lot more complicated..
    thanks in advance for any suggestions
    Message was edited by:
    Natalia

    From 10.2.0.2 there is also an option to use EVALNAME to give more dynamic element names:-
    SQL> create table mytest (id number, label varchar2(50));
    Table created.
    SQL> insert into mytest values (1, 'fred');
    1 row created.
    SQL> insert into mytest values (2, 'bob');
    1 row created.
    SQL> insert into mytest values (3, 'jim');
    1 row created.
    SQL> create table mydata (id number, dta varchar2(100));
    Table created.
    SQL> insert into mydata values (1, 'This is freds data');
    1 row created.
    SQL> insert into mydata values (2, 'This is bobs data');
    1 row created.
    SQL> insert into mydata values (3, 'This is jims data');
    1 row created.
    SQL> select xmlelement(evalname mytest.label, mydata.dta)
      2  from mytest, mydata
      3  where mytest.id = mydata.id;
    XMLELEMENT(EVALNAMEMYTEST.LABEL,MYDATA.DTA)
    <fred>This is freds data</fred>
    <bob>This is bobs data</bob>
    <jim>This is jims data</jim>
    SQL>And if using in PL/SQL, then the EVALNAME can evaluate from a variable.

  • Warning: you have exceeded the limit of 100 nested folders

    in red letters in Disk Utility. Machine slows and slows. Where, how, why, and whence do these folders get nested? and how to unnest, which one doesnt know which they are or where they are, out of thousands of folders? No utility out there can help, it seems.
    Jascha Kessler

    I have the exact same problem. I have an iMac G3,
    600MHz, 512MB RAM, 40 GB capacity, running 10.4.7. I
    have been using Apple Macs since their innovation.
    My computer is running a little slower, but I do not
    know if "Nesting of folders has exceeded the
    recommended limit of 100" is the culprit.
    I use Photoshop (on 9.2.2) quite a lot, but otherwise
    I use 10.4.7 all the time for everything else. I have
    searched the Information pages and Discussion panels
    for an explanation and solution, all to no avail.
    Nothing dastardly appears to have happened or about
    to happen to my computer, so I shall just keep on
    using it regardless. In the meantime, however, I
    shall keep looking for an explanation and I hope, a
    solution.
    iMac
    Mac OS X (10.4.5) 600 MHz Power PC G 3 512 MB
    SDRAM
    thanks for your interest. I dont know what causes all those nested folders; but I am on 10.4.8 now and no change in (mis)behavior. I run a G4 with now with 1600 speed from a replaced heart or whatever, and have 1.25 G Ram.. I find that I can locate all Empty folders with Spring cleaning, and delete them and get the machine running better and normally. I also clean up regularly with DISK WARRION, which seems to be hecessary, as well as Drive Genius from ProSoft Engineering. Meanwhile, I buy lottery tix, in hopes of a later Mac Pro desktop
    Jascha Kessler

  • Limit records in nested repeat region

    I am using the nested repeat region behaviour and I need to limit the amount of records in the detail table.
    in ADDT it guides you through a wizard for master and detail tables to use this nesting which works great but it also returns all the records in the detail. I would like to limit the amount.
    I tried modifying the query by adding
    $maxRows_detail4tbl_products = 4;
    $pageNum_detail4tbl_products = 0;
    if (isset($_GET['pageNum_detail4tbl_products'])) {
      $pageNum_detail4tbl_products = $_GET['pageNum_detail4tbl_products'];
    $startRow_detail4tbl_products = $pageNum_detail4tbl_products * $maxRows_detail4tbl_products;
    still returns all rows. any help is greatly appreciated.

    In the Application Panel,  select the tab Biddings
    dbclick  Recordset Detail. Click the Advanced  button, in the last SQL command ORDER BY
    You add LIMIT 0,4

  • [svn:bz-4.0.0_fixes] 20451: backporting bug fix BLZ-570/ BLZ-620 Double linked list with lot of objects result in BlazeDS Error deserializing error  : StackOverflowError  We put hard limit to the max object nest level to prevent StackOverFlowError .

    Revision: 20451
    Revision: 20451
    Author:   [email protected]
    Date:     2011-02-24 08:33:31 -0800 (Thu, 24 Feb 2011)
    Log Message:
    backporting bug fix BLZ-570/BLZ-620 Double linked list with lot of objects result in BlazeDS Error deserializing error : StackOverflowError  We put hard limit to the max object nest level to prevent StackOverFlowError. the default max object nest level is 1024 and it can be configured in the endpoint/serialziation section in service-config.xml. This needs documentation.  Checkintests pass
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-570
        http://bugs.adobe.com/jira/browse/BLZ-620
    Modified Paths:
        blazeds/branches/4.0.0_fixes/modules/common/src/flex/messaging/errors.properties
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/endpoints/AbstractEndpoint.j ava
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/SerializationContext.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf0Input.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf3Input.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/AmfIO.java

    Dear Pallavi,
    Very useful post!
    I am looking for similar accelerators for
    Software Inventory Accelerator
    Hardware Inventory Accelerator
    Interfaces Inventory
    Customization Assessment Accelerator
    Sizing Tool
    Which helps us to come up with the relevant Bill of Matetials for every area mentioned above, and the ones which I dont know...
    Request help on such accelerators... Any clues?
    Any reply, help is highly appreciated.
    Regards
    Manish Madhav

  • [svn:bz-3.x] 20443: back porting bug fix BLZ-570/ BLZ-620 Double linked list with lot of objects result in BlazeDS Error deserializing error  : StackOverflowError  We put hard limit to the max object nest level to prevent StackOverFlowError .

    Revision: 20443
    Revision: 20443
    Author:   [email protected]
    Date:     2011-02-23 21:19:22 -0800 (Wed, 23 Feb 2011)
    Log Message:
    back porting bug fix BLZ-570/BLZ-620 Double linked list with lot of objects result in BlazeDS Error deserializing error : StackOverflowError  We put hard limit to the max object nest level to prevent StackOverFlowError. the default max object nest level is 1024 and it can be configured in the endpoint/serialziation section in service-config.xml. This needs documentation.  Checkintests pass
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-570
        http://bugs.adobe.com/jira/browse/BLZ-620
    Modified Paths:
        blazeds/branches/3.x/modules/common/src/java/flex/messaging/errors.properties
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/endpoints/AbstractEndpoint.java
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/io/SerializationContext.java
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/io/amf/Amf0Input.java
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/io/amf/Amf3Input.java
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/io/amf/AmfIO.java

  • Is it possible to increase the nested layer group limit on Photoshop CS4

    Hi all,
    Does anyone know if it is possible to increase the limit on nested layer groups in Photoshop CS4. To do a test, I made a group with a blank layer inside, then duplicated this group several times and nested them within each other. Once I have nested groups (5 deep) I can't nest any more.
    This is quite frustrating as I'm sure I could cope with a just two or three more levels of depth.
    Thanks.

    Thanks for the reply.
    That's rather annoying. I guess I will have to live with it for now. :-(

  • Is there a limit of nested IF() statements?

    I am currently writing a numbers spreadsheet for inventory reasons. I would normally write a simple java or C++ code in order to create a loop to do what I need the spreadsheet to do. I have logically figured out how to achieve what I need to do using nested loops, but for some reason the equation won't work correctly. I have had days worth of headaches trying to figure out what is going wrong. Maybe some of you can help? My only thought is that there is a limitation on how many nested loops you can have. Below is the equation .... Thanks for your help!
    =IF(ISBLANK(Counts :: Table 1 :: 'Sep 30, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 29, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 28, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 27, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 26, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 25, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 24, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 23, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 22, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 21, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 20, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 19, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 18, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 17, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 16, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 15, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 14, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 13, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 12, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 11, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 10, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 9, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 8, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 7, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 6, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 5, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 4, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 3, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 2, 2012' Black Business Notebook)="TRUE",IF(ISBLANK(Counts :: Table 1 :: 'Sep 1, 2012' Black Business Notebook)="TRUE","N/A",'Table 1-1' :: 'Sep 1, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 2, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 3, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 4, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 5, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 6, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 7, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 8, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 9, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 10, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 11, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 12, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 13, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 14, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 15, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 16, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 17, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 18, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 19, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 20, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 21, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 22, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 23, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 24, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 25, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 26, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 27, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 28, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 29, 2012' Black Business Notebook),'Table 1-1' :: 'Sep 30, 2012' Black Business Notebook)

    Mason,
    That's way too many nested IFs, even if it would function it would be difficult to keep straight. You have gone well beyond where you would be better off with a LOOKUP table or a calculated result.
    Jerry

  • Is there a limit to how many scrollable frames can be nested?

    I'm trying to create an user experience that leverages a drawer within a drawer within a drawer...technique. I'm wanting to have approx 6 nested drawers. I've tried to execute this using a couple of different approaches but when I render the article in the viewer I can only slide open two drawers.
    Does anyone have experience with this or no of a limitation?

    Bob - thanks for advice.
    Back to revisiting this issue after trying to address some other things.
    I added as an html article but that didn't resolve the problem. In a browser the html renders left aligned. In DPS I am able to swipe to the previous article, but not the next. Not sure if DPS is interpreting that there is more content to the right (even though it is actually dead space beyond my 768px width target.
    From another discussion thread it seems to be a jQuery issue. Not sure if there is a jQuery function I can drop into Muse or exported files that will resolve this. I posted my question there as well, but it is an older thread.
    The other question/assumption I had was...I assume that when I add as HTML article all my interaction has to be handled in the HTML because it essentially bypasses InDesign an the ability to use DPS overlays.

  • View nesting level exceeded (limit 32)

    Hi,
    I have just added an additional level in my main hierarchy and on processing the AccountL dimension I get the below error:
    - Error while update members of multiple hierarchy of AccountL
    - Maximum stored procedure, function, trigger, or view nesting level exceeded (limit32)
    I counted the level that I am inserted and it is only 7, is it possible that my alternate hierarchy levels are added to the main hierarchy levels?  I have not included another level on any of the other hierarchies - only my first one.
    Kind Regards,
    Fiona

    Hi,
       I have seen a similar issue before. In order to find where are these errors and correct them I suggest
    you to validate and process the three hierarchies one by one, putting each hierachy as the first one by renaming the PARENTHx column header. In this way, when all the hierarchies can be validated stand-alone, then you can validate them together. a possible error can be: have the name of memebers same as the name of father.
       You can also try to delete the last member you added and reprocess, just to understand if the error is related to this new member or to something else.
    Hope this can help you,
    Mihaela

  • Free limit (overall limit vs free limit)

    Hello,
    I would have a question regarding item category D (service) in Purchase Order.
    For such items, a tab "Limits" is displayed, In this tab, there is a field "Overall limit" but also a nested tab called "Other limit" with a field "Limit" (corresponds to free limit in the help)
    Help gives me this message :
    Overall limit --> Maximum value that the total of all unplanned services (or the value of the material) covered by this document item may not exceed.
    Free limit --> Maximum value which an unplanned service may not exceed.
    I don't understand the difference between those 2 fields. When I use ML81N, I can not create an item whose the value exceed one of this field.
    Example given :
    Overall limit = 5000u20AC
    Free limit = 1000u20AC
    In ML81N, if I create a SES with gross price = 1001u20AC, I get message No limit for unplanned services amounting to 2.501,00 exists
    Other example :
    Overall limit = 5000u20AC
    Free limit = 10000u20AC
    In ML81N, if I create a SES with gross price = 5001u20AC, I get message No overall limit of          5.001,00 for unplanned services exists
    So I am blocked as soon as 1 of the limit in reached.
    Does anyone could explain the difference between those 2 fields?
    Thanks for your help,
    Patrick

    Please refer to the Online documentation: Material Management -> External Services Management -> Procurement of Services: Processes -> Accelerated and Simplified Processes -> Use of Value Limits (for Unplanned Services) Inside this documentation, it is stated that there is a variety of limits (combinations) to be used:- - Overall limit only - Overall limit and limit on services covered by contract item(s) - Overall limit, limit on services covered by contract item(s), - and other limit - Overall limit and other limit - Overall limit on services from model specifications or standard service catalog - Expected value The expected value is used in the update of the PO item value and this is the value used in the release strategy. Here is the f1 help: Expected value - ESUH-COMMITMENT Value that the unplanned services (or the materials) covered by this item are not expected to exceed. Use If you are working with the release (approval) procedure for purchasing documents, this value serves as the basis for a release strategy applied to this document. If you tick 'No limit',you don't need to enter 'Overall limit',but must enter 'Expected value'.Because 'Expected value' will affect the release strategy. Please read the note 440601 connected to this. Concerning the variability of actual cost of a purchase order, expected value means that the unplanned services (or materials) covered by this item are not EXPECTED to exceed. It is not mandatory that it has the same value like total limit value. Expected value can exceed, it is used for comparison with total limit value in cost control. Expected value can also be combined with unlimited total limit in a purchasing document

  • XMLAGG structure, performance help needed for odd nesting in schema

    Hello,
    I have to produce XML to look like:
    <?xml version='1.0'?>
      <enterprise>
        <membership>
          <sourcedid>
            <id>PHYS_101_001_FA2007</id>
          </sourcedid>
        <!-- NOTE: absence of "members" level tag for XMLAGG! -->
        <member>
          <sourcedid>
            <id>D2LU0001</id>
          </sourcedid>
          <role roletype="Sample Role">
            <status>1</status>
          </role>
        </member>
        <member>
          <sourcedid>
            <id>D2LU0002</id>
          </sourcedid>
          <role roletype="Sample Role">
            <status>1</status>
          </role>
        </member>
      </membership>
    </enterprise>This would be straightforward if the schema allowed for a "<members>" tag under which to nest the <member> tags. But, it does not allow for that tag or any other than those listed above.
    I have a query which does produce that output (except for the roletype attribute), but its performance is horrible; it takes about 40 minutes to return data:
    SELECT
         XMLROOT(
             XMLELEMENT("enterprise",
               XMLAGG(
                 XMLELEMENT("membership",
                   XMLFOREST( XMLELEMENT("id",cx.mapped_course_id) as "sourcedid"
                   (SELECT XMLAGG(
                     XMLELEMENT("member",
                       XMLFOREST(XMLELEMENT("id",spriden_id) AS "sourcedid",
                                 XMLELEMENT("status",'1') AS "role"
                      FROM enrollments_fall_sfrstca efs
                         , spriden sp
                         , gzv_tuid t
                     WHERE sp.spriden_change_ind IS NULL
                       AND sp.spriden_pidm       = t.pidm
                       AND t.tuid                = efs.user_name
                       AND efs.mapped_course_id  = cx.mapped_course_id
                       AND efs.term              = cx.semester
                , VERSION '1.0', STANDALONE NO VALUE)
      FROM courses_xt cx
    WHERE cx.semester = :term_code
    ;Similar queries are producing courses and users XML fine with no performance issues, but these are driven off either the courses view or the enrollments view, but not both.
    Is there some other way I can produce the nesting I need for the vendor's schema?
    The source views are basically as follows (showing relevant columns only):
    courses_xt:
    MAPPED_COURSE_ID       SEMEST
    AVFT209-13307-201210   201210
    AVFT210-13308-201210   201210enrollments_fall_sfrstca:
    MAPPED_COURSE_ID       USER_NAME
    AVFT209-13307-201210    FULLERC8
    AVFT209-13307-201210    SHUPEK
    AVFT209-13307-201210    NOMAN
    AVFT210-13308-201210    SHUPEK
    AVFT210-13308-201210    PELLONMWhen I have the query without the XML (with the subquery as a column of the outer query), this returns the correct data quickly (a couple of minutes).
    I have tried various permutations of XMLFOREST, XMLELEMENT, XMLAGG but either I get syntax errors, or the data is wrong (e.g. repeated '<membership>' for each '<member>', or I have to create an invalid tag '<members>' to be filtered later).
    Please advise!
    Thanks,
    Anita Lees

    Hi Anita,
    Have you tried with a GROUP BY and no subquery?
    Here's an example using SCOTT schema.
    I've used the same tag names and structure so that you can see the analogy :
    SELECT XMLElement("enterprise",
             XMLAgg(
               XMLElement("membership",
                 XMLElement("sourceid", xmlelement("id", d.deptno))
               , XMLAgg(
                   XMLElement("member",
                     XMLElement("sourceid",
                       XMLElement("id", e.empno)
                   , XMLElement("role",
                       XMLAttributes(e.job as "roletype")
                     , XMLElement("status", '1')
    FROM scott.dept d
         LEFT OUTER JOIN scott.emp e ON e.deptno = d.deptno
    WHERE d.deptno IN (10,20)
    GROUP BY d.deptno
    ;which gives :
    <enterprise>
      <membership>
        <sourceid>
          <id>10</id>
        </sourceid>
        <member>
          <sourceid>
            <id>7782</id>
          </sourceid>
          <role roletype="MANAGER">
            <status>1</status>
          </role>
        </member>
        <member>
          <sourceid>
            <id>7934</id>
          </sourceid>
          <role roletype="CLERK">
            <status>1</status>
          </role>
        </member>
        <member>
          <sourceid>
            <id>7839</id>
          </sourceid>
          <role roletype="PRESIDENT">
            <status>1</status>
          </role>
        </member>
      </membership>
      <membership>
        <sourceid>
          <id>20</id>
        </sourceid>
        <member>
          <sourceid>
            <id>7369</id>
          </sourceid>
          <role roletype="CLERK">
            <status>1</status>
          </role>
        </member>
        <member>
          <sourceid>
            <id>7902</id>
          </sourceid>
          <role roletype="ANALYST">
            <status>1</status>
          </role>
        </member>
        <member>
          <sourceid>
            <id>7566</id>
          </sourceid>
          <role roletype="MANAGER">
            <status>1</status>
          </role>
        </member>
      </membership>
    </enterprise>

Maybe you are looking for

  • Strange system lag & network/Internet

    I couldn't find a post about this being asked, I might be wrong. I apologize for asking this again but I don't know how to seach to explan this problem.. I am not sure if it's becasue I am using Mavericks because I rarely noticed this issue before bu

  • Oracle 11g - Advanced Queue

    I have created an queue in oracle 11g with multiple subscribers. I have registered the subscribers with following script DECLARE aSubscriber SYS.AQ$_AGENT; BEGIN aSubscriber := sys.AQ$_AGENT ('CUST_SUBSCRIBER', null, null); DBMS_AQADM.add_subscriber

  • Transpod fails to play media HELP!!!

    I received a Transpod (ipod automobile dock) as a gift, it worked properly for a few days but then began to give me problems. Transpod is used to charge and play ones iopd while in a car. Assuming I was given a faulty one..I tried my transpod in othe

  • Cannot deselect podcast in iTunes 12

    I cannot select or deselects podasts with iTunes 12. I am using Windows 7 and have installed and uninstalled iTunes multiple times to no effect. Both Apple and Microsoft have worked on this problem, but nothing they have tried has worked yet. Any ide

  • Random and manual zoom forcing slideshow to fail

    after trying to create a dvd with two slideshows and audio i came across many problems. a series of creating slideshow without audio, transistions and pan effects. IAM ABLE TO ANNOUNCE THAT ANY PAN AND ZOOM WHETHER MANUAL OR RANDOM IN ENCORE CS3 CREA