Account assignment not updated in SRM's shopping cart when changes are made in ERP's PO - Classic Scenario

Hello!
A customer has classic scenario and creates shopping carts using only cost center as account assignments in SRM.
When the PO is created in ERP's backend, sometimes a purchaser changes the account assignment to Asset("A").
The account assignment changed in ERP is not reflecting in the shopping cart and the result is that the requester can not make a goods receipt in SRM because the account assignment does not match the PO.
Does anybody knows what shall be done so the account assignment in SRM is updated according to ERP?
Shall I use BBP_DOC_CHANGE_BADI?
Thanks in advance!
Best regards,
Karin

Hi Karin,
As Mithun rightly said, the changes made to the PO will not be reflected in the SC not just in Classic but in Extended Classic Scenario as well.
We create a Confirmation against a PO and not against SC, so it is not necessary that the SC needs to be updated.
Is the system allowing the creation of the Confirmation or is the error coming up when the confirmation is being posted on the backend system?
Can you check the SLG1 in SRM for the error that it is triggering when the PO is changed?
Regards

Similar Messages

  • How to not retriggered output type when changes are made in Purchase Order

    Hi All,
    Could you let me know how can I resolve this one?
    We have a custom output type. Now this output type should NOT be automatically retriggered if a change is made to the document/purchase order. Currently the system automatically repeating the output type for every change made to the document/purchase order. But there is still an option for the user to be able to manually repeat the output.
    TIA

    Hi,
    1.In order to restrict the output type to trigger you need to write the requirement routine in transaction
       VOFM> requirements>output control.
    2. create the requirement routine in application EF and write the required logic and pass the sy-subrc EQ 4 if you not require to trigger the output type and pass sy-subrc equal 0 to trigger the output type.
    3. assign this requirement routine to custom output type.

  • IWEB does not delete old pages on  .mac account when changes are made.

    I deleted one "movie" page and added a different one via IWEB. I changed the name of the site. I saved it to a folder on my drive and updated the .mac account.
    When I checked my .mac folder, WEB>Sites>IWeb contains a folder with the new site name. That folder contains each of the pages and associated folders, html's.
    However, using a previously saved .html, I can still access the old named web site which contains the un-desired deleted page. That deleted page and the entire site funtion as though it was never removed.
    This "removed site" and all its pages does not appear any place in the .mac account's file listings.
    What is happening that I can't remove a page using the procedure listed in the IWEB documentation?
    Anyone have any thoughts?

    However, using a previously saved .html, I can still
    access the old named web site which contains the
    un-desired deleted page.
    Was the old site also produced by iWeb? Why are you "saving to a folder on your drive and updating the .mac account" instead of publishing directly into .Mac?
    That deleted page and the
    entire site funtion as though it was never removed.
    This "removed site" and all its pages does not appear
    any place in the .mac account's file listings.
    Are you sure they are not in the Sites folder used by Homepage? What is the url?
    If they really are not anywhere on your iDisk, then perhaps they are being cached somewhere and will eventually disappear.

  • Is there a way to create a file merge that updates from the original source file if changes are made?

    I have thousands of PDF documents that are merged with other files. I'll give an example so it's easier to understand.
    File #1 may be merged (or in a portfolio) with Files #2 and #3 but also in another merge (or portfolio) with Files #3 and #4.
    If I update File #1, is there a way for it to automatically update both of the merge or portfolio files with the updated File #1? (File#1 would be replaced, same name and location).
    I'm using windows and Adobe Acrobat Pro

    You would need to add favorites to the WebHelp output prior to creating a CHM. You would need something along the lines of: http://www.wvanweelden.eu/product/favorites-widget-webhelp
    But since it's in a CHM, I'm not sure whether you will be able to save anything from the webhelp output between sessions.
    Kind regards,
    Willam

  • Automatically update a 'Last Updated By' field when changes are made a database record.

    Basically I'm building a database app using mySQL and PHP.
    I'm from a design background, rather than a techie one, so I'm far
    more comfortable using the DW and phpMyAdmin parts, but less so
    with any code.
    We want to have a 'Last Updated By' field that automatically
    populates with whoever created or last edited a record.
    What's the best way of achieving this?
    I've looked at some mySQL stuff, but all looks a bit over my
    head to be honest. Have a table of Users in phpMyAdmin - not one as
    part of the database, but under privileges - so where 'root' is,
    plus another couple I've added.
    In the web directory, I just have a standard connection file
    that looks like :
    <?php
    # FileName="Connection_php_mysql.htm"
    # Type="MYSQL"
    # HTTP="true"
    $hostname_connDevelopments = "localhost";
    $database_connDevelopments = "developments";
    $username_connDevelopments = "root";
    $password_connDevelopments = "password";
    $connDevelopments =
    mysql_pconnect($hostname_connDevelopments,
    $username_connDevelopments, $password_connDevelopments) or
    trigger_error(mysql_error(),E_USER_ERROR);
    ?>
    But how do I do it so that people log in to the database?
    Alternatively, can I just use DW's log in (ie log in to
    particular pages, rather than users log in to the database, using
    database privileges?
    And from there have a hidden field in my insert and update
    pages that's set to the current user, and that value can then be
    inserted in the table?
    Any help or pointers with this greatly appreciated.
    Cheers.

    Thanks David. That sounds about right - the last app I did
    was an online photo library, and used the Log In stuff for that.
    With this one, we want to track changes, as we'll follow the
    progress of the developments from early info right through to
    completion - hence last updated, and last updated by fields.
    So I figured it should be do-able as an extension of the log
    in stuff, ie pass the stored current user somewhere.
    Regarding security - this is just a local app running on an
    internal server, rather than out there in the wild.
    To test it out, I've added a 'LastUpdatedBy' field to my
    other app, and added in a hidden field in my update page :
    <input name="LastUpdatedBy" type="hidden"
    id="LastUpdatedBy" value="$_SESSION['MM_Username']">
    I have the code that does the inserting :
    if ((isset($_POST["MM_update"])) &&
    ($_POST["MM_update"] == "form1")) {
    $updateSQL = sprintf("UPDATE Photos SET Link_ID=%s,
    Title=%s, Rights=%s, Rights_Details=%s, Credit=%s, Width=%s,
    Height=%s, Year=%s, Supplier=%s, Photo_File=%s, Orientation=%s,
    Admin=%s, Region=%s, Country=%s, Easting=%s, Northing=%s,
    LastUpdatedBy=%s WHERE Photo_ID=%s",
    GetSQLValueString($_POST['Link_ID'], "text"),
    GetSQLValueString($_POST['Title'], "text"),
    GetSQLValueString($_POST['Rights'], "text"),
    GetSQLValueString($_POST['Rights_Details'], "text"),
    GetSQLValueString($_POST['Credit'], "text"),
    GetSQLValueString($_POST['Width'], "text"),
    GetSQLValueString($_POST['Height'], "text"),
    GetSQLValueString($_POST['Year'], "text"),
    GetSQLValueString($_POST['Supplier'], "text"),
    GetSQLValueString($_POST['Photo_File'], "text"),
    GetSQLValueString($_POST['Orientation'], "text"),
    GetSQLValueString($_POST['Admin'], "text"),
    GetSQLValueString($_POST['Region'], "text"),
    GetSQLValueString($_POST['Country'], "text"),
    GetSQLValueString($_POST['Easting'], "text"),
    GetSQLValueString($_POST['Northing'], "text"),
    GetSQLValueString($_POST['textfield'], "int"),
    GetSQLValueString($_POST['LastUpdatedBy'], "text"));
    The bits in bold I've added for the LastUpdatedBy - but no
    joy - that's entering $_SESSION['MM_username'] into the table.
    What should the syntax be?

  • Find and replace in files does not refresh when changes are made

    Using RH10, I search for a term with the Find and Replace Options pod. I use the Find Results list as a reference only, and open each file from the Topic List. I do this instead of opening the topics from the Find Results tab because I want to see the WYSIWYG changes. Anyway, I make my edits and delete the search term from each topic. Then, to make sure I have done all the work, I run the search again. I expect to see no or at least fewer matches than before, but I still get some or all of the same results as before, even though I double-check the Design and HTML views of the topics and even check the source of a topic separately in Notepad, all indicating that the search term is gone from the topic.
    There is some ridiculous lingering or echo going on. I make sure to select Look in: <Current Project>, and the paths of all the Find Results files are fine. How do you refresh the search so that this echo doesn't occur?
    Also, I close the Find and Replace Options pod, reopen it and start the search again, and the same results are there.
    Message was edited by: DMilkes

    Hi there
    To avoid the message about the file being modified, close all topics in the editor before commencing with any find and replace operations. The message is produced because you have the aforementioned topics open in the editor.
    As you mention "Find and replace in files", I'm guessing you are referring to version 8. I just opened version 8 and performed a find and replace to confirm. There is a button allowing you to clear all.
    On the clicking and dragging to create a link, it's never worked that way. You simply cannot drag from the Topic List pod to do it. But you can from the Project Manager pod. Perhaps you should consider submitting a Wish Form to ask for the ability to click and drag from the Topic List pod to create links.
    As far as rearranging your topics into different folders, as long as you do it from inside RoboHelp you shouldn't be destroying any links. RoboHelp will update references for you as you move things around. The only issue is if you are automatically creating your TOC structure based on the project structure. But usually that's a one time shot. From there forward you just manage things using the TOC editor.
    Hopefully this helps... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • AUTO POPUP OF NOTE CREATION WHEN CHANGES ARE MADE TO CUSTOMER/VENDOR

    Hi,
    When you change Customer/Vendor by VD02/XD02/MK02/XK02 there is the Object Services Toolbox for Object functions next to the title. I'd like the 'Create note' screen to popup as soon as the Vendor or Customer change is being saved. Can you help me?
    Rgrds,
    Gyurka

    Hi,
    When you change Customer/Vendor by VD02/XD02/MK02/XK02 there is the Object Services Toolbox for Object functions next to the title. I'd like the 'Create note' screen to popup as soon as the Vendor or Customer change is being saved. Can you help me?
    Rgrds,
    Gyurka

  • Limit cart unknown Account Assignment Not picking Approval email id

    Hi All,
    when i am trying to create a Shopping cart with unknown Account Assignment, at first instance approval email id  is not picking. When i made some changes in the item data (say Descrtiption ) it is picking the approval email id. in SRM
    We are SRM 5 to 7 upgrade, In SRM 5 there is a note to 974239 which will solve the issue. But the note is valid forSRM 7 EHP3 Version.
    Can any one help me in giving the latest note.
    Many thanks in advance.
    Regards,
    Charan M

    Hi
    <b>Related links/ SAP OSS Notes to check out -></b>
    Note 861889 - Limitations on limit and service PO's in case of ECS
    Note 1046593 - Limit PO - Unable to delete and create new item
    Note 966323 - Service Item: Not able to create PO in ERP backend
    Note 969077 - LIMIT:SC with Account Assignment Unknown and IR_IND checked
    Note 1000184 - Account assignment error when document transfer to back end
    Note 1052892 - Account Assignment not visible for Limit Shopping Cart
    Note 933618 - Multiple account assignments for limit item are lost
    Re: Limit PO(Item category D instead of B)
    SE 518 No account assignment exists for service li ne 0000000000
    Creating SC with Dummy Account Assignment
    Re: Account assignment on SRM
    Re: Problem on account assignment
    Re: Account details not coming while creating a Shopping Cart with Limit Item
    LIMIT SC
    <u>Other related details -></u>
    Use Screen variants (Transaction - SHD0) to change item overview and search result screens.
    BADI - There is one BADI to hide/show some SC item creation links, there is one BADI to control screen details of PO, CTR... but not SC (and not external screens).
    So, as usual, identify the template and change the HTML code in SE80.
    To implement a more complex logic, like the default check box, change the ABAP code (usually in the PBO), if required.
    Do let me know.
    Regards
    - Atul

  • PO not updated in SRM

    Hi SRM Experts,
    We are in SRM2.0 with classic scenario.
    The PO created in R/3( from Pur Req.) after Shopping Cart approval is updated back to SRM. This PO is then deleted and another PO is created from the same Pur.Req.
    Now the Deleted Status is updated back to the SRM but the newly created PO is not updated even after running BBP_GET_STATUS_2 job.
    As the new PO is not updated in SRM, Confirmation is not possible.
    Any clue on how to proceed for this issue ?
    Thanks & Regards,
    Ram

    Hi
    Please use report CLEAN_REQREQ_UP as well.
    See some other useful related links ->
    BBP_PDBEI missing item number
    Classic scenario: Update shopping cart with changes in backend PO?
    Update Document History in Shopping Cart
    Mismatch in EBP and backend SAP system
    Note 890319 ActualValues in SC from back-end documents are not deleted
    Note 631619 BBP_GET_STATUS_2: Number of data records updated
    Note 636527 BBP_GET_STATUS_2: Incorrect references
    Note 508819 Status, UI adjustment, BBP_GET_STATUS_2
    Note 494036 BBP_GET_STATUS, BBP_STATUS_READ: several problems in backend
    Hope this will help. Do let me know.
    Regards
    - Atul

  • Unknown Account Assignment Not Defined for Use Here

    SAP Guruu2019s
    I am trying to convert a purchase requisition to a purchase order via MD03 and am getting a u201CUnknown Account Assignment Not Defined for Use Hereu201D.  I have checked and rechecked the MM and I do not see anything missing or unusual as far as I can see.  This shipment is for a new plant and distribution channel.
    Does anyone know what configuration step I have missed or need to change/update?
    Thank you.

    Thank you for responding VR.
    Where do I check the account assignment.  What TC?
    What am I looking for?
    My other plant ships fine buy having problems with this newly created one.
    Thank you.

  • Account assignment not possible (Asset not assigned to a business area)

    HI
    While posting an asset acquisition through F-90 by entering Business area, doc.type AA,TT-100,PK-70, i am getting the error messege AA483 - "Account assignment not possible (Asset not assigned to a business area)".
    I have correctly created asset master and assigned Business area and Cost centre.
    And i am not getting any problem in another company code for same asset class.
    Please suggest
    Bhanu Prakash

    Hello
    Assets are assigned to a single business area in their master record. Every posting to an asset balance sheet account is automatically posted to that business area. The business area for an asset is passed on to all line items connected with the asset. Therefore you do not need to make a manual account assignment for a business area at any point.
    http://help.sap.com/erp2005_ehp_02/helpdata/en/5f/1fac7c4aee11d189740000e8322d00/frameset.htm
    Check the info on the link please
    Reg
    assign points if useful

  • Account assignment not possible - item not yet calculated

    Dear SAP Gurus,
    While creating the Shipment Cost Document I am receiving following error.
    Account assignment not possible - item not yet calculated
    Message no. VY081
    When I double click on the Item to enter the conditions the screen goes blank at the item level. Kindly let me know if there is anything missing.
    Thanks and Rgards,
    Shehryar

    Hi,
    Please check below config.
    LETransportationShipment CostsShipment Cost DocumentShipment Cost Types and Item Categories.
    Hope it helps you
    Rgds,
    Kris.

  • Auxiliary Account Assignment not possible

    When i am creating PO with Account category A for Asset Procurement  at the time i assigned Asset master then system giving following error.
    "Auxiliary Account Assignment not possible, remove entry'
    Err No.AA449
    Regards
    Venki

    Hi
    Message No AA449 shows ""Auxiliary account assignment to asset not possible, remove entry""
    Hence check your entries
    Thanks
    Srinivas

  • Account assignment not editable in me22n

    Hi All,
    How to do Account assignment not editable (Means GRY ) in me22n.
    Regards,
    Vivek

    hi Vivek,
    You cant change the Account Assignment,
    you should delete the item and add the same with desired
    Account Assignment..
    Best Regards
    Reward please if found useful

  • My account has not updated new prepaid account

    opened a new Prepaid mobile added to my account which has not happened also had alot of trouble rechargeing with Voucher because the my account was not showing after number of phone calls to Telstra and being told by robot can't do that ring this number same answer rang again and used a different answer got through to overseas call centre very nice but had np idea what i wanted recharge my prepaid finally someone worked out to recharge with voucher.My problem now is my account still has not updated so I can recharge more when needed???

    Hi shooterau,Try phoning Pre Paid on 1258880 and asking for technical support. 

Maybe you are looking for

  • Problem opening Organizer in PSE8

    I bought Photoshop Elements 8 and Photoshop Premiere 8 last year. Install them on my laptop and they worked fine. Three days ago, I was trying to open Photoshop Elements when I ran into problem. When I clicked on Elements ,it opened, and I got the wi

  • Macbook Pro USB issue

    Hi All; I saw lots of discussions about USB problem of Macbook Pro, and i tried maybe all suggestions,  i couldnt solve USB issue I bought my Macbook Pro 13 inc, 500 GB, i5, OS X Lion, 2 days ago and this is my first Mac ... I cant see my external di

  • Query for total size of the spatial data

    Hi, I found some posts to determine the size of the spatial table but is there a query I can use to determine the exact size of my spatial column. I have about 2 mil. geometry points and I would like to know exactly how many bytes it is. Thanks in ad

  • EA2 - Issues with Reconnection after DB restart

    The support for lost connections in SQL Developer (ie if the DB is shutdown and then restarted) is improving, but there are still some problems. EA2 JDK 1.6.0_04 Basic connection types Don't save passwords on connections In the SQL Worksheet, most th

  • Default dictionary keeps reverting, please help!!!

    I am running Firefox 9 on Windows 7. I use the spell check very often and I love it. However, I have changed the default dictionary to UK English but every time I close firefox it changes it back to US English. I have even resorted to deleting all ot