Not able to Upload data in Demand Planning data view

Hi
I am trying to upload a csv  file in to Demand planning interactive planning through " Upload Data " functionality
First I exported data from interactive planning , updated some data in file and again trying to upload same file.
I am getting following error
File cannot be uploaded
Message no. /SAPAPO/SDP_UPLOAD009
Diagnosis
File  has no technical information or incorrect technical information.
Procedure
Save the file again locally. Make sure that the file has the technical information.
Could u please suggest what needs to be done
Thanks and regards,
Nitin Lavhe

Hello,
For using the upload data functionality from interactive planning grid, you need to first download the data. While downloading the data, please check the check box for "Prepare the file for upload at later time", and then select the option of putting the technical setting into the file or into the system. Either way is okay. Then try uploading the same file.
This should solve your problem.
Thank you.
Regards,
Jacky Jain.
SAP APO Architect.

Similar Messages

  • Not able to upload Documents using  BAPI_DOCUMENT_CREATE2 (From SE37)

    Hi
    Not able to upload and created Document in SAP DMS Repository using Function BAPI_DOCUMENT_CREATE2.
    I'm using this BAPI directly from SE37.
    Alwasy it is giving Error - E26 253 Error while checking in and storing:c:\ZANALYSIS_PATTERN.XLS
    Inputs I have given -
    In Document Data -
    Document Type - SDC
    Document Version- 00
    Document Part - 000
    Description - TEST
    In Document Files -
    Document Type - SDC
    Document Version- 00
    Document Part - 000
    Storage Category - ZHCL_CS
    WS Application - XLS
    DocPath - C:\
    DocFile - C:\ZANALYSIS_PATTERN.XLS
    Language - EN
    CheckedIn - X
    PF_FTP_DEST - SAPFTPA
    PF_HTTP_DEST - SAPHTTPA
    DEFAULTCLASS - X
    Please advice if I had skipped something and mentioned anything wrong.
    Thanks
    Prashant

    HI,
    I am also uploading a pdf file to dms through bapi_document_checkin.
    I am getting error E26 253 Error while checking in and storing:C:\DOCUMENTS AND SETTINGS\AGARW01S\DESKTOP\10 2_VIEW 1.PDF
    Inputs I have given -
    In Document Data -
    Document Type - SPE
    Document Version- A
    Document Part - 000
    Description - UPLOAD
    In Document Files -
    Document Type - SPE
    Document Version- A
    Document Part - 000
    Storage Category - DMS_C1_ST
    WS Application - PDF
    DocPath - C:\DOCUMENTS AND SETTINGS\AGARW01S\DESKTOP\10 2_VIEW 1.PDF
    DocFile - 10 2_VIEW 1.PDF
    Language - EN
    CheckedIn - X
    PF_FTP_DEST - SAPFTPA
    PF_HTTP_DEST - SAPHTTPA
    can u please help me as it is urgent.
    Shilpa

  • Not able to upload file in DMS(Document Mang. system) using Web dynpro ABAP

    Hi All,
    I am facing a problem while uploading the file into the DMS ( Document Management System ) from Webdnrpo .
    I am using the BAPI - BAPI_DOCUMENT_CREATE2 to create the document .
    CASE - 1
    when i am providing the storage category mention below and no data carrier1
    ls_documentfiles-storagecategory = 'ZHMEL_CS'.  it is not able to upload the document in the DMS system and when i check
    in the debugg mode it giving error as  ""Error while checking in and storing: C:\TEST.TXT "" .
    CASE - 2
    When i am not using the storage category and providing the the data carrier as default
    ls_documentdata-DATACARRIER1 = 'DEFAULT'. It is able to create the document in the DMS but i am not able to read that document .
    I checked with DMS Consultant that DMS is configured for  ZOL ( documenttype) with a storage category  as 'ZHMEL_CS'.
    The code which i have used is below :
    ls_documentdata-documenttype = 'ZOL'.
    ls_documentdata-documentversion = '00'.
    ls_documentdata-documentpart = '000'.
    ls_documentdata-description = 'Test Document'.
    ls_documentdata-laboratory = '001'.
    ls_documentdata-WSAPPLICATION1 = 'TXT'.
    ls_documentdata-DOCFILE1 = 'C:\TEST.TXT'.
    ls_documentdata-SAVEDOCFILE1 = 'C:\TEST.TXT'.
    *ls_documentdata-FILESIZE1 = 000000000000.
    *ls_documentdata-FILESIZE2 = 000000000000.
    ls_documentdata-WSAPPLICATION1 = 'TXT'.
    ls_documentfiles-DOCUMENTTYPE = 'ZOL'.
    ls_documentfiles-DOCUMENTPART = '000'.
    ls_documentfiles-DOCUMENTVERSION = '00'.
    ls_documentfiles-storagecategory = 'ZHMEL_CS'.
    ls_documentfiles-WSAPPLICATION = 'TXT'.
    ls_documentfiles-DOCPATH = 'C:\'.""lv_filename.
    ls_documentfiles-DOCFILE = 'TEST.TXT'."lv_filename.
    ls_documentfiles-description = 'Test Document'.
    ls_documentfiles-language = 'EN'.
    ls_documentfiles-CHECKEDIN = 'X'.
    APPEND ls_documentfiles to lt_documentfiles .
    *&----Fill Descriptions
    w_descr-language = 'EN'.
    w_descr-language_iso = 'EN'.
    w_descr-description = 'Test'.
    append w_descr to lt_descr.
    clear w_descr.
    **w_hostname = 'HMEL-DV1R3_DR3_00'.
    CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
    EXPORTING
    documentdata = ls_documentdata
    *hostname = 'content-srv'
    *pf_http_dest = 'SAPHTTPA'
    *pf_ftp_dest  = 'SAPFTPA'
    IMPORTING
    DOCUMENTNUMBER = lv_DOCUMENTNUMBER
    return = gv_return
    TABLES
    documentdescriptions       = lt_descr
    documentfiles              = lt_documentfiles.
    Please let me know your valuable inputs on the same ..
    Edited by: Omm Awasthi on Dec 30, 2010 12:22 AM
    Edited by: Omm Awasthi on Dec 30, 2010 12:25 AM

    Hi omm , from functional side your require a document type and content repository
    I have used below code in a function module to create document , we have create object link as PO to the doc.
    FUNCTION ZFM_SR_CREATE_FROM_EXTERNAL .
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(IV_DOCUMENTNUMBER) TYPE  DOKNR OPTIONAL
    *"     VALUE(IV_DOCUMENTTYPE) TYPE  DOKAR OPTIONAL
    *"     VALUE(IV_DOCUMENTVERSION) TYPE  DOKVR OPTIONAL
    *"     VALUE(IV_DOCUMENTPART) TYPE  DOKTL_D OPTIONAL
    *"     VALUE(IV_STORAGE_CAT) TYPE  CV_STORAGE_CAT OPTIONAL
    *"     VALUE(IV_DOKST) TYPE  DOKST OPTIONAL
    *"     VALUE(IT_DM_FILES) TYPE  ZDM_TT_FILES OPTIONAL
    *"     VALUE(IV_EBELN) TYPE  EBELN
    *"  EXPORTING
    *"     VALUE(EV_DOCUMENTNUMBER) TYPE  DOKNR
    *"     VALUE(ES_RETURN) TYPE  BAPIRET2
    V00.00  DD.MM.YYYY                                                   *
    *********************New Method of Uploading File*********************************
      CONSTANTS path_name    TYPE dms_path
               VALUE '/tmp/'.
      CONSTANTS log TYPE dms_path VALUE '/tmp/logFO.txt'.
      DATA: ls_draw TYPE bapi_doc_draw2,
            lt_documentfiles TYPE TABLE OF bapi_doc_files2,
            ls_documentfiles TYPE bapi_doc_files2,
            ls_dm_files TYPE zdm_files,
            lv_filename TYPE string,
            lv_ext TYPE string,
            lv_file_type TYPE draw-dappl,
            lv_file_name TYPE dms_path,
            lv_msg(80) TYPE c,
            lt_objectlinks TYPE TABLE OF bapi_doc_drad,
            ls_objectlinks TYPE bapi_doc_drad,
            lv_ebelp   TYPE ebelp
    Prepare Data
      MOVE iv_documentnumber TO ls_draw-documentnumber.
      MOVE iv_documenttype TO ls_draw-documenttype.
      MOVE iv_documentversion TO ls_draw-documentversion.
      MOVE iv_documentpart TO ls_draw-documentpart.
      ls_draw-statusextern = iv_dokst.
      ls_draw-statusintern = iv_dokst.
      ls_draw-username = sy-uname.
      LOOP AT it_dm_files INTO ls_dm_files.
        SPLIT ls_dm_files-filepath AT '.' INTO lv_filename lv_ext.
        CALL FUNCTION 'CV120_DOC_GET_APPL'
          EXPORTING
            pf_file   = ls_dm_files-filepath
          IMPORTING
            pfx_dappl = lv_file_type.
        TRANSLATE lv_file_type TO UPPER CASE.
        OPEN DATASET log FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
        TRANSFER lv_ext TO log.
        ls_documentfiles-wsapplication = lv_file_type.
        TRANSLATE ls_documentfiles-wsapplication TO UPPER CASE.
        CONCATENATE path_name
                           lv_filename
                            lv_ext
                            INTO lv_file_name.
        CONDENSE lv_file_name  NO-GAPS.
        TRANSFER lv_file_name TO log.
        OPEN DATASET lv_file_name FOR OUTPUT IN BINARY MODE MESSAGE lv_msg.
    *Transfer Attachment Content to Application Server
        TRANSFER ls_dm_files-content TO lv_file_name.
        CLOSE DATASET lv_file_name.
        TRANSFER 'move data to lt_files' TO log.
        ls_documentfiles-storagecategory = iv_storage_cat.
        ls_documentfiles-docfile = lv_file_name.
        ls_documentfiles-DOCUMENTVERSION = IV_DOCUMENTVERSION.
        APPEND ls_documentfiles TO lt_documentfiles.
        CLEAR lv_file_name.
        CLOSE DATASET log.
      ENDLOOP.
      IF iv_ebeln IS NOT INITIAL.
        ls_objectlinks-objecttype = 'EKPO'.
        SELECT SINGLE ebelp INTO lv_ebelp FROM ekpo WHERE
                                          ebeln = iv_ebeln
                                          AND loekz eq space.
        CONCATENATE iv_ebeln lv_ebelp INTO ls_objectlinks-objectkey.
        APPEND ls_objectlinks TO lt_objectlinks.
      ENDIF.
    CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
       EXPORTING
         documentdata   = ls_draw
         pf_ftp_dest    = 'SAPFTPA'
         pf_http_dest   = 'SAPHTTPA'
       IMPORTING
         documentnumber = ev_documentnumber
         return         = es_return
       TABLES
         objectlinks          = lt_objectlinks
         documentfiles  = lt_documentfiles.
    DATA:   ls_doc_data  type bapi_doc_draw2,
       ls_doc_datax type bapi_doc_drawx2,
       ls_return type bapiret2.
    Set value for document data
      ls_doc_data-statusextern  = 'IW'.
      ls_doc_data-statusintern  = 'IW'.
    Set value for document data check
    ls_doc_datax-statusextern = 'X'.
    ls_doc_datax-statusintern = 'X'.
    CALL FUNCTION 'BAPI_DOCUMENT_CHANGE2'
      EXPORTING
        DOCUMENTTYPE               = 'ROS'
        DOCUMENTNUMBER             = IV_DOCUMENTNUMBER
        DOCUMENTPART               = IV_DOCUMENTPART
        DOCUMENTVERSION            = IV_DOCUMENTVERSION
        DOCUMENTDATA               = ls_doc_data
        DOCUMENTDATAX              = ls_doc_datax
      HOSTNAME                   =
      DOCBOMCHANGENUMBER         =
      DOCBOMVALIDFROM            =
      DOCBOMREVISIONLEVEL        =
      SENDCOMPLETEBOM            = ' '
          pf_ftp_dest    = 'SAPFTPA'
          pf_http_dest   = 'SAPHTTPA'
      CAD_MODE                   = ' '
      ACCEPT_EMPTY_BOM           = ' '
    IMPORTING
       RETURN                     =  ls_return
    TABLES
      CHARACTERISTICVALUES       =
      CLASSALLOCATIONS           =
      DOCUMENTDESCRIPTIONS       =
      OBJECTLINKS                =
      DOCUMENTSTRUCTURE          =
       DOCUMENTFILES              = lt_documentfiles.
      LONGTEXTS                  =
      COMPONENTS                 =
      move es_return to ES_RETURN.
      IF es_return-type CA 'EA' ."NE 'E' AND es_return-type NE 'A'.
        "do nothing
      ELSE.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait = 'X'.
      ENDIF.
      LOOP AT lt_documentfiles INTO ls_documentfiles.
        DELETE DATASET ls_documentfiles-docfile.
      ENDLOOP.
    ENDFUNCTION.

  • Not able to Upload photos to twitter

    I am not able to upload photos to twitter. I am abke to uoload when I am using mobile data. there is no problem with Internet connection as there is ni problem when i use another router. not only upload photos,there is problem uploading content itself. I am able to update facebook status and twitter with text. I am using linksys E1200

    Router and Wired Configurations  
      Setup DHCP reserved IP addresses for all devices ON the router. This ensures each devices gets its own IP address when turned on and connected, eliminates IP address conflicts and helps in troubleshooting and maintain consistency for applications that need to connect as well as mapped drives.  
     Ensure devices are set to auto obtain an IP address.
     If http://en.wikipedia.org/wiki/Ipv6 is niot an option on the router, select Local Connection Only. Try disabling the Firewall and see if this helps any...possible bug in FW.

  • Loading Demand plan data from APO to BW

    Hi Gurus,
    We have requirement as below.
    we have to extract two key figures from APO to BW system
    The 2key figures of APO will get data as below:
    First key figure has to hold Yearly snap shot and 2nd Key figure has to hold QTY snapshot.
    we have constrained production plan & sales plan keyfigures in apo demand planning and the requirement is to extract these 2 keyfigure quaintest into BI.
    Data Example as below:
    KF1: Yearly snapshot
    KF2: Quarterly snapshots
    Yearly  data means from   Jan to Dec  and
    Quaterly data is as below
    Qtr1 - Dec       JAN to Dec
    Qtr2 (in FEB) - Mar to Dec
    Qtr3 (in May) - Jun to Dec
    Qtr4 (in Aug) - Sep to Dec
    so please let me know to how to handle or extract these data into BW.
    Thanks,
    Shailaja

    Hi Venkat,
    Yes, both the key figures are ther in the same planning area.
    But my question here is how to get that data into BW? meaning...
    If APO/DP does the planning  in the month of Sep 2010 for Jan to dec 2011 and the
    values are like
    Sep-10   jan      Feb  mar   april  may  june  july  aug  sep  oct   nov  dec
                   15     14     13      11    10     11     12     16    14         15   22     20                                        
    Dec-10   12     14   16        18    29     20    18     15   14    12   17        20
    Mar-11          10  12   13       14     15   16    17  18         20
    Jul-11                                  20       40     30      40       50
    meaning, If the planning is done in the month of Sep 2010 for the yr 2011 as explained above that values should be extracted into BW and the next planning will be done in the month of Dec 2010 again for entire yr of 2011 i.e. Jan 2011 to Dec2011.
    But the values should be captured as they are.. that means if i use DSO the values from request1  to request2 will be over written n if i use the cube they will be added up..
    Request1 will hold data of Sep2010: planning data
    Request2 wil hold Dec 2010 data ....n req3 will hold data of Mar 11...
    but users want to see the values or planning figures as they are.
    Hope i made my requimrent more detailled.
    Please let me know the solution to get the data as it is in BW.
    Thanks,
    Shailaja

  • How do I get a refund for iMatch?  It was not able to upload a single song without force close/ "iTunes quit unexpectedly"

    I subscribed to iTunes iMatch and when I attempted to add my computer and upload my songs it instantly crashed iTunes.  This has occured every time.  I am perfectly pleased with the way things were and just wanted to try iMatch... now I just want to know how to get a refund from apple since I was not able to upload a single song. 

    Sorry for the duplicate post I realized i called it iMatch instead of iTunes Match so I posted it again.... dont know how to delete this thread. 

  • I am not able to upload my iMovie video to youtube?

    I am not able to upload my video created in iMovie11 to you tube. I have tried different extentsions, quickplayer, avi, mpeg, all to no avail. Are there any suggestionsn
    I have generated similar video in Camtasia in Windows computer and it works fine. In imovie, you tube disconnects after a few minutes. Any help greatly appreciated?

    If you go to the Share Menu > Export Movie... (choose Large Size) and save it to the Desktop. Quit iMovie
    Login to the YouTube website, and try to upload it through your YouTube account it fails? Is the movie longer than 15 minutes long by any chance?

  • Not able to upload RTF files

    There are 2 database instances: Development and Production. Last month, there was a database refresh in development(cloned with the production), after which we are not able to upload the files in dev instance, but the prod instance is working fine as usual.
    There is a problem while uploading any RTF file using XML Publisher. An error message is displayed: "You have encountered an unexpected error. Please contact the System Administrator for assistance." Request you to please guide me. I am ready for any assistance required.
    Please find the exception details as seen in the diagnostics for the above page where the error message was displayed.
    oracle.apps.fnd.framework.OAException: java.sql.SQLException: No corresponding row found in XDO_LOBS
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:862)
         at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(OAException.java:985)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:210)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:679)
         at oracle.apps.xdo.oa.template.webui.TemplateFileAddCO.processFormRequest(TemplateFileAddCO.java:362)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:799)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2633)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:595)
    ## Detail 0 ##
    java.sql.SQLException: No corresponding row found in XDO_LOBS
         at oracle.apps.xdo.oa.schema.server.LobHelper.updateLob(LobHelper.java:116)
         at oracle.apps.xdo.oa.schema.server.LobHelper.updateLob(LobHelper.java:286)
         at oracle.apps.xdo.oa.schema.server.LobHelper.updateLob(LobHelper.java:205)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.updateTemplateFile(TemplateHelper.java:3900)
         at oracle.apps.xdo.oa.template.server.TemplatesAMImpl.addTemplateFile(TemplatesAMImpl.java:611)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:189)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:679)
         at oracle.apps.xdo.oa.template.webui.TemplateFileAddCO.processFormRequest(TemplateFileAddCO.java:362)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:799)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2633)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:595)
    java.sql.SQLException: No corresponding row found in XDO_LOBS
         at oracle.apps.xdo.oa.schema.server.LobHelper.updateLob(LobHelper.java:116)
         at oracle.apps.xdo.oa.schema.server.LobHelper.updateLob(LobHelper.java:286)
         at oracle.apps.xdo.oa.schema.server.LobHelper.updateLob(LobHelper.java:205)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.updateTemplateFile(TemplateHelper.java:3900)
         at oracle.apps.xdo.oa.template.server.TemplatesAMImpl.addTemplateFile(TemplatesAMImpl.java:611)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:189)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:679)
         at oracle.apps.xdo.oa.template.webui.TemplateFileAddCO.processFormRequest(TemplateFileAddCO.java:362)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:799)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2633)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:595)

    I had raised one SRS request, and did get the solution. This is what was the reply:
    You are using an old version of XML Publisher
    Please apply the Patch 5472959 to solve the issue.
    For more details about the last version XML Publisher 5.6.3"
    About Oracle XML Publisher Release 5.6.3 (Doc ID 422508.1)
    My question is when both the prod and test instance are same, then why there is a need to apply patch in test instance when the prod is working fine?

  • HT2074 I am not able to upload my music to my ipod in my account. Any ideas?

    I am not able to upload my music to my ipod in my account. Any ideas?

    Hello Lindsay,
    Are they using different Apple IDs?
    If you don't get help here might try reposting in Windows or iPod forums...
    https://discussions.apple.com/community/itunes/itunes_for_windows
    https://discussions.apple.com/community/ipod

  • ST03N, i am not able to see today n previous day data

    Hii All
    In my ST03N, i am not able to see today n last day data, it shows me data upto last two day before data. plz tell me abt where i can check the retention period.
    System Details:
    SAP: ECC 6.0
    DATA BASE: ORACLE 10G
    OS: AIX5.3
    SAP KERNEL:179
    SAP_ABA: SAPKA70015
    SAP_BASIS:SAPKB70015
    ST-PI:2008_1_700
    PI_BASIS:SAPKIPYJ7F
    Already jobs:
    SAP_COLLECTOR_FOR_PERFMONITOR
    SAP_APPLICATION_STAT_COLLECTOR
    SAP_CCMS_MAPPING_SCHEDULER
    SAP_COLLECTOR_FOR_JOBSTATISTIC
    and saposcol running fine.
    Thanks
    Amit Srivastava
    Basis

    Hi
    You can refere this [Link|No system load data available; may help you
    Regards
    Uday

  • I uploaded the latest X Yosemite and fond that Aperture did not work. Then I started the new Picture but are not able to upload all my pictures (app half of them) have anybody had the same issue? and can potentially advise me on how to fix it?

    I uploaded the latest X Yosemite and fond that Aperture did not work. Then I started the new Picture but are not able to upload all my pictures (app half of them) have anybody had the same issue? and can potentially advise me on how to fix it?

    Thanls Ernie. I found the solution. My problem was previous to 10.10.3. It looks like the installation of final cut and uninstallation of fcp delte a plugins that was needed for Aperture. I recover from time machine my plugins in Library/frameworks/plugin.manager.framework and now Aperture works ! Ouf....

  • Why the delivery date is the same date as 'transptn plan date" & loading date' & ' good issue' & GR end date'

    Hi Experts,
    why the delivery date is the same date as ‘transptn plan date” & loading date’ & ‘ good issue’ & GR end date’.
    in shipping tab i can see Planned Deliv. Time  170 Days ... wat could be the reason.
    Many Thanks:
    Raj Kashyap

    Hi Jurgen,,
    Thanks for quick reply!!
    But i didnot find any things like that .. what could be the customizing .. and we are using GATP from APO side.
    \Raj Kashyap

  • Master data for demand planning

    hi guru's,
    what is the master data for dp, from were we get & how BI is helpful in this.
    BW integration to apo dp.pls help me out
    with regards,
    chinni

    Hi Chinni,
    Data from R/3 to BIW is transfered through LIS, LO-CockPit's Info Structures. 
    This is how the flow goes on....
    The transactions that are executed in R/3 are stored in the background tables.
    Data from these tables will be copied to the info Structures(LIS, Lo-**** Pits).
    A data source is generated basing on the infostructure.
    Data source is then replicated to BI, The Data from the data sources is then copied to Info Cube.
    Once the data is there in your Infocube,
    you create Characteristics value combinations and then transfer the data from the Info Cube into the Planning Area.
    Once you are done with demand planning, you can either transfer the data to SNP or the demand management in R/3.
    If you are not planning to use LIS Structures, then you can download the data from the R/3 Tables to an excel sheet and upload them into BI.
    The transaction code for creation of LIS Structures is: MC21
    If you have a seperate BI server(Apart from one in APO), it is best pratice to load data into the BI server and then transfer the data to APO BI.
    Let me know if you have any more questions regarding this.
    Best Regards
    Raghu Kishore V

  • Report created in SSRS 2008 is not able to upload in 2008 report server

    I have created a report in SSRS 2008 version. Our reporting server is 2008 R2. I'm getting the error given below while uploading the .rdl file to report server. 
    The report definition is not valid. Details: The report definition has an invalid target namespace 'http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition' which cannot be upgraded. 
    Then I've checked the code of the solution and it is created in 2008. It is given below:
    " Microsoft Visual Studio Solution File, Format Version 10.00 # Visual Studio 2008 ........."
    Also, I've checked the code of .rdl file but that made me confused. It shows that the file is created in 2010.
    <?xml version="1.0" encoding="utf-8"?>
    <Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns:cl="http://schemas.microsoft.com/sqlserver/reporting/2010/01/componentdefinition" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition"> 
    Visual studio 2010 is also installed in my system. Also, I have noticed that even if we try to open a report then by default it is showing data tools option.I have tried multiple times to create report in 2008. But, still the same result. Also, I could find
    that ,the report will be in 2008 till the creation of data source. The report will be converted to 2010 after creating data set. I have been creating shared dataset and I was getting the above issue.Then I have tried by not creating a shared dataset and
    directly creating dataset in the report data and it has been created as 2008 report. I was able to upload this report to report server 2008R2. 
    Can any of you help me to find why the report is created in 2010 while creating shared dataset?

    I have created a report in SSRS 2008 version. Our reporting server is 2008 R2. .
    xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition"> 
    Hello Julie,
    You mix up Version of Visual Studio, Reporting Services and Report Definition; all those products have Independent Version numbers and are not related to each other.
    Important are the Versions of used SSRS and BIDS, the plugin for Visual Studio. By the Version of Report Definiton you have create a Report with BIDS 2008R2 or SSDT = SQL Server Data Tools; see
    http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition/
    Are you sure you have SSRS 2008 R2 (in post subject you wrote SSRS
    2008)? If it's SSRS 2008 then you really can't deploy the Report to SSRS, you would have to use BIDS 2008 to create the report. Check the Version of SSRS or use "Report Builder 2.0", you can start it directly from "Report Manager"
    URL.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Not able to open dimension library in Planning

    Hi,
    I am not able to open my Planning application
    I am able to connect but dimension library and application library not connecting ,not able to open.
    its throwing error
    (500) Internal server
    error code:org.appache.axisFault
    My vesion is 11
    all services are started.
    please help me on this.
    Thanks in advance.
    Edited by: user8815661 on Jul 4, 2012 10:08 PM

    Thanks for your reply.
    I restarted all services ,but still same problem
    but I am able to connect essbase and i can open data forms
    but not application library and dimension lbrary
    where should i find the logs which folder.
    Thanks in advance

Maybe you are looking for

  • I want my i-tunes from pc to my macbook? What are my best options for this/best external hard drives?

    I recently purchased a mac book pro and my i-tunes library is on my pc.  I was told I need an external hard-drive to move my library on my own. I need affordable options on what will make this an easy transition; does anyone have any suggestions?

  • Calling Function In a Select

    I have a function which returns the name of a client when given the id of the customer as an input parameter. I want to call the function inside a select with the customer id as the input parameter not the actual id and get the name something like se

  • BSID Vs BSAD

    Hi Guys, I need to display the in my report only Open document,How do we find is the document is fully cleared or not, Is they any link in both the tables. Please can any body suggest this one. Thanks, Gourisankar.

  • PC account name

    Hi, I have a problem with a users PC connected to windows 2008 server.  She constantly gets bumped out of the terminal server after 15 minutes or so.   I had to re-install her PC after a hard drive failure and used a new computer name for her PC on t

  • ORA-1002 FETCH OUT OF SEQUENCE IN PRO*C

    제품 : PRECOMPILERS 작성날짜 : 1996-07-19 #### ORA-1002 : FETCH OUT OF SEQUENCE #### ORA-1002 error가 의미하는 것은 user가 더이상 유효하지 않은 cursor로부터 fetch를 하려고 하기 때문이다. 이러한 경우의 가장 흔한 경우를 다음 두가지로 설명하겠다. 1) ORA-1403 등과 같이 NO DATA FOUND를 return하는 fetch작업을 수행할 때 : 즉 fetch