BAPI_GOODSMVT_CREATE new error

Hi Gurus,
        I m trying to create a goods receipt thr'
BAPI_GOODSMVT_CREATE,
Here is the code-
*& Header data
    REFRESH goodsmvmt_header.
    goodsmvmt_header-pstng_date = sy-datum.
    goodsmvmt_header-doc_date = sy-datum.
    goodsmvmt_header-ref_doc_no = 'Test'
    APPEND goodsmvmt_header.
*& Process the type of movement
    REFRESH goodsmvmt_code.
    goodsmvmt_code-gm_code = '01'.
    APPEND goodsmvmt_code.
*& Process the line items for the material document
    REFRESH goodsmvmt_item.
    goodsmvmt_item-PO_NUMBER = display_itab-ebeln.
    goodsmvmt_item-PO_ITEM = display_itab-ebelp.
    goodsmvmt_item-MVT_IND = 'B'.
    goodsmvmt_item-material = display_itab-matnr.
    goodsmvmt_item-plant = display_itab-werks.     
    goodsmvmt_item-stge_loc = display_itab-lgort. 
    goodsmvmt_item-entry_qnt = display_itab-menge.
    goodsmvmt_item-move_type = '101'.        
    goodsmvmt_item-STCK_TYPE = space.
   goodsmvmt_item-SPEC_STOCK = '+'.
    APPEND goodsmvmt_item.
*& Refreshing document and return tables
    REFRESH goodsmvmt_document.
    REFRESH goodsmvmt_return.
*& call function bapi....
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
      EXPORTING
        goodsmvt_header  = goodsmvmt_header
        goodsmvt_code    = goodsmvmt_code
      IMPORTING
        goodsmvt_headret = goodsmvmt_document
      TABLES
        goodsmvt_item    = goodsmvmt_item
        return           = goodsmvmt_return.
This is giving me following error in return parameter-
<b>Inconsistency between a document field and the prof. segment number</b>
Any help will be appriciated.
Prasad

Hi Prasad,
Please go through the following code which is working good without any inconsistency errors.
Hope this will be helpful for you.
INITIALIZATION.
START-OF-SELECTION.
Mandatory Include for Client Check
  INCLUDE ZZIMANDT.
  E_HEADER-PSTNG_DATE = SY-DATUM.
  E_HEADER-DOC_DATE = SY-DATUM.
  APPEND E_HEADER.
Opening the Data file
  PERFORM READ_WIRELESS_DATA.
  PERFORM MATCH_ORDERS.
  PERFORM CLEAR_INPUT_FILES.
TOP-OF-PAGE.
  FORMAT COLOR COL_HEADING ON.
  WRITE : / SY-VLINE,
           15 'Wireless Resale Daily Processing Report',
           90 SY-VLINE.
  ULINE 0(90).
  WRITE : / SY-VLINE,
           2 'Svc Ord',
          13 SY-VLINE,
          14 'Material',
          25 SY-VLINE,
          26 'Qty',
          32 SY-VLINE,
          33 'Ord date',
          42 SY-VLINE,
          43 'Gl Acct',
          54 SY-VLINE,
          55 'Co',
          60 SY-VLINE,
          61 'Sub Mkt',
          68 SY-VLINE,
          69 'Result',
          85 SY-VLINE,
          86 'MVT',
          90 SY-VLINE.
ULINE 0(90).
END-OF-PAGE.
END-OF-SELECTION.
END OF PROGRAM ******************************
FORM READ_WIRELESS_DATA.
  OPEN DATASET U_MERC FOR INPUT IN TEXT MODE.
  OPEN DATASET F_CSTR FOR INPUT IN TEXT MODE.
  OPEN DATASET F_CTEL FOR INPUT IN TEXT MODE.
  PERFORM SPLIT_FILE.
  CLOSE DATASET F_CSTR.
  CLOSE DATASET F_CTEL.
  CLOSE DATASET U_MERC.
ENDFORM.
*&      Form  SPLIT_FILE
      text
-->  p1        text
<--  p2        text
FORM SPLIT_FILE.
  DO.
    READ DATASET U_MERC  INTO OMSDATA.
    IF OMSDATA-RECORD IS INITIAL.
      EXIT.
    ELSE.
      APPEND OMSDATA.
      CLEAR OMSDATA.
    ENDIF.
  ENDDO.
  LOOP AT OMSDATA.
    SPLIT OMSDATA-RECORD AT ',' INTO
       I_OMSW-ZSERVICE_ORD
       I_OMSW-ZMATNR
       I_OMSW-ZQTY
       I_OMSW-ZORD_DT
       I_OMSW-ZGL_ACCT
       I_OMSW-ZBUKRS
       I_OMSW-ZSUB_MKT
       I_OMSW-ZCURR_DT
       I_OMSW-ZCURR_TIME.
    I_OMSW-ZPROCESS_FLAG = ' '.
    UNPACK I_OMSW-ZMATNR TO I_OMSW-ZMATNR.
    UNPACK I_OMSW-ZGL_ACCT TO I_OMSW-ZGL_ACCT.
    APPEND I_OMSW .
    CLEAR I_OMSW.
  ENDLOOP.
  SELECT * FROM ZMMOMSW INTO I_OMSW WHERE ZPROCESS_FLAG = ' '.
    APPEND I_OMSW.
    CLEAR I_OMSW.
  ENDSELECT.
  SORT I_OMSW.
  DELETE ADJACENT DUPLICATES FROM I_OMSW.
  DO.
    READ DATASET F_CSTR  INTO CELLSTAR.
    IF CELLSTAR-RECORD IS INITIAL.
      EXIT.
    ELSE.
      APPEND CELLSTAR.
      CLEAR CELLSTAR.
    ENDIF.
  ENDDO.
  LOOP AT CELLSTAR.
    SPLIT CELLSTAR-RECORD AT ',' INTO
       I_WRLS-ZSERVICE_ORD
       I_WRLS-ZMATNR
       I_WRLS-ZQTY
       I_WRLS-ZORD_DT.
    CONCATENATE 'S' I_WRLS-ZSERVICE_ORD INTO I_WRLS-ZSERVICE_ORD.
    I_WRLS-ZCURR_DT = SY-DATUM.
    I_WRLS-ZCURR_TIME = SY-UZEIT.
    I_WRLS-ZPROCESS_FLAG = ' '.
    I_WRLS-ZMAT_TYPE = 'C'.
    UNPACK I_WRLS-ZMATNR TO I_WRLS-ZMATNR.
    APPEND I_WRLS.
    CLEAR I_WRLS.
  ENDLOOP.
  REFRESH CELLSTAR.
  FREE CELLSTAR.
  DO.
    READ DATASET F_CTEL  INTO CTEL.
    IF CTEL-RECORD IS INITIAL.
      EXIT.
    ELSE.
      APPEND CTEL.
      CLEAR CTEL.
    ENDIF.
  ENDDO.
  LOOP AT CTEL.
    SPLIT CTEL-RECORD AT ',' INTO
     I_WRLS-ZSERVICE_ORD
     I_WRLS-ZMATNR
     I_WRLS-ZQTY
     I_WRLS-ZORD_DT.
    I_WRLS-ZCURR_DT = SY-DATUM.
    I_WRLS-ZCURR_TIME = SY-UZEIT.
    I_WRLS-ZPROCESS_FLAG = ' '.
    I_WRLS-ZMAT_TYPE = 'O'.
    CONCATENATE 'S' I_WRLS-ZSERVICE_ORD INTO I_WRLS-ZSERVICE_ORD.
    UNPACK I_WRLS-ZMATNR TO I_WRLS-ZMATNR.
    APPEND I_WRLS.
    CLEAR I_WRLS.
  ENDLOOP.
  SELECT * FROM ZMMWRLS INTO I_WRLS WHERE ZPROCESS_FLAG = ' '.
    APPEND I_WRLS.
    CLEAR I_WRLS.
  ENDSELECT.
  SORT I_WRLS.
  DELETE ADJACENT DUPLICATES FROM I_WRLS.
  REFRESH CTEL.
  FREE CTEL.
ENDFORM.                               " SPLIT_FILE
*&      Form  MATCH_ORDERS
      text
-->  p1        text
<--  p2        text
FORM MATCH_ORDERS.
  LOOP AT I_OMSW.
    OMS_INDX = SY-TABIX.
    LOOP AT I_WRLS WHERE ZSERVICE_ORD = I_OMSW-ZSERVICE_ORD
                         AND  ZMATNR = I_OMSW-ZMATNR
                         AND  ZPROCESS_FLAG = ' '.
              WRLS_INDX = SY-TABIX.
    ENDLOOP.
    IF SY-SUBRC = 0.
      I_OMSW-ZPROCESS_FLAG = 'X'.
      PERFORM UPDATE_ZMMOMSW.
      I_WRLS-ZPROCESS_FLAG = 'X'.
      CONCATENATE I_OMSW-ZBUKRS I_OMSW-ZSUB_MKT+2(3)
                   INTO I_WRLS-ZKOSTL.
      PERFORM UPDATE_ZMMWRLS.
      PERFORM UPDATE_ZMMWMCH.
      CLEAR OMS_INDX.
      CLEAR WRLS_INDX.
      COMMIT WORK.
      IF I_WRLS-ZMAT_TYPE = 'C'.
        PERFORM BUILD_101_MVT.
        PERFORM GOODS_MVT.
        WAIT UP TO 5 SECONDS.
        PERFORM BUILD_201_MVT.
        PERFORM GOODS_MVT.
      ELSE.
        PERFORM BUILD_201_MVT.
        PERFORM GOODS_MVT.
      ENDIF.
      WAIT UP TO 5 SECONDS.
    ELSE.
      I_OMSW-ZPROCESS_FLAG = ' '.
      PERFORM UPDATE_ZMMOMSW.
    ENDIF.
  ENDLOOP.
  COMMIT WORK.
  LOOP AT I_WRLS WHERE ZPROCESS_FLAG = ' '.
     MOVE-CORRESPONDING I_WRLS TO ZMMWRLS.
     MODIFY ZMMWRLS.
  ENDLOOP.
  ULINE 0(90).
ENDFORM.                               " MATCH_ORDERS
*&      Form  GOODS_MVT
      text
-->  p1        text
<--  p2        text
FORM GOODS_MVT.
  CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
       EXPORTING
            GOODSMVT_HEADER       = E_HEADER
            GOODSMVT_CODE         = W_CODE
      IMPORTING
           GOODSMVT_HEADRET      = I_HEADER
           MATERIALDOCUMENT      = W_DOC_NUM
           MATDOCUMENTYEAR       = W_YEAR
       TABLES
            GOODSMVT_ITEM         = I_MSEG
        GOODSMVT_SERIALNUMBER =
            RETURN                = W_RETURN
  IF W_RETURN-TYPE = ' '.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
   EXPORTING
        WAIT    =
      IMPORTING
           RETURN  = W_COMMIT_RETURN.
      WRITE: / SY-VLINE,
              2(10) I_OMSW-ZSERVICE_ORD,
            13 SY-VLINE,
            14(8) I_OMSW-ZMATNR,
            25 SY-VLINE,
            26(5) I_OMSW-ZQTY,
            32 SY-VLINE,
            33(8) I_OMSW-ZORD_DT,
            42 SY-VLINE,
            43(10) I_OMSW-ZGL_ACCT,
            54 SY-VLINE,
            55(4) I_OMSW-ZBUKRS,
            60 SY-VLINE,
            61(5) I_OMSW-ZSUB_MKT,
            68 SY-VLINE,
            69(15) 'Post Successful',
            85 SY-VLINE,
            86 W_MVT,
            90 SY-VLINE.
  ELSE.
     WRITE: / SY-VLINE,
             2(10) I_OMSW-ZSERVICE_ORD,
            13 SY-VLINE,
            14(8) I_OMSW-ZMATNR,
            25 SY-VLINE,
            26(5) I_OMSW-ZQTY,
            32 SY-VLINE,
            33(8) I_OMSW-ZORD_DT,
            42 SY-VLINE,
            43(10) I_OMSW-ZGL_ACCT,
            54 SY-VLINE,
            55(4) I_OMSW-ZBUKRS,
            60 SY-VLINE,
            61(5) I_OMSW-ZSUB_MKT,
            68 SY-VLINE,
            69(15) 'Posting Failed',
            85 SY-VLINE,
            86 W_MVT,
            90 SY-VLINE.
  ENDIF.
  CLEAR W_MVT.
  IF W_COMMIT_RETURN-TYPE NE ' '.
    CLEAR W_COMMIT_RETURN.
    REFRESH W_COMMIT_RETURN.
    CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'
         IMPORTING
              RETURN = W_COMMIT_RETURN.
ENDIF.
  CLEAR W_DOC_NUM.
  CLEAR W_YEAR.
  CLEAR I_MSEG.
  REFRESH I_MSEG.
ENDFORM.                               " GOODS_MVT.
*&      Form  BUILD_101_MVT
      text
-->  p1        text
<--  p2        text
FORM BUILD_101_MVT.
  W_CODE = '01'.
  I_MSEG-MATERIAL = I_WRLS-ZMATNR.
  I_MSEG-PLANT = '1295'.
  I_MSEG-STGE_LOC = '2000'.
  I_MSEG-MOVE_TYPE = '101'.
  W_MVT = '101'.
  I_MSEG-ENTRY_QNT = I_WRLS-ZQTY.
  I_MSEG-ENTRY_UOM = 'EA'.
  I_MSEG-PO_NUMBER = P_PO.
  I_MSEG-MVT_IND = 'B'.
  SELECT SINGLE EBELP FROM EKPO INTO W_EBELP
                    WHERE EBELN = P_PO AND
                    MATNR = I_WRLS-ZMATNR.
  I_MSEG-PO_ITEM = W_EBELP.
  APPEND I_MSEG.
  CLEAR I_MSEG.
  CLEAR W_EBELP.
ENDFORM.                               " BUILD_101_MVT
*&      Form  BUILD_201_MVT
      text
-->  p1        text
<--  p2        text
FORM BUILD_201_MVT.
  W_CODE = '03'.
  I_MSEG-MATERIAL = I_WRLS-ZMATNR.
  I_MSEG-PLANT = '1295'.
  I_MSEG-STGE_LOC = '2000'.
  I_MSEG-MOVE_TYPE = '201'.
  W_MVT = '201'.
  I_MSEG-ENTRY_QNT = I_WRLS-ZQTY.
  I_MSEG-ENTRY_UOM = 'EA'.
  I_MSEG-COSTCENTER = I_WRLS-ZKOSTL.
  I_MSEG-GL_ACCOUNT = I_OMSW-ZGL_ACCT.
  I_MSEG-MVT_IND = ' '.
  APPEND I_MSEG.
  CLEAR I_MSEG.
ENDFORM.                               " BUILD_201_MVT
*&      Form  clear_input_files
      text
-->  p1        text
<--  p2        text
FORM CLEAR_INPUT_FILES.
  OPEN DATASET U_MERC FOR OUTPUT IN TEXT MODE.
  OPEN DATASET F_CSTR FOR OUTPUT IN TEXT MODE.
  OPEN DATASET F_CTEL FOR OUTPUT IN TEXT MODE.
  TRANSFER W_CELLSTAR TO F_CSTR.
  TRANSFER W_CELLSTAR TO F_CTEL.
  TRANSFER W_MERC TO U_MERC.
  CLOSE DATASET F_CSTR.
  CLOSE DATASET F_CTEL.
  CLOSE DATASET U_MERC.
ENDFORM.                               " clear_input_files
*&      Form  UPDATE_ZMMOMSW
      text
-->  p1        text
<--  p2        text
FORM UPDATE_ZMMOMSW.
  MODIFY I_OMSW INDEX OMS_INDX.
  MOVE-CORRESPONDING I_OMSW TO ZMMOMSW.
  MODIFY ZMMOMSW.
ENDFORM.                               " UPDATE_ZMMOMSW
*&      Form  UPDATE_ZMMWRLS
      text
-->  p1        text
<--  p2        text
FORM UPDATE_ZMMWRLS.
  MODIFY I_WRLS INDEX WRLS_INDX.
  MOVE-CORRESPONDING I_WRLS TO ZMMWRLS.
  MODIFY ZMMWRLS.
ENDFORM.                               " UPDATE_ZMMWRLS
*&      Form  UPDATE_ZMMWMCH
      text
-->  p1        text
<--  p2        text
FORM UPDATE_ZMMWMCH.
  MOVE-CORRESPONDING I_OMSW TO ZMMWMCH.
  ZMMWMCH-ZKOSTL = I_WRLS-ZKOSTL.
  ZMMWMCH-ZMAT_TYPE = I_WRLS-ZMAT_TYPE.
  ZMMWMCH-ZPROCESS_FLAG = ' '.
  MODIFY ZMMWMCH.
ENDFORM.                               " UPDATE_ZMMWMCH

Similar Messages

  • How to create a new error log in VF01

    How would I create a new error log upon creation of invoice in VF01 based on the billing block of order.
    Here is the scenario:
    In VFO1 -->> enter delivery no. then create, but upon creation, an error message appeared incorrect.
    In EDIT -->> LOG, this will appear:
    Error Log
      |
      |_____ 4981173515  000010 Document 4946087103 is blocked for billing.
    The message blocked for billing is what I want to change based on what billing block in order was triggered.
    Tnx in advance!

    This is controlled by your delivery to billing copy control requirement (header).  You would change the copy control config to use a new requirement and then config that requirement at the header level.  (IMG->S&D->Billing->Billing Docs->Maintain Copying Control...).  Make a copy of the existing copy requirement (in txn VOFM) and then add your code to check the block type and change the message.

  • New error message...need help

    I got new error message in my application. it happened to even very simple test code
    like:
    An error occurred calling 'LogResults' in 'ITSDBLog' of 'DBLog 1.0 Type Library'
    An error occurred executing a statement.
    Schema: Generic Recordset (NI).
    Statement: UUT_RESULT.
    ODBC driver does not support the requested properties.
    -2147217887; User-defined error code.
    Step 'Log Results to Database' of sequence 'Log To Database' in 'Database.seq'

    Hello,
    I found 2 KnowledgeBase articles that I believe will be helpful in troubleshooting this Citadel ODBC issue:
    http://digital.ni.com/public.nsf/allkb/BD95183884B0F0F086256D3D0077C888?OpenDocument
    http://digital.ni.com/public.nsf/allkb/486B13FA750376A386256E8E0025DECB?OpenDocument  
    Some other things to try:
    It sounds like this has nothing to do with your code module and everything to do with TestStand communicating with the Citadel Database. Have you tried running a sequence with just one step (maybe a pop up) and turning database logging on and see if you get the same error?
    With warm regards,
    David D.

  • New error message :duplicate line item

    Hi,
    We have to add a new error message so that when we try to add a duplicate line item in our qty contract
    1.     we should not be allowed
    2.     we should get a error message u201Cduplicate line item not allowedu2019
    How to achieve this
    Thanks
    Arun

    Search this forum for "USEREXIT_SAVE_DOCUMENT" and "USEREXIT_SAVE_PREPARE".

  • New Error - Unable to Create Any Backups (com.adobe.versioncue.boot - Failed to start com.adobe.vers

    A new error just started showing up in my Vc logs: com.adobe.versioncue.boot - Failed to start com.adobe.versioncue.backup.schedule.
    Since the report of this error, I am unable to create any kind of Version Cue backups. Has anyone else seen this error?
    I had hoped that a simple reboot would alleviate the problem, but it didn't. The error occurs during Vc startup (boot). It's a little odd that Vc was mostly fine until I rescheduled my Windows Backup (ntbackup.exe) to run 90 minutes earlier, and failed to tell Diskeeper to also not auto-defrag 90 minutes earlier. (In other words, it's possible that Diskeeper did its thing the same time ntbackup was running.)
    Running Windows XP SP3. I'm going to try a repair install of Vc in a few moments.

    Update 2: ntbackup restore of System State to day before last successful Vc backup failed to correct the problem. I can't even run a manual backup.
    Can anyone tell me how to determine the ClassPath used by Vc?
    There is no stack trace from this error - the exception is caught and handled, so Vc continues to run after creating the single log entry posted in Msg-1 above. By knowing the ClassPath, I may be able to restore the corrupted Java JARs, if that is the root of this problem.
    I'd really hate to have to (ntbackup) restore the whole computer back to last Monday...

  • A new error message when ck11n

    dear all:
    when i make standard cost calculate using ck11n,
    a new error message happened , that is 'costing item 00005 is not assigned to
    a cost component'.
    anyone can tell what should i do to reslove the problem.
    thank you a lot.
    bset regards!

    Hi,
    Please check T.code OKTZ.
    Regards,
    Murali

  • New error signing a signature box

    I am running Reader 9.2 and I am receving a new error message stating the following:
    “The document could not be signed.
    There was an error when attempting to commit this signature.  The document was not saved.
    The file may be read-only, or another user may have it open.  Please save the document with a different name or in a different folder.”
    I receive this error when I open a PDF through an email or a browser (sometimes....) and I try to sign a siganture box with an attached signature pad.
    I have seen the error now in 9.3 also.

    Just a guess, your jar seems corrupt or is not created with the same JDK version as your keytool is.

  • New Error Message in PP 2014 on Mac (/ppro801/releases/2014.03/shared/adobe/MediaCore...)

    Have been working on a large project on the same computer system (10.8.4) for months.  This morning, in one of my sequences, I highlighted the entire sequence, and proceeded to move everything down the timeline, as soon as I dropped the elements further down the timeline, a new error message popped up that I have not seen before.
    Nothing has changed on my system to my knowledge.  So far, it only happens in that single sequence.  There are many other sequences in the project functioning normally.
    Any ideas?

    I duplicated the sequence and things appear to be back to normal BUT I am hoping this is not the start of a larger problem with the project!

  • "New" error during ApplyLogOnInfo(...): Invalid parameter value: exceeds...

    Invalid parameter value: exceeds the Min or Max or conflicts with existing value or edit mask
    error during ApplyLogOnInfo() to the tables contained within a report.  Now, this is a "new" error because this was not being thrown when the application was compiled for .Net 1.1 using the Crystal Reports v9.1.5000.0 components.  When the application was migrated to .Net 2.0, and set to reference the the 10.2.3600 set of managed components, this started appearing. 
    Also, this will only occur on certain .rpt files that are loaded, and can be thrown when also executing the VerifyDatabase() method.  By certain .rpt files, I mean those that have been opened and saved with Crystal Reports 2008 (warning message when saving indicated that the report will not be able to be opened in Crystal Reports versions earilier the 9.0; should I not assume this is correct?).
    ' Load a report that had been created in v10, but opened and saved in v12
    Dim sFileName As String = "C:\test\CR2008Report1.rpt"
    crReportDocument.Load(sFileName, OpenReportMethod.OpenReportByDefault)
    crReportDocument.VerifyDatabase()  ' Throws the EngineExceptionErrorID.MissingParameterFieldCurrentValue exception:
      ' Invalid parameter value: exceeds the Min or Max or conflicts with existing value or edit mask
    ' Load a report that had been created in v10
    Dim sFileName As String = "C:\test\CR10Report.rpt"
    crReportDocument.Load(sFileName, OpenReportMethod.OpenReportByDefault)
    crReportDocument.VerifyDatabase()  ' No exceptions; whacky.

    >
    A G wrote:
    > Our product will not get integrated with SharpDevelop as it does with VS though you can use the assembly in you application.
    Right, I am aware of the IDE plugin functionality (BTW, I'm going to guess no, but is the functionality present in the "Express" editions?).  When a viewer application is created in VS, you can convert/open it in #d and have all of the designer props/pages available.  When manually adding the viewer in a new #d project, you can add it, but it doesn't show up visually in the forms designer window (boggle).
    > So just make a simple report and try to view it. can you see it?
    I will investigate this probably tomorrow...
    > Also is your report have any parameter? Dynamic or static?
    Yes, there are parameters embedded (?) in the .rpt.  There are no parameters added at runtime; only the parameter values are set at runtime.
    > Make sure you can see data in report in designer..

  • Can't open PDFs, Initially received runtime error,updated Reader - new error Adobe Reader has stopped working, uninstalled re-installed same error message Adobe Reader has stopped working

    Can't open PDFs, Initially received runtime error,updated Reader - new error Adobe Reader has stopped working, uninstalled re-installed same error message Adobe Reader has stopped working

    Assuming that you are in Win (which you haven't said), you can try using this tool to first remove all traces of previous versions of Reader:
    http://labs.adobe.com/downloads/acrobatcleaner.html
    Then, download the full offline Reader installer from 
    http://get.adobe.com/reader/enterprise/
    and run it immediately after restarting your computer.

  • Opening exported XML, new error!

    Please choose a translation document file! This is what comes up when I try to import the XML file. What is this and where is it located? Help please. I had a file that was created in a newer version of FCP. I wasn't able to open it. So with the help from you guys I had the creator export to an XML format. Now a new error. What do I need to do to open this file. Since I don't know whats going on, the message states that no translation templates were found that matched the XML file. Unable to import. I appreciate your help. W3

    You must export from the newer version of Final Cut Pro to the XML version that is supported by the older version of FCP you're using. In the old FCP look at File->Export->XML... and see what version(s) you have available. That is the version you must export from the newer FCP.

  • IC Web Client  -- ADD NEW ERROR MESSAGE

    Hi all;
    I need to add a new error on the IC Web CTI toolbar to show an ‘Phone is busy’ error message whenever the outbound call status is busy. I have added the related message in the class through tramsaction SE91.
    Now I should implement the following code and the addings:
    lv_msgsrv = CL_BSP_WD_MESSAGE_SERVICE => GET_INSTANCE( ).
    lv_msgsrv-> ADD_MESSAGE ( iv_msg_type = 'E'
    iv_msg_id = 'CRM_IC_APPL_UI_BPID'
    iv_msg_number = '503' ).
    But I don’t know exactly where to implement; I created a new class ZCL_CRM_IC_ERRORCONTROLLER_IMPL but the method that I think I should put the code (GET_AND_PREPARE_MESSAGES) is a private method SO I Can not REDEFINE it. In this case I’m a little bit helpless about what I should do now.
    Any help in this regard would be highly appreciated.
    Thanks in advance!
    Best  Regards,
    Elif

    Hi,
    Following are the steps to add new fields to the existing view.
    - Create a new controller class (ZCL..) with original view class as super class
    - Create new BSP application with View and Controller
    - Attach the above Z class to the view and controller created and activate the BSP appln.
    - Go to transaction BSP_WD_WORKBENCH and type your BSP appln.
    - Expand your controller and at the Context class use Wizard to create new context node and bind this to Custom Controller class available.
    This whole process requires complte understanding of View, Controller, Custom controller and basic custom modifications to IC Web Frame work.
    Kunda Krishna Kishore

  • New Error Message 64-bit

    I installed iTunes 7.5, and there's a new error message when I connect the phone/start iTunes. It used to say use 32 bit version of windows. Now it says:
    The iPhone cannot be used because the required software is not installed. Run the iTunes installer to remove iTunes, then install the 64-bit version of iTunes.
    This sounds like there should actually BE a 64-bit version of iTunes, but I don't seem to be able to find it. Ideas?

    No 64-bit version has been released that I've heard about or can find. The system requirements on Apple's iTunes web page still say that the 32-bit version of Windows is required. I can only guess that this is an error message that was intended for a future version (it certainly would seem to indicate that one is in planning/development) and that it's been inadvertently left in with phrasing that's currently not applicable.

  • New error exception concept

    Hi,
    Can any one give me an example for New error exception concept
    Thanks

    Hi,
    In release 6.10 a new exception concept has been introduced. Please find below a basic syntax of how to code the new error-handling concept.
    *Syntax for TRY .. ENDTRY construct
    TRY.
        CALL METHOD o1->m1.
        PERFORM f1.
      CATCH cx_root.  "Handler for all exceptions
           " ABAP code(What to do when error occures)........
    ENDTRY.
    FORM f1 RAISING cx_my.
      TRY.
        IF ...... RAISE EXCEPTION TYPE cx_my2. ENDIF.
          CALL METHOD o1->m3.
      CATCH cx_my1 cx_my3 INTO ex.
        RAISE EXCEPTION TYPE cx_my4.
      CATCH cx_my4.
         "Handler for exceptions of type cx_my4
         " ABAP code(What to do when error occures)........
      CLEANUP.
         "Cleanup section, used to restore to a consistant state
         " ABAP code........
      ENDTRY.
    ENDFORM.
    Reward if helpful..
    Sowjanya.

  • Can't update Apps, now getting new error message

    It's been weeks since I've been able to update my Apps on either my iPod touch, or from iTunes. In iTunes previously, it would say that there were updates available, but then when I clicked on Update it would tell me that there were no updates available, now I'm getting a new error message that says "You can not update this software since you have not owned the major version of this software." WHAT???? These are mostly free apps, and the others I paid for. I'm so tired of this. And on my iPod touch I get "Can not connect to the iTunes store," even though I can make purchases, download podcasts, etc. Any ideas. Thanks so much.

    it's strange because not all update have this issue. I can update some free and paid apps ( over 10 update was succeful) and few (4-5)others have this problem and cannot be updated. Itunes didnt been updated since beginning of this issue.
    For the free one who cannot be updated, i just deleted already owned in itunes and re-downloaded updated version again without any problem.But for my paid apps, i will need to wait That apple fix it.
    I googled and i see this problem already happen in 2007 or 2008 but i just found problem report, no solution. I will try to spend couple minute to find out on google and try to call apple or contact apple expert on the web there tomorrow: http://www.apple.com/support/expert/ and come back to tell what they said. If someone found please post !!

Maybe you are looking for

  • Can the G4 accommodate external drives in addition to the 2 ATA internals?

    Hi all, I have a G4 dual 1GHz machine (Sales Order Number: M8667LL/A) with two 120 ATA internal drives. I am happy with them but I want to have more HD space. I read Apple's pdf file on G4's capacity and seems to indicate that this tower only will ac

  • Email Notifactions not going to email address

    *** Can I please have an answer to this if possible***** I have setup a user to recieve email notifactions and they are not getting them.  I have set them up as a reader and also a co-author and have gotten the message about sharing the form.  The us

  • Add one field in ME2L T-code (program RM06EL00)

    hello all, I am new in sap. I want to add one field in program RM06EL00 ,tcode is ME2L and field name is zzstatus at last in report. i have check everything in program but i not able to find. please help me in which place(internal table) i have to ad

  • How to get Ciscoworks LMS 4.0.1 serial number

    How to get Ciscoworks LMS 4.0.1 serial number ? I need that to put the product under mainrtenance, and I can't manage to get it. Thanks for your help Roland

  • The battery status light on my N200

    The battery status LED, on my N200 is ALWAYS on, its on even if it is running from batteries, or if it is on AC power, even if its fully charged the status light stays on.. is this normal? its a status light....so it should not be "always" ON, right?