Deal the Error messge in Delta upload

Hi,All:
   Now we face this problem:
   The value of characterstic in record is not standard.
The traffic light is red, and not activity request in ODS.
   Now we change value in source system manual,and we want to redo the delta upload and upload the data for cube.
   How to solve this problem?Can you give me some helps?
Regards&Thanks!
zagory

Hi,all:
   Now I face the new problem:
   The status of Total is yellow light, and the status of Technical is yellow light.
   The system message as follow:
<i>Request still running
Diagnosis
No errors could be found. The current process has probably not finished yet.
System response
The ALE inbox of the SAP BW is identical to the ALE outbox of the source system
and/or
the maximum wait time for this request has not yet run out
and/or
the batch job in the source system has not yet ended.
Current status
No Idocs arrived from the source system.</i>
We have 7 delta upload like this.I find something unusually is <i>211 from 0 records</i>.I think it means BW system do not upload data,and the process is running now.
How to process the step? I waiting for 2 hours.
Regards&Thanks!
zagory
Message was edited by: zagory

Similar Messages

  • What does mean the error "System status DELT is active"?

    Hi Gurus,
    Can somebody tell me what does mean the error "System status DELT is active"?

    Hi Disha,
    I m getting the same message while trying to update the contract using FM "bbp_pd_ctr_update".
    When  I go and check the Item or header it is not marked for Deletion. Is there any table or field which indicates that it is marked for Deletion.
    Any help on this is highly appreciated.
    Regards
    Surender

  • Error while Doing Delta upload

    Hi,
      While loading the deltas in SD Module we are getting the error that 'No SID value for 0BILLTOPRTY and 0SOLD_TO'. We already run the delta for Customer.
    Even though we are able to see that record in customer, we are getting the error.
    Thanks&Regards,
    Ganga Bhavani

    Hi Bhavani,
       Try to activate the customer master data and run attribute change run for customer.
    Hope it Helps
    Srini

  • Verify_function doesn't display the error messge in oracle forms

    We are planning to use the verify_function to validate the password when user password is expires.
    The users are using Forms 6i on web.
    When I set the profile to user verify_fucntion and then try to change the password with the default password change window , it doesn't display the error message if the crieteria doesn't match. Instead it just clears the screen. So the user doesn't get any idea what's going on.
    has anybody seen this. We are trying to utilize the default password change functionality instead of coding our own.....in forms
    Thanks,
    Dj

    It can be that the spry:content does not support the function::<syntax> or that your impelementation is wrong. You can try this:
    spry:content="function::FormatDate"
    Like you would implement the function statement in the spry:if statements.
    If that doesn't do the trick you need to modify the SpryData.js if you need this kind of support.

  • I use a pc. i keep getting a server error messge trying to upload photos to my iPad and iPhone via iCloud. the error states can't update photostream, server error.

    uploading worked in the beginning, but in the last few days it has not. how should i proceed.

    Go into Settings, iCloud on your iPad & iPhone. Turn streaming on there. I did that when I first set up my phone & iPad & have not had any problems. It will only stream over new photos so take one on your phone & see what happens. I hope that works for you.

  • What's the error of this file-upload code?

    hi,
    I have written following code for file selection:
    <form action="display.jsp" method="POST" enctype="multipart/form-data">
    <input type="file" name="File1">
    <input type="submit" name = "button" value="Submit">
    </form>And my project another file display.jsp which code is:
    <%@ page import="org.apache.commons.fileupload.*"%>
    <%@page import="java.io.*" %>
    <%@page import="java.util.*" %>
    <%
         out.println("Content Type: "+request.getContentType());
         boolean isMultipart=FileUpload.isMultipartContent(request);
         DiskFileUpload upload=new DiskFileUpload();
         List items=upload.parseRequest(request);
         Iterator iter=items.iterator();
         while(iter.hasNext()){
              FileItem item=(FileItem)iter.next();
              if(item.isFormField()){
                   out.println("SIZE: "+item.getSize());
                File fNew= new File(application.getRealPath("/"), item.getName());
                 out.println(fNew.getAbsolutePath());
                item.write(fNew);
              else
         out.println("Field ="+item.getFieldName());
    %>After that, i put on common-fileupload-1.1..jar on the project's /WebConcontent/WEB-INF/lib/ directory. And i have also add the common--fileupload-1.1.1. jar in the project build path. Further that i have got following error:
    Error is:
    exception
    org.apache.jasper.JasperException: org/apache/commons/io/output/DeferredFileOutputStream
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:510)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:375)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    javax.servlet.ServletException: org/apache/commons/io/output/DeferredFileOutputStream
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:858)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:791)
         org.apache.jsp.display_jsp._jspService(display_jsp.java:78)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.lang.NoClassDefFoundError: org/apache/commons/io/output/DeferredFileOutputStream
         org.apache.commons.fileupload.DefaultFileItemFactory.createItem(DefaultFileItemFactory.java:102)
         org.apache.commons.fileupload.FileUploadBase.createItem(FileUploadBase.java:500)
         org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:367)
         org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:268)
         org.apache.jsp.display_jsp._jspService(display_jsp.java:53)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)Why i have got this error? IS there anybody can help me? What will be the solution?Please Help me?
    With regards
    Bina

    java.lang.NoClassDefFoundError: org/apache/commons/io/output/DeferredFileOutputStream
    Means you are missing a class file from the class path. Most likely cause is a missing jar file. The Apache Commons utilities often have dependancies on other Commons projects. This looks like it is looking for the Apache Commons IO jar file. Download the jar file and add it to the WEB-INF/lib directory.

  • Trying to handle the error messge with a forced disconnect

    I have an after logon trigger with the following code, this is trying to disconnect a user if they have logged onto discoverer 4i too many times (value held in a table).
    the trigger is working ok and does not allow then to connect, however it exits with these errors
    "Authentication Failed.
    (Failed to connect to database - ORA-00604: error occurred at recursive SQL level 1 ORA-20998: Too many discoverer sessions, please try later. ORA-06512: at line 38 ) "
    I would like to just show the raised ORA-20998: Too many discoverer sessions, please try later. error, is this possible?
    I am trying this on 8.1.7.4, but do have access to 9.2.0.8 if that helps.
    create or replace trigger COM_DISCOVERER_SESSIONS
    after logon on database
    DECLARE
    V_USER VARCHAR(10);
    V_SESSIONS NUMBER(3);
    V_CONTROL NUMBER(3);
    V_Q_SESS NUMBER(3);
    V_OTH_SESS NUMBER(3);
    BEGIN
          SELECT upper(SYS_CONTEXT('USERENV', 'SESSION_USER'))
          INTO V_USER
          FROM DUAL; 
                    SELECT COUNT(*)
                      INTO V_SESSIONS
                      from COM_DISC_LOGINS
                      where UPPER(USERNAME) = V_USER;
                      IF V_SESSIONS = 0 THEN
                        NULL;
                      ELSE
                          SELECT SCH_USER_CONTROL, SCH_DISC_Q_SESSIONS, SCH_DISC_OTH_SESSIONS
                          INTO V_CONTROL, V_Q_SESS, V_OTH_SESS
                          FROM COM_SCHEMES;
                          IF (V_CONTROL = 1 
                                AND SUBSTR(V_USER,1,2) IN ('WO','PR','ED','SW','WQ','PQ'))
                           OR (V_CONTROL IN (2,3)  
                                AND (SUBSTR(V_USER,1,2) IN ('WO','PR','ED','SW')
                                    AND V_SESSIONS >= V_OTH_SESS )
                                OR (SUBSTR(V_USER,1,2) IN ('WQ','PQ') 
                                     AND V_SESSIONS >= V_Q_SESS)) THEN
                                   Raise_application_error(-20998, 'Too many discoverer sessions, please try later.');     
                                  EXECUTE IMMEDIATE 'DISCONNECT';
                          END IF;
                      END IF;
    END;Message was edited by:
    Kers

    Is notify() a standard method in all objects in Java?Yes, as are notifyAll() and wait(). You'll also notice in the API that there already is an Observer interface and an Observable object. That's probably sufficient to implement what you want to do.
    Brian

  • Does any one know how to resolve the error while flat file upload

    Hey guys, I am so struck with this problem, please do let me know if anyone has any suggestions and ideas.
    1. I created three InfoObjects, Material Number, Name and Price,which is  a keyfigure and has data type DEC and fixed currency USD.
    Material Number is "With Master Data ", "With Text" and i added Name and Price as attributes to that.
    2.
    After that i created an Application component, and therafter a data source for Master data Attibutes.
    Now i select my flat file which is .csv file, in this data source. When I click "Load Example Data", i get all the fields from flat file, but the data type for PRICE changes to FLTP with length 16 instead of remaining DEC.
    Does anyone have any idea why on earth is this change of Data type taking place ?
    Please do me a favour by answering if you know about this problem. Thanks, appreciate it . Byee. And yeah, m just starting off in SAP so I am a total amateur unlike most of the people here.

    Am workin on BI 7.0.
    Let me put it in another way :
    Created Infoobjects:      1) Material No , 2) Material Name  3 ) Price which is the Key Figure
    Material No -
    has attributes Material Name and Price and " WIth Master Data", With ' Text"
    Price: -
    data type DEC, fixed currency - USD
    After doing things.
    Created Application Component:
    then, Right Click - Create Data Source,
    Selected -- Master Data Attributes
    After that from "EXTRACTIO' tab , selected the flat file, which is *.csv
    and then in DATA FORMAT - " SEPERATED WITH SEPERATOR"
    Then from "PROPOSAL" tab, when i click Load example data, the data from flat file shows up here, but the field PRICE now has Data Type -- " FLTP" and lenght "16"
    I hope i was clear enough. thanks

  • LO Extraction - error in delta upload

    Hi,
    I try to do some delta upload. The delta initialization works fine. I run OLI8BW and created an InfoPackage for delta initialization.
    Now I have problems with the delta upload. I selected update method 'queued delta' in LBWE and run the job. If I try to start the loading via InfoPackage (delta upload) an error occurs. In RSA7 I can see the delta's, but there is nothing in LBWQ. The error message in the BW monitor is the following: 'Transfer structure field not contained in DataSource'. There is one field in Transfer structure, which isn't contained in data source, but I fill it via a routine. Any ideas what the problem could be?
    Thanks a lot.
    Gabi

    hi,
    check sap oss note
    881207
    Symptom
    You load data in Delta mode and the system issues error message R3 037 in the monitor:
    Transfer structure field not contained in DataSource.
    Note 868059 did not deliver a complete correction.
    In Delta requests or repeat requests that contain time-dependent selections, these time dependencies are always transferred to the source system with the 'DATETO' and 'DATEFROM' field names.
    Time selections are also transferred to the source system if the time-based fields are not known as selectable fields in the DataSource.
    Other terms
    Scheduler, Update tabstrip, repeat, DATETO, DATEFROM,
    Delta, Init, date selection, InfoPackage, selection, M, X, 1. R3 037
    Reason and Prerequisites
    The problem is caused by a program error.
    You have implemented Note 868059 as an advance correction or you have imported it using a Support Package.
    Solution
    BW 3.0B
               Import Support Package 29 for 3.0B (BW3. 0B Patch 29 or SAPKW30B29) into your BW system. The Support Package is available when Note 0783251 "SAPBWNews BW3.0B Support Package 29", which describes this Support Package in more detail, is released for customers.
    BW 3.10 Content
               Import Support Package 23 for 3.10 (BW3. 10 Patch 23 or SAPKW31023) into your BW system. The Support Package is available when Note 0783253 "SAPBWNews BW3.1 Content Support Package 23", which describes this Support Package in more detail, is released for customers.
    BW 3.50
               Import Support Package 15 for 3.5 (BW3.50 Patch 15 or SAPKW35015) into your BW system. The Support Package is available, when Note 0836440 "SAPBWNews BW Support Package 15 NetWeaver'04 Stack 15", which describes this Support Package in more detail, is released for customers.
    BW 7.0
               Import Support Package 05 for 7.0 (BW7.0 Patch 05 or SAPKW70005) into your BW system. The Support Package is available, when Note 0829625 "SAPBWNews BW 7.0 Support Package 05", which describes this Support Package in more detail, is released for customers.
    To provide advance information, the notes mentioned above may be available before the Support Package is released. In this case, the short text of the note still contains the words "Preliminary version".

  • Delta upload  for generic data sources.

    Hai All,
    I tried as per SAP online document , but still i am not getting the result i.e delta upload from the BW side. Here i explained  everything what i did.
    In R/3
    1. I have created a table with 3 fields SNO, SNAME, DOB
    2. Then i created some entries in that table.
    3. With Tr Code RSO2 i created one data source. Here i took Master Attribute Datasource
    4. In generic delta i took the Generic field as DOB. and Time stamp and upper limit 10 sec.
    In BW side
    1. I have replicated the data sources under application compone in which i have creatred in R/3..
    2. Then i activated that data source and created infopackage for that.
    3. in the selection i have specified 01.01.1900 to 01.01.9999
    4. First i made  Full Update then i get all the records from R/3.
    5. In R/3 i have created 2 more entries.
    6. In Infopackage UPDATE Tab i have selected the Initilize Delta Process ( Initialization with Data Transfer).
    For this i am getting the error message as follows.
    Error message from the source system
    Diagnosis
    An error occurred in the source system.
    System Response
    Caller 09 contains an error message.
    Further analysis:
    The error occurred in Extractor .
    Refer to the error message.
    Procedure
    How you remove the error depends on the error message.
    Note
    If the source system is a Client Workstation, then it is possible that the file that you wanted to load was being edited at the time of the data request. Make sure that the file is in the specified directory, that it is not being processed at the moment, and restart the request.
    Here i closed the all things in R/3 as per the note mentioned above. Still it is giving the error message.
    If i select the Intilization Delta Process( Intilization with out Data Transfer) then i am getting the option Delta Update . I selected this Delta update and scheduled but no data is coming.
    Please help.
    Regards
    Prashanth K

    Hai  Sachin,
                       I am getting the problem at PSA only. Actually that is connected to ODS Object only. Until unless we don't get the delta data into PSA we can't proceed futher. So please help. I am working on NW 2004S.
    Regards
    Prashanth K

  • How t o alter the Standard Messges that  SAP displays in EDI/ALE/IDocs

    Hi All
    Can anyone tell me how to change/add/modify messages ...Eg. the error messges that are displayed ,such as App Doc not posted because date format was incorrect etc
    Is there a SPRO setting for doing these things?

    Hi,
    Messages related to ALE / EDI / IDOC are defined in <b>transaction WE47</b>. You cannot change description of these message. Yes, you can change "Qualification" of the message but it is not recommended. Qualification affect further idoc processing.
    Let me know if you need any other information.
    Regards,
    RS

  • Delta Upload Problem For 0PM_CO1 Cube

    Hi Friends,
    I got a problem for Delta Upload.In RSA3 data is O.K and In RSA7 also data is O.k.but the problem is with Delta Upload new records are not comming,i did First initialization,thst is o.k,but why Delta Upload is not comming.
    please give me help about this .
    Thanks in Advance.

    Hi Praksh,
    this is chava,can you send your mobile no. to my mail id.
    Mail:[email protected]
    Message was edited by: CHAVA CHAVA

  • Delta upload errored

    Hi all:
    In a process chain we upload delta to ODS 0figl_o10, then update target cube 0figl_c10 with that delta (after activating ODS).
    That process is erroring out making R/3 and BW out of sync. Can someone suggest what's the best option now?
    I wanted to delete the ODS and the cube data, then init load the ods, activate ods, send data to the target cube and then restart the process chain. Not sure if there is any better way.
    Thanks in advance,
    Pranab

    Why you want to delte your init load? where exactly u r getting the error..could you please elobrate more?

  • I keep getting this error in Dreamweaver when I am trying to upload my website?  Can you tell me what I am doing wrong?  here is the error message: /html - error occurred - Unable to create remote folder /html.  Access denied.  The file may not exist, or

    I keep getting this error in Dreamweaver when I am trying to upload my website?  Can you tell me what I am doing wrong?  here is the error message: /html - error occurred - Unable to create remote folder /html.  Access denied.  The file may not exist, or there could be a permission problem.   Make sure you have proper authorization on the server and the server is properly configured.  File activity incomplete. 1 file(s) or folder(s) were not completed.  Files with errors: 1 /html

    Nobody can tell you anything without knowing exact site and server specs, but I would suspect that naming the folder "html" wasn't the brightest of ideas, since that's usually a default (invisible) folder name existing somewhere on the server and the user not having privileges to overwrite it.
    Mylenium

  • Error while trying to Upload the modified standard uwl.standard.xml

    Hello Forum,
    I am working on the UWL customization. I have a situation like i have to remove the links that appear in the ViewDetail of any UWL request. When we open any of the request and VIew the details of it we see the links in the right such as:
    You can also:
    Add Memo
    Display Details in SAP Gui
    Attachments Manager
    Create Ad-Hoc Request
    View History
    Now the requirement is to remove the underlined actions. I read from some forum that i have to comment the actions those were defined in the uwl.standard.xml
    I have commented the actions in the uwl.standard.xml and now when i'm trying to upload the file i get the error message saying:
    Wed Sep 10 14:22:10 CDT 2008 : Operation not allowed on standard configuration:uwl.standard
    How do i upload this modified file? Please suggest me.
    Regards,
    Krishna

    Krishna,
    Instead of modifying the UWL configuration file, this is possible by changing some property in the UWL iView itself.
    Open the UWL iView --> Goto property called List of UWL Actions to Be Excluded --> Enter followUp,launchSAPDetails,manageAttachments,uwlTaskWizard,viewHistory and save your changes.
    Regarding your error, what you can do is while upload "use Upload with High priority". If that does not work then backup the standard configuration, delete the changes, clear the UWL cache and then upload your new custom configuration as uwl.standard.
    Chintan

Maybe you are looking for