Line Sort order differs from Shopping Cart to PO

All :
A number of shopping carts are raised on the back of a quotation received from vendors.
Where these quotes require a multi line Purchase Order, we enter the data in the same sequence as they appear on the quotation.
The Purchase Order should also therefore reflect the same sequence. For some reason this does not happen.
EG shopping cart shows items:
1st Line 30 Green Widgets
2nd Line 50 Blue Widgets
3rd Line 900 Red Widgets
BUT PO shows:
1st Line 50 Blue Widgets
2nd Line 30 Green Widgets
3rd Line 900 Red Widgets
Is there some setting I am missing somewhere? Or is there some sort of arcane sorting going on in the background that I don't know about.
Thanks for your time guys
Adrian

Hi
<b>Seems like a bug in the BAPI call at R/3 side.The sorting incase of multi line Purchase Orders is not happening correctly. Please give some more details.</b>
Please report the same bug to SAP by creating a OSS message as well, for faster processing of the query.
Regards
- Atul

Similar Messages

  • Is it possible to sort dimension values in order different from alphabetic?

    Is it possible to sort dimension values in order different from alphabetic. &#1058;&#1086; use this sorting in BI Beans. In 10g r2 with awm 10.2.0.2. I try to add attribute like it was show in this forum, but nothing changes.

    Could be usefull if you use java AW api... here's the java code I'm using to create the sort_order attribute
    Dimension myDim = yourAW.findDimension("DIMNAME");
    Attribute myAttr = myDim.createAttribute();
    myAttr.setName("freename");
    myAttr.setClassification("DEFAULT_ORDER");
    myAttr.setIsDefaultOrder(true); // TO NOT FORGET
    myAttr.setDataType("INTEGER");
    myAttr.Create(AWConnection);
    globalAW.Commit(AWConnection);
    It creates a variable - integer - that defines the default order of the dim values. I'm viewing it with AWM and BIBeans. The order is respected with Level-based and Value-based hierarchy but my hierarchies are really simple and unique for all the dimensions.
    BUT !!!! Be carefull, if you don't have any hierarchy in your dimension, you must have at least one level - the default NONE level. Otherwise, it won't work ???

  • Reservation not getting created from shopping cart for stores order.

    Hi experts,
    Reservation not getting created from shopping cart for stores order,process used is some custom BADI.Extended classic scenario is the procrss .
    Please help me
    Thanks in  advance.

    Hello,
    please check below wiki:
    Determination of the follow-on document type
    Regards.
    Laurent.

  • Auto creation of po from shopping cart

    hai gurus
    Iam in SRM 5.o,CLASSIC Scenario.
    In configuration for "Auto creation of po from shopping cart"i  have given "purchase order if item data complete,otherwise PR"in  SPRO>SRM>srmserver>cross application basic settings>Define  objects in Backend(PR,PO,requisition)
    So shopping cart is been created with PUR org,PUR GROUP,Vendor tax code,account assignment etc,but  purchase requisition is created and not  purchase order.Is there any  settings left over
    Thanks in Advance
    chandra

    Hello Chandra,
    You also could use the PR (in ECC) and try to convert it into a PO (ME57). If it asks you for some additional data (e.g. vendor, price, ..) this might indicate, that it is missing in the SC.
    Also, you could try and debug transaction ME59 (auto PO creation) to see, what's missing/checked.
    Good luck.
    Franz

  • Changing line item delivery address in shopping cart need to reflect same in all line items

    Hi All,
    Need help on below,
    I have a requirement that when we change the shopping cart line item delivery address same needs to reflect all line items.
    Suppose a shopping cart having 3 line items 1, 2 and 3. if i change the delivery address of line item 1, the same needs to reflect the line item 2 and 3 as well.
    In my case  if we change the 1's delivery address, after processing its genrating the IDOC on line item wise not in the header wise. And same having the different delivery address.
    Thanks in advance.
    regards:
    Ramesh

    Hello Ramesh,
    we can do this changes in BBP_DOC_CHANGE_BADI . Create a Implementation for the above BADI and Inside that Implementation BADI method just call the function module BBP_PD_SC_GETDETAIL for SC item details by passing the Header GUID.
    Once you get the Partner table(E_PARTNER) details.. Keeping a loop on SC item(E_ITEM) and change address number(ADDR_NO) in Partner table when Partner function eq X( X is an partner function values which you define in SPRO.).
    pseudo logic:
      CALL FUNCTION 'BBP_PD_SC_GETDETAIL'
        EXPORTING
          i_guid    = l_guid
        TABLES
          e_item    = lt_item
          e_partner = lt_partner.
    * Check for all the line items if vendor is assigned
      LOOP AT lt_item INTO lwa_item.
        READ TABLE lt_partner INTO lwa_partner
                          WITH KEY partner_fct = '00000019'
                                   del_ind     = space
                                   p_guid      = lwa_item-guid.
        IF sy-subrc eq 0 .
       * modification of address number logic here in partner table
        ENDIF.
      ENDLOOP.
    All the best.
    Regards,
    Sankarbabu

  • Sales order number in Shopping cart related documents tab.

    We are using SRM7.0 with classic scenario. Client wants to see the Sales order number (Created in Backend) for the backend PO in shopping cart Related documents tab same as other history like Confirmation and Invoice.
    How to update the sales order number to shopping cart? is there any BADI ? Please help me..
    Thanks Lot
    Srini.

    Thanks for Reply
    I have already tried validation and sub situation but that is not working and second is it is related to FI GL line item so SD consultant cant help i  that.
    Regards
    Shayam

  • SRM Reservation Grouping from Shopping cart

    Hi,
    We are  creating a backend reservation for when a material is ordered in the shopping cart and at the moment the shopping cart creates one reservation per line. I would like the whole shopping cart to actaully create one reservation in the backend. Does anyone have any advice as to the best method to use to acheive this?
    Thanks
    Andrew

    Hi Andrew,
    I don't know your SRM release, but in SRM 5.0 the reservation split is executed here:
        class:            CL_BBP_SC_TRANSFER
        method:         SPLIT_RESERVATION
    (you can check it in the transaction SE24).
    Here you can see to logic why your reservation is spitted.
    Anyway, you can override the standard logic and group the items in the BAdI BBP_RESERVATION_GRP.
    Regards,
    Peter

  • How to get Products from Shopping Cart(Basket) in ATG

    I want get all products from shopping cart
    can any one help on this requirement?
    Thanks in Advance.

    Hi ,
    If you want directly JSP , use the droplet as suggested correctly by shaik,
    If you want it in java code,
    A good way is to make a Droplet ( global scoped ) and pass the current shopping cart to the droplet.
    eg :
    <dsp:droplet name="MyDroplet">
    <dsp:param name="inOrder" bean="/atg/commerce/ShoppingCart.current"/>
    OR
    <dsp:param name="inOrder" bean="/atg/commerce/order/purchase/CartModifierFormHandler.order" />
    <dsp:oparam name="output">
    </dsp:oparam>
    </dsp:droplet>
    and in the droplet java file you can use it as :
    CommerceItemContainer inOrder = (CommerceItemContainer) request.getObjectParameter("inOrder");
    and you can use inOrder.getCommerceItems(); to get a list of commerce items from order.
    You can directly get the order in your droplet ,but then you will have to make it request scoped , making global scoped droplets is good practice.
    ~Praveer

  • Error in creating PO from shopping cart

    Hi,
    While creating PO from Shopping Cart in SRM, we are getting the error message "Net price must be grater than 0" and the PO is not getting generated.
    Is this issue is somewhere related to maintainance of pricing conditions? if yes, how can we maintain that?
    Regards,

    Hi,
    Are you creating PO directly from shopping cart or through PR.If through PR (Purcahse requisation) then chack the valution price in valution tab in PR (ME53N)
      PO directly from shopping cart then check the price in Basic data of the shopping cart.if price is there it should reflect in PO.Check your shopping cart free Zero value shopping cart.

  • Regarding Removal of filed from Shopping Cart Extented Search

    Dear All,
    We have a requirment where we need to remove a field from shopping Cart Extended Search. Field name called "Role" has to be removed.
    Could some one let us know,  how to  remove the field?  we observed that BADi  CUF is being not triggered to suppress this field. And also we would like to know what is the Field name or Sturucture we need to remove.
    Waiting for  your response.

    Hello Amarnath,
    >
    amarnath g wrote:
    > (...)
    > we are on SRM version 5 ( SRM_SERVER 5.5). Does this imply to this release as well? (...)
    I think so. But to be sure, have a look at ABAP code for concerned Dynpro PBO.
    >
    amarnath g wrote:
    > (...)
    And also I would like to know wheter can we add a custom field  to the search Criteria.....
    Yes, but you will have to manage it in search structure GS_SEARCH_FIELD.
    Regards.
    Laurent.

  • DEQUEUING ORDER DIFFERS FROM ENQUEUING ORDER,URGENT ONE, PLS HELP

    Hi ,
    we are using ORACLE ADVANCED QUEUING for queue functionality.
    our Oracle version is Oracle 8i release 8.1.5
    Sometimes dequeuing order differs from enqueuing order. we are
    enqueuing to the queue using default options only , i mean we
    are not setting any prriority for messages .We are enqueuing 100
    messages continuously to the queue.After completing enqueuing we
    are dequeuing from the queue first in browse and then in remove
    mode. We are using thin driver for database connectivity. If U
    have any idea about this problem pls feel free to share with me .
    Thanx in advance
    Regards
    Shilda Joseph
    see the code snippet
    enqueuing
    aqMsg = qOracleQueue.createMessage();
    aqRawPayload = aqMsg.getRawPayload();
    byMsg = sMsgInfo.getBytes();
    aqRawPayload.setStream(byMsg, byMsg.length);
    AQEnqueueOption aqEnqueueOption = new AQEnqueueOption
    qOracleQueue.enqueue(aqEnqueueOption, aqMsg);
    dequeuing
         aqDequeueOption.setWaitTime(1);
    aqDequeueOption.setDequeueMode
    (aqDequeueOption.DEQUEUE_BROWSE);
    aqMsg = qOracleQueue.dequeue(aqDequeueOption);
    //removing
         AQDequeueOption aqDequeueOption1 = new AQDequeueOption
    aqDequeueOption1.setDequeueMode
    (aqDequeueOption.DEQUEUE_REMOVE);
    AQMessage aqRemMsg = qOracleQueue.dequeue
    (aqDequeueOption1);
    see the enqueuing order and dequeuing order of hello 57, hello
    58
    2001/10/17 15:38:42:3 INFO [main] message enqueued - Helloo 1 to
    HL7MESSAGEQUEUE
    2001/10/17 15:38:42:124 INFO [main] message enqueued - Helloo 2
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:234 INFO [main] message enqueued - Helloo 3
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:334 INFO [main] message enqueued - Helloo 4
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:434 INFO [main] message enqueued - Helloo 5
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:544 INFO [main] message enqueued - Helloo 6
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:644 INFO [main] message enqueued - Helloo 7
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:755 INFO [main] message enqueued - Helloo 8
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:865 INFO [main] message enqueued - Helloo 9
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:965 INFO [main] message enqueued - Helloo 10
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:75 INFO [main] message enqueued - Helloo 11
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:175 INFO [main] message enqueued - Helloo 12
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:275 INFO [main] message enqueued - Helloo 13
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:375 INFO [main] message enqueued - Helloo 14
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:476 INFO [main] message enqueued - Helloo 15
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:576 INFO [main] message enqueued - Helloo 16
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:686 INFO [main] message enqueued - Helloo 17
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:786 INFO [main] message enqueued - Helloo 18
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:886 INFO [main] message enqueued - Helloo 19
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:986 INFO [main] message enqueued - Helloo 20
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:86 INFO [main] message enqueued - Helloo 21
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:187 INFO [main] message enqueued - Helloo 22
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:287 INFO [main] message enqueued - Helloo 23
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:397 INFO [main] message enqueued - Helloo 24
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:497 INFO [main] message enqueued - Helloo 25
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:597 INFO [main] message enqueued - Helloo 26
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:697 INFO [main] message enqueued - Helloo 27
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:797 INFO [main] message enqueued - Helloo 28
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:898 INFO [main] message enqueued - Helloo 29
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:988 INFO [main] message enqueued - Helloo 30
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:98 INFO [main] message enqueued - Helloo 31
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:188 INFO [main] message enqueued - Helloo 32
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:298 INFO [main] message enqueued - Helloo 33
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:388 INFO [main] message enqueued - Helloo 34
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:488 INFO [main] message enqueued - Helloo 35
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:598 INFO [main] message enqueued - Helloo 36
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:689 INFO [main] message enqueued - Helloo 37
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:799 INFO [main] message enqueued - Helloo 38
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:899 INFO [main] message enqueued - Helloo 39
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:989 INFO [main] message enqueued - Helloo 40
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:99 INFO [main] message enqueued - Helloo 41
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:189 INFO [main] message enqueued - Helloo 42
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:299 INFO [main] message enqueued - Helloo 43
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:390 INFO [main] message enqueued - Helloo 44
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:500 INFO [main] message enqueued - Helloo 45
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:600 INFO [main] message enqueued - Helloo 46
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:700 INFO [main] message enqueued - Helloo 47
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:790 INFO [main] message enqueued - Helloo 48
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:900 INFO [main] message enqueued - Helloo 49
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:0 INFO [main] message enqueued - Helloo 50
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:111 INFO [main] message enqueued - Helloo 51
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:201 INFO [main] message enqueued - Helloo 52
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:301 INFO [main] message enqueued - Helloo 53
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:411 INFO [main] message enqueued - Helloo 54
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:501 INFO [main] message enqueued - Helloo 55
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:631 INFO [main] message enqueued - Helloo 56
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:731 INFO [main] message enqueued - Helloo 57
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:822 INFO [main] message enqueued - Helloo 58
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:932 INFO [main] message enqueued - Helloo 59
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:22 INFO [main] message enqueued - Helloo 60
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:132 INFO [main] message enqueued - Helloo 61
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:222 INFO [main] message enqueued - Helloo 62
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:332 INFO [main] message enqueued - Helloo 63
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:432 INFO [main] message enqueued - Helloo 64
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:533 INFO [main] message enqueued - Helloo 65
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:623 INFO [main] message enqueued - Helloo 66
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:733 INFO [main] message enqueued - Helloo 67
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:823 INFO [main] message enqueued - Helloo 68
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:933 INFO [main] message enqueued - Helloo 69
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:23 INFO [main] message enqueued - Helloo 70
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:123 INFO [main] message enqueued - Helloo 71
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:214 INFO [main] message enqueued - Helloo 72
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:324 INFO [main] message enqueued - Helloo 73
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:684 INFO [main] message enqueued - Helloo 74
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:5 INFO [main] message enqueued - Helloo 75
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:105 INFO [main] message enqueued - Helloo 76
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:215 INFO [main] message enqueued - Helloo 77
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:305 INFO [main] message enqueued - Helloo 78
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:405 INFO [main] message enqueued - Helloo 79
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:505 INFO [main] message enqueued - Helloo 80
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:605 INFO [main] message enqueued - Helloo 81
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:696 INFO [main] message enqueued - Helloo 82
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:796 INFO [main] message enqueued - Helloo 83
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:886 INFO [main] message enqueued - Helloo 84
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:996 INFO [main] message enqueued - Helloo 85
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:96 INFO [main] message enqueued - Helloo 86
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:186 INFO [main] message enqueued - Helloo 87
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:286 INFO [main] message enqueued - Helloo 88
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:387 INFO [main] message enqueued - Helloo 89
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:487 INFO [main] message enqueued - Helloo 90
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:587 INFO [main] message enqueued - Helloo 91
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:687 INFO [main] message enqueued - Helloo 92
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:797 INFO [main] message enqueued - Helloo 93
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:887 INFO [main] message enqueued - Helloo 94
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:987 INFO [main] message enqueued - Helloo 95
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:88 INFO [main] message enqueued - Helloo 96
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:188 INFO [main] message enqueued - Helloo 97
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:278 INFO [main] message enqueued - Helloo 98
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:378 INFO [main] message enqueued - Helloo 99
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:478 INFO [main] message enqueued - Helloo
    100 to HL7MESSAGEQUEUE
    2001/10/17 15:54:51:259 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 1
    2001/10/17 15:54:51:319 INFO [main] DS::run: Dequeue
    REMOVEHelloo 1
    2001/10/17 15:54:51:619 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 2
    2001/10/17 15:54:51:649 INFO [main] DS::run: Dequeue
    REMOVEHelloo 2
    2001/10/17 15:54:51:929 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 3
    2001/10/17 15:54:51:960 INFO [main] DS::run: Dequeue
    REMOVEHelloo 3
    2001/10/17 15:54:52:290 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 4
    2001/10/17 15:54:52:360 INFO [main] DS::run: Dequeue
    REMOVEHelloo 4
    2001/10/17 15:54:52:640 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 5
    2001/10/17 15:54:52:671 INFO [main] DS::run: Dequeue
    REMOVEHelloo 5
    2001/10/17 15:54:52:951 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 6
    2001/10/17 15:54:52:971 INFO [main] DS::run: Dequeue
    REMOVEHelloo 6
    2001/10/17 15:54:53:301 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 7
    2001/10/17 15:54:53:321 INFO [main] DS::run: Dequeue
    REMOVEHelloo 7
    2001/10/17 15:54:53:672 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 8
    2001/10/17 15:54:53:692 INFO [main] DS::run: Dequeue
    REMOVEHelloo 8
    2001/10/17 15:54:56:926 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 9
    2001/10/17 15:54:56:946 INFO [main] DS::run: Dequeue
    REMOVEHelloo 9
    2001/10/17 15:54:57:257 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 10
    2001/10/17 15:54:57:277 INFO [main] DS::run: Dequeue
    REMOVEHelloo 10
    2001/10/17 15:54:57:557 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 11
    2001/10/17 15:54:57:627 INFO [main] DS::run: Dequeue
    REMOVEHelloo 11
    2001/10/17 15:54:57:918 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 12
    2001/10/17 15:54:57:938 INFO [main] DS::run: Dequeue
    REMOVEHelloo 12
    2001/10/17 15:54:58:268 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 13
    2001/10/17 15:54:58:278 INFO [main] DS::run: Dequeue
    REMOVEHelloo 13
    2001/10/17 15:54:58:569 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 14
    2001/10/17 15:54:58:589 INFO [main] DS::run: Dequeue
    REMOVEHelloo 14
    2001/10/17 15:54:58:869 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 15
    2001/10/17 15:54:58:959 INFO [main] DS::run: Dequeue
    REMOVEHelloo 15
    2001/10/17 15:54:59:260 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 16
    2001/10/17 15:54:59:280 INFO [main] DS::run: Dequeue
    REMOVEHelloo 16
    2001/10/17 15:54:59:600 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 17
    2001/10/17 15:54:59:620 INFO [main] DS::run: Dequeue
    REMOVEHelloo 17
    2001/10/17 15:54:59:911 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 18
    2001/10/17 15:54:59:931 INFO [main] DS::run: Dequeue
    REMOVEHelloo 18
    2001/10/17 15:55:0:251 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 19
    2001/10/17 15:55:0:321 INFO [main] DS::run: Dequeue REMOVEHelloo
    19
    2001/10/17 15:55:0:602 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 20
    2001/10/17 15:55:0:622 INFO [main] DS::run: Dequeue REMOVEHelloo
    20
    2001/10/17 15:55:0:922 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 21
    2001/10/17 15:55:0:932 INFO [main] DS::run: Dequeue REMOVEHelloo
    21
    2001/10/17 15:55:1:263 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 22
    2001/10/17 15:55:1:283 INFO [main] DS::run: Dequeue REMOVEHelloo
    22
    2001/10/17 15:55:1:623 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 23
    2001/10/17 15:55:1:633 INFO [main] DS::run: Dequeue REMOVEHelloo
    23
    2001/10/17 15:55:1:933 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 24
    2001/10/17 15:55:1:953 INFO [main] DS::run: Dequeue REMOVEHelloo
    24
    2001/10/17 15:55:2:484 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 25
    2001/10/17 15:55:2:504 INFO [main] DS::run: Dequeue REMOVEHelloo
    25
    2001/10/17 15:55:2:775 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 26
    2001/10/17 15:55:2:855 INFO [main] DS::run: Dequeue REMOVEHelloo
    26
    2001/10/17 15:55:3:135 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 27
    2001/10/17 15:55:3:155 INFO [main] DS::run: Dequeue REMOVEHelloo
    27
    2001/10/17 15:55:3:436 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 28
    2001/10/17 15:55:3:456 INFO [main] DS::run: Dequeue REMOVEHelloo
    28
    2001/10/17 15:55:3:736 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 29
    2001/10/17 15:55:3:756 INFO [main] DS::run: Dequeue REMOVEHelloo
    29
    2001/10/17 15:55:4:86 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 30
    2001/10/17 15:55:4:106 INFO [main] DS::run: Dequeue REMOVEHelloo
    30
    2001/10/17 15:55:4:407 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 31
    2001/10/17 15:55:4:427 INFO [main] DS::run: Dequeue REMOVEHelloo
    31
    2001/10/17 15:55:4:707 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 32
    2001/10/17 15:55:4:727 INFO [main] DS::run: Dequeue REMOVEHelloo
    32
    2001/10/17 15:55:5:68 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 33
    2001/10/17 15:55:5:88 INFO [main] DS::run: Dequeue REMOVEHelloo
    33
    2001/10/17 15:55:5:468 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 34
    2001/10/17 15:55:5:488 INFO [main] DS::run: Dequeue REMOVEHelloo
    34
    2001/10/17 15:55:5:769 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 35
    2001/10/17 15:55:5:789 INFO [main] DS::run: Dequeue REMOVEHelloo
    35
    2001/10/17 15:55:6:69 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 36
    2001/10/17 15:55:6:149 INFO [main] DS::run: Dequeue REMOVEHelloo
    36
    2001/10/17 15:55:6:430 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 37
    2001/10/17 15:55:6:450 INFO [main] DS::run: Dequeue REMOVEHelloo
    37
    2001/10/17 15:55:6:730 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 38
    2001/10/17 15:55:6:750 INFO [main] DS::run: Dequeue REMOVEHelloo
    38
    2001/10/17 15:55:7:31 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 39
    2001/10/17 15:55:7:51 INFO [main] DS::run: Dequeue REMOVEHelloo
    39
    2001/10/17 15:55:7:381 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 40
    2001/10/17 15:55:7:401 INFO [main] DS::run: Dequeue REMOVEHelloo
    40
    2001/10/17 15:55:7:692 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 41
    2001/10/17 15:55:7:702 INFO [main] DS::run: Dequeue REMOVEHelloo
    41
    2001/10/17 15:55:7:992 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 42
    2001/10/17 15:55:8:12 INFO [main] DS::run: Dequeue REMOVEHelloo
    42
    2001/10/17 15:55:8:372 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 43
    2001/10/17 15:55:8:392 INFO [main] DS::run: Dequeue REMOVEHelloo
    43
    2001/10/17 15:55:8:683 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 44
    2001/10/17 15:55:8:703 INFO [main] DS::run: Dequeue REMOVEHelloo
    44
    2001/10/17 15:55:8:983 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 45
    2001/10/17 15:55:9:3 INFO [main] DS::run: Dequeue REMOVEHelloo
    45
    2001/10/17 15:55:9:314 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 46
    2001/10/17 15:55:9:394 INFO [main] DS::run: Dequeue REMOVEHelloo
    46
    2001/10/17 15:55:9:704 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 47
    2001/10/17 15:55:9:724 INFO [main] DS::run: Dequeue REMOVEHelloo
    47
    2001/10/17 15:55:10:15 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 48
    2001/10/17 15:55:10:35 INFO [main] DS::run: Dequeue REMOVEHelloo
    48
    2001/10/17 15:55:10:335 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 49
    2001/10/17 15:55:10:355 INFO [main] DS::run: Dequeue
    REMOVEHelloo 49
    2001/10/17 15:55:10:696 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 50
    2001/10/17 15:55:10:716 INFO [main] DS::run: Dequeue
    REMOVEHelloo 50
    2001/10/17 15:55:10:996 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 51
    2001/10/17 15:55:11:16 INFO [main] DS::run: Dequeue REMOVEHelloo
    51
    2001/10/17 15:55:11:337 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 52
    2001/10/17 15:55:11:357 INFO [main] DS::run: Dequeue
    REMOVEHelloo 52
    2001/10/17 15:55:11:687 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 53
    2001/10/17 15:55:11:707 INFO [main] DS::run: Dequeue
    REMOVEHelloo 53
    2001/10/17 15:55:11:998 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 54
    2001/10/17 15:55:12:18 INFO [main] DS::run: Dequeue REMOVEHelloo
    54
    2001/10/17 15:55:12:338 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 55
    2001/10/17 15:55:12:348 INFO [main] DS::run: Dequeue
    REMOVEHelloo 55
    2001/10/17 15:55:12:709 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 56
    2001/10/17 15:55:12:729 INFO [main] DS::run: Dequeue
    REMOVEHelloo 56
    2001/10/17 15:55:12:989 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 58
    2001/10/17 15:55:13:9 INFO [main] DS::run: Dequeue REMOVEHelloo
    58
    2001/10/17 15:55:13:319 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 57
    2001/10/17 15:55:13:339 INFO [main] DS::run: Dequeue
    REMOVEHelloo 57
    2001/10/17 15:55:13:670 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 59
    2001/10/17 15:55:13:690 INFO [main] DS::run: Dequeue
    REMOVEHelloo 59
    2001/10/17 15:55:13:970 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 60
    2001/10/17 15:55:13:990 INFO [main] DS::run: Dequeue
    REMOVEHelloo 60
    2001/10/17 15:55:14:291 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 61
    2001/10/17 15:55:14:311 INFO [main] DS::run: Dequeue
    REMOVEHelloo 61
    2001/10/17 15:55:14:591 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 62
    2001/10/17 15:55:14:671 INFO [main] DS::run: Dequeue
    REMOVEHelloo 62
    2001/10/17 15:55:15:603 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 63
    2001/10/17 15:55:15:623 INFO [main] DS::run: Dequeue
    REMOVEHelloo 63
    2001/10/17 15:55:15:933 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 64
    2001/10/17 15:55:15:953 INFO [main] DS::run: Dequeue
    REMOVEHelloo 64
    2001/10/17 15:55:16:274 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 65
    2001/10/17 15:55:16:294 INFO [main] DS::run: Dequeue
    REMOVEHelloo 65
    2001/10/17 15:55:16:624 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 66
    2001/10/17 15:55:16:644 INFO [main] DS::run: Dequeue
    REMOVEHelloo 66
    2001/10/17 15:55:16:934 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 67
    2001/10/17 15:55:16:944 INFO [main] DS::run: Dequeue
    REMOVEHelloo 67
    2001/10/17 15:55:17:325 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 68
    2001/10/17 15:55:17:345 INFO [main] DS::run: Dequeue
    REMOVEHelloo 68
    2001/10/17 15:55:17:665 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 69
    2001/10/17 15:55:17:685 INFO [main] DS::run: Dequeue
    REMOVEHelloo 69
    2001/10/17 15:55:17:956 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 70
    2001/10/17 15:55:17:976 INFO [main] DS::run: Dequeue
    REMOVEHelloo 70
    2001/10/17 15:55:18:326 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 71
    2001/10/17 15:55:18:346 INFO [main] DS::run: Dequeue
    REMOVEHelloo 71
    2001/10/17 15:55:18:617 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 72
    2001/10/17 15:55:18:687 INFO [main] DS::run: Dequeue
    REMOVEHelloo 72
    2001/10/17 15:55:19:17 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 73
    2001/10/17 15:55:19:37 INFO [main] DS::run: Dequeue REMOVEHelloo
    73
    2001/10/17 15:55:19:338 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 74
    2001/10/17 15:55:19:358 INFO [main] DS::run: Dequeue
    REMOVEHelloo 74
    2001/10/17 15:55:19:668 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 75
    2001/10/17 15:55:19:688 INFO [main] DS::run: Dequeue
    REMOVEHelloo 75
    2001/10/17 15:55:20:19 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 76
    2001/10/17 15:55:20:39 INFO [main] DS::run: Dequeue REMOVEHelloo
    76
    2001/10/17 15:55:20:359 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 77
    2001/10/17 15:55:20:379 INFO [main] DS::run: Dequeue
    REMOVEHelloo 77
    2001/10/17 15:55:20:660 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 78
    2001/10/17 15:55:20:680 INFO [main] DS::run: Dequeue
    REMOVEHelloo 78
    2001/10/17 15:55:21:20 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 79
    2001/10/17 15:55:21:40 INFO [main] DS::run: Dequeue REMOVEHelloo
    79
    2001/10/17 15:55:21:361 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 80
    2001/10/17 15:55:21:381 INFO [main] DS::run: Dequeue
    REMOVEHelloo 80
    2001/10/17 15:55:21:661 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 81
    2001/10/17 15:55:21:681 INFO [main] DS::run: Dequeue
    REMOVEHelloo 81
    2001/10/17 15:55:22:72 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 82
    2001/10/17 15:55:22:82 INFO [main] DS::run: Dequeue REMOVEHelloo
    82
    2001/10/17 15:55:22:382 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 83
    2001/10/17 15:55:22:402 INFO [main] DS::run: Dequeue
    REMOVEHelloo 83
    2001/10/17 15:55:22:692 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 84
    2001/10/17 15:55:22:713 INFO [main] DS::run: Dequeue
    REMOVEHelloo 84
    2001/10/17 15:55:23:53 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 85
    2001/10/17 15:55:23:63 INFO [main] DS::run: Dequeue REMOVEHelloo
    85
    2001/10/17 15:55:23:403 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 86
    2001/10/17 15:55:23:413 INFO [main] DS::run: Dequeue
    REMOVEHelloo 86
    2001/10/17 15:55:23:694 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 87
    2001/10/17 15:55:23:714 INFO [main] DS::run: Dequeue
    REMOVEHelloo 87
    2001/10/17 15:55:24:886 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 88
    2001/10/17 15:55:24:966 INFO [main] DS::run: Dequeue
    REMOVEHelloo 88
    2001/10/17 15:55:25:286 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 89
    2001/10/17 15:55:25:296 INFO [main] DS::run: Dequeue
    REMOVEHelloo 89
    2001/10/17 15:55:25:637 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 90
    2001/10/17 15:55:25:657 INFO [main] DS::run: Dequeue
    REMOVEHelloo 90
    2001/10/17 15:55:25:937 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 91
    2001/10/17 15:55:25:957 INFO [main] DS::run: Dequeue
    REMOVEHelloo 91
    2001/10/17 15:55:26:338 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 92
    2001/10/17 15:55:26:358 INFO [main] DS::run: Dequeue
    REMOVEHelloo 92
    2001/10/17 15:55:26:628 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 93
    2001/10/17 15:55:26:648 INFO [main] DS::run: Dequeue
    REMOVEHelloo 93
    2001/10/17 15:55:26:928 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 94
    2001/10/17 15:55:26:948 INFO [main] DS::run: Dequeue
    REMOVEHelloo 94
    2001/10/17 15:55:27:319 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 95
    2001/10/17 15:55:27:339 INFO [main] DS::run: Dequeue
    REMOVEHelloo 95
    2001/10/17 15:55:27:609 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 96
    2001/10/17 15:55:27:629 INFO [main] DS::run: Dequeue
    REMOVEHelloo 96
    2001/10/17 15:55:27:910 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 97
    2001/10/17 15:55:27:930 INFO [main] DS::run: Dequeue
    REMOVEHelloo 97
    2001/10/17 15:55:28:280 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 98
    2001/10/17 15:55:28:360 INFO [main] DS::run: Dequeue
    REMOVEHelloo 98
    2001/10/17 15:55:28:631 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 99
    2001/10/17 15:55:28:651 INFO [main] DS::run: Dequeue
    REMOVEHelloo 99
    2001/10/17 15:55:28:941 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 100
    2001/10/17 15:55:28:951 INFO [main] DS::run: Dequeue
    REMOVEHelloo 100

    As other members adviced
    Please check the following as a list
    1) Check first fi the Material is in APO relevant
    2) Check if it has active integration model in cfm5 (R/3)
    3) Check if the material has no blocked queues in /n/sapapo/cq (APO)
    If there are any blocked queues please clear them accordingly.
    4) After that perform a reconciliation of the transactional data through.
    /n/sapapo/ccr(APO). perform it only for that material and on planned orders.
    If there are any errors it will usggest you to follow few steps.
    5) then again go back and check the /n/sapapo/cq transaction.
    6) Check if the material and its location has publication Types maintained in SPRO transaction.
    7) Check if the change pointers of this Planned order exists in /n/sapapo/c5
    This si change pointers transaction , soemtimes you can release ti from there also.
    If you still have problem, give the resutls of the following for reference.
    Let us know once you perform all these.
    8) Incase you need to perform the consistency checks  externally.

  • GL directly from  shopping cart without account assignment

    Hi All
    Is there any prerequisite in the account assignment overview  to select GL from the free text shopping cart?
    (backend acct assignment category ) X= GL ( Account assignment category ).
    any instances we may need to do this from SRM?
    i believe BAPI  BAPI_PO_CREATE1  badi always expects SOME ACCOUNT ASSIGNMENT  right?
    Note 1408312 - Direct material does not derive correct account assignment - Can some one expalin this sap note please?
    MM06EF0P_PRUEFEN
         MESSAGE e000(mepo).
        ENDIF.
        LOOP AT ett WHERE item_with_error NE space.
          MOVE-CORRESPONDING ett TO potkey.
          READ TABLE pot WITH KEY potkey BINARY SEARCH.
          IF sy-subrc EQ 0 AND pot-loekz NE 'L'.
            MESSAGE e001(mepo) WITH ett-ebelp.
          ENDIF.
        ENDLOOP.
        LOOP AT knt WHERE item_with_error NE space.
          MOVE-CORRESPONDING knt TO potkey.
          READ TABLE pot WITH KEY potkey BINARY SEARCH.
          IF sy-subrc EQ 0 AND pot-loekz NE 'L'.
            MESSAGE e046(mepo) WITH knt-ebelp.
          ENDIF.
        ENDLOOP.
      ENDIF.
    Muthu

    Thanks Summer
    My context is different.
    free text --cost assignment folder --. select  GL account only ( slect account assignment category -AcctAssCat ) - so
    now assignto G/L ACCOUNT AND G/L ACCOUNT thats all and again i am fing GL accounts and select ..order
    We do have option in SRM posting to direct GL account like GL = X (BACKENED ACCOUNT ASSIGNMENET) . FOR FREE TEXT ITEM , Can we post the GL account directly without ORDER / COST CENTER /WBS eleement .
    if we choose GL all will disappear like cost center , order , wbs .
    cost assignment
    account assignemnt over view
    line ; -1
    percentage ;-100
    assign to ; -G/L account
    description;- balank
    G/l ACCOUNT ;- 2XXXXX
    Description;- Testing
    Business area ;- blank
    hope it clears now
    thats what i am asking.the note might confused .
    FOR EX
    BBP_PDACC TABLE ACC_CAT = GL NOT CC
    Muthu

  • PO information drop off from shopping cart

    Hi everyone,
    We have a problem, a shopping cart is created and got approved, followon document PO is created and automatically ordered.
    Now the PO line item is deleted and again ordered, and the status of the PO is approved, now when we look into the related documents tab in shopping cart the information like PO number, status and PO date every thing is disappeared.
    Before PO was edited the PO information was there, but after editing(line item deleted) the PO information got disappeared.
    Can any one among you let me know why it happened and what to do to acheive the PO information back to shopping cart details
    Your help is highly appreciated on this.
    regards,
    IGA.

    Hi every one,
    Issue got resolved, the process went like this:
    1. User went to advanced search and accessed PO and went to edit mode and deleted the line item.
    2. Then the SC related doc tab the PO info was missing
    3. I undeleted the line item and ordered PO again so the PO was back to ordered state
    4. Again the PO info was available in SC related doc tab
    5. Then I accessed the PO from related doc tab and went into change mode then deleted the line item
    6. Refresed the SC then the po staus is updated.
    regards,
    IGA.

  • Currency conversion issue while creating PO from Shopping cart

    Hello Experts,
    I'm facing an issue in SRM during Limit purchase order creation from Limit shopping cart.
    Scenario:
    Shopping cart was created on 1st of June and Approved on 20th June & Po was created on the same day. But the currency conversion is no ware matching and couldn't able to trace out the same. I have tried several times to replicate the issue it never done in test environments.
    But the PO is creating with refer to Vendor currency. For example if SC was created in USD and vendor order currency in EUR then PO is created in EUR.
    the relevant notes were already updated in the system and it is working fine when the SC is created and approved on the same day.
    Please give me some idea how to fix this issue.
    Is there any way to make SC currency is priority than Vendor Order Currency while creating PO?
    Regards
    Pratap J

    Hello,
    Read information available in KBA 1862453.
    It mentions this issue.
    Regards,
    Ricardo

  • Storage location from Shopping Cart is overwritten in PO

    Hi
    I am trying to convert a Shopping Cart to Purchase order using the sourcing application. However while doing that my Shopping Cart Storage location always gets overwritten by one particular Storage Location in PO. Even if i try and change the storage location to the correct one in PO, it again gets overwritten. This is causing problem during the Goods Receipt.
    I am using the SRM 5.0 version and recently the system got upgraded to Support Pack 9.
    Any help in this regard would be highly appreciated.
    regards
    manoj

    Hi Manoj,
    Please go through the following observations based on the information you have provided :
    1. Check the Extended Attributes tab for the user whether the concerned plant and storage location were maintained or not.
    2. Check whether that particular storage location is maintained for the concerned plant or not.
    3. Check for the same using different user and different plant storage location combination.
    Its difficult to say exactly what is the problem but for me it looks to be the storage location is not maintained for a particular plant thats why its taking the default storage location (generally the first one in alphabetical order)
    Please revert after checking the above observations for further help.
    Reward points for suitable answers.
    Rgds,
    Teja

Maybe you are looking for

  • Can't Install Creative Cloud Desktop on Mac OS X 10.7.5

    If I try to install it on my default user, I get an error 13.  Specifically: "cookies dir: cannot make folder / cookies: permission denied (error 13)" If I try to install it on my Administrator user, I get an error A12E6 that says there's a problem w

  • DBAdapter Merge failed

    Hi Experts, Does anyone had issue (ORA-00001: unique constraint) while invoking DBAdapter Merge (Insert and Update) to a table which having a primary key of combination of 3 fields? My table is : LOCAL_CURRENCY NOT NULL CHAR(4) FOREIGN_CURR NOT NULL

  • How can I remove the Emergency Call button from the lock screen Xperia Z2

    How can I remove the Emergency Call button from the lock screen on my Z2 phone

  • Elements 11 not responding when using "comic" or "graphic novel" filter

    I recently purchased PSE 11 and absolutely LOVE the program. It has worked flawlessly for me for 3 weeks, however, today was the first time I ever tried to use the "comic strip" filter and the "graphic novel" filter and the program stopped responding

  • PPT to Captivate 3: image import issue

    Hi, I'm creating a Captivate project by importing a PowerPoint 2003 project. After I import them (but not in PowerPoint), some of the slides have weird images or words that show up. Sometimes there's a grey or black blob in the upper left corner, som