Whether Shopping cart delivery date can be in past date!!

Hello SRM Gurus,
There is a requirement from my customer, it may be strange.
The requirement is : Shopping cart (requestor) should be abe to save having delivery date as a past date  and  PO in SRM with same past date.
Is there any BADI available or programming is required?
Pls post your sugesstions.
Regards
Madhan

i think you can do this config . 584 message ready made available for you as E . now you can turn to W
and do lot of testing for entire procurement cycle.
.. it may give some trouble approval time too. check it up
IMG activity 'Influence Message Control' (Enterprise Buyer -> Cross-Application Basic Settings -> Message Control):
Select the line with business object BUS2121 and double-clicking on 'Message Control'.
                    Message cl:   BBP_PD
                    No. :          584
                    Text:         W
Save the new entry.

Similar Messages

  • Re-calculation of Shopping cart delivery date.

    Hi,
    I have a requirement wherein , i have to do some calcutaions on the delivery date of the shoppinng Cart based on the approvals.
    we are currently on SRM 5.0.
    The scenario is ,When a shopping cart is created a Delivery date is determined for the same. If an approval takes 2 days later, 2 more days should be added to the delivery date.
    Please let me know whether there is a BADI through which this can be implemented.
    Thanks & Regards
    Thamilselvan

    Hello,
    DOC_CHANGE_BADI will be triggered while creating the shopping cart.
    During its approval, you cannot change the delivery date according the date that approver is approving the cart.
    You could implement something like this in your CHANGE_BADI to change the delivery date while creating the cart:
    *item data
    loop at it_item into ls_item_import.
    ls_item_import-deliv_date = sy-datum + 2.
    move-corresponding ls_item_import to ls_item.
    append ls_item to lt_item.
    endloop.
    Then, you can change message BBP_PD 584 to warning via message control.
    Kind regards,
    Ricardo

  • Shopping Cart Delivery Date (Required on) calender is blank

    Hi Guru,
    I have a problem when creating shopping cart by describing requirement.
    Txn.BBPSC02
    Shop >Describe requirement >
    Fill the description,Quantity,UoM,Price,Currency,Product Category.
    Now I need to select the date (system date is default) so I am clicking on the calendar to choose the date.
    But the pop up window (calendar) is showing blank and I couldn't select any date.
    Can any one help me how to fix the calendar . Any input appreciated.
    Thanks in Advance.
    Pradeep

    Does this only happen for one specific user or one specific transaction ?
    You could  set a BP at FM: DD_SHLP_GET_HELPMETHOD to check.
    PG:LSDSDU04
    perform get_interface_syst_values changing shlp.
    CALL FUNCTION 'DD_SHLP_GET_DIALOG_INFO'
          CHANGING
             shlp    = shlp.
    In our system shlp has value:
    SHLPNAME     C     30      CALENDAR
    SHLPTYPE     C     2      CA
    shlp-INTERFACE
    SHLPFIELD     C     30      _DATE
    VALTABNAME     C     30      BBPS_SC_APP_ITEM
    VALFIELD     C     132      DELIV_DATE
    VALUE     C     132                                                                               
    INTERNAL     C     1                                                                               
    DISPFIELD     C     1                                                                               
    F4FIELD     C     1      X
    shlp-FIELDPROP[1]
    FIELDNAME     C     30      _DATE
    SHLPINPUT     C     1      X
    SHLPOUTPUT     C     1      X
    SHLPSELPOS     N     2      00
    SHLPLISPOS     N     2      00
    SHLPSELDIS     C     1                                                                               
    DEFAULTVAL     C     21                                                                               
    Regards
    Lauren

  • Shopping cart delivery address not transferred to ECC PR

    Hi Forum,
    We recently upgraded from SRM 701 to 713 and to ECC EHP6. After upgrade the SC Delivery address is not getting transferred to back end PR instead the PR shows Plant address as delivery address. As per this wiki article
    Shopping Cart Delivery Address transfer from SRM to ECC - Supplier Relationship Management - SCN Wiki
    the standard behavior is that SRM Delivery address should be transferred to PR but to our OSS SAP replied that standard behavior is opposite i.e.
    PR Takes Plant address as delivery address as default.
    Response from SAP:
    Please see that the standard fields of EMLIF and LBLKZ are not
    available in BAPI structures. This is the standard functionality of
    BAPI_REQUISITION_CREATE.
    If you are using a release newer than Release 4.7 , which I believe
    you are , you can use BAPI_PR_CREATE instead. However , this is not
    possible using BAPI_REQUISITION_CREATE.
    I am sorry that I do not have a better answer for you at this time but
    the behavior that you are experiencing is standard SAP system design.
    Q1. What is the standard behavior - SC Delivery address is transferred to PR or Plant address is used in PR?
    Q2. What are the changes required to transfer SC Delivery address to back end PR?
    Thanks,
    Anubhav

    Hello Anubhav,
    Its unfortunate that SAP has not  tested the transfer of Delivery Address from Shopping cart to ECC Requisition.
    SRM uses BAPI_REQUISITION_CREATE  which is deprecated in the newer releases of ECC.  This is why the Delivery address is no longer transferred to ECC.
    Check this note:2132886 - BAPI_REQUISITION_CREATE - Delivery address is not updated
    Interestingly I found another note in SRM area which asks customers to themselves implement a call to BAPI_PR_CREATE to fix such issues.
    Check note:2108097 - Shopping cart transfer to ECC fails when using BAPI_REQUISITION_CREATE
    We have an upcoming Go Live with SRM 7.13/ECC 6.17 and I just noticed that Delivery address from Cart is not transferred to ECC Requisition.
    I have to rush an urgent change due to this.
    I dont know what else data is not being transferred without detailed testing.
    Thanks,
    Sushil.

  • Shopping cart - runtime data

    Hi All,
    We are using ISA on ECC.
    How to obtain shopping cart runtime data?
    Like how many items are present in the cart, total value, ...
    Suppose we are in product catalog page and add an item to the cart, can we get the current shopping cart data?
    Thanks and regards
    Aarthi

    Hello Aarthi,
    It is technically possible to always access almost any business object and the related information in any JSP. The UsersessionData object (which is a session context object) is available in all the JSPs. You can get the metaBOM and get any BO from the BOM. See order.jsp for some sample code to get SalesDocumentHeader from usersession --> BOM --> Order BO (Sales document) --> to header.
    You must include appropriate import statements in your JSP. The list below is just an example. Figure out what else you may need.
    <%@ page import="com.sapmarkets.isa.businessobject.*" %>
    <%@ page import="com.sapmarkets.isa.businessobject.item.*" %>
    <%@ page import="com.sapmarkets.isa.businessobject.order.*" %>
    <%@ page import="com.sapmarkets.isa.businessobject.header.*" %>
    The scriptlet below will give you an idea what needs to be done.
    <%
    BusinessObjectManager bom =
      (BusinessObjectManager) userSessionData.getBOM
      (BusinessObjectManager.ISACORE_BOM);
    salesDoc = bom.getBasket();
    HeaderSalesDocument  header = salesDoc.getHeader();
    ItemList items = salesDoc.getItems();
    %>
    From the size of the items you can determine the actual number of items in the cart.
    If you want to know about the Minibasket and how it gets displayed and gets the values (in B2B), see my replies in this
    Re: item number display in header.jsp
    Easwar Ram
    http://www.parxlns.com

  • Can I sort my Shopping Cart by Date Added?

    I have quite a few songs in my shopping cart and I want to sort them all by the Date I added them to the shopping cart. Currently I can sort by name, price, album, artist, etc... all standard... but I can't see how to add a Date Added sort to the Shopping Cart itself.

    Sorry, but you can't.
    Note that it's not a good idea to use your Shopping Cart for long-term "wish list" storage. There is to strong a possibility that a change to or removal of an item will corrupt your Cart. If you want a "wish list", create a normal playlist and drag the tracks you want to remember into it from the iTunes Store. That will save them for future purchase. Don't leave anything in your Shopping Cart unpurchased for more than a day or two at most.

  • Why shopping cart created date is save with difference in hours?

    I created a shopping cart at 04.09.2008 12:14.
    But when I execute the FM BBP_PD_SC_GETDETAIL to obtain the detail data, I see in E_HEADER-CREATED_AT field the datetime 04.09.2008 17:14:36 and E_HEADER-TZONE field = "CST".
    The time zone is correct (CST is the system's time zone), but the datetime should be saved with 04.09.2008 12:14:36
    Can somebody tell me how to synchronize this datetime? Or why the system is saving the datetime with 5 hours of difference?
    Edited by: Juan Alonso Valenzuela Rodríguez on Sep 4, 2008 7:46 PM
    Edited by: Juan Alonso Valenzuela Rodríguez on Sep 4, 2008 8:53 PM

    Hi
    Hope that you would have checked this settings.becareful here if you made any changes it may reflect all the clients too.
    General Settings>Time zones>Maintain System Settingscheck with Basis consultants and cross check for your country in SC. There could be impact depends upon the country settings in spro done by fico people.
    regards
    Muthu

  • Shopping cart with Asset can not create backend PO in SOSC

    Dear Expert,
    We are using With SRM 7.0 & ECC 6.0 EHP4 , the shopping cart with account assignment cost center can create backend PO in SOSC, but the shopping cart with account assignment Asset can not create backend PO in SOSC.
    The xml message is correct in SRM, but not correct in ECC.
    Your help is very appreciated....
    Best Regards,
    bill

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • Can't access iTunes shopping cart.  Who can help?

    For some reason I can not access my iTunes shopping cart. It shows me how much money I have to spend, but I can't see any of the songs that I have added to the shopping cart. Has anyone ever had this problem? Please advise ASAP. I'd like to buy some music.
    Thanks
    Dell   Windows XP  
      Windows XP  

    If your getting some error message Id recommend emailing the music store about this issue, as USUALLY issues with the shopping cart are caused on apples side. you can goto the link below, roll to the bottom and fill out a email form to the music store
    http://www.apple.com/support/itunes/musicstore/download/

  • Whether Shopping cart will be updated when the PO quantity is changed

    Hello SRM Guru,
    I have one question.
    When the PO quantity is changed after the shopping cart was approved Whether this changed quantity will update the  Shopping cart ?
    Technical Scenario : extended classic
    system: SRM 7.0 SP6
    Regards
    Madhan

    Hello,
    If PO is created from shopping cart, this means that shopping cart is fully approved.
    After shopping cart is fully approved, no changes are allowed. Therefore, if PO quantity is changed, this value will not be updated in shopping cart quantity.
    Regards,
    Ricardo

  • Shopping cart delivery address

    Hello
    We are experiencing following problem with shopping cart:
    We want delivery address to be taken from backend as default (storage location) –(this part is working fine) BUT if we manually overwrite the delivery address at item-level in the ShoppingCart, this manually created address must be taken into account (this scenario is not working, the manually created address is always overwritten by default).
    Have any one faced this problem before, please advise.

    hi,
      Pls see the foll notes fro transferring the SRM new deliver addr to R/3.
    -->767461 Transfer of ship-to address to back-end system
    -->576665 EBP R/3 - no generation of delivery address for each item
    The note 576665 is for your R/3 backend system.
    BR,
    Disha.
    Pls reward points for useful answers.

  • SHOPPING CART-DELIVERY ADDRESS(NAME- DISABLE)

    Hi,
    Iam using SRM7.0.During Creation of SC,Delivery Address -NAME Field is disabled.Before it used to Work perfectly.All other fields in Delivery Address are in Enable mode.
    Please can you say your suggestions regarding the issue.
    Thanks,
    Anitha Averneni

    Hello Anitha,
    Could you please check following way
    SPRO --> SRM Server --> Cross- Application basic settings --> Extension and Field Control --> Configure Field Control --> Configure Control for Fields of Substructure --> Metadata for Fields of Substructures and Table-Like Enhancements.
    In this If you see Set Type (07 - Partner) - Structure Field Name as (Name) and Object Type as BUS2121. If in there check box "Field Editable" not checked then your field will be greyed out.
    Please check the same.
    Thank you
    Ritesh

  • I 've deleted my amazon shop cart.  How can I reload?

    I've tried to reload my kindle and kindle shop with no success.  It either says 'waiting' or wrong address.also did a soft restart.  Please help!

    A secondary/alternate email address is not the same as a rescue email address, which is where you can send reset info to.
    If you have a rescue email address on your account then go to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you should see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you won't get the reset option - you will need to contact iTunes Support or Apple to get them reset.
    e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then 'Forgotten Apple ID security questions'
    or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5312 . Or you could change to 2-step verification : http://support.apple.com/kb/HT5570

  • Delivery date in shopping cart

    While creating a shopping cart, delivery date displayed is the current
    date.It is not taking into consideration the planned delivery time
    maintained in the material master in backend R/3

    Hi
    Which SRM version are you using ?
    <u>Yes it is default standard SRM behaviour.. It is correct..</u>
    <b>Incase you want to make changes to the delivery date, then using BBP_DOC_CHANGE_BADI, this can be easily done.</b>
    P.S.: Please read the standard SAP documentation of this BADI using SE18 Transaction.
    Hope this will help.
    Do let em know.
    Regards
    - Atul

  • Delivery address - in shopping cart

    Hello ,
    Is it possible to populate the shopping cart delivery address on real time basis by picking the storage location address from SAP R/3 backend?
    If yes, which function modules / BADI can be used to achieve the same?
    Thanks ,
    Rama krishna

    Hello Rama krishna,
    You can create a FM in R/3 with logic of picking up  the storge loaction address.
    Call the same FM with RFC destination in BBP_DOC_CHANGE_BADI .
    And Modify et_partner  of partner_fct = '00000027'  with storge location address .
    Hope it helps.
    Regards,
    Neelima

Maybe you are looking for