Writeback error when updating number more than 1000- URGENT!!

Hi,
I am suing writeback feature in OBIEE 11g, the xml script I am using is
<?xml version="1.0" encoding="utf-8" ?>
- <WebMessageTables xmlns:sawm="com.siebel.analytics.web/message/v1">
- <WebMessageTable lang="en-us" system="WriteBack" table="Messages">
- <WebMessage name="writeback">
- <XML>
- <writeBack connectionPool="connectionpool">
<insert>INSERT INTO XXINPT_WRITE_BACK(RECORD_ID,BUDGET_CATEGORY,BUDGET_SUB_CATEGORY,DESCR_SEGMENT2,JUL,AUG,SEP,OCT,NOV,DEC,JAN,FEB,MAR,APR,MAY,JUN,TOTALS) VALUES('@1',@2,@3,@4,@5,@6,@7,@8,@9,@10,@11,@12,@13,@14,@15,@16,@17)</insert>
<update>UPDATE XXINPT_WRITE_BACK SET "JUL"=@5,"AUG"=@6,"SEP"=@7,"OCT"=@8,"NOV"=@9,"DEC"=@10,"JAN"=@11,"FEB"=@12,"MAR"=@13,"APR"=@14,"MAY"=@15,"JUN"=@16 WHERE "RECORD_ID"='@1'</update>
</writeBack>
</XML>
</WebMessage>
</WebMessageTable>
</WebMessageTables>
I am able to update values less than 1000 but I am getting a writeback error when I try to update values more than 1000 please help, It is very urgent.
Thanks in advance.

Hi, It is just saying writeback error. there is no other information. Do not know where to check the log file.

Similar Messages

  • Error Creating Invoices with more than 1000 positions

    Hello.
    I am creating invoices in SD module with VF01 transaction.  When the document has more than 1000 positions an error is displayed.
    The text of the error is:
    Memory area p.status GUI SAPMV60A SM is too small.
    área memoria p.status GUI SAPMV60A SM demasiado pequeña.
    I would like to know if there is any way to correct this error. If it happens because memory is too small, how could it be increased?
    Thank you.
    Diana Carolina.

    Hi Diana
    As far as I know, standard SAP has restricted the no. of line items in an accounting document to 999.
    So, this is in turn impacts the no. of line items you can have on a Sales invoice,
    Since every invoice  line item can have atleast 2 accounting entries, the max. no. of  invoice line items you can have is 499.
    I dont think there is no work around for this
    Rgds

  • Error when updating Idocs in Source System - Urgent

    Hi Team,
    When i was loading the data from SAP R/3 to BW, i was facing the error "Error when updating Idocs in Source System" (0 From 0 Records).
    When i check in the Environment>Transaction RFC->In the Source System, it was displaying the error--
    <b>" Import container contains errors (are any obligato) in the Function Module: IDOC_ERROR_WORKFLOW_START_R".</b>
    Can any one please help me to solve this error.
    This is am Urgent requirement for me to deliver.
    Thanks & Best Regards,
    Venkata.

    Hello VenkaTa,
    How r u ?
    The workflow settings are not proper it seems. Ask the BASIS people to correct the Work Flow Settings. Then try Updating the IDOCs manually.
    Also check the Inbound and outbound IDOCs in the Source system. The outbound should contain some warnings or errors.
    Best Regards....
    Sankar Kumar
    +91 98403 47141

  • Heap size error when set to more than 1024 when system has 8GB of memory

    This setting:
    value="-Xms2048m -Xmx2048m -XX:MaxPermSize=1024m -Xrs -server -
    Results in the service not starting and the message is logged:
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    The server is Windows 2000 Adv, Pentium D 3GHz with 8GB of memory (OS sees 7,863,400 kb ram).
    This setting works:
    value="-Xms1024m -Xmx1024m -XX:MaxPermSize=512m -Xrs -server -
    Can anyone give me an idea as to why more memory can't be allocated?

    Unless the OS is 64Bit, you need to set the max memory to NOT more than 1500m

  • Error when working with more than one recordstore

    Hi all,
    I use Sun Java ME Toolkit SDK 3.
    When I insert a new record into a second recordstore then I get an error. How to correct it ?
    Thank you very much

    If you are dealing with two ALV, you should have created two different objects referring to CL_GUI_ALV_GRID.
    If you have done and still getting a error, please post the code that is erroring here.
    Regards,
    Ravi
    Note - Please mark all the helpful answers

  • Error while fetching more than 1000 mysql records

    I'm trying to fetch data from a MySQL database through PHP to a Flex application. When there are more than 1000 records in the resultset, the FaultEvent is returned. When I limit it to 1000 records, no problem at all. Any ideas? Code below:
    public function OldCustomerService(method:String=HTTPRequestMessage.POST_METHOD, resultFormat:String=RESULT_FORMAT_E4X, showBusyCursor:Boolean=true)
                super(null, null);
                this.requestTimeout = 0;
                this.method = method;
                this.resultFormat = resultFormat;
                this.showBusyCursor = showBusyCursor;
            public function getAllProspects():void {
                this.url = ALL_PROSPECTS_URL;
                this.addEventListener(ResultEvent.RESULT, getAllProspectSuccess);
                this.addEventListener(FaultEvent.FAULT, DAOUtil.communicationError);
                var oldCustomersToken:AsyncToken = this.send();

    It works with fewer records so it would be weird if it would be a php or mysql error. Seems to me Flex isn't waiting until everything is in. To give you a better idea of what's happening, I'll post the PHP code:
    <?php
    * Created on 19-mrt-10
    * To change the template for this generated file go to
    * Window - Preferences - PHPeclipse - PHP - Code Templates
         include '../../application/general/php/general.php';
         // connect to the database
         $mysql = mysql_connect(DATABASE_SERVER, DATABASE_USERNAME, DATABASE_PASSWORD) or die(mysql_error());
        // select the database
        mysql_select_db( DATABASE_NAME );
        // query the database to retrieve all customers.
        $query = "SELECT * FROM stores";
        $result = mysql_query($query);
        //start outputting the XML
        $output = "<result>";
        if($result) {
            $output .= "<success>yes</success>";
            $output .= "<stores>";
            // create a store tag for each retrieved store
            while($customer = mysql_fetch_object($result)) {
                $output .= "<store>";
                $output .= "<naam>$customer->naam</naam>";
                $output .= "<adres>$customer->adres</adres>";
                $output .= "<postc>$customer->postc</postc>";
                $output .= "<wpl>$customer->wpl</wpl>";
                $output .= "<land>$customer->land</land>";
                $output .= "<telprive>$customer->telprive</telprive>";
                $output .= "<telbureau>$customer->telbureau</telbureau>";
                $output .= "</store>";
            $output .= "</stores>";
        } else {
            $output .= "<success>no</success>";
            $output .= "<error>\n";
            $output .= "Reason: " . mysql_error() . "\n";
            $output .= "Query: " . $query ."\n";
            $output .= "</error>";
        $output .= "</result>";
        print ($output);
        mysql_close();
    ?>
    When the error occurs, I get a <success>yes</success> and yet again the Fault error is thrown. Again, with fewer records, no problem.

  • Query challenge (IN ) not allow more than 1000 numbers

    I have this query in the "IN" condition i am passing more than 1000 numbers and it is showing me error "I can insert more than 1000 numbers in "in" condition" like
    number like 1,2,3,4,..... until 1000. I am getting error.
    How can i write this query as differently
    select a.barcode,a.othernumber,a.owner,b.booknum,b.context,c.dept,c.userid,
    c.firstname,c.lastname from objects a,bookitem b,users c
    where a.othernumber=b.booknum
    AND c.userid=a.owner(+)
    AND booknum in (#valuelist(search.booknum)#)
    order by barcode

    you could use a UNION
    e.g.
    select oid, dob from mytable
    where oid in ( mylist of first 1000 )
    UNION
    select oid, dob from mytable
    where oid in ( mylist of the next 1000 or less )
    I have this query in the "IN" condition i am passing more than 1000 numbers and it is showing me error "I can insert more than 1000 numbers in "in" condition" like
    number like 1,2,3,4,..... until 1000. I am getting error.
    How can i write this query as differently
    select a.barcode,a.othernumber,a.owner,b.booknum,b.context,c.dept,c.userid,
    c.firstname,c.lastname from objects a,bookitem b,users c
    where a.othernumber=b.booknum
    AND c.userid=a.owner(+)
    AND booknum in (#valuelist(search.booknum)#)
    order by barcode

  • Error occurs when executing an item in an inbox with more than 1000 entries

    Hi Everyone,
    One of our approvers in SRM experienced an error when his inbox contained more than 1000 entries .  Further execution on any inbox item produces errors.
    Would you know where to set the maximum allowable entries in a user's inbox? Can this be set thru SRM config or Basis functionality?
    We also searched for existing SAP Notes but found nothing.
    Your inputs and help are greatly appreciated.
    Thanks and Regards,
    Vhong

    Hello,
    The user has sent me the screen shot. But this has no error messages. The approval transaction shows an ITS screen/code with template 'bbpapproval/99/saplbw02_1200.html'
    However, we have a user in Quality where the page displays with no problem and with 1675 Entries.
    Do you think this is more of an ITS setting or any Template/JavaScript issues?
    I got this code (view source code) earlier today and the topmost header of the code is:
    <!--
    This page was created by the
    SAP Internet Transaction Server (ITS, Version 6200.1025.7214.5, Build 908978, Virtual Server Q36, Add. service info none, WGate-AGate Host esetnmw028, WGate-Instance Q36)
    All rights reserved.
    Creation time:  Mon Mar 15 07:21:39 2010
    Charset:        iso-8859-1
    Template:       bbpapproval/99/saplbw02_1200.html
    -->
    Regarding the not-so-good practice of approvers to have more than 1000 entries in their inbox, we are still in the process of planning on how to divide the task to different approvers since there is only one approver (Project Manager) for the related network.
    Thanks and Redards,
    Vhong

  • Oci error in report 6i in reports with more than 1000 pages

    hi
    in a report that has more than 1000 page output , run in report 6i while formatting pages an error occurs:
    OCI error.==>SELECT NAME,
    what this means?
    please help me.
    CAROL.

    in reports that i know number of pages for example 1100 pageswhile formatting pages 150-200 this error occurs.
    Did you get the error if total report pages < 1100?
    indeed in another report with about 3500 pages output this error not occurs. Any diff. of setting/limits etc. between your two reports?

  • Update the authorization object value for more than 1000 role

    I need to remove one of the activity value (06) from authorization object S_SCD0.
    I do a search and found out that there are more than 1000 roles which having the activity value = 06 for authorization object S_SCD0.
    However, I don't think I can create a SCAT script to update all these 1000 roles and I believe its going to be a very tedious if I am going to manually change it one-by-one. Hence, I am wondering is there any standard program/function which I can use to automate the above changes for all these 1000 over roles.
    Kindly advise.
    Thanks

    Direct update the table is the easiest way, but should be discourage for the obvious reason.
    Should take a step back, take a long term view, when you need to update 1000 roles, maybe a role redesign might be needed. For example, if you can change the role model to derive role model, once update to the parent role will take care of all the child role.
    Thanks,
    Lye

  • I have more than 1000 contacts in my etisalat sim card, but when I import the contats its stop at 750 contacts, what is wrong? i read the phone can carry thousands of contacts..what shall i do?

    I have more than 1000 contacts in my etisalat sim card, but when I import the contats its stop at 750 contacts, what is wrong? i read the phone can carry thousands of contacts..what shall i do?

    Thanks, it seems that it doesn't like to play games, which is a bit of a bummer as i bought this specifically because it was capable of doing that.  To be fair, it is capable... I just need to get used to a sound like sitting by a washing machine on spin cycle...  Wish they would make people aware of this in the Apple Store, its very misleading and not at all desireable.

  • To enter/clear Large number of documents (more than 1000) in f-30/f-32

    Hi,
    We are using F-30/F-32 for clearing customer. But in this transaction we can enter only 16 documents at a time. Then after pressing enter again further 16 documents can be entered. Suppose we want to clear say 4000 documents then we have to keep on doing this large number of times.
    Is it possible to enter all the documents (say more than 1000) at one go in this transaction?
    Shripad

    Hi Shripad,
    In F-32 in additional selections by selecting the document number you can give at a time 13 document numbers.  You can as well think of giving From document number to To document number. 
    Aravind Boddupalli

  • [svn] 4916: sdk-14180 Handle updates to more than one field in an item when autoupdates are off .

    Revision: 4916
    Author: [email protected]
    Date: 2009-02-10 13:32:12 -0800 (Tue, 10 Feb 2009)
    Log Message:
    sdk-14180 Handle updates to more than one field in an item when autoupdates are off.
    QE Notes: None
    Doc Notes: None
    Bugs: sdk-14180
    Reviewer: ryan
    tests: checkintests mustella:collections
    Ticket Links:
    http://bugs.adobe.com/jira/browse/sdk-14180
    http://bugs.adobe.com/jira/browse/sdk-14180
    Modified Paths:
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/collections/ListCollectionView .as

    Revision: 4916
    Author: [email protected]
    Date: 2009-02-10 13:32:12 -0800 (Tue, 10 Feb 2009)
    Log Message:
    sdk-14180 Handle updates to more than one field in an item when autoupdates are off.
    QE Notes: None
    Doc Notes: None
    Bugs: sdk-14180
    Reviewer: ryan
    tests: checkintests mustella:collections
    Ticket Links:
    http://bugs.adobe.com/jira/browse/sdk-14180
    http://bugs.adobe.com/jira/browse/sdk-14180
    Modified Paths:
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/collections/ListCollectionView .as

  • TS2446 hi my apple id has been disable, as i has purchased more than 1000$ from app store and i have to update my apps and also i have planning to purchased more apps i will be appreciate if you activate my apple id. i am impatiently waiting for new iphon

    hi
    my apple id has been disable,
    as i has purchased more than 1000$ from app store and i have to update my apps and also i have planning to purchased more apps i will be appreciate if you activate my apple id.
    i am impatiently waiting for new iphone.
    i hope to buy many apps with this apple id and enjoy  them
    Viva Apple

    These are user-to-user forums, you are not talking to Apple here.
    Depending on why it's been disabled, you might be able to re-enable it via this page : http://appleid.apple.com
    Or you might need to contact Apple : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • When I update applications more than one account appears.  How do I delete second account

    when I update applications more than one account appears.  How do I delete second account?

    I'm wondering if you have to Apples IDs or iTunes IDs and have puchased apps on both accounts.I have the same issue, and must supply both accounts' passwords in order to update apps. From my research here, there's no way to merge the two accouts. It is aggrivating, indeed.

Maybe you are looking for