The amount of data that was returned by data connection has exceeded the maximum limit that was configured by server admin

Hi There,
When i try to view info-path form item getting warning (This issue is not with all items but for some of them...)
"The amount of data that was returned by data connection has exceeded the maximum limit that was configured by server admin............."
Thanks in advance!!
Regards
Vikas Mishra
Vikas Mishra

HI Vikas,
to resolve this do this from central admin
Ensure to follow the below steps.
                                         i.    Open
the central administration
                                        ii.    Go
to General Application Settings
                                       iii.    InfoPath
Form Services
                                      iv.    Configure
InfoPath Form Services
                                       v.    Click
on Data Connection Response Size
                                      vi.    By
default it is 1500 kilobytes
                                     vii.    Change
the Response Size in kilobytes (Increase the number).
Kind Regards,
John Naguib
Senior Consultant
John Naguib Blog
John Naguib Twitter
Please remember to mark this as answered if it helped you

Similar Messages

  • How do I create a new apple store account when my phone tells me that I have exceeded the maximum limit on this phone

    How do I create a new apple store account when my phone tells me that I have exceeded the maximum limit on this phone

    http://support.apple.com/kb/HT4627

  • Unable to type the maximum limit in scientific notation in a plot

    Hi,
    I am trying to plot some data that I measured in scientific notation (2E-19, etc) and I have tried everything to manually set the maximum/minimum limits of my plot in either axis without success. I have typed 2E-19 and even the number will all the preceding zeros, but I keep getting a "0" in the field. Does anyone know how to do this?
    Thank you!

    Thanks for the reply. Here is an example. I need to set the maximum limit of the y axis to 4E-19 (box highlighted in blue in the format bar of the screen shot)

  • When I plug my iphone in to my USB port in the car or computer I get an error message which says the USB has exceeded it power limit

    When I plug my iphone in to my USB port in the car or computer I get an error message which says the USB has exceeded it power limit.
    What can I do?

    madonnafromqld wrote:
    When I plug my iphone in to my USB port in the car or computer I get an error message which says the USB has exceeded it power limit.
    What can I do?
    Stop doing that.

  • What happens when the maximum limit of DataBase partitiong is reached

    Hello,
    We are using SQL server 2012 which allows 15000 partitions per table.
    We are partitioning tables on the primary ID (e.g. periodID) of one of the tables.
    As of now we have data for all the period in the DB. I am wondering that if we reach the maximum partition limit allowed by SQL server then what is the suggested approach?

    Hi Rachana,
    I have not tried it myself so I do not know. I suppose, it would just fail to create new partition. However, I heard some stories about performance issues, mainly related to subotimal execution plan choices in the systems with a few thousands partitions.
    Frankly, I would not be surprised to see such problems. Under the hood, every partition becomes "individual table" with data in clustered and aligned nonclustered indexes sorted on partition scope. In any case, I would consider systems with thousands
    of partitions are the edge cases. You rarely find them in the real life and some inefficiencies and problems could slip through the cracks in the test plans.
    I would also suspect that number of partitions in DW systems is less important than in OLTP due to the query patterns - scans vs. seeks. 
    With all being said, I would consider such designs as impractical. Partitioning is management feature, which helps to address a few challenges, such as improving system availability with piecemeal restore; implementing tiered storage; improve concurrency
    during ETL processes; implementing sliding window scenario; etc. I can see very little benefits of creating large number of partitions. Obviously, in some cases it could be beneficial to have a few dozens of operational (actively accessed and volatile) data
    partitions. However, you rarely have the case to implement large number of partitions on historical/old data. Administrative overhead could easily outweight any benefits here.
    For example, if I needed to architect partitioning on the large OLTP table that stores data for several years, I would partition operational data (weekly, monthly - depends on the requirements); partition previous-year data on quarterly or yearly basis and
    keep older data in the single partition. Tiered storage and availability SLAs would become the most critical factors in the decision.
    In fact, I would consider to combine both, partitioned views and partitioned tables together keeping recent data in the separate tables to improve accuracy of index statistics and old data in partitioned tables using partitioned views on top of that. But
    it is the subject of another discussion. 
    Thank you!
    Dmitri V. Korotkevitch (MVP, MCM, MCPD)
    My blog: http://aboutsqlserver.com

  • Need help regarding the maximum limit for data type

    Hi,
    this is Sravan. for my application am inserting the bulk data in XML format into a column of Database table.
    the sample inserted XML data will be in format... like
    '<ACC count = "10">
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    </ACC>'
    this data in XML can have more than 1000 accounts.
    now, i need to take a Parameter value from XML node and write into a file. for this i have written a procedure by looping the Nodes from XML data and building Dynamic Query like..
    if nvl(v_int, 0) > 0 then
    v_sql := '';
         for v_count in 1..v_int
         loop
         if v_sql is null then
              v_sql := 'select extractvalue(empdetails, ''/ACC/Acc' || v_count ||'/@ac_no'')||extractvalue(empdetails, ''/ACC/Acc' || v_count
    ||'/@cn_nr'')||extractvalue(empdetails, ''/ACC/Acc' || v_count ||'/@eflag'') string from sample1';
         elsif v_sql is not null then
                   v_sql := v_sql || ' union all select extractvalue(empdetails, ''/ACC/Acc' || v_count ||'/@ac_no'')||extractvalue(empdetails, ''/ACC/Acc' || v_count
    ||'/@cn_nr'')||extractvalue(empdetails, ''/ACC/Acc' || v_count ||'/@eflag'') string from sample1';
              end if;
         end loop;
    end if;
    i will get this variable "v_int" from <ACC count = "10"> ACC count Attribute, here 10 is the value for v_int variable but in real time the variable value can be more than 1000.
    at the time of Building Dynamic Query I make using the Variable v_SQL which is of Data Type "Long",
    this variable stores dynamic query which is build at the time of executing procedure but this v_sql Variable is throughing Exception that ....
    "numeric or value error Character String Buffer is Too Small"... but Long Data type will store upto 2GB..
    this variable cant able to hold much data which is dynamically build.
    will you please help me to resolve this issue Or will u suggest me another method to pick the data from XML column.
    thanks,
    sravan.

    user11176969 wrote:
    i changed the code, now its working fine.
    direct assigning the dynamic query to a Clob variable raised error.
    for dynamic query building i used another variable and assigned this variable value to actual query variable.Nice!

  • All of a sudden my data usage has exceeded my program.  I NEVER use data on the phone.  What could be causing data to be used up?

    I have had iphone 4 for almost 2 years.  I never go over my data usage.  After I updated to IOS5 I go over my data.  I stopped using ANY data except at home where I have wifi and I still get alerts that I am about to go over or do go over.  It is almost like something is staying logged in and using data time even when I back out to the home (app) screen.  Any Ideas?

    No one can answer that but you. Somewhere on your device it should say what apps use what. Also I would recommend that you shut off mobile data while wi-fi is on and not assume you won't use mobile data just because wi-fi is on. Also set wi-fi not to shut off when the phone goes to sleep if there is setting. This is the problem with iPhones. Android does it right and leaves wi-fi alone until you decide to shut it off.

  • Amount of data has exceeded maximum limit - Infopath form

    Hello, I am having a problem on O365 concerning an Infopath form.
    The warning goes like this : " The amount of data that was returned by a data connection has exceeded the maximum limit that was configured by the server administrator" 
    Solutions exist for other version of Sharepoint/Infopath. I see in SharePoint 2013, this value is 1500 kilobytes by default
    and we can increase the maximum size of that. However, in SharePoint Online, it cannot be changed.
    Can you guys please help? 
    Thanking you in advance.
    Regards,
    Nite

    Hi Nite,
    You should ask this question in the Office365 forums:
    http://community.office365.com/
    But as this question has been asked before, it is not possible to change the limit in O365. Please see this thread:
    http://community.office365.com/en-us/f/154/t/252391.aspx
    Nico Martens
    SharePoint/Office365/Azure Consultant

  • What is the maximum size limit for a KM document to be uploaded?

    Hi,
    1.  I have a requirement, wherein the user wants to upload a document which is more than 448MB in KM.
    I am not sure what is the maximum limit that standard SAP provides by default, which I can advice the user at the first place.
    2. what if we want to increase the max limit of the size?Where do we do that, can you suggest me the path for the same?
    Thanks in advance.
    Regards
    DK

    Hello,
    CM Repository in DB Mode:
    If there is a large number of write requests in your CM usage scenario, set up the CM repository in database mode. Since all documents are stored in the database, this avoids unintentional
    external manipulation of the data.
    CM Repository in FSDB Mode:
    In this mode, the file system is predominant. If files are removed from or added to the file system, the database is updated automatically.
    If you mainly have read requests, choose a mode in which content is stored in the file system. If this is the case, make sure that access to the relevant part of the file system is denied or
    restricted to other applications.
    What is the maximum size of the document that we can upload in a CM (DB) and CM (FSDB) without compromising the performance ?
    There are the following restrictions for the databases used:
    ·  Maximum number of resources (folders, documents) in a repository instance
       FSDB: No restriction (possibly limited by file system restrictions)
       DBFS and DB: 2,147,483,648
    ·  Maximum size of an individual resource:
       FSDB: No restriction (possibly limited by file system restrictions)
       DBFS: 8 exabytes (MS SQL Server 2000), 2 GB (Oracle)
       DB: 2 GB
    Maximum length of large property values (string type):2,147,583,647 byte
    What is the impact on the performance of Knowledge Management Platform and on Portal Platform when there are large number of documents that are in sizes somewhere from 100 MB to 500 MB or more.
    The performance of the KM and Portal platform is dependent on the type of activity the user is trying to perform. That is a heavy number of retrievals of the large documents stored in the repository for
    read/write mode decreases the performance of the patform. Searching and indexing in the documents will also take a propertionate amount of time.
    For details, please refer to,
    http://help.sap.com, Goto "KM Platform" and then,
    Knowledge Management Platform   > Administration Guide
    System Administration   > System Configuration
    Content Management Configuration   > Repositories and Repository
    Managers    > Internal Repositories   > CM Repository Manager
    Technically speaking the VM has a restriction according to plattform.  W2k is somewhere around 1,2G and Solaris, I believe, 4G.
    Say for instance I was on a W2k box I allotted 500+ for my J2EE Engine that would leave me with the possiblity to upload close to 600mb documents max.
    See if the attached documents (610134, 634689, 552522) can provide you some guidance for setting your VM to meet your needs.
      SUN Documentation
      Java HotSpot VM Options
            http://java.sun.com/docs/hotspot/VMOptions.html
      How to tune Garbage collection on JVM 1.3.1
            http://java.sun.com/docs/hotspot/gc/index.html
      Big Heaps and Intimate Shared Memory (ISM)
            http://java.sun.com/docs/hotspot/ism.html
    Kind Regards,
    Shabnam.

  • Inability to restart a mail download broken due to data connection drop

    I am facing problem in viewing attachments if the Mobile Data connection or the WiFi connection breaks in between the downloading of the mail attachment. The mail I am referring to is a direct email with attachments sent to my email address by a sender.
    I am not expecting the iPhone to display the attachment without downloading the attachment, obviously. However, if the attachment download is interrupted due to break in data connection, I am not able to restore the download of the remaining part of the attachment later, even if the data connection is re-established subsequently.
    In this situation when the data connection has been broken and the attachment has not been completely downloaded, if I click on the attachment, a window opens stating the attachment has not been downloaded. This attachment does not get downloaded even if I drag the attachment window down to refresh the content. I have also tried to mark the mail as unread and then reopening it to see if the attachment starts to download afresh- but nothing happens and the attachment does not start downloading nor it continues from the point of break. I have also tried to force close the mail app and then start the mail app again to reopen the particular mail and then clicking the mail attachment- but again failed to start the attachment download either afresh or from the point it had broken.
    When i force close the App and reopened it and the particular mail, the pie chart on the attachment did not appear- both with as well as without clicking on the attachment. In this situation if we click on the attachment it again opens the same blank window of the attachment with text inside the window stating that the attachment has not been downloaded.
    The same problem (inability to restore broken attachment download upon restoration of data connection) also happens if the data connection breaks while the email is open and the attachment is being downloaded (the attachment appears as a pie chart with increasingly shaded area indicating the progressive download of the attachment).
    This problem occurs with both iCloud as well as Gmail mail accounts. The problem also continues even if i reset iPhone by pressing both Home and Power button simultaneously to get the Apple logo on the screen.
    To clarify, the issue is not that the phone starts download while the data connection is down. Rather, the data connection breaks while the download is already continuing.
    The above scenario basically prevents you from viewing the attachment if for once the data connection has been broken while the attachment is in the process of being downloaded.
    But if I open the app after some time, and then reopen the mail it often happens that the attachment automatically downloads itself. ( i have not been able to quantify or assess the time span after which this happens).
    The problem also happens in the case of viewing an email which has not been downloaded completely but the data connection breaks in between.
    It has been happening since the beginning of my purchase of iPhone, but i have chosen to stop tolerating the problem recently and have thus highlighted it to you. This problem occurs with all types of attachments-pdf, word etc. It also behaves in similar manner in the case of main email content.
    Kindly advise on how to ensure that in case a download of the attachment is broken due to break in data connection, the download of the attachment is resumed after the data connection is restored. There must be ways to make that email as a new email and then download the complete email alongwith the attachments afresh after the connection is established afresh in due course.
    It is to reiterate and repeat once again what was discussed that the problem being highlighted is not that the download gets broken on network disruption. Instead the problem is that the download is not restored (nor restarted) after restoration of the network.
    I understand and appreciate that download cannot happen without network and that the break in download upon network break is expected behaviour.
    However, the inability to restore download after network restore is not expected behaviour.
    This issue is independent of the type of network - WiFi or Cellular.
    I want to address the issue of inability to restore/ restart download upon network restore.

    I agree that data connection should be reliable.
    However, what I am expecting is that the behaviour of the iPhone Mail client should be made similar to that on a Desktop PC, like Outlook.
    In other words, if we refresh the mail content by dragging the open window down it should actually refresh the full content including the attachments, even if it has been downloaded - in part or in full.

  • Issue with the Maximum lenght string on application server file

    Hi,
    I have one internal table which cotains aroung 200 fields. The total lenght of the all fields is around 2000 charr.
    I am using open data, transfer and close data set to put my file on application server.
    I am looping at my internal table and then transfering the data on server file.
    The problem is that after generating the file on application server i couldnt see all the fields. i can see only around 500 char.
    not all the data.
    Does there is maximum limit on the number of char on application serevr.
    or there is complete record but we cant see,
    kindly help.

    Hi Sachin,
    As Rainer said you cannot see the full length of row in AL11. The visible length is restricted. If you want to re-confirm whether all data are in. Then download the file from application server to your local system and see the contents. It will be to 2000 characters which you passed.
    Hope this helps.

  • ORA-22290: operation would exceed the maximum number of opened files or LOB

    i am getting this error in a procedure.
    ORA-22290: operation would exceed the maximum number of opened files or LOBs
    22290, 00000, "operation would exceed the maximum number of opened files or LOBs"
    // *Cause: The number of open files or LOBs has reached the maximum limit.
    // *Action: Close some of the opened files or LOBs and retry the operation.
    NAME TYPE VALUE
    session_max_open_files integer 10
    Procuedure:
    CREATE OR REPLACE PROCEDURE WMSOWN."PROC_WMS_XML_READ"
    P_EVENT_KEY IN VARCHAR2,
    X_STATUS_MSG OUT VARCHAR2,
    X_STATUS OUT NUMBER
    )AS
    l_parser dbms_xmlparser.Parser;
    domdoc xmldom.DOMDocument;
    nodelist XMLDOM.DOMNODELIST;
    node XMLDOM.DOMNODE;
    n_child XMLDOM.DOMNODE;
    elements XMLDOM.DOMELEMENT;
    name_node_map XMLDOM.DOMNAMEDNODEMAP;
    parent_seg varchar2(4000);
    tag_name_bkp varchar2(4000); -- LOOK OUT BRAD IS CODING AGAIN
    chile_seg VARCHAR2(4000);
    p_seg VARCHAR2(4000);
    p_seg1 VARCHAR2(4000);
    p_seg2 VARCHAR2(30);
    p_int_name VARCHAR2(50);
    col_value VARCHAR2(100):=NULL;
    len1 NUMBER;
    cnt NUMBER;
    seg_id_bkp NUMBER; -- LOOK OUT BRAD IS CODING AGAIN
    sequence_bkp NUMBER; -- LOOK OUT BRAD IS CODING AGAIN
    prev_sequence NUMBER; -- LOOK OUT BRAD IS CODING AGAIN
    prev_seq_set VARCHAR2(3); --brad coding
    parent_id number; ---brad coding
    valid_seg NUMBER; -- LOOK OUT BRAD IS CODING AGAIN
    data_status VARCHAR2(10);
    v_main_seg VARCHAR2(50);
    v_seq_no NUMBER;
    V_CLOBLOCATOR CLOB;
    V_FILELOCATOR BFILE;
    v_amount_to_load NUMBER;
    dest_offset NUMBER := 1;
    src_offset NUMBER := 1;
    lang_context NUMBER := DBMS_LOB.DEFAULT_LANG_CTX;
    warning NUMBER;
    v_event_name USR_OUB_FILE_PROCESS_DETAILS.EVENT_NAME%TYPE;
    v_file_name USR_OUB_FILE_PROCESS_DETAILS.FILE_NAME%TYPE;
    DIRECTORY_PATH_INVALID EXCEPTION;
    PRAGMA EXCEPTION_INIT(DIRECTORY_PATH_INVALID,-22285);
    NO_PRIVILEGES EXCEPTION;
    PRAGMA EXCEPTION_INIT(NO_PRIVILEGES,-22286);
    INVALID_DIRECTORY EXCEPTION;
    PRAGMA EXCEPTION_INIT(INVALID_DIRECTORY,-22287);
    FILE_NOT_FOUND EXCEPTION;
    PRAGMA EXCEPTION_INIT(FILE_NOT_FOUND,-22289);
    P_DIRECTORY VARCHAR2(50) :='WMS_XML_DIR_OUB';
    v_whid poldat_view.wh_id%type;
    BEGIN
    --NAME :  PROC_WMS_XML_READ.PLS
    --DESCRIPTION :
    -- Procedure PROC_WMS_XML_READ search XML files from remote location.
    -- Open,Parse and Read XML files. Store all XML values into tables.
    -- Developed by Dharmesh Patidar(jw782)
    -- History: New condition is added i.e. p_seg:=parent_seg to maintain PARENT and CHILD relationship
    -- by Vishwanath Dubey(jl246) on 17-June-2011
    -- BRAD_XML_DEBUG table removed for CLEANING Activity by DHARMESH PATIDAR(JW782) ON 29-JUNE-2011.
    /*BLOCK FOR CAPTURING EVENT NAME BASED ON EVENT ID START*/
    BEGIN
    SELECT event_name,file_name,WAREHOUSE_ID
    INTO v_event_name, v_file_name,v_whid
    FROM usr_oub_file_process_details
    WHERE event_id=p_event_key
    AND process_flag='U';
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    x_status_msg:=SQLCODE||':'||' Error while selecting event name and event id in Procedure PROC_WMS_XML_READ : Record is not available in USR_OUB_FILE_PROCESS_DETAILS table for event id '|| P_EVENT_KEY;
    x_status:=SQLCODE;
    proc_wms_error_trace(v_whid, --warehouse id
    null , --event id
    v_event_name , --event name
    x_status, --error code
    x_status_msg ); --error message
    RETURN;
    WHEN TOO_MANY_ROWS THEN
    x_status_msg:=SQLCODE||':'||' Error while selecting event name and event id in Procedure PROC_WMS_XML_READ : More than one Records found in USR_OUB_FILE_PROCESS_DETAILS table for event id '|| P_EVENT_KEY;
    x_status:=SQLCODE;
    proc_wms_error_trace(v_whid, --warehouse id
    null , --event id
    v_event_name , --event name
    x_status, --error code
    x_status_msg ); --error message
    RETURN;
    WHEN VALUE_ERROR THEN
    x_status_msg:=SQLCODE||':'||' Error while selecting event name and event id in Procedure PROC_WMS_XML_READ : Varibale length is small or data type mismatch while selecting event id and event name in USR_OUB_FILE_PROCESS_DETAILS table for event id '|| P_EVENT_KEY;
    x_status:=SQLCODE;
    proc_wms_error_trace(v_whid, --warehouse id
    null , --event id
    v_event_name , --event name
    x_status, --error code
    x_status_msg ); --error message
    RETURN;
    WHEN OTHERS THEN
    x_status_msg:=SQLCODE||':'||'Error in Procedure PROC_WMS_XML_READ while selecting event name and event id ';
    x_status:=SQLCODE;
    proc_wms_error_trace(v_whid, --warehouse id
    null , --event id
    v_event_name , --event name
    x_status, --error code
    x_status_msg ); --error message
    RETURN;
    END;
    /*BLOCK FOR CAPTURING EVENT NAME BASED ON EVENT ID END*/
    /*LOGIC TO READ XML FROM REMOTE LOCATION START*/
    DBMS_LOB.CREATETEMPORARY(V_CLOBLOCATOR, TRUE);
    V_FILELOCATOR := BFILENAME(P_DIRECTORY,V_FILE_NAME);
    DBMS_LOB.OPEN(V_FILELOCATOR,DBMS_LOB.FILE_READONLY);
    V_AMOUNT_TO_LOAD := DBMS_LOB.GETLENGTH(V_FILELOCATOR);
    DBMS_LOB.LOADCLOBFROMFILE(V_CLOBLOCATOR,
    V_FILELOCATOR ,
    V_AMOUNT_TO_LOAD,
    DEST_OFFSET,
    SRC_OFFSET,
    0,
    LANG_CONTEXT,
    WARNING);
    dbms_lob.close(V_FILELOCATOR);
    /*LOGIC TO READ XML FROM REMOTE LOCATION END*/
    /*Temporary Code to help with debug Clear the table before populating it with new data*/
    --delete table BRAD_XML_DEBUG;
    cnt:=1;
    seg_id_bkp:=0;
    data_status:='N';
    v_seq_no:=0;
    prev_seq_set:='NO';
    /*create new parser.*/
    l_parser := dbms_xmlparser.newParser;
    dbms_xmlparser.parseClob(l_parser, replace(V_CLOBLOCATOR,'&','1x2x3x4x5'));
    /*Parse the document and create a new DOM document.*/
    domdoc :=dbms_xmlparser.getDocument(l_parser);
    /* get all elements in the DOM*/
    nodelist := XMLDOM.getElementsByTagName(DOMDoc, '*');
    len1 := XMLDOM.getLength(nodelist);
    /* loop through elements of the DOM */
    FOR j in 1..len1-1 LOOP --MAIN LOOP START
    BEGIN
    /*below sql will fetch Node from table to travel xml data*/
    BEGIN
    SELECT int_name,tag_name
    INTO p_int_name, p_seg1
    FROM usr_wms_tag_det
    WHERE int_name=v_event_name
    AND seq_no =cnt;
    EXCEPTION
    --PLEASE DO NOT HANDLE ANY EXCEPTION APART MENTIONED BELOW
    WHEN OTHERS THEN
    NULL;
    END;
    IF cnt=1 THEN
    v_main_seg:=p_seg1;
    END IF;
    EXCEPTION
    --PLEASE DO NOT HANDLE ANY EXCEPTION APART MENTIONED BELOW
    WHEN no_data_found THEN
    null;
    WHEN OTHERS THEN
    x_status_msg:=SQLCODE||':'||'Error in Procedure PROC_WMS_XML_READ while selecting interface name and tag name'||sqlerrm;
    x_status:=SQLCODE;
    proc_wms_error_trace(v_whid, --warehouse id
    null , --event id
    v_event_name , --event name
    x_status, --error code
    x_status_msg ); --error message
    RETURN;
    END;
    /*LOGICS TO READ XML START*/
    node:=XMLDOM.item(nodelist, j);
    elements:=XMLDOM.makeElement(node);
    parent_seg:=(xmldom.getTagName(elements));
    tag_name_bkp:=(xmldom.getTagName(elements));
    name_node_map:=xmldom.getAttributes(node);
    n_child:=xmldom.getFirstChild(node);
    col_value:=xmldom.getNodeValue(n_child);
    /*get the sequence number from the interface hierarchy table */
    SELECT count(1)
    INTO valid_seg
    FROM usr_wms_tag_det
    WHERE int_name=v_event_name
    AND tag_name = tag_name_bkp;
    if valid_seg>0 then
    begin
    SELECT seq_no
    INTO sequence_bkp
    FROM usr_wms_tag_det
    WHERE int_name=v_event_name
    AND tag_name = tag_name_bkp;
    seg_id_bkp:=seg_id_bkp+1;
    p_seg:=parent_seg;--Modified by Vishwanath Dubey dated 16-jun-2011
    end;
    end if;
    if prev_seq_set = 'NO' then
    begin
    prev_sequence := sequence_bkp;
    prev_seq_set := 'YES';
    end;
    end if;
    if sequence_bkp < prev_sequence then --you just moved up level(s) in the message structure
    begin
    select max(seg_id)
    into parent_id
    from usr_wms_global_xml_det
    where seg_sequence = sequence_bkp-1;
    prev_sequence := sequence_bkp;
    end;
    end if;
    if sequence_bkp > prev_sequence then --you just moved down a level in the message structure
    parent_id := seg_id_bkp-1;
    prev_sequence := sequence_bkp;
    end if;
    /*end getting the hierarchy table sequence */
    /*LOGICS TO READ XML END */
    IF (parent_seg =p_seg1) or (parent_seg=p_seg2) THEN
    if parent_seg=v_main_seg then
    v_seq_no:=v_seq_no+1;
    end if;
    BEGIN
    /* INSERTING DATA LOGICS TO READ XML END */
    INSERT INTO usr_wms_global_xml_det values(p_int_name,tag_name_bkp,parent_seg,seg_id_bkp,sequence_bkp,parent_id,'','','',J,v_seq_no,data_status,cnt);
    EXCEPTION
    WHEN OTHERS THEN
    x_status_msg:=SQLCODE||' : Error in Procedure PROC_WMS_XML_READ while inserting records in USR_WMS_GLOBAL_XML_DET table for interface name and parent segment '||P_INT_NAME||','||PARENT_SEG;
    x_status:=SQLCODE;
    proc_wms_error_trace(v_whid, --warehouse id
    null , --event id
    v_event_name , --event name
    x_status, --error code
    x_status_msg ); --error message
    RETURN;
    END ;
    p_seg:=parent_seg;
    p_seg2:=P_SEG1;
    cnt:=cnt+1;
    ELSE
    chile_seg:=parent_seg;
    BEGIN
    /* INSERTING DATA LOGICS TO READ XML END */
    INSERT INTO usr_wms_global_xml_det values(p_int_name,tag_name_bkp,p_seg,seg_id_bkp,sequence_bkp,parent_id,'',chile_seg,replace(TRIM(Col_Value),'1x2x3x4x5','&'),J,v_seq_no,data_status,cnt);
    EXCEPTION
    WHEN OTHERS THEN
    x_status_msg:=SQLCODE||' : Error in Procedure PROC_WMS_XML_READ while inserting records in USR_WMS_GLOBAL_XML_DET table for interface name and parent segment '||P_INT_NAME||','||PARENT_SEG;
    x_status:=SQLCODE;
    proc_wms_error_trace(v_whid, --warehouse id
    null , --event id
    v_event_name , --event name
    x_status, --error code
    x_status_msg ); --error message
    RETURN;
    END;
    END IF;
    END LOOP; --MAIN LOOP END
    dbms_xmldom.freeDocument(DOMDoc);
    x_status:=0;
    EXCEPTION
    WHEN DIRECTORY_PATH_INVALID THEN
    x_status_msg:=SQLCODE||' : Error in Procedure PROC_WMS_XML_READ DIRECTORY PATH IS INVALID';
    x_status:=SQLCODE;
    proc_wms_error_trace(v_whid, --warehouse id
    null , --event id
    v_event_name , --event name
    x_status, --error code
    x_status_msg ); --error message
    RETURN;
    WHEN FILE_NOT_FOUND THEN
    x_status_msg:=SQLCODE||' : Error in Procedure PROC_WMS_XML_READ INVALID XML FILE NAME OR FILE DOES NOT EXISTS';
    x_status:=SQLCODE;
    proc_wms_error_trace(v_whid, --warehouse id
    null , --event id
    v_event_name , --event name
    x_status, --error code
    x_status_msg ); --error message
    RETURN;
    WHEN NO_PRIVILEGES THEN
    x_status_msg:=SQLCODE||' : Error in Procedure PROC_WMS_XML_READ Insufficient privileges on file or directory NAME- '||p_directory||' to perform FILEOPEN operation.';
    x_status:=SQLCODE;
    proc_wms_error_trace(v_whid, --warehouse id
    null , --event id
    v_event_name , --event name
    x_status, --error code
    x_status_msg ); --error message
    RETURN;
    WHEN OTHERS THEN
    x_status_msg:=SQLCODE||' : Error in Procedure PROC_WMS_XML_READ '|| SQLERRM;
    x_status:=SQLCODE;
    proc_wms_error_trace(v_whid, --warehouse id
    null , --event id
    v_event_name , --event name
    x_status, --error code
    x_status_msg ); --error message
    dbms_xmlparser.freeParser(l_parser);
    dbms_xmldom.freeDocument(DOMDoc);
    RETURN;
    END PROC_WMS_XML_READ;
    Edited by: user13427480 on Feb 8, 2013 7:08 PM

    when you post sql statement use also similar threads :
    ORA-22290: operation would exceed the maximum number of opened files or LOB
    https://kr.forums.oracle.com/forums/thread.jspa?messageID=10842417                                                                                                                                                                                                                                                                                                                                                                                                           

  • WSDL data connection error after Form Server xdp render

    Hi
    I have a wsdl data connection inside an xdp after I render the xdp as pdf and reader extend the form when I click on the button to execute the web service method a pop up box appears saying the data connection has no properties. I am using LiveCycle Forms and Reader Extensions 8.1.
    Thanks

    Hi Paul
    Thanks for the reply.
    Reader extensions wasn't the problem, it was how I was manipulating the xdp before rendering.
    Thanks

  • Server Admin and 'alphabetize' the list in File Sharing

    Hi,
    i searched but didnt find the answer for this (dumb) little problem;
    in Server Admin (10.5.3) i am ready to give a huge list of directories different ACLpermissions.
    When i browse to a sharepoint all the directories (about 60) are sorted in date.
    Is there a way to "alphabetize" this list in Server Admin?
    Thanx!
    Martiño

    Like most column views in Server Admin you can click the column header to sort the list by that column. The change doesn't appear to be persistent, so you'll need to do it each time you launch Server Admin, but it should suffice.
    Andrew

  • How can i increase the maximum size of a text column in Access

    hello,
    i am inserting data in the MS-Access database through my servlet and am getting the exception whenever the length of the text data is more than 255 characters as in Access the maximum size for character data column is 255 can anyone tell me if there is any way by which i can increase the maximum limit of the column size in Access ,i.e. to make it more than 255.

    A text field in Access has a maximum size of 255 characters. If you want to store text information in Access larger than 255, you need to use the memo rather than text data type. There are special considerations for using an Access memo data type and accessing it through JDBC. Specifically, I believe it must be accessed as a binary object (BLOB), rather than text when using the JDBC-ODBC bridge. There are lots of discussions within these forums regarding how to manage, and the issues with using the Access memo data type.
    Good luck!

Maybe you are looking for

  • How to get the coloumns (fields) width in crystal report

    hi, how to get the coloumns width, date(get and set) and page size in crystal report using ras sdk . thanks

  • Validator Errors and the Fix

    Hello I need to understand the mistakes, apply the corrections. I want to offer a basic page ( http://www.meherbabalibrary.com/babalist/list_g/list_g.html)  and ask for assistance. It is without CSS, with Divs - a basic unpopulated page with navigati

  • Xml display in netscapenavigator

    hi, I have retrieved a records as xmldocument ans use xsl to format it. I am getting perfect display in IE5 but in netscape i am not getting the display kindly suggest the solution thanks su

  • Cinfuguration Assistants problem

    Its like this, it cant starts optional assistant Oracle Net Configuration Assistant. error is something like this, error loading native library libnjbi9.so, java.lang,UnsatisfiedLinkError ... help

  • Count the SR's based on Each Contract

    hi, hi i want to count the SR's Based on the each Contract below the xml <SrReportVO> <SrReportVORow> <Srnumber>40734</Srnumber> <Customername>Business World</Customername> <Customerid>4429</Customerid> <Contract>21983</Contract> <Count1>1</Count1> <