How to allow Goods Receipt only when Good Issue done for that process order ?

Hi,
I

Hi Pillai,
Follow the instruction in this document: Without GI Confirmation and Without Confirmation GR Is Not Possible
Regards,
Julian

Similar Messages

  • Allow Goods Receipt only when Goods Issue already done against process order

    Hi,
    Can we put a validation that , in case of process order, without goods issue system will not allow for goods receipt against that process order.
    Regards,
    Archana

    Check this link
    http://scn.sap.com/thread/493508
    User exit for GR without GI
    Regards,
    Himanshu

  • Landed costs can not get Goods receipt PO when Goods return made

    Hi, everybody
    I need to calculate landed costs and it seems that I can not use when I built a Goods return.
    My procedure as follow ( ps: the same vendor number)
    1. created a PO then Goods receipt PO (docNum says 1111) which included 20 quanties for item no AAAA.
    2. created a Goods return which Copy from Goods receipt PO no: 1111, which included 5 quanties for item no AAAA.
    3. next, I try to caculate my Landed costs. I open a new Landed costs and click the button "Goods Receipt PO", but I can not find any Goods receipt PO no: 1111.
    What can I do to caculate my exactly landed costs & Goods receipt PO no: 1111 that included 15 quanties?
    Thanks for your help

    When you only Returned partial goods from your Receipt.  The Receipt should still be open and you should be able to process the Landed cost. I am not sure why the GR is not showing in the landed costs window.
    Please check if the GR is closed by an AP Invoice / by itself.
    Otherwise, you will need to process AP Goods Return for the remaining 15 and process a New Goods Receipt for 15.
    Regards
    Suda

  • Goods Receipt Against A Goods Return - Not Working

    Hi,
    i have been trying to work through the Purchase goods return process for a client and am having issues with the flow.
    This is the process :-
    Create Purchase Order for 1 item,  Qty = 21
    Goods Reciept linked to Purchase Order - Qty = 21 this is 100% (Purchase Order Closes)
    Goods Return linked to Goods Receipt - Qty = 1
    Goods Receipt replacement item from supplier - attempted to link to Goods Return - none available - find goods return closed !!!
    How can i link the new goods receipt with the original Purchase Order/Goods Receipt/Goods Return if the goods return is closed.
    I'm using 2007A SP01 PL05
    Thanks
    Barry

    Dear Mr Mason,
    The scenario you described:
    Return closed automatically after being added
    is system behaviour.
    It is not possible to link the new GRPO to the goods return.
    The only suggestion I can give you is writing the GRPO and goods return numbers in the remark of the new GRPO.
    Regards,
    Marcella Rivi
    SAP Business One Forums Team

  • Goods receipt Quanity and Goods Issue Quantity tables

    Hi experts,
    Can u plz let me know in which tables we can find the Goods receipt Quanity and Goods Issue Quantity
    if  not how to get the values of these, neccessary for open PO report
    Thanks in advance.

    Hello,
    You can get the GR/ GI quantity for a PO from EKBE table.
    GR
    EKBE-EBELN = EKPO-EBELN
    EKBE-EBELP = EKPO-EBELP
    EKBE-VGABE = '1'
    EKBE-BEWTP = 'E'
    GI
    EKBE-EBELN = EKPO-EBELN
    EKBE-EBELP = EKPO-EBELP
    EKBE-VGABE = '6'
    EKBE-BEWTP = 'U'
    The qty are present in EkBE-MENGE
    BR,
    Suhas
    Edited by: Suhas Saha on Jan 29, 2009 4:52 PM

  • Goods receipt and post goods issue are not updated back from EWM to ECC

    Hi Experts,
    Would anybody able to tell me the setting to be modified / defined to backward flow of information from EWM to ERP i.e. the goods receipt, goods issue are not being updated back in ECC once the goods receipt and  post goods issue are posted in EWM?
    It would be great help if i get the response as early as possible.
    Chakrapani Das

    Hi Chakrapani,
    You might want to try checking the customization on the SCM part following this path:
    SPRO - Extended Warehouse Management - Interfaces - ERP Integration - General Settings
    Pay special attention on the Check of ERP-EWM Configuration transaction.
    After you have checked these you should probably check the outbound queue monitor (tx SMQ1) from EWM to ERP. You can use the SMQ1 - Outbound queue and SMQ2 - Inbound Queue both in ERP and SCM to check the communication betweene these two systems.
    Also you may want to checkt the SLG1 - Analyse application Log in SCM in order to see if any internal bugs exist.
    All the best,
    Claudiu Maxim

  • Factory Output Account for Goods Receipt on Finished Goods Inventory

    Hello Experts,
    Factory Output Account for Goods Receipt on Finished Goods Inventory:
    Could someone suggest if anyone has ever been able to separate the variances that normally post to a factory output account into one separate G/L account. My experience has always been that good receipts to finished goods inventory and the corresponding variances have always posted to the same factory output account. My client wants to separate this posting into two separate accounts. Any assistance will be highly appreciated.

    Hi,
    You can use separate G/L account for Factory Output Account for Goods Receipt on Finished Goods Inventory and Variances.
    goto OBYC T.code do the following settings.
    GBB-->AUA-assign gl account
    PRD-->PRD-assign gl account.
    one question from my side.
    If you are using same account for both entries, where do you assing GL accounts in OBYC?
    Thanks,
    Rau

  • How to restore system RAM memory when i run DI batch job process

    How to restore system RAM memory when i run DI batch job process
    I use SAP-B12005SP53 and i develop with Business Partner Object

    HI ALL
    TAKE CARE: Nothing was working in VB6, but in .NET it sets the default value !
    from help of VS.
    When you assign Nothing to an object variable, it no longer refers to any object instance. If the variable had previously referred to an instance, setting it to Nothing does not terminate the instance itself. The instance is terminated, and the memory and system resources associated with it are released, only after the garbage collector (GC) detects that there are no active references remaining.
    Garbage Collector distroyes the objects at the end of the sub of function, not in the loop.
    So use local variables when you loading the 7000 items. For me working fine and i do not have a memory problems. I am loading 50000 items with prices from EDI file, and memory usage stops at 120MB.
    1st solution  create a sub or a function to populate the data, and run this for every items by as single rutin,
      sub x
        Dim obj As New Object()
            Try
    ... put here your update code
            Catch ex As Exception
            Finally
                GC.Collect()
            End Try
      end sub
    This free up the memory when Garbage
    2nd solution: use inner loop definition
      sub x
    Try
                Do While True
                    Dim obj As New Object()
                Loop
            Catch ex As Exception
            Finally
                GC.Collect()
            End Try
      end sub
    This free up the memory inside the loop.
    I recommend to use Friend Class keyword for your addon declaration and do not use modules.
    Modules and shared classes will be free up the memory when your program terminates execution.
    For more information see MSDN help http://msdn.microsoft.com/en-us/library/7ee5a7s1(VS.80).aspx
    and http://msdn.microsoft.com/en-us/library/0x9tb07z(VS.80).aspx
    Regards,
    J
    Edited by: János Nagy on Oct 15, 2009 2:17 PM

  • I don't know of there is anyone than can fix this age old Apple problem.   Does anyone know how to retrieve things under an old Apple ID when the email used for that account no longer exists? I am trying to update a number of apps that was bought under an

    I don't know of there is anyone than can fix this age old Apple problem.   Does anyone know how to retrieve apps under an old Apple ID when the email used for that account no longer exists & I can't remember the password? After speaking with Apple Acct. Security, I got the security Q right but my birthday was wrong! They wanted the serial number from my phone that was 3 iPhones ago! Seriously??!!
    Any updated way to work around this? No Apple people can correct it.
    Thanks,
    Joe

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (122986)

  • How much does CLAD cost? When can I sit for such an examination?

    I am interested in obtaining a CLAD certificate. I live in Beirut. I have found some test centers from http://www7.pearsonvue.com/Dispatcher?application=VTCLocator&action=actStartApp&v=W2L&cid=383 but I didnt get a reply when I asked them about cost/time.
    Can you help me by answering the questions?
    How much does CLAD cost? When can I sit for such an examination?
    P.S. I've been using LabVIEW for 5 month already.

    Hi A.A.A.,
    I'm glad to hear you are interested in pursuing your Associate Developer Certification. With regards to pricing and scheduling your exam, I recommend you contact the Certification specialists at your local National Instruments office. I believe that is National Instruments Arabia. You can send an email with your questions to [email protected] or phone # +961-1-33 28 28, and they will work with you to purchase and schedule your CLAD exam.
    Five months is a great start at familiarizing yourself with the LabVIEW environment. However, I definitely recommend taking a look at the exam preparation materials to ensure you are familiar with all the topics and terminology you could be tested on. If you go to the Certification Preparation Page (the link I included below) and select the Associate Developer exam and your timeframe, the page will return all the official preparation resources the Certification Development team has made available online. We also have some other posts on this forum with regards to exam preparation.
    http://www.ni.com/training/certification_prep/
    Best of luck!
    Mallori M
    Mallori M
    National Instruments
    Global Customer Education Program Mananger
    Calculate the time you will save with NI Training

  • Error for open process order when BOM alternative is not found

    Dear colleagues,
    When I open process order. BOM alternative is selected according to the production version. But when  BOM alternative is not found system gives only information message and I can open process order, I want to prevent open process order when there is no BOM alternative according to the production version. Because the Bom can be deleted after creation production version.
    Thanks for your helping,

    Hi,
    U need to use an enhancement at the creation of order to check the active status of the bom and restricting the order creation when BOM status is inactive.
    see whether following enhancement is useful for your scenario:
    PPCO0006 Enhancement & EXIT_SAPLCOZF_003
    Please confirm.
    Regards
    Suri

  • I have subscribed to US Holidays calendar. These holidays show up on iCal on my iPhone and on my iPad, but not on iMac. When I "get info" for that calendar, "location" is set to iCloud.

    I have subscribed to US Holidays calendar in iCal. These holidays show up in iCal on my iPhone and on my iPad, but not on iMac. When I "get info" for that calendar, "location" is set to iCloud.

    I found this link (trash Calendar Cache and iCal.plist), and it solved my problem. https://discussions.apple.com/message/11084987?searchText=ical%20us%20holidays%2 0not%20showing%20on%20imac#11084987

  • I have an iPhone 3GS and I restarted it. I have crossed my language, wifi, country and everything, but suddenly when I am done with that a message comes time after time "Activation error." What can I do?

    I have an iPhone 3GS and I restarted it. I have crossed my language, wifi, country and everything, but suddenly when I am done with that and it says "activating iPhone", a message comes time after time "Activation error." What can I do?

    Most activation errors happen because a phone has been previously hacked or jailbroken.  If this is the case, we cannot help you on this forum.  You'll have to look elsewhere for assistance.

  • Enhancement to make the first goods receipt as final(first and last for PO)

    Hello Experts,
    We have a business requirement wherein that only 1 goods receipt is allowed per purchase order. So meaning
    to say that no additional goods receipt will be allowed for a PO if it has already a goods receipt. I have checked
    BADIs like MB_MIGO_BADI, MB_MIGO_ITEM_BADI, etc but I can't change the value of the field ELIKZ which is the indicator
    for delivery complete.
    Any of you have done the same requirement of BADI/EXIT that I can use?

    Sorry - I don't mean the FIRST GR date, but the date when the batch was produced.
    thx,
    Jannik

  • Error during goods receipt of Finished goods for production order

    hi friends
    pls help me iam struggle this issue and mentioned the issue .
    when i do goods receipt for production order system getting error like
    No price could be determined for material/batch FG/ plant ZTP
         Message no. CK 465
    Diagnosis
         The system could not calculate a price for material/batch FG/ in plant
         ZTP for valuation view 0, because none of the valuation strategies in
         valuation variant 007 was successful.
    System Response
         User-defined error management enables you to specify whether the message
         is an error message, a warning message or an information message.
         o   If you have defined the message as a warning message or an
             information message, the costing item will be entered in the cost
             estimate with a value of zero.
    If you have defined the message as an error message, the cost
    estimate contains an error or errors.
    -   In the case of a material cost estimate, the system sets the
        status KF.
    -   If it is a cost estimate without quantity structure, or base
        object cost estimate (that is, a unit cost estimate),  the
        system cannot proceed with costing until you have corrected the
        errors.
    If the system issues a termination message, the cost estimate cannot
    be processed, and processing is terminated.
    procedure
        o   Check the master data for material/batch FG/ in plant ZTP.
        o   If you have authorization for Customizing, check the valuation
            strategy for materials in valuation variant 007.
        Note
        If the message is a warning message or an information message, there is
        a danger that materials with errors will be ignored by the system.
        If, because of this, you issue a warning message and at the same time
        include materials with a zero value in cost estimates, you can make the
        following settings for these materials in the costing view of the
        material master:
      1.  Enter a very low price in the planned price 1, 2 or 3 fields
          manually, for instance 0.01 USD. These prices are used for costing
          purposes only; they are not read by other applications.
      2.  Enter the highest price unit possible, for example 10000.
          Note: If you enter a new price unit that is higher than the costing
          lot size, the system increases the costing lot size accordingly.
      3.  Change the valuation strategy, such as strategy 4, where you could
          enter the planned price field in which you entered the low price.
          The system now costs as follows:
          Using the valuation strategy, the system finds planned price 1, 2 or
          3. Due to the low price and high price unit, the system rounds the
          value to zero. However, the cost estimate still obtains status KA
          (free of errors), and no error message is issued.
          This procedure can be used for all materials that have caused error
          message CK465 to be issued.
    with regards
    dinesh
    Edited by: code acess on Nov 8, 2010 4:06 AM

    hi ragavendra,
    this is dinesh .i maintained the costing view and planned price. but again i have same error.so please reply me where i missed the data
    with regards
    dinesh
    Edited by: code acess on Nov 9, 2010 4:01 AM

Maybe you are looking for

  • Dump TSV_TNEW_PAGE_ALLOC_FAILED

    Runtime Errors         TSV_TNEW_PAGE_ALLOC_FAILED Short text      No more storage space available for extending an internal table. What happened?      You attempted to extend an internal table, but the required space was      not available. What can

  • Query in LSMW

    In LSMW, how do to convert dd/mm/yyyy format in flat file to SAP date format..?

  • Sql loader - record separator

    I need to use sql loader to load records into my database. The field delimiter is ^X^P The record delimiter is ^B^A\n The datafile looks like this : MARK^X^PHATCHER^X^PACCOUNTS^B^A\nSCOTT^X^PMILLER^X^PMARKETING^B^A\nJOSEPH^X^P^X^PFINANCE^B^A\nLIN^X^P

  • User Exit/BADI for Transaction CNR1 & CNR2

    Hi All, We have a requirement where we need to make use of the transaction CNR1 & CNR2 to validate the employee number, can anyone tell me is there any user exit/BADI available for this purpose, I have searched for the user exits using a small utilit

  • AA 1.5 convert to 16 bit upon closing?

    In my AA 1.5, audio files open in 32 bit, which is what I want for processing. Is there a waay to cause them to convert to 16 bit upon closing? Thanks