Over picking not allowed for L_TO_CREATE_DN

Hi experts,
Can anybody help me doing over picking of delivery quantity when creating TO using BAPI L_TO_CREATE_DN ?
My requirement is such that:
Create a TO  with 300 quantity against a delivery number that having 200 quantity and I need to set "Adopt pick quantity" = 1, i.e. i_KOMIN = 1.
I tried it with passing it_delit table having values pf POSNR,ANFME,ALTME. and i_lgnum,i_vbeln, i_komim = 1,i_nospl = 1, i_commit_work = X.
But it throws exception with msg "Total for assigned quantities exceeds quantity to be removed".
How can I acieve this reqmt?Pls help.
Thanks in advance,
Samy.

Finally I solved this issue by adding some enhncement point to the various subroutines called by this BAPI.
1. Inside include ML03TF50_LTAPA_AUFBAUEN_DN
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""$"$\SE:(1 ) Form LTAPA_AUFBAUEN_DN, Start                                                                                D
$$-Start: (1 )----
$$
ENHANCEMENT 85  ZES_TO_2611_2.    "active version
  if sy-tcode eq 'CO11'.
    DATA: lv_flag TYPE char1.
    lv_flag = '1'.
    EXPORT lv_flag FROM lv_flag TO MEMORY ID 'Z2611_FLAG'.
  ENDIF.
ENDENHANCEMENT.
"and
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""$"$\SE:(2 ) Form LTAPA_AUFBAUEN_DN, End                                                                                D
$$-Start: (2 )----
$$
ENHANCEMENT 84  ZES_TO_2611_2.    "active version
  IF sy-tcode eq 'CO11'.
    DATA: lv_menge TYPE LTAP_VSOLM.
    IMPORT lv_menge TO lv_menge FROM MEMORY ID 'Z2611_MENGE'.
    LOOP AT ILTAPA.
      ILTAPA-ANFML = lv_menge.
      MODIFY ILTAPA INDEX sy-tabix FROM ILTAPA TRANSPORTING ANFML.
    ENDLOOP.
    CLEAR lv_menge.
    FREE MEMORY ID 'Z2611_MENGE'.
  ENDIF.
ENDENHANCEMENT.
2. Inside include FL000F00
(inside form UMRECHNEN_ALTME_MEINS)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""$"$\SE:(1 ) Form UMRECHNEN_ALTME_MEINS, End                                                                                D
$$-Start: (1 )----
$$
ENHANCEMENT 2  ZES_TO_2611_1.    "active version
  if sy-tcode eq 'CO11'.
    DATA: lv_menge TYPE LTAP_VSOLM,
          lv_flag TYPE char1.
    IMPORT lv_flag TO lv_flag FROM MEMORY ID 'Z2611_FLAG'.
    IF lv_flag eq '1'.
      lv_menge = P_MENGE.
      EXPORT lv_menge FROM lv_menge TO MEMORY ID 'Z2611_MENGE'.
      P_MENGE = 0.
      CLEAR lv_flag.
      FREE MEMORY ID 'Z2611_FLAG'.
    ENDIF.
  ENDIF.
ENDENHANCEMENT.
(inside form UMRECHNEN_MEINS_ALTME)
ENHANCEMENT 1  ZES_TO_2611_1.    "active version
  if sy-tcode eq 'CO11'.
    DATA: lv_menge TYPE LTAP_VSOLM,
          lv_flag TYPE char1.
    IMPORT lv_flag TO lv_flag FROM MEMORY ID 'Z2611_FLAG'.
    IF lv_flag eq '1'.
      lv_menge = P_MENGE.
      EXPORT lv_menge FROM lv_menge TO MEMORY ID 'Z2611_MENGE'.
      P_MENGE = 0.
      CLEAR lv_flag.
      FREE MEMORY ID 'Z2611_FLAG'.
    ENDIF.
  ENDIF.
ENDENHANCEMENT.

Similar Messages

  • HT4623 My old school iPod touch won't update.  Does apple mess it's customers over by not allowing updates for older models of the touch?  My last update is Ios5.  My touch says its up to date.  So has my old school touch reached its pinnacle?

    My old school iPod touch won't update.  Does apple mess it's customers over by not allowing updates for older models of the touch?  My last update is Ios5.  My touch says its up to date.  So has my old school touch reached its pinnacle?

    Correct. The 3G iPod does not have the hardware to support an iOS version higher than 5.1.1
    To more easily find compatible apps:
    iOSSearch - search the iTunes store for compatible apps.
    Apple Club - filter apps by iOS version.
    Starting when iOS 7 was releases, Apple now allows downloading the last compatible version of some apps (iOS 4.2.1 and later only)
    App Store: Downloading Older Versions of Apps on iOS - Apple Club
    App Store: Install the latest compatible version of an app
    You first have to download the non-compatible version on your computer. Then when you try to purchase the version on your iPod you will be offered a compatible version if one exists.

  • Payment method(s) are not allowed for this program / Program RFFOAVIS_FPAYM

    Dear Friends,
    In Se38  abap editor, I entered the program RFFOM100, i entered the details program run date,identification future,paying company code,payment methods T, House bank, Account Id and executed the program. I am getting the error 'Payment method(s) are not allowed for this program'.
    Payment method S is not used in F110, It was not mentioned in vendor master or vendor invoice.It is not mentioned in fbzp in bank determination. When i tried to delete payment method 'S' the system shows a message Payment Method S is being used in the company code.
    In  the program RFFOAVIS_FPAYM, i entered the details program run date,identification future,paying company code,payment methods T, House bank, Account Id and executed the program. I am getting the error  'Program RFFOAVIS_FPAYM: No records selected'. But there open items or invoices.
    Please suggest how to resolve the errors.
    Regards
    Sridhar

    Hello,
    Why are you directly executing these programs?
    You will not expect these program to execute directly by going to SE38.
    I would have configured the relevant payment methods in the country with DME structure or classical RFFO* programs, which in turn pick up the inherent programs at the time of running F110.
    For example, if you need to generate BACS file for country GB, either you copy the GB_BACS to ZGB_BACS or use GB_BACS directly in FBZP settings.
    Make sure that you have maintained OBPM1 / OBPM2 / OBPM3 and OBPM4 settings properly.
    The system automatically gives the access to system RFFOAVIS_FPAYM. Prepare a variant against this program in F110. Relevant file gets generated to folder path mentioned in OBPM4 will get generated. The file get generated can be seen in AL11.
    Hope this is informative and solves your issue.
    Regards,
    Ravi

  • SP Online Auth Error: Direct login to WLID is not allowed for this federated namespace

    I receive the error "Direct login to WLID is not allowed for this federated namespace" when authenticating for Sharepoint online over https using code from: code.msdn.microsoft.com/windowsapps/Office-365-Create-Windows-5a88ccfc/view/SourceCode#content
    Is there any setting on Sharepoint Online that is preventing successful authentication. The credentials passed are valid.
    Thanks.

    No. SharePoint uses claims authentication for login by default. Since SharePoint doesn't recognize the source of connection you are trying to connect. Try using secure store from SharePoint online to add credentials of your windows app and then try
    working it. Even if that doesn't work then try modifying the C sharp connection to SharePoint code.
    If you find this information useful then please propose this as answer and vote.
    Thanks.
    Ujjwal Patel
     |
    SharePoint Online Support Engineer, MCPD, MCTS, MCAD.

  • System shud not allow for batch change after  bacth determiantion.

    Dear ALL,
       I have one Isuue at my client , there requiremtn is -
    "Performing the process it was detected that the raw material and packaging material  batches could be changed after the process order created, which allows to picking a batch instead FEFO. "
    Is there any way that system not allow for any change related to batch and its qunitity.
    Awaiting for fevorable respoce.
    Regards,
    Prerna Verma

    Hi Prerena,
    Activating Check Batch Tab in COR4 will performs an additional check in order itself.This check works after completing Batch Determination.For example during Batch Determination system has selected (as per your sort rule) Batch X for issue.But later User tries to change this Batch No. to Batch Y(by overwriting the batch no. in Batch field).But if you have activated this Check Batch function then system will perform the check immediately whether this new Batch complies the Batch Determination rule or not.And if found wrong then gives you an error or warning msg(depends oin your msg control).
    my second point is regarding Transaction code COB1 to deactivate the Allow change function.See if you activate the this tab then you finds that qty fields editable during Batch determination.So you can change the qty. manually during batch detemination.
    So in your case 2 level checks required.
    1) During Batch Determination (COB1) - Deactivate Allow change
    2) After Batch Determination(COR4) - Activate Check Batch
    Regards,
    Dhaval
    Edited by: Dhaval on Sep 27, 2010 8:43 PM

  • Voice over does not allow me to open locked screen

    voice over does not allow me to open locked screen iPhone 6
    <Subject Edited by Host>

    Use two taps wherever you would use one tap. Navigate to Settings/General/Accessibility and turn it off.

  • The value 4010 39 99 is not allowed for the field MARC-STEUC/BAPI_MARC-CTR

    Hi all,
    BAPI' BAPI_MATERIAL_SAVEDATA' throws error the below error while creating material.
    'The value 4010 39 99 is not allowed for the field MARC-STEUC/BAPI_MARC-CTRL_CODE'
    Any idea abt this error.
    Regards,
    Thiyagu

    Hi,
    As this BAPI is triggered from external sytem that by client in production environment , I would not be able to dig it further.
    Thats why I asked if anybody confronted the same error previously.
    Thanks for suggestion.

  • Limit PO Err Combination of GR/IR control not allowed for external services

    Hi,
    I am having a problem while replicating free text Limit PO's to R/3 in SRM 4.0 SP 13. The issue is while creating Free Text Limit SC with the  "Confirmation and Invoice" option checked in, the PO's get created in SRM but fails while replicating to R/3 and in RZ20 errors as "Combination of GR/IR control not allowed for external services" although in vendor master i don't have check for the field "GR-Based Invoice Verification".
    On the contrary while creating SC with the "Invoice Only" the PO is successfully replicated to R/3 with item category as B for limit orders.
    Now i have noticed if i make changes in the vendor master data i.e. check the flag "GR-Based Invoice Verification" then the PO in my first scenario gets replicated successfully and also with respect to the second scenario but it gets replicated in both the scenarios as item category "D".
    As far as SRM standard it should have ideally behave like the below:
    Limit SC with GR AND Invoice -> item category D
    Limit SC with invoice only -> item category B.
    Now my question is why do my PO's fail in R/3 in the first scenario and also if i check the flag in vendor master for GR-Based Invoice verification then in the second scenario the item category is "D" instead of "B".
    Thanks in Advance.
    Best Regards
    Anirban

    Hi Georg,
    We don't have any active implementation for the BADI BBP_PO_INBOUND_BADI.
    Best Regards,
    Anirban

  • Limit PO :Combination of GR/IR is not allowed for external services

    Hi,
    we are  working in  SRM40 sp09 & back end ECC.50
    In the Limit PO:
    we are able to create  Limit PO from a shopping cart.The follow on documents in ECC, it is creating a PO with Item category "B" and the "invoices" are only possible.
    The Issue:
    The Client wants the Confirmation/GR functionality to be enabled and the Invoices.
    but for  Limit PO, with follow on documents--"Confirmation" is checked, we have a error message—“combination of GR/IR is not allowed for external services".
    Is there any addition configuration or steps involved.
    Thanks and Regards,
    RK.

    Hi
    <b>Please go through the links below, which address the same issue -></b>
    Limit PO(Item category D instead of B)
    SRM: Item category B/D for limit PO
    Re: Problem with Unknown account assignment with limit order...reply soon...
    Do let me know.
    Regards
    - Atul

  • Combination of GR/IR Control not allowed for External Services-SRM PO error

    Hi All,
    SRM 5.0 ECS   R/3 4.6C
    We have a service PO, for which an error Combination of GR/IR Control not allowed for External Services is being displayed.
    The PO is in error in process at this moment. And is not in R/3
    On SRM PO we have Confirm Performance of Service/Goods Receipt checked and Invoice Expected checked.
    Confirmation-Related Invoice Verification  is not checked. Any thoughts on this!!
    Thanks
    Krishna

    Hi
    <u>Please go through the following SAP OSS Notes -></u>
    Note 725824 - MB5S: Error with purchase orders for external service
    Note 781014 - Clearing values in purchase order currency are too high
    Note 991800 - MB5S: Error in delivery costs (2)
    Note 960789 - Wrong Values in MM Document for Service Based Invoice
    Note 778562 - MM-IV: invoices are entered before the goods receipt
    Note 578531 - Incorrect FM update for service purchase orders
    Note 635864 - ME2S: Invoice value is calculated incorrectly
    Note 570409 - Unplanned account assignment in invoice for service PO
    Note 545684 - MIR4 for SRV: Incorrect data displayed if deletion indicator
    Note 544567 - Transaction MIRO: incorr. default values at (parked) invoice
    Do let me know.
    Regards
    - Atul

  • ABAP Dictionary type FLTP is not allowed for screen element

    Hi Experts
    I tried to open VBFA in se16 and i got the message in the status bar like this , what does it mean. please explain.
    "ABAP Dictionary type FLTP is not allowed for screen element"

    Hi,
        This is from help
    ABAP Dictionary type FLTP is not allowed for screen element
    Message no. 37048
    <b>Diagnosis</b>
    The format of the ABAP Dictionary field is only for use within the ABAP
    program and cannot be used in the Screen Painter.
    <b>Procedure</b>
    The field cannot be used in screens. If you want to output the
    information in the field or assign a value to the field from the screen,
    you must use an intermediate field with an appropriate format.
    <b>Reward points</b>
    Regards

  • Vendor Creation ,Partner role OA not allowed for Vendor of a/c group ZLOV

    Dear Freinds,
    I am facing problem of  Vendor creation , i am getting message  PARTNER ROLE OA NOT ALLOWED FOR VENDOR OF ACCOUNT  GROUP ZLOV.
    While creation of  Vendor in Partner function  i  could not  enter  partner number, system is not accepting any data, message is getting as above.due to which i could not create any vendor.
    Presently I am in process/ setting of  ERS functionality in MM,
    now all my Vendor creation is stuck up ,
    please help me how to solve the problem
    Regards
    Dilip

    Hi Dilip,
    Check first have you Define Permissible Partner Roles per Account Group..
    Check the path:
    SPRO-Materials Management-Purchasing-Partner Determination-Define Permissible Partner Roles per Account Group
    Here check whether OA is assigned with ZLOV or not...If no then click on new entries and enter partner function as OA and Vendor account group ZLOV...Save nd come out...
    Now proceed...Hope it helps..
    Utsav

  • Capital inv. program position not allowed for measure

    Hi Gurus,
    When I am going to assign top level wbs to investment program position i am getting the error message
    How I can overcome this.
    Quick response will be rewarded and appreciated.
    Cap. investment program position not allowed for measure
    Message no. AP039
    Diagnosis
    You want to assign a measure or appropriation request to an investment program position.  However, the program position does not allow this type of assignment.
    System Response
    The assignment is not allowed.
    Procedure
    Use the detail display in the position to find out what assignments are allowed to it.
    rgds

    HI Sree
    In  im12 I have one general Tab and one Organisational tab.Here I am not getting allowed measures button.
    even though I am unable to create AR when i am assigning WBSE there then I am getting the error message.
    Program type not allowed according to budget profile of measure
    Message no. AP177
    Diagnosis
    You tried to assign a measure to an appropriation request.
    The appropriation request type for the appropriation request specifies that assignment from measures is only possible, if the measures specify that they have to be assigned later to an investment program with program type ZM01.
    However, the budget profile of the measure specifies that it has to be assigned later to an investment program with program type ZC01.
    System Response
    The function cannot be carried out.
    Regards

  • Reg msg "Payment method(s) are not allowed for this program".

    Hi...
    I am copying a standard program RFFOES_T (Print program for bank transfer) into a custom program. When i try to execute the custom program it gives me a msg saying
    "Payment method(s) are not allowed for this program".
    Can you please Provide a solution for this problem.
    Regards,
    Indira.

    Indira,
    1.RFFOES_T is using Logical database PYF.Seems you have copied it as it is without changing the attributes of the program.
    2.As it is using logical database PYF  it needs to be tagged to the respective payment methods in FBZP settings as below
    FBZP
    >>Payment methods in Country
    >> in the next screen click on position and give the company code and payment method
    >> in the next screen select the corresponding payment method and click on the details(ctrlshiftf2) ie magnifying glass icon
    >>in the next screen  within  Payment Medium you will get to see two radio buttons as Payment medium workbench(uses DMEE tree structure)  and payment medium programs (uses the standard prog).Here in Payment medium Program either the standard prog or your zprogram should be tagged otherwise you will get the error message as you mentioned.
    3.Once you tag the program in the FBZP setting to the respective payment methods,after the payment run you will be able to run the program.
    4.If you don't want the program to be linked to FBZP settings then as far as my knowledge is concerned you need to avoid using logical database PYF and change the entire code using the regular database tables like reguh,regup,bkpf,bseg etc.(I think this should be the best approach)
    Thanks,
    K.Kiran.

  • BAPI CASESERVICE CREATEMULT - Alternative price not allowed for the service

    Hi,
    I am using .Net Connector to connect to BAPI. I am developing a .Net order processing application and intend to send the order information to SAP using BAPI_CASESERVICE_CREATEMULT.
    However, I keep getting the error message "An alternative price is not allowed for the service..". The service id is already setup at SAP and I am not sending any price information. I am only sending quantity. The DIFF_PRICE is set to 0.
    Any advice? I appreciate your help.

    Hi,
    I am using .Net Connector to connect to BAPI. I am developing a .Net order processing application and intend to send the order information to SAP using BAPI_CASESERVICE_CREATEMULT.
    However, I keep getting the error message "An alternative price is not allowed for the service..". The service id is already setup at SAP and I am not sending any price information. I am only sending quantity. The DIFF_PRICE is set to 0.
    Any advice? I appreciate your help.

Maybe you are looking for

  • EMET v4.1 not installing on Windows 7 x64

    We are testing EMET v4.1 in our environment, and I created a package in SCCM 2007 using the recommended command line from the documentation: msiexec /i "EMETSetupv4.1.msi" /qn /norestart When pushed to a Windows XP x32 system via sccm it worked fi

  • Cropped image not filling the same size cell

    Hi all, I've been seeing an interesting issue with the print module in LR3.  OS is Win7 64-bit BTW. Take an image, crop it to 8x10, 5x7 or whatever.  Go to Print Module and select an 8x10 cell size template or a 5x7 (2) cells sized template..  The im

  • Cant Send Messages from Nokia N8

    Hey All I Cant Send Messages From Nokia N8-00 The Error Which I M Facing Is Whenever I Type A Msg And Send It It Goes Directly To The Outbox When I M Resending it it is not being sent Please Help!

  • ButtonBar and ProgressBar all in one

    Anybody have any idea how this ButtonBar + ProgressBar type of component was created? (See the InsuriCorp example, second one down) http://www.adobe.com/devnet/flex/articles/fig_pt6_05.html It's really great looking but I'm really not sure how they w

  • Why is my system prefences freezing when i want to change my desktop picture?

    I got a picture and i want to tile it so i went to system prefences and changed it the ikmage are showed a question mark and the background went black.I shut it down turned it off and restart it but it wont work.Help me please.