CRM_ORDER_MAINTAIN not updating the item level field

Hi All,
My requirement is to update a field called "CSC Code" in line item of sales order. hence for this case i am using "CRM_ORDER_MAINTAIN" inside the "ORDER_SAVE" BADI. I am passing the ref guid, ref type, object name ,Logical Key and field name in the  CHANGING parametrs  CT_INPUT_FIELDS. I am passing the internal table containing the ref guid,ref type, partner fct ,partnerno to the internal table IT_PARTNER.
                                 The FM gets executed without any error and the internal table IT_PARTNER is filled with the new CSC code  but  on checking in the sales order after saving the field is blank.
  I have tried using wait up to 2 seconds. Even then it didn't work.
Can some one help me?
Thanks.

Could you please let me know how was it fixed... I have a similar kind of requirement
Edited by: rakesh chaitanya  makkapati on Apr 7, 2010 4:49 PM

Similar Messages

  • The workflow could not update the item, possibly because one or more columns for the item require a different type of information. Outcome: Unknown Error

    Received this error (The workflow could not update the item, possibly because one or more columns for the item require a different type of information.) recently on a workflow that was
    working fine and no changes were made to the workflow.
    I have tried a few suggestions, i.e. adding a pause before any ‘Update’ action (which didn’t help because the workflow past this action without incident); checked the data type being written
    to the fields (the correct data types are being written); and we even checked the list schema to ensure the list names and the internal names are aligned (they
    are), but we still cannot figure out why the workflow is still throwing this error.
    We located the area within the workflow step where it is failing and we inserted a logging action to determine if the workflow would execute the logging action but it did not, but wrote the same error message.
    The workflow is a Reusable Approval workflow designed in SharePoint Designer 2010 and attached to a content type. 
    The form associated with the list was modified in InfoPath 2010. 
    Approvers would provide their approval in the InfoPath form which is then read by the workflow.
    Side note - items created after the workflow throws this Unknown Error some seem to be working fine. 
    We have deleted the item in question and re-added it with no effect. 
    Based on what we were able to determine there don’t seem to be any consistency with how this issue is behaving.
    Any suggestions on how to further investigate this issue in order to find the root cause would be greatly appreciated?
    Cheers

    Hi,
    I understand that the reusable workflow doesn’t work properly now. Have you tried to remove the Update list item action to see whether the workflow can run without issue?
    If the workflow runs perfectly when the Update list item action is removed, then you need to check whether there are errors in the update action. Check whether the values have been changed.
    Thanks,
    Entan Ming
    Entan Ming
    TechNet Community Support

  • The workflow could not update the item, possibly because one or more columns for the item require a different type of information using Update Item action

       I got error  "The workflow could not update the item, possibly because one or more columns for the item require a different type of information "I  found out the cause is  Update Item action       
    I need to update item in another List call Customer Report ,the field call "Issues"  with data type  "Choice"   to yes
    then the error arise .   please help..

    Thanks for the quick response Nikhil.
    Our SPF 2010 server is relatively small to many setups I am sure. The list with the issue only has 4456 items and there are a few associated lists, eg lookups, Tasks, etc see below for count.
    Site Lists
    Engagements = 4456 (Errors on this list, primary list for activity)
    Tasks = 7711  (All workflow tasks from all site lists)
    Clients = 4396  (Lookup from Engagements, Tslips, etc)
    Workflow History = 584930 (I periodically run a cleanup on this and try to keep it under 400k)
    Tslips = 3522 (Engagements list can create items here, but overall not much interaction between lists)
    A few other lists that are used by workflows to lookup associations that are fairly static and under 50 items, eg "Parters Admin" used to lookup a partners executive admin to assign a task.
    Stunpals - Disclaimer: This posting is provided "AS IS" with no warranties.

  • Notes at the Item level is not getting Copied

    Hi All,
    When a quotation is copied by clicking on the "Copy" button, the new quotation has all the Notes copied at the header level. But all the Notes maintained at the Item level dosent get copied.
    The Copy control has been maintained between the Item Category (ZAGN to ZAGN) and a Copy Routine 9REVQT is maintained.
    Help in this regard would be appreciated.
    Thanks
    Srinivas

    Hi Thomas,
    Thanks for the reply.
    I tried that but looks like it doesnt work as we are not creating the follow up but copying a quote. Once copied the new quote doesnt have the notes maintained at the item level.
    Could you please tell me what would be the "Reference Text Type" for the notes maintained at the item level (As shown in the attachment)?
    Regards
    Srinivas

  • BAPI_SALESORDER_CREATEFROMDAT2 is not updating the ITEM Qty after Free ITEM

    Hi,
    I am using BAPI_SALESORDER_CREATEFROMDAT2 to create a order.We have customization for populating a FREE ITEM for a Order ITEM.
    Now the Problem is that .....if I am passing more then one Material as ITEM it is not updating the next ITEM Qty and also not populating FREE ITEM afterwords first one.
    Please help me.
    Regards
    Ricky

    Hi,
    Find below the code :
      read table i_table_t into lwa_table_s index 1.
      if sy-subrc eq 0.
    *Order Header
        lwa_ord_head_in-doc_type          = 'ZSO'.
        lwa_ord_head_in-sales_org         = '1000'.
        lwa_ord_head_in-distr_chan        = '10'.
        lwa_ord_head_in-division          = '10'.
        lwa_ord_head_in-req_date_h        = lwa_table_s-delivery.
    *Order Header Update
        lwa_ord_head_inx-doc_type         = 'X'.
        lwa_ord_head_inx-sales_org        = 'X'.
        lwa_ord_head_inx-distr_chan       = 'X'.
        lwa_ord_head_inx-division         = 'X'.
        lwa_ord_head_inx-req_date_h       = 'X'.
        lwa_ord_partners-partn_role       =  'AG'.
        lwa_ord_partners-partn_numb       =  lwa_table_s-sold_to.
        append lwa_ord_partners to lt_ord_partners.
        if lwa_table_s-ship_to is initial.
          lwa_ord_partners-partn_role     =  'WE'.
          lwa_ord_partners-partn_numb     =  lwa_table_s-sold_to.
          append lwa_ord_partners to lt_ord_partners.
        else.
          lwa_ord_partners-partn_role     =  'WE'.
          lwa_ord_partners-partn_numb     =  lwa_table_s-ship_to.
          append lwa_ord_partners to lt_ord_partners.
        endif.
        lt_table_it_t = lwa_table_s-zsd_table_it_t.
        loop at   lt_table_it_t into lwa_table_it_s.
          lwa_ord_items_in-material      = lwa_table_it_s-matnr.
          lwa_ord_items_in-plant         = wa_table_s-plant.
          lwa_ord_items_in-target_qty    = lwa_table_it_s-qty.
          lwa_ord_items_in-comp_quant    = lwa_table_it_s-qty.
          append lwa_ord_items_in to lt_ord_items_in.
          lwa_ord_items_inx-material     = 'X'.
          lwa_ord_items_inx-plant        = 'X'.
          lwa_ord_items_inx-target_qty   = 'X'.
          lwa_ord_items_inx-comp_quant   = 'X'.
          lwa_ord_items_inx-updateflag   = 'I'.
          append lwa_ord_items_inx to lt_ord_items_inx.
    Schedule Line Information
          lwa_schedule_lines-sched_line  = 'X'.
          lwa_schedule_lines-req_date    = lwa_table_s-date_del.
          lwa_schedule_lines-date_type   = '1'.
          lwa_schedule_lines-req_qty     = lwa_table_it_s-qty.
          append lwa_schedule_lines to lt_schedule_lines.
          lwa_schedule_lines_x-updateflag = 'I'.
          lwa_schedule_lines_x-sched_line = 'X'.
          lwa_schedule_lines_x-req_date   = 'X'.
          lwa_schedule_lines_x-date_type  = 'X'.
          lwa_schedule_lines_x-req_qty    = 'X'.
          append lwa_schedule_lines_x to lt_schedule_lines_x.
        endloop.
    Here I am getting First Item and it's free configured Item perfectly for the Qty 1.
    But when I pass more then 1 Qty or Multiple ITEMS it is not populating other respective free configured ITEMS with them.Also IT is not updating the other ITEM Qty other the first one.
    For Example:
    Item  No      ITEM            Qty           .......
    10             ITEM1           1 EA        ..........
    20             FREE1          1 DAY     ..........
    30             ITEM2            0             ..........
    40             ITEM3            0             .........
    In above example After 30 and 40 two Free ITEM should be generated with 1 Day and for Qty 1 EA
    Regards
    Ricky

  • The payment request do not transfer the Item Text field to FI doc

    The payment request do not transfer the Item Text (SGTXT) field to FI documents (accounting document) when they are paid by F111 and the payment request is created from repetitive codes (Trx FRFT_B). Therefore is not able to display a text description in the FI line items accounts, even the payment request document number is not available in the accounting document.
    Even the program SAPLKKBL (F8BT) does not contain available the Accounting document.
    So, there is not easy trace.
    Does anybody know how can I match this?

    This is the SAP Response:
    Dear customer,
    The standard FRFT_B transaction does not directly or indirectly pass
    the text to the F111 payment document since the initial program design.
    In other words, you will not able to experience the reported issue
    in the system with standard SAP coding.
    However, the text value can be passed via business transaction event
    (BTE) for example or other modifications as a substitution.
    I hope this confirmation of the standard system behaviour is
    useful to you.
    I regret not to be able to give you a positive answer.

  • Exit/bAdI for changing the item level field in VA02.

    Dear Guruss...
    I am facing a problem while trying toi change the account assignment group in VA02. The field is present at the iteem level in the tab BILLING.
    When I change the field by choosing one of the values provided in the search help and enter, the value is again reset to its initial value. However if I change the value and SAVE (without pressing enter) then the value is saved.
    The technical field name is VBAP-KTGRM, I have checked in the include:MV45AFZZ by putting break-points at all the forms but unfortunately none of them is getting triggered when I press enter.
    During the debugging I found tha the values of the structure VBAP are overwritten by those of XVBAP everytime I press enter.
    I also checked for the bAdI but can not get any help.
    Is there any bAdI or exit that can help me for this????
    Thanks in Advance......
    Abhi.....

    Hi Digvijay
       these are some of the enhancements/badi's which is related to t-code va02. just check it out
    Transaction Code -               VA02          Change Sales Order
         Enhancement/ Business Add-in               Description     
         Enhancement                    
         V60F0001               SD Billing plan (customer enhancement) diff. to billing plan     
         V46H0001               SD Customer functions for resource-related billing     
         V45W0001               SD Service Management: Forward Contract Data to Item     
         V45S0004               Effectivity type in sales order     
         V45S0003               MRP-relevance for incomplete configuration     
         V45S0001               Update sales document from configuration     
         V45P0001               SD customer function for cross-company code sales     
         V45L0001               SD component supplier processing (customer enhancements)     
         V45E0002               Data transfer in procurement elements (PRreq., assembly)     
         V45E0001               Update the purchase order from the sales order     
         V45A0004               Copy packing proposal     
         V45A0003               Collector for customer function modulpool MV45A     
         V45A0002               Predefine sold-to party in sales document     
         V45A0001               Determine alternative materials for product selection     
         SDTRM001               Reschedule schedule lines without a new ATP check     
         SDAPO001               Activating Sourcing Subitem Quantity Propagation     
          Business Add-in                    
         BADI_SD_SCH_GETWAGFZ               Scheduling Agreement: Read WAGFZ from S073     
         BADI_SD_V46H0001               SD Customer functions for resource-related billing
      Regards
    Zulfikhar ali
    Edited by: Zulfikhar Ali Bhutto.N on Sep 23, 2011 11:15 AM

  • The workflow could not update the item, possibly because one or more columns for the item require a different type of information.

    I started getting these errors on one of my lists that has several workflows running on it. The strange thing is it has been running pretty much error free for 1.5 years and we have not made any changes to the workflows and no updates have been applied prior
    to the errors staring.
    It is typically always the same workflow but it doesn't always happen, only some of the newly added list items will error. If I simply cancel the current instance and manually start it again it runs fine to completion and it only seems to error out
    at the start.
    Most of the other workflows pause/wait for a status change but I will be reviewing all the workflows to confirm there is no locking conflict. I have added a Wait to one other workflow that I know will update the list item on startup, it is populating
    the Title column but even after that I am still getting the error.
    I noticed in the TraceLogs, 2 errors that started on Feb 2 and I could not find them in any previous logs (went back many days with no occurrences).
    02/02/2015 07:15:55.93  w3wp.exe (0x1C50)                        0x18D4 SharePoint Foundation        
     Workflow Infrastructure        88xr Unexpected WinWF Internal Error, terminating workflow Id# 6cbf1da4-fbf9-4dfe-ae48-b6d765cc6d03 
    02/02/2015 07:15:56.37  w3wp.exe (0x1C50)                        0x2140 SharePoint Foundation        
     SPRequest                      8l3a Medium   Failed to cache field with id "{49af83c9-c5e3-47db-b055-bf18673bba67}", overwrite=0
    The "Field ID"{49af83c9...} listed is a Lookup column to a Clients list on the same site.
    Any suggestions on what could be causing the sudden errors. I will be reviewing all other workflows but as I mentioned previously, this system has been working great up until Feb 2 with no changes to the lists or workflows for 3-6+ months.
    Thanks in advance.
    Stunpals - Disclaimer: This posting is provided "AS IS" with no warranties.

    Thanks for the quick response Nikhil.
    Our SPF 2010 server is relatively small to many setups I am sure. The list with the issue only has 4456 items and there are a few associated lists, eg lookups, Tasks, etc see below for count.
    Site Lists
    Engagements = 4456 (Errors on this list, primary list for activity)
    Tasks = 7711  (All workflow tasks from all site lists)
    Clients = 4396  (Lookup from Engagements, Tslips, etc)
    Workflow History = 584930 (I periodically run a cleanup on this and try to keep it under 400k)
    Tslips = 3522 (Engagements list can create items here, but overall not much interaction between lists)
    A few other lists that are used by workflows to lookup associations that are fairly static and under 50 items, eg "Parters Admin" used to lookup a partners executive admin to assign a task.
    Stunpals - Disclaimer: This posting is provided "AS IS" with no warranties.

  • INBOUND IDOC not updating the basic data field which is created newly

    Hi,
    i am creating an inbound IDOC for material master creation in that in basic data1 i have created 2 custom field in general data 1 is updating and another  is not updating with the value in iDOC.
    User exits codes are fine. but data is not updating.
    can some one help hw to resolve this..
    regards,
    thanigai

    Hi,
    Are you Debug the function module in  Process code of IDOC and use COMMIT WORK in that Function module.

  • PO rejection in SNC does not update the items in MM with ORDRSP

    Hello everybody
    I have got a problem with the integration of ORDRSP Idocs in MM (ECC6 - SAP_APPL 604) in the case of a PO rejection in SNC (7-SP7).
    When rejecting a PO from SNC, the ORDRSP idoc is not integrated in MM
    and is marked with an error message refering to a quantity difference
    between the Idoc and the PO : "Acknowledgment for PO item 7621019091
    00010 contains quantity variance"
    Associated to the ORDRSP Idocs we are using the process code ORDR, and
    I have checked that if we use the ORDR_SUS process, the integration
    works well and the items are rejected in MM !
    But I haven't found much informations about the differences between
    ORDR and ORDR_SUS.
    Is there a way to make the PO rejection works with the ORDR process or
    could you tell me about the side effects of using ORDR_SUS in place of
    ORDR ?
    Vincent

    Hello Bharath,
    Yes we have the same problem on the Idoc status but didn't fix it.
    Here is the SAP answer about the rejection process :
    With regard to the SNC->ERP integration of the rejection, the process
    code in ERP inbound processing has to be set to ORDR_SUS (-> transactionWE20). Otherwise the rejection will not set the deletion indicator in
    ERP PO and as a result the approval process is not triggered when the
    supplier rejects a PO item.
    Kindly refer to the word attachment showing the WE20 screenshot.
    The purchase order can transfer the rejection information to the
    customer back-end system. The ReplenishmentOrderConfirmation XML messagecontains a corresponding AcceptanceStatusCode. However, to integrate therejection of a purchase order item with the customer back-end system
    using IDocs, you must implement SAP Note 962849, so that the deletion
    indicator is set on the purchase order item in SAP ERP.
    Kindly implement the following note as well:
    1458562 - ROC_Out not sent if the supplier rejects a PO item
    With the implementation of the this note, the R/3 backend system should
    get updated once the supplier 'Rejects' the item.
    Kind regards,
    Vincent

  • PO rejection in SNC does not update the items in MM with ORDR

    Hi experts,
    I have got a problem with the integration of ORDRSP Idocs in MM (ECC6 - SAP_APPL 604) in the case of a PO rejection in SNC (7-SP7).
    The ORDRSP is not integrated in MM and is marked with an error message refering to a quantity difference between the Idoc and the PO.
    Associated to the ORDRSP Idocs we are using the process code ORDR, and I have checked that if we use the ORDR_SUS process, the integration works well and the items are rejected in MM !
    But I haven't found much informations about the differences between ORDR and ORDR_SUS.
    Could anyone tells me about the side effects of using ORDR_SUS in place of ORDR ? Or if there is a way to make the PO rejection works with the ORDR process ?
    Thx.
    Vincent

    Hello Bharath,
    Yes we have the same problem on the Idoc status but didn't fix it.
    Here is the SAP answer about the rejection process :
    With regard to the SNC->ERP integration of the rejection, the process
    code in ERP inbound processing has to be set to ORDR_SUS (-> transactionWE20). Otherwise the rejection will not set the deletion indicator in
    ERP PO and as a result the approval process is not triggered when the
    supplier rejects a PO item.
    Kindly refer to the word attachment showing the WE20 screenshot.
    The purchase order can transfer the rejection information to the
    customer back-end system. The ReplenishmentOrderConfirmation XML messagecontains a corresponding AcceptanceStatusCode. However, to integrate therejection of a purchase order item with the customer back-end system
    using IDocs, you must implement SAP Note 962849, so that the deletion
    indicator is set on the purchase order item in SAP ERP.
    Kindly implement the following note as well:
    1458562 - ROC_Out not sent if the supplier rejects a PO item
    With the implementation of the this note, the R/3 backend system should
    get updated once the supplier 'Rejects' the item.
    Kind regards,
    Vincent

  • CST Tax Value is not updating the Item Cost

    Dear All
    While doing the Pur. Invoice with CST the tax value is not geting add in item cost.
    I have already defined the tax type,tax code,attributes every thing perfectly with non deductible 100%, Even though this thing is not happening... pls tell me wat to do?
    SAP B1 2007B PL:07...
    Kindly waiting for ur valuable reply
    giri

    Hi Neetu
    Thanks a lot , as per ur term its working.
    Thanks d Regards
    Giridharan V

  • Cannot find the Revision Level field in the item details

    Hi All,
    1) I have created a PR with 2 items in the R/3 Backend using the me51n transaction in which for one of the items i have updated the Revision Level field.
    2) To transfer the purchase requisitions created in the above step to the SRM system(sourcing cockpit) i executed  the report BBP_EXTREQ_TRANSFER with transaction SE38.
    3) Now when i go to the SRM portal and navigate to find the external requirement in the sourcing cockpit, I am not able to find the Revision Level field entered in the backend.
    Can some one help.
    Regards
    Sam

    Hi
    Please go through this ->
    Version Management in R/3
    http://help.sap.com/saphelp_47x200/helpdata/en/8a/60b43bb7492147e10000000a114084/frameset.htm
    Versioning in SRM
    http://help.sap.com/saphelp_srm50/helpdata/en/42/c92d6e3ed16babe10000000a1553f6/frameset.htm
    Prerequisites for Version Control in SRM
    I)        You have activated the version control so that the system creates historical versions.
    See the path in the IMG: SRM Server  ®  Cross-Application Basic Settings  ®  Switch On Version Control for Purchasing Documents
    II) You have set up and activated the workflow for the approval of changes to active purchasing documents. See also: Approval Workflows for Documents and Objects
    ( Related link -> http://help.sap.com/saphelp_srm50/helpdata/en/5a/af5efc85d011d2b42d006094b92d37/frameset.htm )
    Some related SAP OSS Notes ->
    Note 1030548 - Revision level in SRM 6.0 connected to ERP 2005
    Note 1026021 - EXTREQ interface: Data transfer structures
    Note 122105 - ME51, RM06BBI0: Revision level is not filled
    Hope this will definitely help.
    Regards
    - Atul

  • Work order should not update the fields in PR

    Hi  Gurus
    My requirements is that workorder should not updates the purchasing data fields in PR  do not go to the shoping cart. How can make it possible.
    Thanks in Advance

    Hi,
          I am not sure of your requirement clearly but check up the below user exits :-
    COZF0001 Change purchase req. for externally processed operation
    COZF0002 Change purchase req. for externally procured component
    or BADI :- IWO1_PREQ_BADI BAdI for Manipulation of P.Reqs from Orders + Networks ,SE18
    regrds
    pushpa

  • Why is not updateable the Item of block?

    I created a block, Update Allowed of the property of block is Yes, Insert Allowed is No, Locking Mode is Immediate.
    Set Update Allowed of the property of the item vendor_name is Yes.
    Compile the form.
    Open the form , but can not update the item vendor_name , Why is that?
    Thank you.
    Edited by: huak on Sep 2, 2008 9:02 PM

    Can you give some more detail on what happens when you try to update the field?
    Can you place the cursor in it?
    Are you trying to add more characters to the field, change a highlighted character or delete a character?
    Does the field flicker when you type something or does it not respond at all?

Maybe you are looking for

  • ERROR DURING MIRO FOR PLANNED DLV. COST.

    Dear All,                       pl help me out i have to do MIRO for a P.O for planned delivery cost but here an error is occurred as ---> Error in account determination: table T030K key 1000 JI6 V0Message no. FF709 Diagnosis In the chart of accounts

  • Problem creating vendor

    Hi Guys,          i was just creating a vendor for my own use. while creating vendor using transaction xk01 the account group field is creating problems. Can you please give me an example of step by step creation of a vendor using xk01

  • Using iFrames in a JSP

    Is there anyway data can be passed from an iFrame (JSP) to the parent JSP ? My case is ths... <html> <select name="group"> <option>.......</option> </select> <iframe>........</iframe> </html> I am able to successfully pass the group selected from the

  • Method error - Classes

    Hi experts, We were able to transport a user's method from D to V but the same method failed when it was getting transported from V to the next target system. Got the following message: Program <class_name>=======CP, Include <class_name>=========CM00

  • HT204152 How to view app-specific password after generated

    I would like to enter app-specific password on my 2nd Mac, but I don't have a way to view the app-specific password generated earlier. I know I could generate another app-specific password for the same app. But it doesn't make sense if i couldn't vie