BAPI_PO_CREATE1 GR Indicator Problem... ?

Hi All,
       Even though I am passing space , the GR indicator is getting ticked when creating the PO through the BAPI BAPI_PO_CREATE1.Does anybody have any solution to stop this from happening ... ?
Cheers
Nishanth

Hello,
Check this link:
to remove check marks from the polist
Hope this helps you.
Murugesh AS
Thanks Nishanth, I have included the field in the above link now.
Message was edited by: Murugesh Arcot

Similar Messages

  • BAPI_PO_CREATE1 Condition pricing problem

    Hi Experts,
    I  created the PO through BAPI_PO_CREAE1 according to the below code. In that PO which i created default  condition type "PBXX".But i want condition Type "PB00".so in my BAPI condtion table POCOND i gave  "U" [ POCOND-change_id = 'U' (update) ].But the default "PBXX" is again coming.
    when i give POCOND-change_id = 'I'  (insert)  two condition types are coming(PB00 & PBXX).
    I referred  our forum(sdn) throughly.I won't get solution.
      data: del_date type sy-datum.
    data: ORDER_HEADERS_OUT like BAPISDHD OCCURS 0 WITH HEADER LINE.
    data: ORDER_ITEMS_OUT like BAPISDIT OCCURS 0 WITH HEADER LINE.
    data: ORDER_SCHEDULES_OUT like BAPISDHEDU OCCURS 0 WITH HEADER LINE.
    data: ORDER_PARTNERS_OUT like BAPISDPART OCCURS 0 WITH HEADER LINE.
    data: ORDER_COND_HEAD like BAPICONDHD OCCURS 0 WITH HEADER LINE.
    data: ORDER_COND_ITEM like BAPICONDIT OCCURS 0 WITH HEADER LINE.
    data: ORDER_TEXTHEADERS_OUT like BAPISDTEHD OCCURS 0 WITH HEADER LINE.
    datA: ORDER_TEXTLINES_OUT like BAPITEXTLI OCCURS 0 WITH HEADER LINE.
    data: I_BAPI_VIEW like ORDER_VIEW OCCURS 0 WITH HEADER LINE.
      data: pohead  type bapimepoheader.
      data: poheadx type bapimepoheaderx.
      data: exp_head type bapimepoheader.
      data: return  type table of bapiret2 with header line.
      data: poitem  type table of bapimepoitem with header line.
      data: poitemx type table of bapimepoitemx with header line.
      data: posched  type table of bapimeposchedule with header line.
      data: poschedx type table of bapimeposchedulx with header line.
    data : POTEXTHEADER type table of BAPIMEPOTEXTHEADER with header line .
    data: POTEXTITEM type table of BAPIMEPOTEXT with header line.
    *data: POTEXTITEMx type table of BAPIMEPOTEXTx with header line.
    DATA: POCOND TYPE table of BAPIMEPOCOND with header line.
    DATA: POCONDX TYPE TABLE OF BAPIMEPOCONDX WITH HEADER LINE.
      data: ex_po_number type bapimepoheader-po_number.
    data: itno type i.
    i_bapi_view-HEADER = 'X'.
    i_bapi_view-ITEM = 'X'.
    i_bapi_view-SDSCHEDULE = 'X'.
    i_bapi_view-PARTNER = 'X'.
    i_bapi_view-SDCOND = 'X'.
    i_bapi_view-SDCOND_ADD = 'X'.
    i_bapi_view-TEXT = 'X'.
    *i_bapi_view- = 'X'.
    APPEND I_BAPI_VIEW.
    DATA: SONO LIKE SALES_KEY OCCURS 0 WITH HEADER LINE..
    SONO-VBELN = '0001014145'.
    APPEND SONO.
    CALL FUNCTION 'BAPISDORDER_GETDETAILEDLIST'
      EXPORTING
        i_bapi_view                   = I_BAPI_VIEW
      I_MEMORY_READ                 =
      tables
        sales_documents               = SONO
       ORDER_HEADERS_OUT             =  ORDER_HEADERS_OUT
       ORDER_ITEMS_OUT               =   ORDER_ITEMS_OUT
       ORDER_SCHEDULES_OUT           =  ORDER_SCHEDULES_OUT
      ORDER_BUSINESS_OUT            =
       ORDER_PARTNERS_OUT            =   ORDER_PARTNERS_OUT
      ORDER_ADDRESS_OUT             =
      ORDER_STATUSHEADERS_OUT       =
      ORDER_STATUSITEMS_OUT         =
      ORDER_CONDITIONS_OUT          =
       ORDER_COND_HEAD               =  ORDER_COND_HEAD
       ORDER_COND_ITEM               = ORDER_COND_ITEM
      ORDER_COND_QTY_SCALE          =
      ORDER_COND_VAL_SCALE          =
      ORDER_CONTRACTS_OUT           =
       ORDER_TEXTHEADERS_OUT         = ORDER_TEXTHEADERS_OUT
       ORDER_TEXTLINES_OUT           = ORDER_TEXTLINES_OUT
    BREAK-POINT.
      pohead-comp_code = 'SG20'.
      pohead-doc_type   = 'NB'     .
      pohead-creat_date = sy-datum   .
      pohead-vendor = '0000100040'.
      pohead-purch_org = 'SG20'.
      pohead-pur_group = '001'.
      pohead-langu      = sy-langu   .
      pohead-doc_date   = sy-datum.
      poheadx-comp_code  = c_x.
      poheadx-doc_type   = c_x.
      poheadx-creat_date = c_x.
      poheadx-vendor     = c_x.
      poheadx-langu      = c_x.
      poheadx-purch_org  = c_x.
      poheadx-pur_group  = c_x.
      poheadx-doc_date   = c_x.
    *POTEXTITEM-PO_ITEM = itno.
    *POTEXTITEM-TEXT_ID =
    *POTEXTITEM-TEXT_FORM
    POTEXTHEADER-TEXT_LINE = SONO.
    append POTEXTHEADER.
    Item Level Data
    itno = 10.
    loop at   ORDER_ITEMS_OUT.
      poitem-po_item  = itno.
      poitem-material = ORDER_ITEMS_OUT-material.
      poitem-plant    = 'SG20'.
      poitem-stge_loc = 'SA01'.
      poitem-quantity = ORDER_ITEMS_OUT-REQ_QTY .
      POITEM-NET_PRICE = ORDER_ITEMS_OUT-NET_PRICE.
      append poitem.
      poitemx-po_item    = itno.
      poitemx-po_itemx   = c_x.
      poitemx-material   = c_x.
      poitemx-plant      = c_x .
      poitemx-stge_loc   = c_x .
      poitemx-quantity   = c_x .
      poitemx-tax_code   = c_x .
      poitemx-item_cat   = c_x .
      poitemx-acctasscat = c_x .
      POITEMX-NET_PRICE = C_X.
      append poitemx.
    POTEXTITEM-PO_NUMBER =
    POTEXTITEM-PO_ITEM = itno.
    POTEXTITEM-TEXT_ID = 'F01'.
    *POTEXTITEM-TEXT_FORM
    POTEXTITEM-TEXT_LINE = SONO.
    append POTEXTITEM.
    POCOND-itm_number = ITNO.
    POCOND-cond_st_no = '001'.
    POCOND-COND_COUNT = '01'.
    POCOND-cond_type = 'PB00'.
    POCOND-cond_value = ORDER_ITEMS_OUT-REQ_QTY.
    POCOND-currency = ORDER_ITEMS_OUT-CURRENCY.
    POCOND-CONDISACTI = ' '.
    POCOND-COND_UPDAT = 'X'.
    POCOND-change_id = 'U'.
    APPEND pocond.
    POCONDX-itm_number = ITNO.
    POCONDX-cond_st_no = '001'.
    POCONDX-cond_st_nox = 'X'.
    POCONDX-itm_numberx = 'X'.
    POCONDX-COND_COUNT = 'X'.
    POCONDX-cond_type = 'X'.
    POCONDX-cond_value = 'X'.
    POCONDX-currency = 'X'.
    POCONDX-CONDISACTI =  'X'.
    POCONDX-change_id = 'X'.
    POCONDX-COND_UPDAT = 'X'.
    APPEND POCONDX.
      itno = itno + 10.
    endloop.
      call function 'BAPI_PO_CREATE1'
           EXPORTING
                poheader         = pohead
                poheaderx        = poheadx
                testrun          = ' '
           IMPORTING
                exppurchaseorder = ex_po_number
                expheader        = exp_head
           TABLES
                return           = return
                poitem           = poitem
                poitemx          = poitemx
                poschedule       = posched
                poschedulex      = poschedx
       POTEXTHEADER                 = POTEXTHEADER
       POTEXTITEM   = POTEXTITEM
    POCOND                       = POCOND
        POCONDX                     = POCONDX .
      call function 'BAPI_TRANSACTION_COMMIT'
           EXPORTING
                wait = 'X'.
      if not ex_po_number is initial.
        call function 'DEQUEUE_ALL'.
      else.
        call function 'DEQUEUE_ALL'.
       message i036.
      endif.
      WRITE: / EX_PO_NUMBER.

    Hi Vioth,
          Did you got solution for thsi i am also facing the same problem.If you konw the solution kindly suggest the solution for this
    Thanks in Adavce,
    Regards...............Kishore

  • Strange battery indicator problem....

    I'm having a very weird problem with my iPod, any help would be greatly appreciated!
    I recieved an iPod Video 80gig as a replacement under the Best Buy replacement plan. At first I was very happy, as I had turned in a 40gig photo...so it was a nice upgrade.
    But I soon realized something was wrong. The iPod simply wouldn't charge beyond a certain point, about 3/4 up the indicator. I would have it charge for days, on both a USB and AC adaptor charger, and it would never complete charging. From there, the battery began to hold no charge.
    Figuring it was just a bad battery, I paid to have it replaced. I was sure this would fix the problem, but it seems it hasn't. Once again, it won't charge beyond about 3/4 of the bar, no matter how long it charges. It will play fine, but the battery seems to drain at a progressed rate...not as bad as before I had the battery replaced, but still quicker than it should.
    Strange this is, the place I sent it to, to replace the battery, did a test to make sure nothing else major was wrong with it. But nothing turned up.
    What the heck is going on with my iPod? Is it actually fully charging and just not showing it? But still, something seems wrong. Maybe I just got a bad iPod back. I plan on returning it to BestBuy for yet another, but I would love to hear anybodies theory on this or if anybody else has had the same problem.
    Thanks in advance!
    iPod Photo 80gig   Windows ME  

    dk07, glad to know I'm not the only one having this problem. I hope you can get it figured out as well. It is very frustrating.
    Jeff, I appreciate the links, but I've been over those first two quite a few times, with no success. The last one is a bit more interesting though.
    I guess what I mean to ask is; Is it possible that my iPod is actually charging all the way, even if I never get a "plug" icon and the bar never goes above 3/4 on the battery indicator, no matter how long I charge it? Can the battery indicator be 'that' off? I have yet to run into a help topic or tutorial that addresses specifically an iPod (with a brand new battery) never switching to the plug icon or never going beyond a 3/4 bar. I am willing to accept that the battery indicator may be inaccurate as to the actual charge, but the specific issues seem not to be as common as the general one; and that is what bugs me.

  • Bapi_PO_Create1 having some problem with POCOND

    Hello All,
       i am using the bapi_po_create1.. i have created PO's from PR's now i have to also add a pricing condition type for Freight. the problem i am having is that i build the data into POCOND and POCONDX for the fields :
    fs_pocond-itm_number        = '000001'.
      fs_pocond-cond_st_no        = '001'.
      fs_pocond-cond_type         = 'FRB1'.
      fs_pocond-cond_value        = '234.56'.
      fs_pocond-currency          = 'USD'.
      fs_pocondx-itm_number       = 'X'.
      fs_pocondx-cond_st_no       = 'X'.
      fs_pocondx-cond_type        = 'X'.
      fs_pocondx-cond_value       = 'X'.
      fs_pocondx-currency         = 'X'.
    But when i check the newly Created PO. In the Detail for Conditions the new FRB1 line item is not there , any ideas on what is going wrong ?
                  thanks Scott

    Well Scott, I am on HR implementation and I don’t have other system available, so I was just trying to give you some clue . I just saw another not which explain the same what you have mentioned in your question.
    Check out this note # 580225
    you can also see the patches and package in your system using TR.SPAM
    <b>FYI..</b>
    When you create a purchase order, values I, U and D refer to the conditionsthat were derived automatically, that is, you can also use U and D already during the creation. When you change a purchase order, they also refer to existing conditions.
    Prerequisite
    You must implement Note 494759 in your system to use these functions.
    Example A: CHANGE_ID = 'I'
    You create a purchase order with BAPI_PO_CREATE1. The system shoulddetermine the conditions for item 10 automatically. In addition, however, you want to calculate 3 % freight costs. You use condition type FRA1 for the freight costs. Then tables POCOND and POCONDX must be filled with the following values:
               POCOND-ITM_NUMBER = 10 (item number)
               POCOND-COND_TYPE = FRA1 (condition type)
               POCOND-COND_VALUE = 3.0 (condition value)
               POCOND-CURRENCY = %
               POCOND-CHANGE_ID = I
               POCONDX-ITM_NUMBER = 10
               POCONDX-ITM_NUMBERX = X
               POCONDX-COND_TYPE = X
               POCONDX-COND_VALUE = X
               POCONDX-CURRENCY = X
               POCONDX-CHANGE_ID = X
    Example B: CHANGE_ID = 'U'
    You create a purchase order with BAPI_PO_CREATE1. The system determines a price (condition type PB00) of 90 EUR for item 10. You want to change the 90 EUR to 100 EUR. To do this, fill tables POCOND and POCONDX with the following values:
               POCOND-ITM_NUMBER = 10
               POCOND-COND_TYPE = PB00
               POCOND-COND_VALUE = 100
               POCOND-CURRENCY = EUR
               POCOND-CHANGE_ID = U
               POCONDX-ITM_NUMBER = 10
               POCONDX-ITM_NUMBERX = X
               POCONDX-COND_TYPE = X
               POCONDX-COND_VALUE = X
               POCONDX-CURRENCY = X
               POCONDX-CHANGE_ID = X
    Example C: CHANGE_ID = 'D'
    Now you want to use BAPI_PO_CHANGE to delete the freight costs added in example A again. To do this, fill tables POCOND and POCONDX with the following values:
               POCOND-ITM_NUMBER = 10
               POCOND-COND_TYPE = FRA1
               POCOND-CHANGE_ID = D
               POCONDX-ITM_NUMBER = 10
               POCONDX-ITM_NUMBERX = X
               POCONDX-COND_TYPE = X
               POCONDX-CHANGE_ID = X
    It is not necessary to transfer additional item data. Theonlyinformation that must be transferred in addition to the condition tables is the purchase order number (PURCHASEORDER field).
    1. POCONDHEADER-CHANGE_ID
    The header conditionsaretransferred using the POCONDHEADER table. Here, the CHANGE_ID field has the same function as in the POCOND table (see above).
    Prerequisite
    You must implement Note 494759 in your system to use these functions.
    Example
    You create a purchase order with several items and want to distributethe amount 100 EUR to the items on a percentage basis. You defined condition type HB00 for this purpose. Then the POCONDHEADER and POCONDHEADERX tables must be filled as follows:
               POCONDHEADER-COND_TYPE = HB00
               POCONDHEADER-COND_VALUE = 100
               POCONDHEADER-CURRENCY = EUR
               POCONDHEADER-CHANGE_ID = I
               POCONDHEADERX-COND_TYPE = X
               POCONDHEADERX-COND_VALUE = X
               POCONDHEADERX-CURRENCY = X
               POCONDHEADERX-CHANGE_ID = X
    Thanks
    Saquib
    Message was edited by: Saquib Khan

  • Gnome Keyboard Indicator Problem...

    Hi,
    I have installed gnome on my laptop and the gnome keyboard indicator to change between usa and greece in languages. I have se the combination alt-shift and everything works when pressing alt-shift the change happens and I can switch between greek and english to write.
    The problem is that the indicator constantly shows USA on the gnome panel and does not follow the switching as it is supposed to.
    Is it a bug or something?

    Romashka wrote:
    Gnome 2.16.2 is out.
    This bug is fixed!
    - Fixed keyboard indicator segfault (Sergey UDaltsov) (351395)
    Oh, this fixed bug is another one.
    Bug 355074 is still not fixed.

  • Picture indicator problem in LabVIEW 8.5

    I'm reading a BMP image (size 3216x2136).  Trying to display it to a picture indicator ends up displaying a white (empty?) picture.  If I crop the image small enough (i.e., 3216x1500), it will display to a picture indicator okay.  However, if I try to convert the cropped 2nd picture indicator using "Picture to Pixmap", I end up with an image that contains only the background color.  If I reduce the cropping to even smaller (3216x1000), the Picture to Pixmap works fine.  Memory problems?  Or a problem in the picture indicator?  See attached VI and test image.
    Attachments:
    picture indicator test.vi ‏37 KB
    image3216x2136.zip ‏20 KB

    mvickerman wrote:
    Weird -- I'm not seeing the problem anymore.  Did 2 things: 
    1 - Changed the entry in my boot.ini file to remove the /3G flag (which supposedly increases the amount of memory LabVIEW can use?)
    The LabVIEW Help actually explains the /3G flag. A copy of the page can be found here:
    http://zone.ni.com/reference/en-XX/help/371361D-01/lvhowto/enable_lrg_ad_aware
    Note that this only applies to 8.5 and above.

  • Macbook magsafe/battery indicator problem

    Hi there,
    My Macbook's magsafe indicator light, and the battery status indicator on the Finder bar keep alternating between green/orange and "Charged"/"Calculating" respectively.
    is this a battery problem? any suggested fixes?

    Hi al-bee,
    reset your pram and smc:
    http://docs.info.apple.com/article.html?artnum=303319
    http://docs.info.apple.com/article.html?artnum=2238
    download battery updater 1.2 if you haven't done so:
    http://www.apple.com/support/downloads/batteryupdate12.html
    Good Luck

  • Battery indicator problem!

    I have a nokia x6 and i have a problem. The battery indicator shows full battery until 30% left. (i used bettery monitor application.) and ther rest of the battery indicator lines dissapear very quickly. It happens in my E72 and 5320 xpressmusic too. What can i do for a more precise battery information?

    The standard battery indicator is never going very accurate. However, you can try to make it a little more accurate by occassionally allowing the battery to run down and only charge when it beeps low battery. There is no need to wait for the phone to turn off as this could lead to other problems.

  • Major SMS indicator problems

    Okay I'm having major SMS issues on my iPhone 4. It ranges among the following issues. I've powercycled, I've restored it multiple times to no avail.
    1. I get a text, the text indicator shows a number on the green icon. I click the icon and none of the messages show. I have to powercycle and go back in for them to show up.
    2. I read texts and the number indicator doesn't go away.
    3. It shows that I have texts when I don't.
    Anyone else having these issues? What should I do? I love the phone and this is my only problem.

    Hi there, it's not an issue that I've had or seen posted in forums so my suggestion woudl be to restore the iPhone and see if that clears the issue. If not then it could be related to your setup and your carrier. If your carrier has a technical forum then have a look there for any trend with other users or call their customer services to check your account and set up.
    Hope this helps and you get it resolved.

  • N97 NAM Battery Indicator Problem

    Hi, my Nokia N97's battery indicator does not seem to work anymore.  It always shows full until the battery runs out and then the device shuts off.  The battery indicator did work the very first time I tried it.  I fully charged it and then after leaving the phone on overnight, the device had shut itself off.  I assumed it was because the phone ran out of battery so I recharged it.  After 3 hours of charging, I decided to disconnect the device from the charger and thats when the battery indicator stopped working.  It's been showing full bars the entire day, even after heavy usage.  I tried a reset (*#7370#) but that didn't fix it.  The phone is fine, just the battery indicator doesn't seem to work.  Also, after doing the reset, I lost the Ngage games.  Does anyone know how to fix this battery problem and retreive the Ngage games that came with the phone.  Thanks!

    I have Very similar problem. Battery indicator shows full for a day, two even once for 4 days! And on th next day it starts RAPIDLY going down it is hard to finish the day without recharge. 
    It is VERY annoying as all my phones warn me at least a day before ran out of power (E71 is Very Good example) .
    I am with 12-th FW  

  • N95 battery indicator problem. I'm becoming desper...

    Hello. Two months ago I bought a new n95. I was so happy with my phone until three days ago I realized that the battery indicator was the whole time at full. And it kept indicating full battery until the phone shut down. So I decided to perform a firmware reinstall and hard reset. Immediately after the firmware reinstall the phone was indicating normally (only three bars). But yesterday in the night, after charging it, again the problem came up, and now my phone is again indicating full battery eventough I have used GPS, music, calls and everything to low battery down. I can't be reinstalling every time, something's wrong with my phone.
    Can somebody help me? I don't know what to do, I'm really becoming desperate.
    This phone never fell, or hit; in fact, it was treated like a diamond.
    Thanks a lot in advance for your help and sorry for my english.
    Mauricio.

    Hmmm .. I would suspect hardware: either the phone's not reading the battery power properly or there's a problem with the battery. Despite it starting to work after the reset, I can't see it being software somehow.
    I would take the phone to a service center and see if you can have them test your phone with other batteries and your battery with other phones - make sure your battery's not fully charged when you take it in.

  • Lumia 820 battery indicator problems

    I have some problems with the battery indicator. Sometimes it freezes at random percentages. Ex: i charged my phone; the battery indicator shows 100% and it remains at 100% even though i use the phone for many hours. I know the battery is not full and the indicator changes only when the battery reaches critically low level. Some other times it freezes at 77 or so. Ex2: during charging the indicator shows actual battery level(let's say 25%). But if i try listening some music, the indicator goes instantly to 100%.
    i find these software problems a little bit annoying.
    Solved!
    Go to Solution.

    hi mate,
    have you tried performing a soft reset (pressing the volume down and power buttons together until the phone vibrates)? also ensure that you have the latest Nokia system app updates installed from the Store. have you also taken your battery out and replaced it after ten minutes. failing that, you may need to perform a hard reset (Settings > About > Reset your phone). make a backup before doing this to PC and/or online storage first of your data, as a hard reset wipes all data.
    Failing the above, you will need to take your phone to your local Nokia Care for inspection: http://nokia.com/support

  • Interner Explorer Progress Indicator Problem

    Hi all,
    I'm developing a web project using Struts and xsl. The problem is In some pages once you press the submit button, the progress indicator which shows the progress in loading the page, shows the page is loaded without loading the new page. This problem occurs where there is a long background process to complete like database update which may take few seconds. In Firefox this works properly.
    Then the user can again submit the same page.
    Can any one help me on this

    Cp5x had some bugs in this area.  Test with other fonts such as Arial or Myriad Pro.

  • 1DX exposure indicator problem

    Hi All,
    The exposure meter indicator on my IDX on the far right when looking through the viewfinder is perpetually stuck at the very top. All other controls seem to work. I cannot figure out how to rectify this so that I can use the light meter. Any ideas or suggestions? Oh and I upgraded to the latest firmware but the problem remains.
    S.

    If you are shooting in "manual" mode (and only in manual mode) then the arrow pointing right (off the right edge of the metering indicator) means the camear believes you are going to over-expose the shot.
    If you are shooting in a semi-auto mode such as Av, Tv, or P, then the meter indicates the amount of exposure compensation that you've dialed in.  The large rear-dial on the camera controls exposure compensation.  Half-press the shuttter to start the metering system, then roll the rear-dial counter-clockwise to re-center the arrow on the meter.  This control allows you tell the camera that you'd like to exposure for a higher (or lower) amount of light than what the camera meters.  E.g. if shooing a white snowy scene the camera will tend to underexpose because of the dominance of white.  If shooting dark scenes the camera will tend to over-expose because of the dominance of black.  The meter normally believes a shot should "average" out to a "middle gray" value.  So when your scene does not truely represent a "middle" gray value then you'd want to compensate using this control.
    In manual mode, the arrow simply tells you if it believes you are going to over-expose or underexpose the shot.
    If you test the metering on a day in FULL mid-day sun (no shadows, no clouds), set the camera to Manual (it must be on Manual or this wont work) and set the exposure settings to ISO 100, f/16, and 1/100th sec.  and set the metering to use evaluative metering then your in-camera meter should show the arrow at or very near the center (particularly if you are metering a scene that should come up with something close to a middle-gray exposure - don't try to metering anything "white" or "black" as this will throw it off.)  
    Tim Campbell
    5D II, 5D III, 60Da

  • PR to PO with deletion indicator problem

    Hello,
    I need to one e.g. in conversion process. I have 3 line items and created PR with that.
    Now after creation of PR marked deletion indicator on second line item and save the PR. Now after release when i convert
    this from PR to PO i am not getting proper results. I want to know whether system will be able to create PO for line item 1 and line item 3 and ignore line item 2? . Also i want that both 1 and 3 line items should be one PO, no searate PO should be issued.
    How can we achieve this.
    Thanks
    Himanshu

    Hi Himanshu ,
    By adopting the PR to the PO via the shopping cart button all marked documets of the overview are copied onto the overview.
    As a workaround you could control the selection of PR, you could select the 'open only' checkbox in the selection screen in
    the overview. Then the deleted items should not appear on the overview and therefore will not be adopted to the purchase order.  Another option is to use the 'deletion indicator' in the variant for purchase requistion therfore excluding the
    deleted items in your selection.
    Kind regards,
    Lorraine

Maybe you are looking for