Avoid the delivery creation in MIGO/MB1B at the time of goods movement

Hi All
Can anyone please help me to know, How to skip the delivery creation step in MIGO/MB1B at the time of goods movement (311) indebug mode.
In which part of the code the delivery creation logic would be written...?
Thanks and regrds
Karuna

Hi:
         It looks like to me if there is validation working in background . Please check in GGB4  there will validation active for this asset class . Low value asset check restricts you from posting an amount as specified in OAYK. Please check.
Br

Similar Messages

  • Table in which if I put the delivery number ..I should get the HEADER TEXT

    Dear Members,
    I am checking for a table in which if I put the delivery number ..I should get the HEADER TEXT. Does such table exists or a Z report shoudl be created for this kind of setup.
    Regards,

    Hi,
    There are two Tables in which the texts will be stored
    One is STXH -
    TEXT HEADER
    other   STXL------- TEXT ITEM
    If you want to get the Header text then input the values in the table
    In STXH
    TEXT OBJECT     is    VBBK
    TEXT NAME      is      DELIVERY NUMBER
    TEXT ID             is       ZS01  ( this is the standard ID for the  Header note 1 )
    Now goto SE37 and give the Function Module READ_TEXT and maintain all the above details and get the TDLINE Which contains the TEXT of the Delivery
    regards,
    santosh

  • Automatic Equipment creation at the time of Goods movement

    Hi experts,
    Can any one tell me where exactly the equipment creation happens at the time of GR creation, i mean program or function module.
    thanks,
    Veeru

    Hello experts ,
    Any response ??
    Regards
    Anis

  • Run the Repository Creation Utility (RCU) to install the SOA and MDS schema

    Hi
    I am new to SOA Suit and RCU installation.
    Can any one help me to provide a link to download RCU for linux OS 64-bit.
    how to Run the Repository Creation Utility (RCU) 11gR1PS3 to install the SOA and MDS schemas (Please provide the doc file are installation steps)
    I have installed following softwares
    1. Install Linux OS 64-bit
    2. Install the Oracle 11gR2 (11.2.0.1.0) 32-bit or 64-bit Database.
    3. Install WebLogic 11gR1PS3 (10.3.4.0) 64-bit.
    4. Install SOA Suite 11gR1PS3 (11.1.1.4.0) 64-bit
    Thanks in advance......
    Bye
    Phani

    Hi Dasari,
    Thanks for your reply.
    I have downloaded RCU from
    Prerequisites & Recommended Install Process
    Repository Creation Utility 11.1.1.4.0 Size: 308 MB, Check Sum: 2446020112
    http://www.oracle.com/technetwork/middleware/soasuite/downloads/index.html
    but I didn't saw rcu.sh but I saw RCU_HOME/BIN/rcu.bat file, which is support windows environment.
    I am looking RCU for linux OS 64-bit.
    if the same will use for both windows and linux that to 64-bit. please help me the RCU runing steps
    Thanks
    Phani

  • The delivery date is no use for the scheduling lines

    We are using scheduling agreement and automatic scheduling lines.
    but the delivery date is no use in MRP running.
    In scheduling agreement,I already maintain delivery time=2days and GR days=3 days.
    But after MRP running, I found the delivery line only consider GR days but not included delivery days.
    For example. (delivery time=2days and GR day=3 days)
    requirement date=2009.04.16,
    MRP results :scheduling line date=2009.04.13.(!only GR days=3 days in use )
    Why? I am using standard lot size TB( daily lot size, Scheduling: Requirements date := delivery date)
    Thanks in advance.

    We are using scheduling agreement and automatic scheduling lines.
    but the delivery date is no use in MRP running.
    In scheduling agreement,I already maintain delivery time=2days and GR days=3 days.
    But after MRP running, I found the delivery line only consider GR days but not included delivery days.
    For example. (delivery time=2days and GR day=3 days)
    requirement date=2009.04.16,
    MRP results :scheduling line date=2009.04.13.(!only GR days=3 days in use )
    It should be 2009.04.11.
    Why? I am using standard lot size TB( daily lot size, Scheduling: Requirements date := delivery date)
    Thanks in advance.

  • [JSF 2] Ajax event cause the re-creation of a @RequestScoped bean each time

    Hello,
    I have too many managed bean creation while using Ajax.
    I have this xhtml:
    <tr>
        <td align="left">
            <h:inputText id="code" value="#{asso.code}" maxLength="15">
               <f:ajax event="keyup" render="btnSuppression btnSoumission" listener="#{asso.onCodeChange()}" />
            </h:inputText>
        </td>
    </tr>
    <tr>
       <td><h:commandButton id="btnSuppression" actionListener="#{asso.suppression()}" value="${v001.btn_suppression}" /></td>
       <td><h:commandButton id="btnSoumission" actionListener="#{asso.soumission()}" value="${asso.modeDeSaisie eq 'CREATION' ? v001.btn_creation : v001.btn_modification}" /></td>
    </tr>and its related bean:
    @ManagedBean(name="asso") @RequestScoped public class AssociationBean
       AssociationBean() {... logs a constructor message ...}
       public void onCodeChange()
          getLogger().debug("(keyup) code: {0}", m_code);
    }Here is what I see in my logs, if I write few characters in my code field:
    [#|2010-07-03T12:55:07.596+0200|FINE|glassfishv3.0|web.vivo.association.AssociationBean|_ThreadID=36;_ThreadName=Thread-1;ClassName=utils.Logger;MethodName=debug;|(keyup) Mode de saisie du code: MODIFICATION, valeur: aaaa|#]
    [#|2010-07-03T12:55:26.302+0200|FINE|glassfishv3.0|utils.jsf.BaseManagedBean|_ThreadID=37;_ThreadName=Thread-1;ClassName=utils.Logger;MethodName=debug;|AssociationBean web.vivo.association.AssociationBean@f82287 créé.|#]
    [#|2010-07-03T12:55:26.308+0200|FINE|glassfishv3.0|web.vivo.association.AssociationBean|_ThreadID=37;_ThreadName=Thread-1;ClassName=utils.Logger;MethodName=debug;|(keyup) Mode de saisie du code: CREATION, valeur: aaaan|#]
    [#|2010-07-03T12:55:26.368+0200|FINE|glassfishv3.0|utils.jsf.BaseManagedBean|_ThreadID=31;_ThreadName=Thread-1;ClassName=utils.Logger;MethodName=debug;|AssociationBean web.vivo.association.AssociationBean@13d55bb créé.|#]
    [#|2010-07-03T12:55:26.375+0200|FINE|glassfishv3.0|web.vivo.association.AssociationBean|_ThreadID=31;_ThreadName=Thread-1;ClassName=utils.Logger;MethodName=debug;|(keyup) Mode de saisie du code: CREATION, valeur: aaaanfg|#]
    [#|2010-07-03T12:55:26.428+0200|FINE|glassfishv3.0|utils.jsf.BaseManagedBean|_ThreadID=53;_ThreadName=Thread-1;ClassName=utils.Logger;MethodName=debug;|AssociationBean web.vivo.association.AssociationBean@5bb215 créé.|#]
    [#|2010-07-03T12:55:26.435+0200|FINE|glassfishv3.0|web.vivo.association.AssociationBean|_ThreadID=53;_ThreadName=Thread-1;ClassName=utils.Logger;MethodName=debug;|(keyup) Mode de saisie du code: CREATION, valeur: aaaanfg|#]
    [#|2010-07-03T12:55:26.489+0200|FINE|glassfishv3.0|utils.jsf.BaseManagedBean|_ThreadID=32;_ThreadName=Thread-1;ClassName=utils.Logger;MethodName=debug;|AssociationBean web.vivo.association.AssociationBean@985ab7 créé.|#]
    [#|2010-07-03T12:55:26.496+0200|FINE|glassfishv3.0|web.vivo.association.AssociationBean|_ThreadID=32;_ThreadName=Thread-1;ClassName=utils.Logger;MethodName=debug;|(keyup) Mode de saisie du code: CREATION, valeur: aaaanfgk|#]
    [#|2010-07-03T12:55:26.559+0200|FINE|glassfishv3.0|utils.jsf.BaseManagedBean|_ThreadID=36;_ThreadName=Thread-1;ClassName=utils.Logger;MethodName=debug;|AssociationBean web.vivo.association.AssociationBean@2c6c4e créé.|#]AssociationBean is a managed bean being @RequestScoped.
    Why is it re-created for for each Ajax render event sent (each character typed)?
    Regards,
    Grunt.

    However, if my bean is now @ViewScoped, how my form will be able to submit values to another web page at navigation time?You are thinking too much in HTML terms here. You don't submit to a webpage; the information from the form is captured in your view scoped backing bean and you can process it in the action method or event listener that triggered the form submission.
    From there you can navigate to any view you want - the trick is that if you navigate to a different view the view scoped bean will go out of scope and will be discarded.

  • Reinstalled OS on first Gen MackBook Pro when I started with Leopard I checked the box to keep previous files..... good move..... I have progressed on up to 10.6.8 (best there is is for that machine) Now HOW to delete that folder?? THX

    It will not let me delete all this stuff...... OS 10.6.8 is now up and running and all software updated..... I used that file to dig out music and photos and such...... Took me 15 hours to do all this yesterday but al is working like new...... I just need to dump this old stuff now... thanks again

    Read > http://support.apple.com/kb/ht1710 You are referring to Previous System folder, at the root level of your hard drive.
    Just open a Finder window, select Go menu (on the menu bar) > Go to Folder, and type /. Then, move "Previous System" to Trash and empty Trash

  • 4500157269 -Document is incomplete: You cannot save the delivery

    Hi all,
    When I try to create an outbound delivery for an STO using t-code VL10B, i get an error saying the following:
    Error Log for coll. run 0000740903.
                4500157269 000000 Document is incomplete: You cannot save the delivery.
               LongText               Detail                 Diagnosis
                        When the system checked whether saving delivery was
                        permitted, it determined that the requirements stored in
                        Define Incompletion Procedures for this document do not
                        allow this subsequent function.
    Please advise how to overcome this problem.
    Thanks
    Kaveri

    Hello Kaveri,
    It seems to me that the "incompletion procedures" for replenishment delivery have not been fulfilled to create the delivery.
    Can you please check what is the incompletion procedure assigned to your replenishment delivery and what fields in that procedure are mandatory to be filled before the delivery document gets generated.
    If these fields are not filled, then the delivery creation fails. Please check the details in the config (LE>Shipping>Basic Shipping functions>incomplete control for deliveries>Assing incompleteness procedure and then define incompletion procedure for the field information at the header and item level).
    If this seems to be lengthy, please check with your SD guy who can quickly check it for you about the incompletion procedure requirements.

  • Avoid delivery creation from USEREXIT_SAVE_DOCUMENT_PREPARE

    Hi guys,
    I need to avoid the delivery creation, if certain condition occurs. How can I avoid that from the User Exit USEREXIT_SAVE_DOCUMENT_PREPARE?
    Thanks

    Hi,
              Try this BADI LE_SHP_DELIVERY_PROC , it will fire PGI preparation. In that you can write code as your
    requirement. I hope it will solve your issue.
    Thanks & Regards
    G.Vendhan.

  • Reuirement at the time of delivery creation or change

    Dear All,
    Please guide me or give me your inputs to full fill the requirement that i have,
    At the time of creation of delivery or changing a existing delivery i need to raise a pop up window listing all the materials in the delivery and next to the material a Input field needs to be there where the user can enter the certificate number for all the materials. This certificate number i need to store it in a Z field which i create in VBAP table. If the user does not enter the certificate number and try to PGI the delivery it must block the delivery for PGI. Incase if the user enters all the certificate number for the materials then it must allow to PGI the delivery.
    Please give me your inputs regarding this requirement. All your inputs will be valuable for me.
    Thanks & Regards,
    Sat

    Hello
    You have misinterpreted the warning message, this is not an error and there is no configuration that you have missed.
    In the STO process the material is subjected to avaialbility check,
    So i,e the reason the sytem has determined that the material is not availanle on the desired date.
    Thats the reason for the warning.
    Sufficient stock is not avialble on the Supplying plant for the STO, either you can change your deliovery date or the order qty to meet the availability
    Regards
    Mahesh Naik.

  • Converting Delivery Creation Date/Time into the Local Date/Time

    Hi
    I have two fields like 'Delivery Creation Date' and 'Delivery Creation Time' in ECC system . My user wants the Delivery Creation Date / Delivery Creation Time in Local time of Plants .
    For example :
    Delivery    Plant       DelivCreationDate       DelivCreationTime   DelivCreationDate(Local)   DelivCreationTime(Local)
    312456          1650               11/2/2007                     4:30                          11/2/2007                          3:30
    Here the Plant 1650 is in Mexico . The above delivery is created in Canada in ECC system according to the candain time .
    But user wants to convert the Candain Delivery Creation Date and Time into the Local Date/Time of specific plant .
    So we need to convert the  Candain Delivery Creation Date and Time into Mexico timings .
    How can it is possible this one and user wants to automate this process .
    Please let me know
    Mubeen

    DATA :
    timestamp like TZONREF-TSTAMPS,
    time like sy-uzeit,
    date like sy-datum.
    The following function module is used to convert the
    time and date into GMT timestamp
    CALL FUNCTION 'IB_CONVERT_INTO_TIMESTAMP'
    EXPORTING
    i_datlo = <source_fields>-delivery_date
    i_timlo = <source_fields>-delivery_time
    I_TZONE = CAD'
    IMPORTING
    E_TIMESTAMP = timestamp.
    The following function module is used to convert the
    above obtained timestamp to MEX  timezone date and time.
    CALL FUNCTION 'IB_CONVERT_FROM_TIMESTAMP'
    EXPORTING
    i_timestamp = timestamp
    I_TZONE = MEX
    IMPORTING
    E_DATLO = date
    E_TIMLO = time.
    CAD and MEX are variables i have used...
    the challenge is to find the canadian and mexican time zone....CAD and MEX.
    which you can get by performing a lookup in table T001W and passing country as parameter.

  • Check amount of transition stock during inbound delivery creation

    I want to move stock between plans, therefore I have the following steps:
    1. Stock Transfer Order (STO), e.g. 500 pieces
    2. Sending plant: MIGO (GI for STO) with MT 351 to post to transition stock,  e.g. 100 pieces
    3. Receiving plant: Inbound Delivery with reference to STO VL31N
    4. process Inbound delivery in warehouse (SAP-WM)
    The question is:
    During step 3, when accessing VL31N the system proposes the full order quantity (e.g. 500 pc.)
    I can change the amount to any amount I like, e.g 240 pieces.
    How can I tell SAP, that Inbound delivery creation is only possible for the amount
    which has been posted to stock in transition (100 pieces)
    I want an error/warning message in case user wants to create Inbound delivery quantity higher than the amount that has been posted to transition stock.
    Any ideas?

    MIGO in sending Plant?
    How it is possible? MIGO means, Goods receipt. This should be in Receiving plant.
    Sending plant should do the PGI
    MIRO in receiving plant
    Billing in sending plant
    Payment from Receiving palnt and clearing in sending plant
    Correct me if i am wrong
    Thanks

  • Delivery creation using VL10C

    I am currently using VL10C to create a single delivery for mutliple sales orders and it is working well. The users want to be able to view the delivery prior to the number being assigned to ensure that it has created as expected. There are two options in VL10C:
    Foreground - This will create a single delivery ignoring requested quantities but it will allow the delivery to be viewed prior to generating the number
    Background - This combines deliveries but does not provide an opportunity for review prior to the number being generated. The net effect of this is that if something is wrong the delivery needs to be deleted. This is what I am trying to avoid
    I have two questions:
    1) Using standard functionality is there any way to execute VL10C in the back ground allowing sales orders to be combined into a single delivery while still being able to review the result of the delivery creation process prior to saving?
    2) If there is no way to do this via standard config, is there a user exit or BADI that can be used to achieve this result? If so what is it?
    Thanks in advance.

    Always Back ground process you will not able to see background what is happening and you will able to see once delivery is created .For this case you are deleting outbound delivery if you are not satisfied with the results.
    In that case you have to use fore ground process to create the delivery.If you User exit Badi also once you will able to see once delivery document generated.
    Please follow Fore ground process and you have control on it.

  • Migo/mb1b/lt01

    hi,
    may i know what is the distinct difference between migo, mb1b and lt01?
    can tell each of their main function as i always confused.
    thanks
    rgds

    HI
    the basic difference between MIGO and MB1b is MIGO can be ued for normal posting meaning all type of posting starting from STO, normal external vendor to customer , GR from PO etc. but MB1B is purely used for transfer posting that means inter company transfers between the company codes withinn same client or plants within the sa,e company code,
    LT01 is used for transfer of materials from the warehouse for delivery it comes after the delivery document has been created and picking has to be done from the warehouse.
    Regards
    Vignesh

  • Without sale order Delivery creation

    Hi,
         I  want some help to make the delivery creation without sale order.This is my scenario
    ->>>Two RAW material(ROH) then make the PO and GRN.
    ->>>Then Created the Finished Material(FERT)
    ->>>Production order creation
    ->>>Production order Confirmation(261,531movement)
    ->>>Stock received(Finished Material)
    ->>>Make the delivery without  order ref
    ->>>Delivery type(LO-Delivery w/o ref)
    ->>>Ship to party(Here only we are mentioned the Customer)
    ->>> save the delivery
    When i make the POST GOODS ISSUE (PGI) the following error appear
    Message no. NA  KI235
    Account 315002   requires an assignment to a CO object
    You have not defined a CO account assignment for an account that is relevant to cost accounting.
    System Response
    Account 315002  is defined as a cost element.
    This means that you must always specify a CO account assignment.
    Procedure
    Enter one of the following CO account assignments
    Order
    Cost center / cost center/ activity type
    Sales order item (for a project or cost relevant)
    Project / WBS element
    Cost object (Process manufacturing)
    Network/ Network activities
    Business process
    Profitability segment
    Real estate object
    The posting row affected is 000, account 315002
    Kindly help in getting resolve of this error.
    Regards,
    T.Murugu

    Hi Murugu,
    Please go through the link given below. Hope it helps,
    http://www.sap-img.com/financial/requires-an-assignment-to-a-co-object.htm
    Regards
    MT

Maybe you are looking for

  • My iTunes will not let me delete music off of my iPhone 4

    I am trying to get rid of a lot of music that I don't want off of my iPhone 4 that way I have enough room to download the new iOS 7. So when I go into iTunes I let my phone completely sync and it has no issues so then I go to the iPhone icon. Then I

  • Osx+tuxera ntfs+itunes+windows == 150GB of data gone

    When i bought this mac (macbook pro 8,2) i had this nifty idea of repartitioning the hdd so that i would have a small osx and linux partition and all the space left for windows and data on one ntfs partition, i regret that now.... This idea was becau

  • Price Change indicator in Service Purchase order

    Dear Friends I am making one service purchase order, at service item level one price change indicator appears if its selected then at the time of service entry sheet it is possible to change value But in my case,this indicator is not appearing at the

  • 11gR2 Certifications

    Hi all, Do anybody know when the Oracle 11gR2 certifications exam will be ready? I want to be certified in 11g R2 and I know now I can upgrade my OCP to 11g but with release 1. For example, RAC administration are shared between 10gR2 and 11gR1 but th

  • Separating Design from Development

    Dear Adobe, This is my first post on your Labs forums. I just finished playing with the new CS4 -> Flash Catalyst -> Flash Builder workflow and have to say: I am inspired but not impressed. As mainly an AJAX and Cocoa developer, I had to learn AS3 sy