Issue out despite Expiry Date is over

Dear all,
We have maintained the minimum remaining shelf life as 100 days for the materials . It prompt us to key in the Shelf Life Exp. Date during MIGO but during Good Issue, even though the expiry date is over, the system still allow us to issue out the goods.
The materials are batch-managed. I have also configured the system SL expiry date for mvt 101 and 201 in T/code OMJ5.
How can we prevent it???

hi,
Please check your inputs because it would not be allowing because the date would have touched near remaining shelf life...but not total shelf life...the best example is given below:
The delicatessen company Plentyland has specified that quiches received from its suppliers must have a minimum remaining shelf life of 40 days. The total shelf life of the quiches is 50 days.
Gourmet, a quiche manufacturer, produces quiches on 01.07. The total shelf life of 50 days means the SLED would be 20.08.
On 10.07, Gourmet delivers a batch of quiches produced on 01.07 with 20.08 as SLED. The system thus accepts the batch, as it leaves a minimum remaining shelf life of 40 days.
Due to internal problems Gourmet do not deliver the second batch of quiches produced on 02.07 (SLED = 21.08) until 25.07. The system does not accept this second batch, since it only leaves them with a remaining shelf life of 27 days, instead of the stipulated 40 days.
OR
If this also doesnot works....then set your message as error message....
Hope it helps...
Regards,
Priyanka.P
AWARD IF HELPFULL

Similar Messages

  • HT1209 My Itunes Library and iPhone have fallen out of sync on music over the yearsare - how can I compare my itunes library with my Iphone  to see what songs are missing from my library so I can then bring my Library up to date

    My Itunes Library and iPhone have fallen out of sync on music over the yearsare - how can I compare my itunes library with my Iphone  to see what songs are missing from my library so I can then bring my Library up to date

    Hello Solid Buck,
    Thank you so much for providing the details about the duplicate song issue you are experiencing.  It sounds like you would like to remove the duplicate songs that will not play on your iPhone, but when you connect it to iTunes, iTunes only shows you one copy of the song on your iPhone. 
    In this situation, I recommend deleting the individual songs that do not play directly from your iPhone.  I found the steps to do this on page 61 of the iPhone User Guide (http://manuals.info.apple.com/en_US/iphone_user_guide.pdf):
    Delete a song from iPhone: In Songs, swipe the song, then tap Delete.
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Photostream Issue - I have had several phones over the years all backing up via iCloud/Photostream. It seems that the oldest of my photos and videos are simply gone and I cannot seem to figure out how to get access to them. Why is this happening?

    Photostream Issue - I have had several phones over the years all backing up via iCloud/Photostream. It seems that the oldest of my photos and videos are simply gone and I cannot seem to figure out how to get access to them. Why is this happening? Is there anything I can do to get them back? I'm freaked out by the thought that I am paying for what I thought was a safe place for my photos to be stored and accessed later but now see that there are nearly 500 pictures/videos gone from my photostream folder. Any help would be greatly appreciated. Thank you. - Michael

    Hi newmarket,
    Photo Stream is not a respository for archiving photos. It is a cloud storage device that will store the last month or last 1000 photos taken by any device on the same Apple ID, and then will "share" those photos with all other devices that have Photo Stream turned on,and that are logged onto the same Apple ID.
    iCloud backups will contain all of the photos that were on your camera roll the last time you backed up your device.
    If you have photos outside of the Photo Stream parameters, and they are not all on your current camera roll, then you have no way to retrieve them unless you have imported them to the computer you sync with or have uploaded them to some other cloud service like DropBox.
    Sorry,
    GB

  • Is there a way to find out how much data was used over the lifetime of my phone (cumulative cellular and wifi)?

    Is there a way to find out how much data was used over the lifetime of my phone (cumulative cellular and wifi)?
    I was just curious

    Given that the phone doesn't track how much data is used over WiFi, no. And cellular data usage can be reset.

  • Issue regarding Batch determination in Production order as per Expiry date.

    Dear all,
                    first of all  happy Navratri.
    I have issue regarding batch determination in production order.
    I have to compare P.O header materialu2019s expiry date and issuing components expiry date at the time of batch determination.
    lets take example,  Material having self life is u201CXu201D years and batch determination against PO is based on FEFO with the help of self life we can determine Expiry date of manufacturing material  suppose it is u201CYu201D  I have to introduce restriction at the time of good issue if expiry date of issuing components u201CZu201D is less than expiry date u201CYu201D.
    Please give your valuable suggestions either standard or through SAP enhancements.
    thanks & Regards
    SIVA

    Dear
    Thanks for your reply, i am layman about batch derivation can u elaborate it.
    Thanks & Regard

  • Issues with using Outer join in Data Template

    Hi all,
    this is my data in two tables .
    Table Ronny1
    colA colB
    1 u
    2 v
    3 x
    Table Ronny2
    colC colD
    1 q
    2 r
    This is my data template
    <dataTemplate name="MGF" dataSourceRef="Source1">
         <dataQuery>
              <sqlStatement name="Q1" dataSourceRef="Source1">
                   <![CDATA[select C, D  from Ronny2]]>
              </sqlStatement>
              <sqlStatement name="Q2" dataSourceRef="Source2">
                   <![CDATA[select A , B from lokesh1 where A = :C]]>
              </sqlStatement>
         </dataQuery>
         <dataStructure>
              <group name="G1" source="Q1">
                   <group name="G2" source="Q2">
                        <element name="A" value="A"/>
                        <element name="B" value="B"/>
                   </group>
              </group>
         </dataStructure>
    </dataTemplate>
    Now this would give me result as
    A B
    1 u
    2 v
    however my requirement is this
    A B
    1 u
    2 v
    3 x
    that is, i want to display all the rows of table Ronny1 and matching rows from table Ronny2. I tried modifiying my second sql as
    <![CDATA[select A , B from lokesh1 where A = :C (+)]]> ( using a outer join)
    but this does give me correct data and comes back with the cartesion product.
    Can anyone please answer this for me that how can we use the outer join in data templaes.
    Thanks
    Ronny

    hey vetsrini,
    sorry for the confusion here,
    actually i want to display all the rows from table Ronny1 and i am also pulling in the matching rows from table Ronny2 and my data structure looks as ( pulling in column D from table Ronny2)
    <dataStructure>
    <group name="G1" source="Q1">
    <group name="G2" source="Q2">
    <element name="A" value="A"/>
    <element name="B" value="B"/>
    <element name="D" value="D"/>
    </group>
    </group>
    </dataStructure>
    and this is what i want the output to be
    A B D
    1 u q
    2 v r
    3 x
    Hence the row where A <> C the data in the D column will be null, same as in the case of outer join.
    any suggestions
    Thx
    Ronny

  • Posting of cancelled Invoice after posting date is over

    Hello Experts,
    I am stuck up with a situation and as such seek your help.
    A invoice was generated and the subsequent accounting document was also cleared. Now after the posting date was over, someone cancelled the invoice by T.code VF11 and as expected it didnt get posted .The document flow showing is as per below :
    Order - open
    Invoice - completed
    Accounting Document - Cleared
    Cancel Invoice - Open
    Now, the business and their audit policies do not allow the client to cancel the invoice in back date ( within the posting period).
    What are the options do we have to tackle the situation.
    Joy

    The issue has been temporarily addressed by changing the posting date.
    However, now the client wants us to make an ABAP development so that no user is able to cancel the invoice after posting date is over. Now for that I have the following issues. Can someone please help me out in this.
    The basic process details I am following is as per below:
    For Transaction Code VF11 (i.e for Cancellation of Invoice) , when the invoice number which is subject to cancellation is provided, the System should search in VBRK table for the following :-
    1)The System will at first search whether the entry exists or not. If the Entry is not valid then it should give an message u201C Document xxxxx does not Existu201D.This is in line to the existing practice.
    2) If the Document number is valid then it will go to the billing date field and  will fetch the value from the VBRK table . Then it will match  whether the value fetched (i.e. this Invoice date)  is in present posting period or not. The system can find the posting period from the table V_T001B.
    a.If  the  Invoice date lies in the present posting period then the system will allow the cancellation document to be saved. This is in line to the existing process.
    b.If the Invoice date lies beyond the present posting period then the system will not allow to save the cancellation of the Invoice with a pop up message of u201C The Document number subject to cancellation do not lie within the present posting periodu201D .
    Now We have looked both the tables, from VBRK we will get Doc# and Billing date(FKDAT) but when we select Posting Date from table T001B( Permitted Posting Periods) there is some issue.
    1.  What will be the condition for selecting records from T001B table.Since there is multiple key fields
        RRCTY (Record Type) ,
        BUKRS (Posting Period Variant) ,
        MKOAR (Account Type or Masking)
        BKONT (To Account). 
    So, to get unique record what will be the value of this key fields. Is there any relationship with VBRK table ? 
    2.  Which field I have to consider as Posting Date or Period. Because there are many fields related to Posting period.

  • Adding an Expiry date to a document - Acrobat Pro

    I want to add an expiry date to my document i.e 12 months from when it was created.  I recently got Acrobat Pro X on my computer, and the not sure how to do this now.  Any help would be greatly appreciated.
    In Adobe Acrobat 8, it was possible by adding JavaScript by clicking on the menu Advanced > Document Javascript > Edit CheckDoc
    Then we could open the JavaScript and put the end date, as below
    Thanks!

    Adobe LiveCycle can protect documents on an internal company network OR via the public Internet, it simply depends on how you set up access to the LC server (i.e. is the IP address of the server public and can it be connected to from outside the firewall).
    "Expiring" documents with JavaScript is strongly discouraged if the document has value, as a user can trivially bypass the script (and as you have found out, it only ever runs under specific circumstances). If the PDF is opened in a non-Adobe application such as OS X Preview, scripting simply isn't available. Many users disable the scripting module by default, especially in enterprise settings. These are the situations for which digital rights management (DRM) was developed - if there was an easier (and cheaper) way to do it, Adobe wouldn't have bothered writing LiveCycle's DRM module as they'd never sell any licenses!
    LiveCycle DRM restricts the PDF to opening only in Adobe applications (Reader and Acrobat), but the protection offered is totally reliable. Nobody has ever bypassed or cracked LCDRM hashes in the wild, and it's used to secure documents of the highest value (both commercial and proprietary). Yes, LCDRM is expensive and probably isn't viable for prosumer or short-run applications, but at an enterprise level the cost of a LiveCycle seat is often trivial compared to the losses they risk if a document falls into the wrong hands. It's a commercial decision, but anything less than DRM is merely an illusion of protection, and document authors must be aware of that.
    I have exactly the same issue as you, except that the pdf documents are
    distributed to customers - eg. quotations to expire after 30 days,
    proposals, etc. In this case, Adobe Lifecycle doesn't work for me as it
    only manages internal documents (as far as I know).

  • How does the project expiry date work?

    I am looking to buy Captivate. But I first need to know how the project expiry date works.
    I am currently producing a short course for a company in my area, but our agreement is that they get to use the short course for a period of 3 months. If I create the short course in Captivate, will I be able to set an expiry date on the project? For example, person A buys my short course. After 3 months (or however long) the course expires and he will no longer be able to open the short course. Is this what the expiry function does?
    Also, does the expiry function work even if the project is copied from one hard drive to another? For example, if someone makes a duplicate of the project onto a friend's hdd, will both projects still expire after 3 months?
    Thanks guys.

    Hi there,
    I have been a Articulate Storyline users for several years now and am new on the Captivate forum. Someone told me that Captivate can set an expiry date on the course content after being downloaded on an iPad for offline viewing (so without an LMS). In Articulate SL this is not possible unfortunately although a feature request has been made by quit a few. Situation is that I deliver course content to clients operating in remote areas (shipping). It is essential for me to have this feature and will seriously consider changing over to Captivate if this is true.
    Could anyone help me out on this one?
    Thanks in advance for sharing!
    Regards,
    John

  • HT1918 I updated my payment method because I changed my Internet MasterCard of the same number but  new expiry date but not accepted , can you help me

    Please I need help regarding this problem I faced today.
    I updated my payment method because I changed my Internet MasterCard of the same number but  new expiry date but not accepted , can you help me?

    Is the iPhone jailbroken or was jailbroken?. In the article " http://support.apple.com/kb/TS3694 " it says:
    Errors related to downgrading iOS
    The required resource can't be found: This alert message occurs when your device has a newer version of iOS than what is available in iTunes. When troubleshooting a device that presents this alert message, go toSettings > General > About and check the version of iOS on the device. If it's newer than the latest released iOS version, the device may have a prerelease developer version of iOS installed. Installing an older version of iOS over a newer version isn't supported.
    Error 1015: This error is typically caused by attempts to downgrade the software for an iPhone, iPad, or iPod touch. This can occur when you attempt to restore using an older .ipsw file. Downgrading to a previous version isn't supported. To resolve this issue, attempt to restore with the latest iPhone, iPad, or iPod touch software available from Apple. This error can also occur when an unauthorized modification of the iOS has occurred and you're now trying to restore to an authorized, default state.

  • Batch shelf life expiry date at Plant level

    Hi All,
                We have a requirement from the client to maintain Batch shelf life at plant level.
    Current process: Batch shelf life expiry date is maintained at the global level.
    Requirement: Shelf life data to be maintained at Global level and plant level both.We want flexibility to maintain shelf life both at Global level and plant level .
    If any one has worked in this scenario then kindly throw some light to resolve this issue.And also let me know if we move ahead to maintain shelf life data at  global n plant level then which all the area it will get effected in other stream reagrding shelf life best before date.
    This is very critical requirement from client prospective as we have legacy system involved like LIMS & COREDB.
    Your valuable input will be highly appreciated.
    Thanks n Regards,
    Vikas Soni.

    Hi Vikas,
    A doubt out of your query,
    How the expiry date is maintained Globally .
    Whenever a GR is done then the expiry date will be tagged to the particulat batch & the expiry date is valid for the batch in the particulat plant. Am I right?
    Thanks & regards
    Mahesh

  • Setting a secure zone expiry date beyond the invoice date.

    Is it possible to set the secure zone expiry date later than the invoice date? We're just looking at a way to let our members continue to have access for say 1 week after an invoice has failed so that they can log in and update their credit card details, possibly without seeing the 'access expired' message.
    I've seen this behaviour on a site before, but I think that may have had something to do with the fact that it was a weekly membership site and that the invoices were already generated.
    Cheers
    Pat

    Hey Gaurav,
    This is for a monthly recurring subscription. What I was thinking was that if for example a user signed up on the 1st of the month that their SZ access expires on the 8th of the next month, but the invoice is still issued and paid on the 1st of the following month, and when the invoice is successfully paid the SZ access gets extended till the 8th of the next month - now that I've written it out like that I'm pretty sure this isn't possible, unless there is some setting that dev can see in the backend?
    Pat

  • IMessage won't switch to SMS when out of the data/wifi range

    my boyfriend has his imessage switched off sometimes, and when he is out of his home and has no wifi or data my messages still send as imessages and won't let me manually switch them to SMS so he never gets the messages. It says it delivers as an imessage even when he has imessage turned off so he never gets most of my messages but i can't turn my imessage off as i depend on it to talk to family out of the country. It all worked fine until i upgraded to iOS7 and since then it's been having this issue. Is there anyway to fix this?

    He shouldn't keep turning his iMessage off and on. He should leave it on, so that when you attempt to contact him, it will register if he is not in an active data setting. When his iMessage is constantly being turned off and on, it is just confusing the server, as if it was still on or off. His best bet is for him to leave it on. If he turns it off, your phone will not know he is out of an active data connection. This is the same problem people have when they leave iMessage active and get a different brand of phone. It appears the iMessages are being received, when the device doesn't get iMessages. Also, you cannot manually switch between the two for him because of the way the iMessage server works. You have the option right after the iMessage sends to hold down on the message bubble and select send as text, but that would require you to know that he isn't in a data connection. If he keeps his activated, the server will know if he is out of a data connection, and your iMessage should be sent correctly.

  • How to automatically update the Expiry Date's number of days

    My web app input form is an event submission form. Users enter the event title, event date and other details, etc. I've figured out how to get the "expiry days" in the form and it be hidden but i can't figure out how to calculate this:
    (today's date) - (event date) + 1 day = number of days to expire and then set the expiry days to that value upon submission.
    I have tried writing the js but am getting no where, has anyone out there already accomplished this? I've researched and researched and find a million things on calculating the number of days but can't get one of them to work for my situation here... any help would be greatly appreciated!!

    Hi Murtuza,
    You can use function module BAPI_ISUACCOUNT_CHANGE.
    Pass dunning lock details in parameter TCTRACLOCKDETAIL. This function module only create and delete locks.
    So, you need to pass existing lock details (from table DFKKLOCKS) with PROCESSING_MODE = 04 (delete) and append another value with changed expiry date with PROCESSING_MODE = 01 (Create).
    This will also help in maintain lock history too.
    Hope this helps.
    Regards,
    Avinash

  • Issues while generating Schema DAT files

    We are facing two type of issues when generating Schema ".dat" files from Informix Database on Solaris OS using the
    "IDS9_DSML_SCRIPT.sh " file.
    We are executing the command on SOLARIS pormpt as follows..
    "IDS9_DSML_SCRIPT.sh <DBName> <DB Server Name> ".
    The first issue is ,after the command is excuted ,while generating the ".dat" files the following error is occuring .This error is occuring for many tables
    19834: Error in unload due to invalid data : row number 1.
    Error in line 1
    Near character position 54
    Database closed.
    This happens randomly for some schemas .So we again shift the script to a different folder in Unix and execute it.
    Can we get the solution for avoiding this error.
    2. The second issue is as follows..
    When the ".dat" files are generated without any errors using the script ,these .dat files are provided to the OMWB tool to load the Source Model.
    The issue here is sometimes OMWB is not able to complete the process of creating the Source Model from the .dat files and gets stuck.
    Sometimes the tables are loaded ,but with wrong names.
    For example the Dat files is having the table name as s/ysmenus for the sysmenus table name.
    and when loaded to oracle the table is created with the name s_ysmenus.
    Based on the analysis and understanding this error is occuring due to the "Delimiter".
    For example this is the snippet from a .dat file generated from the IDS9_DSML_SCRIPT.sh script.The table name sysprocauthy is generated as s\ysprocauthy.
    In Oracle this table is created with the name s_ysprocauthy.
    s\ysprocauthy║yinformixy║y4194387y║y19y║y69y║y4y║y2y║y0y║y2005-03-31y║y65537y║yT
    y║yRy║yy║y16y║y16y║y0y║yy║yy║y╤y
    Thanks & Regards
    Ramanathan KrishnaMurthy

    Hello Rajesh,
    Thanks for your prompt reply. Please find my findings below:
    *) Have there been any changes in the extractor logic causing it to fail before the write out to file, since the last time you executed it successfully? - I am executing only the standard extractors out of the extractor kit so assumbly this shouldnt be a issue.
    *) Can this be an issue with changed authorizations? - I will check this today, bt again this does not seem to be possible as the same object for a different test project i created executed fine and a file was created.
    *) Has the export folder been locked or write protected at the OS level? Have the network settings (if its a virtual directory) changed? - Does not seem so because of the above reason.
    I will do some analysis today and revert back for your help.
    Regards
    Gundeep

Maybe you are looking for

  • How can I correct the iTunes/App Store error I'm getting on my 4s, since upgrading to IOS 7?

    Since upgrading to IOS 7 on my iPhone 4s I cannot download from iTunes/App Store - I get the message "... could not be downloaded at this time.  Please try again later".  I can download via iTunes on my laptop and then transfer via iCloud no problem,

  • Problem in activating the ABAP proxies

    Hi Experts,     I was following the url below, on how to activate ABAP proxies, How do you activate ABAP Proxies? and I came across certain issues. I hav made the HTTP connection in R/3 as per the blog and as well as the TCP/IP conections in R/3 keep

  • Photoshop CS4 installation path problem

    i having installation problem after i restore my pc, where i have install it normally before window restore. after install it doesnt work at all. It set the installation path to common files folder, i have try uninstall all and reinstall it but still

  • MaxDB going offline after log recover

    Hello, I've got a problem with my standby instance. I would like to import data into standby instance from autolog files generated by master instance. I am trying to use dbmcli tool + its utility session. My problem is, that after data recovery my da

  • What level IOS is required on iPad to support iBook Author?

    Friend's iPad will not open iBook created in the latest iBook Author (Version 2 - 327)