Error Message - Control Recipe

Sir,
While generating control recipe I am getting following error message.
"Value cannot be assigned autom. to char. 0015 PPPI_UNIT_OF_MEASURE in proc.instr. 0000 phase 0110"
Please let me know how to resolve this error.
Regards,
Prashant Salvi

hi,
Go to Phase 0020 and then Process Instruction 0010.I think somewhere in this process Instrucition you have used PPPI_UNIT_OF _MEASURE as a output characteristic which has created this problem.Change it to input characterstic and then try to create the control recipe.
Regards,
Muthamil

Similar Messages

  • Error message control for invoice w/o PO in SRM

    Hi,
    Anyone  know how to setup error message if invoice value limit is above e.g. 10000 USD? Invoice will be entered without PO.
    There will be no PO but invoice will be created and user should get error message if total invoiced value is above 10000 USD.
    We are in SRM_SERVER5.5 with SP 06.
    If anyone came across during IMS setup, please help me on it.
    Thanks in advance.
    Regards,
    Rahul Mandale

    Hi Atul,
    Thanks for your useful answer.  I am getting error message while creation of invoice. But problem is that it is throwing message for all invocie, need to consider  if condition of  'GROSS_AMOUNT >= 1000 USD. During creation of invoice, it should throw msg 001 (YIMS) which I have configured as my exception in  IMS when fulfills the condition.
    I am sending code for 'CHANGE' and "CHECK'  BADI.
    Can you check and suggest the correction? Where I need to put this conditon for pop up of error while gross_amount >= 1000  while creation and change of invoice??
    Thanks in advance.
    regards,
    Rahul
    <b>method IF_EX_BBP_DOC_CHANGE_BADI~BBP_IV_CHANGE.</b>
    DATA:   ls_header               TYPE bbp_pds_inv_header_d,
              lt_messages             TYPE TABLE OF bbp_smessages_badi,
              ls_message              TYPE bbp_smessages_badi,
              lf_dummy                TYPE c,
              lf_gross_amount         TYPE BBP_IV_AMOUNT,
              i_guid                  TYPE BBP_GUID .
    get data of the invoice from guid
      CALL FUNCTION 'BBP_PD_INV_GETDETAIL'
        EXPORTING
          i_guid   = i_guid
        IMPORTING
          e_header = ls_header.
      IF ls_header-GROSS_AMOUNT >= 1000.
    CLEAR ls_message.
        ls_message-msgty       = 'E'.
        ls_message-msgid         = 'YIMS'.
        ls_message-msgno     = '001'.
    APPEND ls_message to lt_messages.
        EXIT.
      ENDIF.
    <b>method IF_EX_BBP_DOC_CHECK_BADI~BBP_DOC_CHECK.</b>
    Data        ls_message TYPE bbp_smessages_badi.
    *To create  custom message
        clear ls_message.
        ls_message-msgty = 'E'.
        ls_message-msgid = 'YIMS'.
        ls_message-msgno = '001'.
        append ls_message to et_messages.
    endmethod.

  • Error message "My recipes" document can't be opened because is not a valid pages document. Help please

    Hi guys...
    I just bough a new Mac book pro and I copied my  documents from the old one (2007 model) , the operation was easy and apparently flawless, but now that I'm trying to open my pages documents I get the message that I posted in the title, you can see it in the following image (But is in spanish)
    Any help will be very appreciated, I installed iWorks from the original CD and apparently everything went smooth but Pages is not working at all. I deleted it, and installed back but nothing changed.
    Best regards
    Luis

    Hi Peter...
    Thanks for your quick reply, here are my answers to your questions.
    My version is Pages '08 Version 3.0 and I used the same disks for both computers (the old one got all info deleted, so there is no chance of having more computers running iWork than the allowed by the license) so there is no chance of having different versions installed.
    And yes, the documents have a .pages extension.
    To transfer the file, that was via USB cable, but anyway, I had most of my documents on an external hard drive. I tried already to open both, the one tha originally was transfered to my computer, and since that didn't work out, I tried with the back-up and the result was the same.
    Any ideas?
    Thanks a lot in advance.
    Luis

  • Error Message Repeated Display When using BBP_DOC_CHECK_BADI

    Hi,EveryOne,
        Who can help me,I am using BBP_DOC_CHECK_BADI,Check the item's,when the first time,i modify some PO item data,then through this BBP_DOC_CHECK_BADI,can show one error message.Then i modify the error data to correct,push the check button,no error message show again.
         Then i go into the second item,check,no error message.
         And there only two item.
         So, i Save the order.But the first error message display again.
         I don't know why? Is there have any one can help me.I am will very appreciate him.
        Thanks a lot.
    The code display:
            DATA:l_destination TYPE rfcdest.
            DATA:lt_ekbe TYPE TABLE OF zgp_invoice_check,
                 ls_ekbe TYPE                 z_invoice_check,
                 lt_ekpo TYPE TABLE OF z_invoice_po,
                 ls_ekpo TYPE                 z_invoice_po.
            CLEAR:l_destination.
            CHECK po_header-be_log_system IS NOT INITIAL.
            MOVE po_header-be_log_system TO l_destination.
            CALL FUNCTION 'Z_INVOICE_PRICING_CHECK'
              DESTINATION l_destination
              EXPORTING
                pi_ebeln = po_header-be_object_id
              TABLES
                pto_ekbe = lt_ekbe
                pto_ekpo = lt_ekpo
              EXCEPTIONS
                OTHERS   = 1.
            IF lt_ekbe[] IS NOT INITIAL.
              SORT lt_ekbe BY ebeln ebelp.
              LOOP AT po_item INTO ls_po_item.
                READ TABLE lt_ekbe INTO ls_ekbe WITH KEY ebelp = ls_po_item-number_int.
                IF sy-subrc EQ 0.
                  READ TABLE lt_ekpo INTO ls_ekpo WITH KEY ebelp = ls_po_item-number_int.
                  IF sy-subrc EQ 0 AND ls_ekpo-netpr NE ls_po_item-price.
                    ls_messages-msgty = 'E'.
                    ls_messages-msgid = 'BBP_PU'.
                    ls_messages-msgno = '001'.
                    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
                      EXPORTING
                        input  = ls_po_item-number_int
                      IMPORTING
                        output = ls_po_item-number_int
                      EXCEPTIONS
                        OTHERS = 1.
                    CONCATENATE 'Line No.' ls_po_item-number_int ': ' 'Price cannot be changed for invoice item!'
                           INTO ls_messages-msgv1.
                    CONCATENATE 'Line No.' ls_po_item-number_int ': ' 'Price cannot be changed for invoice item!'
                           INTO ls_messages-message.
                    APPEND ls_messages TO et_messages .
                  ENDIF.
                ENDIF.
              ENDLOOP.
            ENDIF.
    Edited by: andy zhou on Apr 10, 2008 3:51 AM

    Hi
    Which SRM version are you using ?
    All the Data after makning changes in the PO document, will be also aviavale in BBP_DOC_CHANGE_BADI for the filter type- BUS2201 (Purchase orders) in your case. You can either do a validation there using BBP_DOC_CHECK_BADI.
    The  Business Add-Ins [BADI] - BBP_DOC_CHECK_BADI should be used for customer messages to be triggered ->
    Re: Error message control for invoice w/o PO in SRM
    Re: calling a screen from BADI BBP_DOC_CHECK_BADI
    Re: PO Message
    Re: Problem with BBP_DOC_CHECK_BADI 
    Re: Mandatory field
    Re: "Refresh" button in BBP_POC calls badi..... ?
    Re: Validation of SC/PO
    Re: PO Changes, PO date
    Do let me know, incase still face any issues.
    Regards
    - Atul

  • Error message for radiobuttongroup using report_attribute_error_message

    Hi,
    We are displaying error message on the submit button of a form in web dynpro abap application. We have different UI elements in the form which are mandatory to enter by the user.So we are using 'CALL METHOD lo_message_manager->report_attribute_error_message' method to display error.
    When user click on the error message control will go the UI field which is caused for error.
    This works fine for INPUT,DROPDOWNBYKEY,TEXTEDIT,RADIOBUTTON UI elements.
    But error link is not working for RADIOBUTTONGROUPBYKEY/RADIOBUTTONGROUPBYINDEX ui elements.
    Is this problem is with WEB DYNPRO ABAP or am i missing any property settings. Does SAP Web Dynpro ABAP provide this functionality for RADIOBUTTONGROUPBYKEY/RADIOBUTTONGROUPBYINDEX?
    Please help us to resolve the problem.
    Below attached written code for reference.
    CASE lo_action->name. WHEN 'SUBMIT'.
    IF lv_radio IS INITIAL.
    *    REPORT message
       call method lo_message_manager->report_attribute_error_message
         exporting
           message_text              = 'Please select something from radio button grp by key.'
           element                   =  lo_el_radio_node
           attribute_name            = `RADIO`
    *        params                    =
    *        msg_user_data             =
    *        is_permanent              = ABAP_FALSE
    *        scope_permanent_msg       = CO_MSG_SCOPE_CTXT_ELEMENT
    *        msg_index                 =
    *        cancel_navigation         =
    *        is_validation_independent = ABAP_FALSE
      ENDIF.
        IF lv_text IS INITIAL.
    *    REPORT message
       call method lo_message_manager->report_attribute_error_message
         exporting
           message_text              = 'Please KEY IN SOMETHING THE TEXTEDIT BOX......'
           element                   =  lo_el_text_edit
           attribute_name            = `TEXT`
    *        params                    =
    *        msg_user_data             =
    *        is_permanent              = ABAP_FALSE
    *        scope_permanent_msg       = CO_MSG_SCOPE_CTXT_ELEMENT
    *        msg_index                 =
    *        cancel_navigation         =
    *        is_validation_independent = ABAP_FALSE
      ENDIF.
        IF lv_radio_group  IS INITIAL.
    *    REPORT message
       call method lo_message_manager->report_attribute_error_message
         exporting
           message_text              = 'Please select something in second radio group.'
           element                   =  lo_el_radio
           attribute_name            = `RADIO_GROUP`
    *        params                    =
    *        msg_user_data             =
    *        is_permanent              = ABAP_FALSE
    *        scope_permanent_msg       = CO_MSG_SCOPE_CTXT_ELEMENT
    *        msg_index                 =
    *        cancel_navigation         =
    *        is_validation_independent = ABAP_FALSE
      ENDIF.
    ENDCASE.

    Hi Smitha
    You declare as below :
    *---- SELECTION-SCREEN
    SELECTION-SCREEN BEGIN OF BLOCK b1.
    SELECT-OPTIONS : s_werks FOR vbap-werks .                 "Plant
    SELECTION-SCREEN END OF BLOCK b1.
    *Selection Screen validation
    AT SELECTION-SCREEN .
      IF s_werks-low IS NOT INITIAL.
        SELECT SINGLE werks            "Plant
        FROM t001w
        INTO s_werks-low
        WHERE werks = s_werks-low
        and werks in ( '2000','3000','4000' ).
        IF sy-subrc NE 0.
          MESSAGE e000 WITH text-t48.
        ENDIF.
      ENDIF.
    if its a parameter just replace s_werks as p_werks
    Edited by: Martina Floriette on Feb 21, 2009 6:01 AM

  • Error message display for radiobuttongroup using report_attribute_error_msg

    Hi,
    We are displaying error message on the submit button of a form. We have different UI elements in the form
    which are mandatory to enter by the user. So we are using 'CALL METHOD lo_message_manager->report_attribute_error_message' method to display error.
    When  user click on the error message control will go the UI field which is caused for error.
    This works fine for INPUT,DROPDOWNBYKEY,TEXTEDIT,RADIOBUTTON UI elements. Where error link is not working for RADIOBUTTONGROUPBYKEY/RADIOBUTTONGROUPBYINDEX ui elements.
    Is this problem is with WEB DYNPRO ABAP or am i missing any property settings.
    Please help us to resolve the problem. Does SAP Web Dynpro ABAP provide this functionality for RADIOBUTTONGROUPBYKEY/RADIOBUTTONGROUPBYINDEX?
    Below attached written code for reference.
    CASE lo_action->name.
    WHEN 'SUBMIT'.
    IF lv_radio IS INITIAL.
       REPORT message
       call method lo_message_manager->report_attribute_error_message
         exporting
           message_text              = 'Please select something from radio button grp by key.'
           element                   =  lo_el_radio_node
           attribute_name            = `RADIO`
           params                    =
           msg_user_data             =
           is_permanent              = ABAP_FALSE
           scope_permanent_msg       = CO_MSG_SCOPE_CTXT_ELEMENT
           msg_index                 =
           cancel_navigation         =
           is_validation_independent = ABAP_FALSE
      ENDIF.
        IF lv_text IS INITIAL.
       REPORT message
       call method lo_message_manager->report_attribute_error_message
         exporting
           message_text              = 'Please KEY IN SOMETHING THE TEXTEDIT BOX......'
           element                   =  lo_el_text_edit
           attribute_name            = `TEXT`
           params                    =
           msg_user_data             =
           is_permanent              = ABAP_FALSE
           scope_permanent_msg       = CO_MSG_SCOPE_CTXT_ELEMENT
           msg_index                 =
           cancel_navigation         =
           is_validation_independent = ABAP_FALSE
      ENDIF.
        IF lv_radio_group  IS INITIAL.
       REPORT message
       call method lo_message_manager->report_attribute_error_message
         exporting
           message_text              = 'Please select something in second radio group.'
           element                   =  lo_el_radio
           attribute_name            = `RADIO_GROUP`
           params                    =
           msg_user_data             =
           is_permanent              = ABAP_FALSE
           scope_permanent_msg       = CO_MSG_SCOPE_CTXT_ELEMENT
           msg_index                 =
           cancel_navigation         =
           is_validation_independent = ABAP_FALSE
      ENDIF.
    Thanks
    Venkat

    Hi,
    Try to use the method ADD_MESSAGE
    lr_msg_srv = cl_bsp_wd_message_service=>get_instance( ).
      lr_msg_srv->ADD_MESSAGE( IV_MSG_TYPE = 'E'
                                         IV_MSG_ID = 'ZCRM'
                                         IV_MSG_NUMBER = '001'
                                         IV_MSG_V1 = 'Message' ).
    Best regards,
    Caíque Escaler

  • Error Message when saving the workflow in SWDD.

    I have raised this question before in the forum, but I still don't have answer.
    When I try to save the modified workflow or activate it, I have the error message like:
    Message Type X,
    The current application triggered a termination with a short dump.
    Analyse des erreurs
    Short text of error message:
    Control Framework : erreur when a control release !
    Technical information about the message:
    Message classe...... "CNDP"
    Number.............. 006
    Variable 1.......... " "
    Variable 2.......... " "
    Variable 3.......... " "
    Variable 4.......... " "
    Does anyone have some clue on that??

    This is from the long text for this message:
    Control Framework : Error processing control
    Diagnosis
    An error occurred when the system tried to process the commands from the Automation Queue on the presentation server.
    There are several possible reasons for this:
    - The installation of the SAP GUI on the presentation server is faulty or obsolete.
    - There is an error in the application program
    - There is an error in the SAPGUI or an integrated control
    Procedure
    1. Make sure that you have imported the appropriate Support Package, the current kernel, and GUI patch for the release of your system
    2. Check whether the error occurs locally on one or a few PCs, or generally on all PCs. Note whether the error only occurs for some users, for example because of a specific Customizing setting.
    If it only occurs locally, this suggests an installation problem with the PC. Check the installation; if necessary, reinstall the software. In the dump, search for the SY-MSGLI field, since it may point to the cause of the error.
    3. Activate the Automation Trace (in accordance with SAP Note 158985).
    4.Start the transaction and continue until the screen immediately before the dump.
    5. From the System -> Utilities menu, choose Autom. Queue, Synchronous Processing.
    The status bar of the GUI displays the text:
       "Automation synchron flush mode on"
    6. If you now proceed with the application, the short dump will display the ABAP call that caused the error; the Automation Trace will contain the error on the presentation server.
    7. If necessary, load the short dump and trace files on to sapservX, so that SAP can analyze them.
    There are plenty of options stated in this message which could cause the problem, I suggest you start with those.
    Kind regards, Rob Dielemans

  • Error in CO54 Control recipe.

    Dear Experts,
    I am not able to do TECO for process order as auto control recipe is being created,this is the status of my process order.
    I have created massage through T-Code CO57 with massage category PI_CRST, Process order number,but I don't know which control recipe I have to select so that the when I am doing massage posting through T-Code CO54, it is giving error massage that it can not be posted. I have tried some of the control recipe number from F4, in CO57, but again the system gives the error massage while proceeding with CO54.
    This is very critical as my client plant is nearly down as far as SAP is concerned.
    Please do the needful by giving the detail steps to over come this error as TECO for this process order is a must.
    Regards,
    Rajesh.

    Dear,
    The error given is as follows.
    2.Destination PI04 COCI_CONFIRM_MATERIAL_CONSUMPTION cannot process the message
    3.Message is not sent to and destination.
    This error is because of CO57 where I don't know to select which Control recipe along with process order number in CO57. I tried selecting some of the control recipe from F4, but was of no use.
    I just want to do TECO for the process order where status is control recipe created (which is being created automatically), so I am selecting Massage Category PI_CRST. But I don't know which control recipe to be selected along with Process order number for field Contol Recipe in CO57.
    Regards,
    Rajesh Prasad.

  • SRM 7.0 Process-Controlled (BRF) Workflow -- Error message to Shopping Cart

    I am modifying a BRF Expression used to calculate approval levels.  During this calculation, I may run into error conditions (e.g. Currency tranlsation not found) that I want to display to the user (in the Shopping Cart).
    I have tried raising the following exceptions:
    /sapsrm/CX_WF_RULE_ERROR.
    /sapsrm/CX_WF_RULE_ABORT.
    Raising these exceptions do result in SLG1 log entries being written, but the User is not informed of the error (ie. at top of shopping cart where other messages display).
    I can probably jump out of the Webdynrpo to read logs, but thought there MUST be some standard way of passing error conditions from the BRF, back to WF, and then back to the Webdynpro Window.
    Anybody raise error messages back to the online user from Process-Controlled Workflow?
    Thanks,
    - Tim

    >
    Saravanan Dharmaraj wrote:
    > Hi Tim,
    >
    >    I am not sure about your business requirement, but if you want to display custom error message while user create a SC, SAP has provided a standard BADI - BBP_DOC_CHECK_BADI. You can implement this Badi to raise a custom error,warning message. You can build your brf logic in the BADI implementation..
    >
    >
    > Best Regards,
    > Saravanan Dharmaraj.
    Hi Saravanan,
    I am actually modifying the Approval Limit Checks (for multi-currency translations) that you recently coded in Maryland.  It can occur that errors occur in determining limits (new Currency translation I just added), or during the lookup of agents (ie user config is inconsistent).
    In these cases, I can make the shopping cart Dump, by raising untrapped error messages, or assertions.   However, I would like to raise exceptions that get trapped (such as the ones I identified in original post), and then make their way to the shopping cart.
    Unless I am missing something, I don't think the WF BADIs, or BRF are gonna communicate errors back to the shopping cart, even though these components are called during cart creation and checks.
    I realize that I can recode the Agent Determination BADIs,  BRF calls, or even read BRF logs within BBP_DOC_CHECK_BADI.  I mentioned this in my original posting as well.
    Anyway, any help is appreciated.
    Thanks,
    - Tim

  • Every time I update or repair in the control panel it comes up with a error message like, this file does not have a program associated with it for performing this action, please install a program if it is installed create an association to the default pro

    EVERYTIME I UPDATE SOFTWARE OR GO INTO THE CONTROL PANEL TO ITUNES TO REPAIR OR CHANGE IT GIVES ME AN ERROR MESSAGE
    THIS FILE DOES NOT HAVE A PROGRAM ASSOCIATED WITH IT FOR PERFORMING THIS ACTION. PLEASE INSTALL A PROGRAM, IF IT IS INSTALLED CREATE AN ASSOCIATION TO THE DEFAULT PROGRAMS CONTROL PANEL

    STOP SHOUTING!  Or at the very least, get the CAPS lock key fixed.
    Remove iTunes.
    Download and install the current version of iTunes from http://www.apple.com/itunes/download

  • Tying to install itunes and I get error message "This file does not have a program associated with it for performing this action.  Please install a program, or if one is already installed, create an association in the Default Programs control panel.  Help

    am tTying to install itunes and I get error message "This file does not have a program associated with it for performing this action.  Please install a program, or if one is already installed, create an association in the Default Programs control panel. Can anyone help me?

    Hi,
    Here is a similar thread for your reference:
    There is no email program associated to perform the requested action. Please install an email program or, if one is already installed, create an association in the Default programs control panel
    http://social.technet.microsoft.com/Forums/en/w7itproappcompat/thread/036e3cf6-bff7-4ef2-bd0a-555cd2399ad4
    Hope this helps
    Vincent Wang
    TechNet Community Support

  • When I try to open contacts from the icloud control panel on my windows 7 PC, I get an error message: can't load contacts. There was a problem loading the application.

    When I try to open contacts from the icloud control panel on my windows 7 PC, I get an error message: can't load contacts. There was a problem loading the application.

  • Error Message:  Unable to load Acrobat Reader control

    Error Message:  Unable to load Acrobat Reader control.  Please make sure it is correctly installed. The user I am dealing with has Adobe_Reader_9.4.4 & AdobeAcrobatStd911-L.  Can you give me some assistance as to why she is unable to open her file.

    That file only? And before version X, Adobe did not recommend having Acrobat and Reader installed in the same Win computer...

  • Error message on my new 310 1125f touchsmart screen to choose aero theme in control panel did that

    Just got my HP 310 1125f touchsmart 23rd of Feb 2012. Work good for two days, then on the touchscreen was a Error message
    choose an Aero theme on the  control page. Did this there are 7 different themes  I tried all of them and none of them worked
    even did a restart after each of them. What is the fix for this help me please. Maybe getting a touch screen wasn't a good idea.
    Everything else works great.
    mrstix

    Hi Marilyn52,
    Did you already try restarting the system? If HP takes over your computer, windows aero gets turned off for performance reasons. When you restart, the original theme should be back to the way it was. 
    If not you can try the following steps also:
    Make sure that Windows Experience Index has been updated. For more information check: http://windows.microsoft.com/en-US/windows-vista/What-is-the-Windows-Experience-Index
    The following steps will tell you how to turn on a Windows Aero theme for vista & 7.
    Vista:
    1. Right click your desktop and select "Personalize".
    2. Click on "Theme"
    3. You'll get a window which will list all available themes for windows vista, select Windows Aero here.
    For Windows 7:
    1. Right click your desktop and select "Personalize".
    2. Here are all your themes including the Windows Aero ones, just select one of these.
    It might be possible that you have to restart the computer.
    If still not working, please let us know what kind of computer you have and what operating system it is.
    Greetings
    Philippe
    Clicking the "Kudos star" to the left is a great way to say thanks!
    When your problem has been solved, accept the solution by clicking the "Accept as Solution" button to help other members in the future!

  • Error in setting up message control in WE21...

    Hello Experts,
    I am currently setting up the partner profiles of my new IDoc in
    transaction WE21(Partner profiles). Under the message control tab, I
    chose 'EF' under 'Application', 'NEU' under "Message type' and entered
    my process code under the 'Process code' column. But an error is bening generated
    saying that the 'Parameters for message control already used'.
    So how do I create a unique message type for my process code/IDoc? My Idoc is for
    purchase orders and will be trigerred upon release of PO.
    Hope you can help me guys. Thank you and take care!

    Message type NEU is already being used in the standard system. You have to create a message type of your own (use transaction NACE to do so).
    Regards,
    John.

Maybe you are looking for