Error importing BAPI.

Hello everyone,
I am very new to XI. trying to do some of the excersises of it.
I want to build a application which goes like...
Sales order(legacy system)--> XI -->sales order (R/3 system) with some validations in between.
can some one suggest some options to do this and tutorials will be of great help.
whenever i am trying to import a BAPI or IDOC it gives me the following error
BAPI_PO_CREATE:
  <b>+com.sap.aii.ibrep.sbeans.upload.RemoteUploadException: ORA-00604: error occurred at recursive SQL level 1
ORA-01000: maximum open cursors exceeded</b>
Though some user made Idocs(Z ones) or some standard IDOCs can be imported, but not all of them.
We have applied the note: 725340 which asks to increase the parameter value of open cursors.
Can some one help..? its urgent.
Wishing  all of you very happy new year.!!!
Regards
Deepti
Mail: [email protected]

Hi Patil,
           Can u explain how you have connected to SAP R/3 system from sap xi???
SR

Similar Messages

  • Error while importing BAPI from ECC6 in to informatica

    Hi,
    When the abaper is trying to import BAPI from ECC 6 to Informatica,
    An error is getting generated,
    getFunctionList failed: RFC Error Information:
    Group:SAP system exception raised
    Key=RFC_ERROR_SYSTEM_FAILURE
    Message=Syntax error in program SAPLZPMF
    Please advise,
    Thanks.

    Kris,
    The program SAPLZPMF is not unicode compatible, accoring to its program attributes.
    This is the error that I got.
    What do i do next?
    Please advise.
    Thanks.

  • Error during BAPI while uploading Material data through MM01

    Hi all,
    i am facing one problem when uploading Material data thorough BAPI in MM01.i am attaching the code below and the error given.
    but in the debugger all the value is being stored.
    REPORT  ZFINISHED_MAT.
    Data: Begin of legacy_data occurs 0,
         MATNR LIKE MARA-MATNR,
         MBRSH LIKE MARA-MBRSH,            "Industry Sector
         MTART LIKE MARA-MTART,            "Matl Type
         WERKS LIKE MARD-WERKS,            "Plant
         LGORT LIKE MARD-LGORT,            "Storage location
         VKORG LIKE MVKE-VKORG,
         VTWEG LIKE MVKE-VTWEG,
         MAKTX LIKE MAKT-MAKTX,             "Matl Desc.
         MEINS LIKE MARA-MEINS,             "Base UOM
         MATKL LIKE MARA-MATKL,             "Matl.Grp
    *     BISMT LIKE MARA-BISMT,
         SPART LIKE MARA-SPART,             "Division
    *     BRGEW LIKE MARA-BRGEW,             "Gross weight
         GROES LIKE MARA-GROES,
         FERTH LIKE MARA-FERTH,
         ZEINR LIKE MARA-ZEINR,
         TAXKM1 LIKE MLAN-TAXM1,
         TAXKM2 LIKE MLAN-TAXM2,
         TAXKM3 LIKE MLAN-TAXM3,
         TAXKM4 LIKE MLAN-TAXM4,
         KTGRM LIKE MVKE-KTGRM,
    *     GEWEI LIKE MARA-GEWEI,             "Weight unit
    *     NTGEW LIKE MARA-NTGEW,             "Net weight
    *     KLART LIKE RMCLF-KLART,
         MTVFP LIKE MARC-MTVFP,             "Availibility Check
    *     XGCHP LIKE MARA-XGCHP,
         XCHPF LIKE MARA-XCHPF,             "Batch Management
         TRAGR LIKE MARA-TRAGR,
         LADGR TYPE MARC-LADGR,
         VPRSV LIKE MBEW-VPRSV,            "Price Control
         VERPR LIKE MBEW-VERPR,
    *     SPRAS LIKE MAKT-SPRAS,
      END OF LEGACY_DATA.
    DATA: BEGIN OF IT_MAKT OCCURS 0.
    INCLUDE STRUCTURE BAPI_MAKT.
    DATA: END OF IT_MAKT.
    *--- BAPI structures
    DATA: BAPI_HEAD LIKE BAPIMATHEAD, " Header Segment with Control Information
    BAPI_MAKT LIKE BAPI_MAKT, " Material Description
    BAPI_MARA1 LIKE BAPI_MARA, " Client Data
    BAPI_MARAX LIKE BAPI_MARAX, " Checkbox Structure for BAPI_MARA
    BAPI_MARD1 LIKE BAPI_MARD,
    BAPI_MARDX1 LIKE BAPI_MARDX, " Checkbox Structure for BAPI_MARD
    BAPI_MARC1 LIKE BAPI_MARC, " Plant View
    BAPI_MARCX LIKE BAPI_MARCX, " Checkbox Structure for BAPI_MARC
    BAPI_MVKE1 LIKE BAPI_MVKE,
    BAPI_MVKEX1 LIKE BAPI_MVKEX, " Checkbox Structure for BAPI_MVKE
    BAPI_MLAN1 LIKE BAPI_MLAN,
    BAPI_MLANX1 LIKE bapi_mlan1, " Checkbox Structure for BAPI_MLAN
    BAPI_MBEW1 LIKE BAPI_MBEW, " Accounting View
    BAPI_MBEWX LIKE BAPI_MBEWX, " Checkbox Structure for BAPI_MBEW
    BAPI_RETURN LIKE BAPIRET2. " Return Parameter
    *              $PARAMETERS DECLARATION$
    SELECTION-SCREEN BEGIN OF BLOCK B11
                              WITH FRAME TITLE TEXT-001.
    PARAMETERS: P_FILE LIKE RLGRAP-FILENAME. " DEFAULT 'C:\TEST1.XLS'.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN ULINE.
    SELECTION-SCREEN END OF BLOCK B11 .
    *              $DATA DECLARATION$
    *DATA : BDC_DATA LIKE STANDARD TABLE OF BDCDATA WITH HEADER LINE.
    DATA : IT_EXCEL TYPE STANDARD TABLE OF  ALSMEX_TABLINE INITIAL SIZE 0 WITH HEADER LINE,
            IT_EXCEL_DUMMY TYPE ALSMEX_TABLINE.
    DATA : MESSTAB LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    DATA : L_MSTRING(480).
    DATA :L_SUBRC LIKE SY-SUBRC.
    DATA: V_FILE TYPE STRING.
    *              $AT-SELECTON SCREEN DECLARATION$
    AT SELECTION-SCREEN ON P_FILE.
      IF P_FILE IS INITIAL.
        MESSAGE E398(00) WITH 'FILE NAME NEEDS TO BE SPECIFIED'.
      ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
      CALL FUNCTION 'F4_FILENAME'
       EXPORTING
         PROGRAM_NAME        = SYST-CPROG
    *   DYNPRO_NUMBER       = SYST-DYNNR
         FIELD_NAME          = 'P_FILE'
       IMPORTING
         FILE_NAME           = P_FILE
    start-of-selection.
    perform data_fetch_to_xls.
    perform insertion.
    *&      Form  data_fetch_to_xls
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM data_fetch_to_xls .
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          FILENAME                = P_FILE
          I_BEGIN_COL             = 1
          I_BEGIN_ROW             = 2
          I_END_COL               = 25
          I_END_ROW               = 2
        TABLES
          INTERN                  = IT_EXCEL
        EXCEPTIONS
          INCONSISTENT_PARAMETERS = 1
          UPLOAD_OLE              = 2
          OTHERS                  = 3.
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        WRITE: /'ERROR UPLOADING XLS FILE FROM PRESENTATION SERVER !' ,
               /'RETURN CODE : ', SY-SUBRC.
      ELSE.
    *************NOW FILL DATA FROM EXCEL INTO FINAL LEGACY DATA ITAB----LEGACY_DATA***************
        IF NOT IT_EXCEL[] IS INITIAL.
          CLEAR LEGACY_DATA.
          REFRESH LEGACY_DATA[].
          LOOP AT IT_EXCEL.
            IT_EXCEL_DUMMY = IT_EXCEL.
            AT NEW COL.
              CASE IT_EXCEL_DUMMY-COL.
                WHEN 1.
                  LEGACY_DATA-MATNR = IT_EXCEL_DUMMY-VALUE(18).
                WHEN 2.
                  LEGACY_DATA-MBRSH = IT_EXCEL_DUMMY-VALUE(1).
                WHEN 3.
                  LEGACY_DATA-MTART = IT_EXCEL_DUMMY-VALUE(4).
                WHEN 4.
                  LEGACY_DATA-WERKS = IT_EXCEL_DUMMY-VALUE(4).
                WHEN 5.
                  LEGACY_DATA-LGORT = IT_EXCEL_DUMMY-VALUE(4).
                WHEN 6.
                  LEGACY_DATA-VKORG = IT_EXCEL_DUMMY-VALUE(4).
                 WHEN 7.
                  LEGACY_DATA-VTWEG = IT_EXCEL_DUMMY-VALUE(2).
                WHEN 8.
                  LEGACY_DATA-MAKTX = IT_EXCEL_DUMMY-VALUE(40).
                WHEN 9.
                  LEGACY_DATA-MEINS = IT_EXCEL_DUMMY-VALUE(3).
                WHEN 10.
                  LEGACY_DATA-MATKL = IT_EXCEL_DUMMY-VALUE(9).
                WHEN 11.
                  LEGACY_DATA-SPART = IT_EXCEL_DUMMY-VALUE(2).
                WHEN 12.
                  LEGACY_DATA-GROES = IT_EXCEL_DUMMY-VALUE(32).
                WHEN 13.
                  LEGACY_DATA-FERTH = IT_EXCEL_DUMMY-VALUE(18).
                WHEN 14.
                  LEGACY_DATA-ZEINR = IT_EXCEL_DUMMY-VALUE(22).
                 WHEN 15.
                  LEGACY_DATA-TAXKM1 = IT_EXCEL_DUMMY-VALUE(1).
                 WHEN 16.
                  LEGACY_DATA-TAXKM2 = IT_EXCEL_DUMMY-VALUE(1).
                 WHEN 17.
                  LEGACY_DATA-TAXKM3 = IT_EXCEL_DUMMY-VALUE(1).
                 WHEN 18.
                  LEGACY_DATA-TAXKM4 = IT_EXCEL_DUMMY-VALUE(1).
                 WHEN 19.
                  LEGACY_DATA-KTGRM = IT_EXCEL_DUMMY-VALUE(2).
                WHEN 20.
                  LEGACY_DATA-MTVFP = IT_EXCEL_DUMMY-VALUE(2).
                 WHEN 21.
                  LEGACY_DATA-XCHPF = IT_EXCEL_DUMMY-VALUE(1).
                WHEN 22.
                  LEGACY_DATA-TRAGR = IT_EXCEL_DUMMY-VALUE(4).
                WHEN 23.
                  LEGACY_DATA-LADGR = IT_EXCEL_DUMMY-VALUE(4).
                WHEN 24.
                  LEGACY_DATA-VPRSV = IT_EXCEL_DUMMY-VALUE(1).
                WHEN 25.
                  LEGACY_DATA-VERPR = IT_EXCEL_DUMMY-VALUE(14).
                  APPEND LEGACY_DATA.
                  CLEAR LEGACY_DATA.
              ENDCASE.
            ENDAT.
            AT END OF ROW.
            ENDAT.
          ENDLOOP.
        ENDIF.
      ENDIF.
    ENDFORM.                    " data_fetch_to_xls
    *&      Form  insertion
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM insertion .
    LOOP AT legacy_data.
    * Header
    BAPI_HEAD-MATERIAL = legacy_data-MATNR.
    BAPI_HEAD-IND_SECTOR = legacy_data-MBRSH.
    BAPI_HEAD-MATL_TYPE = legacy_data-MTART.
    BAPI_HEAD-BASIC_VIEW = 'X'.
    BAPI_HEAD-SALES_VIEW = 'X'.
    BAPI_HEAD-STORAGE_VIEW = 'X'.
    *BAPI_HEAD-PURCHASE_VIEW = 'X'.
    BAPI_HEAD-ACCOUNT_VIEW = 'X'.
    * Material Description
    REFRESH IT_MAKT.
    *IT_MAKT-LANGU = legacy_data-SPRAS.
    IT_MAKT-MATL_DESC = legacy_data-MAKTX.
    APPEND IT_MAKT.
    BAPI_MARD1-PLANT = legacy_data-WERKS.
    BAPI_MARD1-STGE_LOC = legacy_data-LGORT.
    BAPI_MARDX1-PLANT = legacy_data-WERKS.
    BAPI_MARDX1-STGE_LOC = legacy_data-LGORT.
    ** Client Data - Basic
    BAPI_MARA1-MATL_GROUP = legacy_data-MATKL.
    *bapi_mara1-OLD_MAT_NO = legacy_data-bismt.
    BAPI_MARA1-BASE_UOM = legacy_data-MEINS.
    BAPI_MARA1-PROD_MEMO = LEGACY_DATA-FERTH.
    BAPI_MARA1-SIZE_DIM = LEGACY_DATA-GROES.
    BAPI_MARA1-DOCUMENT = LEGACY_DATA-ZEINR.
    BAPI_MARA1-BATCH_MGMT = LEGACY_DATA-XCHPF.
    *BAPI_MARA1-UNIT_OF_WT = legacy_data-GEWEI.
    BAPI_MARA1-TRANS_GRP = legacy_data-TRAGR.
    BAPI_MARA1-DIVISION = legacy_data-SPART.
    BAPI_MARAX-MATL_GROUP = 'X'.
    *BAPI_MARAX-OLD_MAT_NO = 'X'.
    BAPI_MARAX-BASE_UOM = 'X'.
    BAPI_MARAX-PROD_MEMO = 'X'.
    BAPI_MARAX-SIZE_DIM = 'X'.
    BAPI_MARAX-DOCUMENT = 'X'.
    BAPI_MARAX-BATCH_MGMT = 'X'.
    *BAPI_MARAX-UNIT_OF_WT = 'X'.
    BAPI_MARAX-TRANS_GRP = 'X'.
    BAPI_MARAX-DIVISION = 'X'.
    *SALES
    BAPI_MVKE1-SALES_ORG = legacy_data-VKORG.
    BAPI_MVKE1-DISTR_CHAN = legacy_data-VTWEG.
    *BAPI_MVKE1-DELYG_PLNT = legacy_data-DWERK.
    BAPI_MVKE1-ACCT_ASSGT = legacy_data-KTGRM.
    BAPI_MVKEX1-SALES_ORG = legacy_data-VKORG.
    BAPI_MVKEX1-DISTR_CHAN = legacy_data-VTWEG.
    *BAPI_MVKEX1-DELYG_PLNT = 'X'.
    BAPI_MVKEX1-ACCT_ASSGT = 'X'.
    ** Plant - Purchasing
    BAPI_MARC1-PLANT = legacy_data-WERKS.
    BAPI_MARC1-LOADINGGRP = legacy_data-LADGR.
    BAPI_MARC1-AVAILCHECK = legacy_data-MTVFP.
    *BAPI_MARC1-MRP_GROUP =  legacy_data-disgr.
    BAPI_MARCX-PLANT = legacy_data-WERKS.
    BAPI_MARCX-LOADINGGRP = 'X'.
    BAPI_MARCX-AVAILCHECK = 'X'.
    *BAPI_MARCX-MRP_GROUP =  'X'.
    * Accounting
    BAPI_MBEW1-VAL_AREA = legacy_data-WERKS.
    BAPI_MBEW1-PRICE_CTRL = legacy_data-VPRSV.
    BAPI_MBEW1-STD_PRICE =  legacy_data-VERPR.
    *BAPI_MBEW1-VAL_CLASS =  legacy_data-BKLAS.
    *BAPI_MBEW1-STD_PRICE = legacy_data-STPRS.
    *BAPI_MBEW1-PRICE_UNIT = legacy_data-PEINH.
    BAPI_MBEWX-VAL_AREA = legacy_data-WERKS.
    BAPI_MBEWX-PRICE_CTRL = 'X'.
    BAPI_MBEWX-STD_PRICE =  'X'.
    *BAPI_MBEWX-VAL_CLASS =  'X'.
    * TAX JURISDICTION CODE
    BAPI_MLAN1-TAXCLASS_1 = LEGACY_DATA-TAXKM1.
    BAPI_MLAN1-TAXCLASS_2 = LEGACY_DATA-TAXKM2.
    BAPI_MLAN1-TAXCLASS_3 = LEGACY_DATA-TAXKM3.
    BAPI_MLAN1-TAXCLASS_4 = LEGACY_DATA-TAXKM4.
    BAPI_MLAN1-TAXCLASS_1 = 'X'.
    BAPI_MLAN1-TAXCLASS_2 = 'X'.
    BAPI_MLAN1-TAXCLASS_3 = 'X'.
    BAPI_MLAN1-TAXCLASS_4 = 'X'.
    *--- BAPI to create material
    call function 'BAPI_MATERIAL_SAVEDATA'
    exporting
    HEADDATA = BAPI_HEAD
    CLIENTDATA = BAPI_MARA1
    CLIENTDATAX = BAPI_MARAX
    *PLANTDATA = BAPI_MARC1
    *PLANTDATAX = BAPI_MARCX
    * FORECASTPARAMETERS =
    * FORECASTPARAMETERSX =
    * PLANNINGDATA =
    * PLANNINGDATAX =
    * STORAGELOCATIONDATA =
    * STORAGELOCATIONDATAX =
    VALUATIONDATA = BAPI_MBEW1
    VALUATIONDATAX = BAPI_MBEWX
    * WAREHOUSENUMBERDATA =
    * WAREHOUSENUMBERDATAX =
    * SALESDATA = BAPI_MVKE1
    * SALESDATAX = BAPI_MVKEX
    * STORAGETYPEDATA =
    * STORAGETYPEDATAX =
    IMPORTING
    RETURN = BAPI_RETURN
    TABLES
    MATERIALDESCRIPTION = IT_MAKT
    * UNITSOFMEASURE =
    * UNITSOFMEASUREX =
    * INTERNATIONALARTNOS =
    * MATERIALLONGTEXT =
    * TAXCLASSIFICATIONS =
    * RETURNMESSAGES =
    * PRTDATA =
    * PRTDATAX =
    * EXTENSIONIN =
    * EXTENSIONINX =
    IF BAPI_RETURN-TYPE = 'E'.
    WRITE:/ 'Error:' ,BAPI_RETURN-MESSAGE ,'for material:' ,legacy_data-maTNR.
    ELSEIF BAPI_RETURN-TYPE = 'S'.
    WRITE: 'Successfully created material' ,legacy_data-maTNR.
    ENDIF.
    ENDLOOP.
    ENDFORM.                    " insertion
    The error: The field MARC-MTVFP/BAPI_MARC-AVAILCHECK is defined as a required field; it does not contain an entr
    suggestion will be vry helpful,
    Kind Regards,
    Edited by: Prasenjit Sengupta on Nov 16, 2009 9:11 AM

    Hi Prasenjit,
    Did you get any solution for this as I am getting same error from BAPI to update MRP controller in MARC table.
    Regards,
    Suruchi

  • How can we find error in BAPI Creation?

    Can any one help out in How to findout Errors in BAPI Creation and Usage?

    HI,
    you can findout error by declaring BAPI RETURN type structure .
    for ex:"
    DATA : return LIKE bapiret2 OCCURS 0 WITH HEADER LINE.
    CALL FUNCTION 'BAPI_SALESDOCU_CREATEFROMDATA1'
          EXPORTING
            sales_header_in     = header
            sales_header_inx    = headerx
          IMPORTING
            salesdocument_ex    = v_vbeln
          TABLES
            return              = return
            sales_items_in      = item
            sales_items_inx     = itemx
            sales_partners      = partner
            sales_conditions_in = i_conditions.
        LOOP AT return WHERE type = 'E' OR type = 'A'.
          EXIT.
        ENDLOOP.
    if helpful reward points.

  • Handling errors in BAPI

    Hi frnds i m unable to know the answer for the q?
    How do u handle errors in BAPI.
    i.e i m using standard BAPI po creation if some errors occurs then how to handle those errors
    how can we know the errors.
    plz reply me back frnds...
    thnks...

    Hi Sanjay,
       Call BAPI like this :
      data: it_retrun typa table of bapireturn.
    CALL FUNCTION 'BAPI_PO_CREATE'
      EXPORTING
        po_header                        =
      PO_HEADER_ADD_DATA               =
      HEADER_ADD_DATA_RELEVANT         =
      PO_ADDRESS                       =
      SKIP_ITEMS_WITH_ERROR            = 'X'
      ITEM_ADD_DATA_RELEVANT           =
      HEADER_TECH_FIELDS               =
    IMPORTING
      PURCHASEORDER                    =
      tables
        po_items                         =
      PO_ITEM_ADD_DATA                 =
        po_item_schedules                =
      PO_ITEM_ACCOUNT_ASSIGNMENT       =
      PO_ITEM_TEXT                     =
       RETURN                           = it_return
      PO_LIMITS                        =
      PO_CONTRACT_LIMITS               =
      PO_SERVICES                      =
      PO_SRV_ACCASS_VALUES             =
      PO_SERVICES_TEXT                 =
      PO_BUSINESS_PARTNER              =
      EXTENSIONIN                      =
      POADDRDELIVERY                   =
    IT_RETURN will contains all message returned from BAPI. For error message you can read IT_RETURN table where type = 'E'.
    Thanks
    Swagatika

  • Error importing CD (required folder cannot be found)

    iTunes 10.6, running on a Mac Mini with OSX 10.6.8
    Hi all,
    A bit of backstory. Been using iTunes to manage my music collection for over 8 years. At one point, I moved my music off of a primary disk to an external disk, although perhaps oddly set up, in that the 'iTunes Music Library.xml' file was still local (under ~User/Music), and just the music files were external (under /Volumes/Media/Music).  When the iTunes Media directory structure upgrade happened, the only way I could access my music was to put a soft link from the Music folder to my external drive.
    For awhile now, I've been in a state where for the most part, I can listen to all of my music, but when I try to import a CD, I get the 'required folder cannot be found' error.
    Help!  Do I have to rebuild my file somehow?  Edit the xml file directly?
    Thanks so much.
    I'm happy to provide more information, such as the xml file, directory listings, etc..  I'm just not sure what's helpful.

    I have the same problem.  I recently moved my music from a Vista PC to a new Laptop with an external CD drive. It will copy one song from the CD and it will show in the Music file and then I get the message ' Error importing a CD - Folder not found'.  I must unplug the CD drive and plug it back in.  I have seen no fix for this problem.

  • Error Importing - Disk Space when there is plenty of Space

    Hello,
    I am trying to import small .avi movies into iMovies. When I do, it states that there is a Error Importing due to not enough Disk Space. I have 24GB of disk space available, however, inside the iMovie application it states that there is only 20kb available. Has anyone come across this?
    Thank you
    Leoville

    I had the same problem. The following steps worked for me. 
    1. In iTunes on my Mac, on the Summary page for my iPhone, under "Options" I clicked "sync only checked songs and videos."
    2. On the "Music" page, I clicked Sync Music and then clicked "Selected playlists, albums," etc. underneath.
    3. IMPORTANT! make sure that the "automatically fill free space with songs" is NOT clicked. My computer kept clicking that one automatically and I had to keep turning it off.
    4. I clicked one playlist or album at a time and watched the status bar (below) to see how much space was being taken up (the blue line).
    5. When I had as much music as I wanted, I clicked Apply.
    It turned out that I had one play list which, for some unknown reason, had a huge number of songs on it and that was clogging up the works. When I unchecked it, I had enough room for the rest.
    I hope this helps!

  • RUNTIME ERROR IMPORT ABAP PHASE IN HETEROGENIOUS SYTEM COPY

    Hi All,
    We have started heterogenious sytem copy from windows (mssql_ to linux(maxdb).
    In import abap phase at the 128th job it ended with an error Here i attach the log of IMPORT_MONITOR.LOG
    ERROR : Execute for create index /BI0/F0RSTT_C01~P on /BI0/F0RSTT_C01 failed (dbrc=99).
      (SQL error -7055)
      error message returned by DbSl:
    SQL-Statement: CREATE  INDEX "/BI0/F0RSTT_C01~P" ON "/BI0/F0RSTT_C01" ( "KEY_0RSTT_C01P" , "KEY_0RSTT_C01T" , "KEY_0RSTT_C01U" , "KEY_0RSTT_C011" , "KEY_0RSTT_C012" , "KEY_0RSTT_C013" , "KEY_0RSTT_C014" , "KEY_0RSTT_C015" , "KEY_0RSTT_C016" , "KEY_0RSTT_C017" , "KEY_0RSTT_C018" , "KEY_0RSTT_C019" , "KEY_0RSTT_C01A"  )
    (DB) INFO: disconnected from DB
    /usr/sap/DM1/SYS/exe/run/R3load: job finished with 1 error(s)
    /usr/sap/DM1/SYS/exe/run/R3load: END OF LOG: 20110417003352
    /usr/sap/DM1/SYS/exe/run/R3load: START OF LOG: 20110417004819
    /usr/sap/DM1/SYS/exe/run/R3load: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#14 $ SAP
    /usr/sap/DM1/SYS/exe/run/R3load: version R7.00/V1.4 [UNICODE]
    Compiled Jan 23 2008 17:39:05
    /usr/sap/DM1/SYS/exe/run/R3load -i SAPAPPL1_24.cmd -dbcodepage 4103 -k                          -l SAPAPPL1_24.log -nolog -c 10000
    (DB) INFO: connected to DB
    (DB) INFO: The MaxDB logwriter is switched off#20110417004819
    (GSI) INFO: dbname   = "DM1                                                                                "
    (GSI) INFO: vname    = "ADABAS D                        "
    (GSI) INFO: hostname = "sgmw-s-relse1                                                   "
    (GSI) INFO: sysname  = "Linux"
    (GSI) INFO: nodename = "sgmw-s-relse1"
    (GSI) INFO: release  = "2.6.32.12-0.7-xen"
    (GSI) INFO: version  = "#1 SMP 2010-05-20 11:14:20 +0200"
    (GSI) INFO: machine  = "x86_64"
    (DB) ERROR: DDL statement failed
    (DROP INDEX "PCL4~XPS" ON "PCL4")
    DbSlExecute: rc = 103
      (SQL error -4011)
      error message returned by DbSl:
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    DbSl Trace: EXECUTE on connection 0, rc=-7055 (POS(59) Column(s) already indexed:/BI0/F0RSTT_C01~P)
    ERROR : Execute for create index /BI0/F0RSTT_C01~P on /BI0/F0RSTT_C01 failed (dbrc=99).
      (SQL error -7055)
      error message returned by DbSl:
    SQL-Statement: CREATE  INDEX "/BI0/F0RSTT_C01~P" ON "/BI0/F0RSTT_C01" ( "KEY_0RSTT_C01P" , "KEY_0RSTT_C01T" , "KEY_0RSTT_C01U" , "KEY_0RSTT_C011" , "KEY_0RSTT_C012" , "KEY_0RSTT_C013" , "KEY_0RSTT_C014" , "KEY_0RSTT_C015" , "KEY_0RSTT_C016" , "KEY_0RSTT_C017" , "KEY_0RSTT_C018" , "KEY_0RSTT_C019" , "KEY_0RSTT_C01A"  )
    (DB) INFO: disconnected from DB
    /usr/sap/DM1/SYS/exe/run/R3load: job finished with 1 error(s)
    /usr/sap/DM1/SYS/exe/run/R3load: END OF LOG: 20110417004819
    Import Monitor jobs: running 1, waiting 1, completed 128, failed 0, total 130.
    Loading of 'SAPAPPL1_24' import package: ERROR
    Import Monitor jobs: running 0, waiting 1, completed 128, failed 1, total 130.
    could any one  please help me in solving this issue
    Thanks!
    Vardhan.

    \\10.207.3.59\d$\ftproot\import_sap\BWS\ABAP\DATA\ARFCSDATA.TOC
    Please check if above said file located under specified path where SAPINST searvhing for it ie at
    10.207.3.59\d$\ftproot\import_sap\BWS\ABAP\DATA. if this file dont exist them it may be the case that your export is not proper.
    Also check if user from which you have started this SAPINST is able to access
    10.207.3.59\d$\ftproot\import_sap\BWS\ABAP\DATA.
    Thanks..
    Mohit

  • Error import / export in console standalone

    hai all,
    error import / export in console standalone
    iam logged in 9i console standalone pc not connected any other pc.
    unable to import or export or load any database
    because the error shows that
    only on OMS mode is possible
    how can import or export or load?
    any help?
    thanks in advance
    rcs
    ------

    I have no idea what you are asking or in what environment you are work.
    Lets start with the need for a version number ... 9i is not a version ... it is a marketing label. Do you mean 9.0.? or 9.2.0.1 or 9.2.0.8 no one knows.
    Second I have no idea what a you intend to convey with the statement "console standalone pc."
    Third "unable" means what? That the pc crashed and burned and is a smoldering cinder or you received some error message you thought too unimportant to post? Again ... you've given us no useful information.
    Finally what do you mean by OMS? Is this OMS as in the Java application running as part of the Grid Control or something else?
    Finally what are you trying to import? How? A clear explanation is required.
    If someone reading what you post can not understand or duplicate what you did because of lack of information you will not receive any help.

  • Error: import failed

    Hi everyone,
    I am trying to create a import format to read a .csv file. I have specified the load location and import group. In my Import format, I have fields Account, ICP, entitity and Amount and use the delimiter format to parse the fields. As the source file contains BegBalance and the 12 time periods, I need to do some VB scripting to bring in the correct amount depending on POV Period.
    However, when i try specifying a script in the Expression column of the Import Format and run the import, get a error: Import Failed. On the other hand, when i specify a field number in the Import Format and run an import, it works fine.
    Any ideas why this happens?
    Would appreciate a reply.
    thanks!

    Hi everyone,
    I am trying to create a import format to read a .csv file. I have specified the load location and import group. In my Import format, I have fields Account, ICP, entitity and Amount and use the delimiter format to parse the fields. As the source file contains BegBalance and the 12 time periods, I need to do some VB scripting to bring in the correct amount depending on POV Period.
    However, when i try specifying a script in the Expression column of the Import Format and run the import, get a error: Import Failed. On the other hand, when i specify a field number in the Import Format and run an import, it works fine.
    Any ideas why this happens?
    Would appreciate a reply.
    thanks!

  • Internal error: Import of table SKA1 not possible in IDoc

    Hi All,
    I am getting an error like Internal error: Import of table SKA1 not possiblein an Idoc.
    Please suggeset me how to resolve this issue.
    Edited by: SAP USER on Nov 25, 2009 8:46 AM

    Message no. FF724
    Check note 681538
    thanks
    G. Lakshmipathi

  • Mac book pro (2008)will not start up,command-v gives (error) Import:Importer start failed for 89(kr:268435459)invalid destination port)

    will not start up.
    tried Command-v
    message reads
    (error) Import:Importer start failed for 89 (kr:268435459)invalid destination port)

    First, uninstall "SuperTV" (whatever that is) according to the developer's instructions. It isn't working and it's filling the log with noise.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Enter "BOOT_TIME" (without the quotes) in the search box. Note the timestamps of those log messages, which refer to the times when the system was booted. Now clear the search box and scroll back in the log to the last boot time when you had the problem. Post the messages logged before the boot, while the system was unresponsive or was failing to shut down. Please include the BOOT_TIME message at the end of the log extract.
    Post the log text, please, not a screenshot. If there are runs of repeated messages, post only one example of each. Don’t post many repetitions of the same message. When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    PLEASE DO NOT INDISCRIMINATELY DUMP THOUSANDS OF LINES FROM THE LOG INTO A MESSAGE. If you do that, I will not respond.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.
    Step 2
    Still in Console, look under System Diagnostic Reports for crash or panic logs, and post the most recent one, if any. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if present (it may not be.) Please don’t post shutdownStall, spin, or hang logs — they're very long and not helpful.

  • MDL1261: Error importing OBJECT_CATALOG

    I am getting an error when importing a change to a process flow from our staging environment to production. The change I made was adding assigns to the process flow. The import only fails on this process flow I am able to import other process flows and maps. Now I am getting this error when I import:
    Error occurred importing from file "C:\oracle\OWB103\owb\bin\admin\DAILY_STG_DATA2_PF.mdl".
    Error at line 795: MDL1261: Error importing OBJECT_CATALOG THE_SSI_DW.
    Detailed Error Message:
    2nd class object CMPNameInfo@35f542/id=3536194/type=CMPPhysicalObject/name=null not loaded into cache. Need to load its first class object first. Please contact Oracle Support with the stack trace and details on how to reproduce it.
    Anybody have any ideas on how to fix this?

    Did you do a lot of edits on the flow to get it to the state it is in now? It looks like some information is messed up. If you try making the changes from your base state and then retrying might work around it, but thats a guess.
    Cheers
    David

  • Why do I get an error importing .mov files in Lightroom 4.2 RC

    I have Lightroom 4.2 RC on a Windows 7 desktop and laptop. Mov files from a Nikon D4 import fine on the desktop, but I get an error importing the same files on my laptop and they get skipped. My laptop is actually newer and more powerful than my desktop.

    I was getting this message: "There is a problem with the video file" when attempting to import video files on Lightroom 4.1 (and after upgrading to 4.2) on Win7/64-bit.
    The video files were M-JPEG/AVI and H.264/MP4. 
    Seeing a recommendation elsewhere, I uninstalled DivX and rebooted.
    This resolved the issue for me!
    Perhaps it will work for you, too, William.

  • Importing BAPI with Import parameter Type Structure

    Hi All,
    I am importing BAPI as shown below:
    FUNCTION ZTEST_BAPIOC.
    ""Local interface:
    *"  IMPORTING
    *"     VALUE(A1) TYPE  ZLEVEL1 OPTIONAL
    *"  EXPORTING
    *"     VALUE(M1) TYPE  CHAR10
    Where ZLEVEL1 is Structure which contains many appended structures.
    ZLEVEL1  (SAP SE11 Structure)
    -ZLEVEL2A
    -ZLEVEL2B
    ZLEVEL2A   (SAP SE11 Structure)
    -ZLEVEL3A
    ZLEVEL2B   (SAP SE11 Structure)
    -FIELD1
    -FIELD2
    ZLEVEL3A   (SAP SE11 Structure)
    -FIELD3
    -FIELD4
    But after importing BAPI in XI I can see only A1 as follows :
    Structure--Category---Type
    ZTEST_BAPIOC------Element   
    A1--Element----ZLEVEL1
    For mapping to target I need whole structure on BAPI & ZLEVEL1.
    <b>Please help how to Import Or Design Strucure of BAPI with Import parameters Type as Structures?</b>
    Thanks & Regards

    Hi,
    Thanks for Reply.
    Actually User ID  I used for importing BAPI having some missing authorization.
    After getting Authorization I can see full structure of BAPI in XI.
    Thanks & Regards

Maybe you are looking for

  • HORA OPERANDO COM SISTEMA EM CONTINGÊNCIA

    Boa tarde a todos, Alguém saberia me dizer se existe uma solução ou nota de correção para corrigir o problema a seguir: No XML a DATA e HORA na TAG DHCONT estão corretas, porém no DANFE a hora está errada. Aparentemente está pegando a hora do servido

  • Can't change Apple ID on all devices

    I changed my Apple ID on my iMac from an att.net ID to a gmail ID-that worked fine.  All is well in iCloud, etc for the iMac. Now, I want to change my iPhone6 and iPad, but they are still asking me for the password for the att.net account. I did mana

  • Printing on paper sizes larger then A3.

    Hi all, I tried searching the foram for this specific problem but did not get success. I am working on sending custom 2D graphic elements to the printer/plotter using both the 'PrinterJob.getPrinterJob()' and the 'ServiceUI.printDialog()' methods. It

  • Customer invoices are blocked for dunning automatically when we run F150

    HI All when we are running the dunning (T.Code F150) for one of the customer invoice items are blocking for dunning automatically. the customer master setting for dunning block fields is empty and there is no changes for this field. These invoices ar

  • ORA-01114: IO error writing block to file %s (block # %s)

    One of my large query (has a large amount of sort) fails with the following error. ORA-01114: IO error writing block to file %s (block # %s). Uses Oracle 9.2 on windows 2000 server. The size of the TEMPORARY file increases and stops at 4.2 GB. This w