How to Get Availability date? while doing MIGO

Hi Guys ,
Can any body tell me how can i get Availability Date while doing MIro ?
1.I have to get Availability date
2. and that Availability date is Production date + 8 days ?
how can i implement this one ? is there any relevent user exits is there ?
please give me some input?
regards
Prabhu

Hi Guys ,
Can any body tell me how can i get Availability Date while doing MIGO ?
1.I have to get Availability date
2. and that Availability date is Production date + 8 days ?
how can i implement this one ? is there any relevent user exits ?
please give me some input?
regards
Prabhu

Similar Messages

  • While doing migo-goods receipt for production

    I am getting above message while doing migo
    please help
    Batch 0000000027 has the status <restricted-use>
    Message no. M7670
    Diagnosis
    You are attempting to post a batch with status <restricted use> for a goods receipt.
    System Response
    Depending on the system setting, the system issues either a warning or an error message.
    If the message is a warning (W), the system will accept your entry, but simultaneously issues a warning to prevent you from making the wrong entry.
    If the message is an error message (E), the system will not accept your entry.
    Procedure
    Make sure your entries are correct.
    thanks in advance
    kailash N. thakkar

    Dear,
    You cannot change the status of a batch (unrestricted/restricted) in a goods movement, only with the following functions: by maintaining the batch master record manually in MSC2n
    Got MSC2N On the initial screen, enter the batch data (material,plant batc).
    Select the indicator restricted-use.
    Check out the "Initial status of new batches" in transaction code OMAB whether your new batch status flaged for "Restricted" against your material type.
    Then go ahead for MIGO.
    Regards,
    R.Brahmankar

  • Error message while doing MIGO.

    Hi,
    I am getting error message while doing MIGO. Can some one help me out in this issue.
    Consolidated companies 0 and 5686 are different
    Message no. F5 080
    Diagnosis
    The number of the affiliated company must be clear for the selected document type for all line items. In this case at least two different companies or a company in connection with a business partner who does not belong to a company are stated.
    Procedure
    If you selected the correct accounts, you must enter the document with a document type that allows cross-company posting. Otherwise, please correct the entered account.
    Thanks in Advance,
    Subhajo

    Check Fi customizing in OBA7.
    As you mentioned MIGO, I assume you are doing goods receipt, so you use document type WE.
    Within WE you must not have selected  the field inter-company posting .
    Best you place the cursor into this field and press F1 for detailed explanation,

  • HT1414 I lost all my data while doing the latest software upgrade, how do I get it back if I dont have a backup on iTunes?

    I lost all my data while doing the latest software upgrade, how do I get it back if I dont have a backup on iTunes?

    If you don't have a backup, then all your pics/text/notes are gone.
    You can sync back music and app.  If you were syncing your contacts with a program in itunes, then you'll get that back.
    Not sure why you didn't do a backup, especially prior to doing an upgrade.

  • How to Hide/show the columns data while doing Drill down or drill up

    Hi ,
    How to Hide/show the columns data while doing Drill down or drill up in webi report .
    Does it possible BO 3.1 version ?
    Please suggest me on this.
    Thanks & Regards
    Venkat

    While that is not there yet, you can make use of the show when empty yes/no in combination with alerters.
    So I have an alerter applied to every cell of the table.
    When a condition is true (say I drilled down) I just put = "" in every cell, emptying the table,
    because its now empty and doesn't need to show, it wont.
    For the detail table I use the opposite, so when you drilled down it becomes visible...
    Hope this helps all that do not have 40 yet
    Good luck,
    Marianne

  • WBS error while doing MIGO

    Dear Experts,
    I am getting following error while performing MIGO - The WBS element XXXXXXX is not the lowest level in the project.
    Kindly let me know what does this error mean and how to resolve the issue.
    Thanks in advance
    Leena

    Leena0 wrote:
    - The WBS element XXXXXXX is not the lowest level in the project.
    >
    It seems there is a validation in the system which checks whether any child WBSE is available. It might be a business requirement to post actual cost only on the lowest WBSE. It could be a user exit. Please check the functional specifications prepared during the implementation.

  • How to Get Missing Dates for Each Support Ticket In My Query?

    Hello -
    I'm really baffled as to how to get missing dates for each support ticket in my query.  I did a search for this and found several CTE's however they only provide ways to find missing dates in a date table rather than missing dates for another column
    in a table.  Let me explain a bit further here -
    I have a query which has a list of support tickets for the month of January.  Each support ticket is supposed to be updated daily by a support rep, however that isn't happening so the business wants to know for each ticket which dates have NOT been
    updated.  So, for example, I might have support ticket 44BS which was updated on 2014-01-01, 2014-01-05, 2014-01-07.  Each time the ticket is updated a new row is inserted into the table.  I need a query which will return the missing dates per
    each support ticket.
    I should also add that I DO NOT have any sort of admin nor write permissions to the database...none at all.  My team has tried and they won't give 'em.   So proposing a function or storable solution will not work.  I'm stuck with doing everything
    in a query.
    I'll try and provide some sample data as an example -
    CREATE TABLE #Tickets
    TicketNo VARCHAR(4)
    ,DateUpdated DATE
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-01')
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-05')
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-07')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-03')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-09')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-11')
    So for ticket 44BS, I need to return the missing dates between January 1st and January 5th, again between January 5th and January 7th.  A set-based solution would be best.
    I'm sure this is easier than i'm making it.  However, after playing around for a couple of hours my head hurts and I need sleep.  If anyone can help, you'd be a job-saver :)
    Thanks!!

    CREATE TABLE #Tickets (
    TicketNo VARCHAR(4)
    ,DateUpdated DATETIME
    GO
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-01'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-05'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-07'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-03'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-09'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-11'
    GO
    GO
    SELECT *
    FROM #Tickets
    GO
    GO
    CREATE TABLE #tempDist (
    NRow INT
    ,TicketNo VARCHAR(4)
    ,MinDate DATETIME
    ,MaxDate DATETIME
    GO
    CREATE TABLE #tempUnUserdDate (
    TicketNo VARCHAR(4)
    ,MissDate DATETIME
    GO
    INSERT INTO #tempDist
    SELECT Row_Number() OVER (
    ORDER BY TicketNo
    ) AS NROw
    ,TicketNo
    ,Min(DateUpdated) AS MinDate
    ,MAx(DateUpdated) AS MaxDate
    FROM #Tickets
    GROUP BY TicketNo
    SELECT *
    FROM #tempDist
    GO
    -- Get the number of rows in the looping table
    DECLARE @RowCount INT
    SET @RowCount = (
    SELECT COUNT(TicketNo)
    FROM #tempDist
    -- Declare an iterator
    DECLARE @I INT
    -- Initialize the iterator
    SET @I = 1
    -- Loop through the rows of a table @myTable
    WHILE (@I <= @RowCount)
    BEGIN
    --  Declare variables to hold the data which we get after looping each record
    DECLARE @MyDate DATETIME
    DECLARE @TicketNo VARCHAR(50)
    ,@MinDate DATETIME
    ,@MaxDate DATETIME
    -- Get the data from table and set to variables
    SELECT @TicketNo = TicketNo
    ,@MinDate = MinDate
    ,@MaxDate = MaxDate
    FROM #tempDist
    WHERE NRow = @I
    SET @MyDate = @MinDate
    WHILE @MaxDate > @MyDate
    BEGIN
    IF NOT EXISTS (
    SELECT *
    FROM #Tickets
    WHERE TicketNo = @TicketNo
    AND DateUpdated = @MyDate
    BEGIN
    INSERT INTO #tempUnUserdDate
    VALUES (
    @TicketNo
    ,@MyDate
    END
    SET @MyDate = dateadd(d, 1, @MyDate)
    END
    SET @I = @I + 1
    END
    GO
    SELECT *
    FROM #tempUnUserdDate
    GO
    GO
    DROP TABLE #tickets
    GO
    DROP TABLE #tempDist
    GO
    DROP TABLE #tempUnUserdDate
    Thanks, 
    Shridhar J Joshi 
    <If the post was helpful mark as 'Helpful' and if the post answered your query, mark as 'Answered'>

  • Error while doing MIGO

    Hi Experts,
    While doing migo system showing the error message:
    in this purchase order no excise.
    It is IS OIL process.
    Maintain pricing conditions for the material for the excise invoice date
        Message no. 8I629
    Pls help some one.
    Regards,
    Hanuman.

    HI
    is it Excisable Material, did you maintain  the Tax indicator in PO stage? IF yes , next step is to check , are you selecting the right Post to....... register menu during MIGO, for example we use Post to Part-1 register only, then if yes , the you are getting this error becuse you have missed the J1ID master data details. Minimum you should maintain 1. chapter_id details, 2. Material and chapter_id combination 3. Vendor Excise details. for the materials you are tring to make GR.
    Best Regards
    SAM

  • While doing migo gertting error does not support serial management

    while doing migo 101mvt type getting error does not suppoert serial no management .
    Moderator: Please, avoid asking basic one-sentence questions. Your other threads were locked for the same reason

    Hi,
    Can you please check SAP Note 1262966 - MIGO and MIRO: Missing entries in T169P. This might be of some help to you. It states that
    You use transaction SM31 to delete an entry in the views V_169P_A, V_169P_B, V_169P_DC, V_169P_IRTAX, V_169P_K, V_169P_LOGO, V_169P_MB, V_169P_PA, V_169P_PR, V_169P_S, V_169P_SA or V_169P_SV. The entry from the table T169P is deleted when you delete the entry from one of the views.
    Different follow-on errors can occur in the transactions for inventory management or the Logistics Invoice Verification.
    Error M7 001 "Check table 169P: entry & & & does not exist" occurs in the transactions for inventory management. The system does not propose any data for order-related items in the transactions for the Logistics Invoice Verification.
    The entry in the table T169P is required for each company code for the function from Note 980420.
    Thnx,
    SG.

  • How to get the date of first day of a week for a given date

    Hi gurus
    can any one say me how to get the date of first day(date of Sunday) of a week for a given date in a BW transformations. For example for 02/23/2012 in source i need to get 02/19/2012(Sunday`s date) date in the result. I can get that start date of a week using  BWSO_DATE_GET_FIRST_WEEKDAY function module. But this function module retrieves me the  start date as weeks monday(02/20/2012) date. But i need sundays(02/19/2012) date as the start date. So it would be really great if anyone sends me the solution.
    Thanks
    Rav

    Hi,
    The simplest way would be to subtract 1 from the date date which you are already getting in transformation routine, but instead of doing that subtraction manually which might need bit of errort, you can simply use another FM to subtract 1 from given date.
    RP_CALC_DATE_IN_INTERVAL
    Regards,
    Durgesh.

  • How to get javabean data in Servlets.( JavaBean -- Servlet(Controller)

    how to get javabean data in Servlets.
    1) I am using name ,password in Jsp(View )
    2) when I submit this Bean will be called and Setter methods will be called .
    3) In ServletController (controller) I want to get data of javabean.
    In this I have to do validation of user.
    I want to pass the javabean obj as like -->
    request.getAttribute("beanObj");
    My intention is to get all the poperties in javabean by passing bean id
    or beanobj ,
    Is there any way to get all the data using bean id or beanObj.
    Plz Reply,

    Now in the Servlet we can get the same bean by this code:
    PageContext pageContext = JspFactoryImpl.getDefaultFactory().getPageContext(this, request, response, null, true, 8192, true);
    UserBean userbean = (UserBean)pageContext.getAttribute("userbean", PageContext.SESSION_SCOPE);
    String userid = userbean.getUsername();
    For this code to work it is needed to import 2 files:
    import org.apache.jasper.runtime.JspFactoryImpl;
    import javax.servlet.jsp.PageContext;
    The JspFactoryImpl is in jasper-runtime.jar file provided in tomcat dir.It seems to me that you are exactly knowing what you are doing :-(
    You can get a Bean stored in a Session by
    request.getSession().getAttribute("userbean");
    In the login.jsp page for example we have the code
    <jsp:useBean id="userbean" scope="session"class="com.newproj.UserBean" />
    <jsp:setProperty name="userbean" property="*" />the jsp:setProperty is not called when you click on the submit button
    if fills the bean with the request values from the previous request.
    andi

  • Balance in Transaction currency while doing MIGO

    While doing MIGO, getting the error '' Balance in Transaction Currency'' and showing the total of Excise and Cess amounts.
    Urgent issue. Appreciate if you could respond asap
    thanks
    Sridevi

    hi
    sridevi,
    pls verify the raw material inventory account or the GR/IR clearing account, u might have checked only balances in local currency, or it could be in raw material master records, where in u might have selected the foreign currency valuation
    cheers
    bala reddy

  • While doing MIGO transfer within plant batch no should not be changed.

    Dear All,
            While doing MIGO transfer within plant (movement type 311), any user is able to change the batch and can assign new batch no.The process is as under.
    T.Code-- MIGO
    M.type --311
    Go in Transfer posting tab.
    In "From selection",
    Select Material and that material will be displayed in Destination selection automatically and can't be change.
    Select Plant and that plant will be displayed in Destination selection automatically and can't be change
    Select Storage location(from where material to be transfered) and we have to select storage location in "destination selection" where material is to be transfered.
    Same way Select Batch No in from selection and indestination selection batch is not coming automatically and we can give any batch no.So we do not want to allow this change and the batch no must remain same as selected in "from selection".
    Now how can i solved the problem and please suggest is there any role of abapers in this case and if yes then which concept we have to followed.This is standard program of sap so access key may be needed.So please guide me on above topics.
    Regards
    Shivam Pastagia.

    Hi Sivam,
    Sorry for asking the question to this old thread but I am having the same problem.
    My requirement is also to populate the destination batch same as From Batch without allowing the user to change it.
    Can you pleae let me know how did you solve it?
    Regards
    Narottam

  • How to get communication data in CRM 7.0

    In CRM 7.0 with CCS active.
    How to get communication data (Current phone #) that is presently active while creating Interaction Record or during account confirmation.
    Thanks,
    Nilesh P.

    Hi,
    This problem is related to IC and not related to Marketing Campaign.
    At this movement I hv resolved this problem by storing phone # in memory variable by some other way.
    But I would be more interested to know Communication Data in 'Context area' of IC.
    Thanks & Regards,
    Nilesh P.

  • How to get header data in ME_PROCESS_REQ_CUST

    Hi all,
    how to get header data in badi ME_PROCESS_REQ_CUST-process_item

    Isn't it available in the parameters of the method that you are tyring to write.
    Regards,
    Ravi
    Note - Please mark all the helpful answers

Maybe you are looking for

  • How can I get a screen saver to show on my screen? It shows when I do a test only.

    How do I get my screen saver to work?  I did everything in Help.  It will show for a test but not after that.

  • How do I have a totalizer reset at the end of every month?

    We are using Lookout 5.1 in an application that is receiving a Modbus input giving us a totalizer value.  We need to have this value reset to zero at the end of every month.  Also want the monthly total to be sent to an excell spread sheet.  All help

  • [SOLVED] Installing Catalyst drivers from AUR

    Hi everyone! Got me an new laptop and have an Radeon HD 3200 in it and hoped to get it working but I dont managed to get it to work so I hoped someone here could help me Ive tested the xf86-video-ati                      xf86-video-radeonhd          

  • WIP STOCK

    Dear Experts I have 10 operations in the routing. I issue rawmaterial to first operation and do GR at final operation. all the operations are having a long execution time. If i want to see the stocks at each level, how is it possible with out creatin

  • Best mode for eventual iDVD

    I'm manipulating "home movies" (old Hi8 & new flash HD) with intent to eventually burn DVD's for various family members (e.g., children & grandparents) using iDVD. I have been creating Projects then exporting as either Movie (Medium .m4v) or Quicktim