Manufacturing Date need to show in pld

Hi all
Can any one tell what is the variable no of manufacturing date for pld, I need to see manufacturing date on AR invoice pld, I got batch number and expiry variable but not getting manufacturing date variable or does any one know how  can i pull the manufacturing date detail on invoice printing ??
Thanks

Hi
Check Manfacture Date Field in OSRN Table.
OSRN.[MnfDate]
With Regards
Balaji Sampath

Similar Messages

  • Multiline Data needs to show in seperate records

    Dear Friend
    I have a data which is stored in a field of a table. That data is multilined data.
    I want to use a select statement, which will return all the data in seperate records.
    because I may use any individual record from that Multilined data.
    Can anyone help me fetch in my required way..................
    in the below in bold i am sending the sample data of Multilined data
    rgds
    Mithun
    V.0.1 * 28.01.1999 * PS * init
    V.0.2 * 04.02.2000 * PS * changes: follow suggestions made by GL,JR,MSK
    V.1.0 * 08.02.2000 * PS * correct some errors, checked DTD with produced output
                        from AE2XML
    V.1.1 * 10.02.2000 * PS * Tracking events                    
    V.1.2 * 01.03.2000 * PS * Added Sea, Dgs, Eqd
    V.1.3 * 22.09.2000 * PS * added freight on shipment level; added optional internal RSI fields
    * for carrier: ShortName, Prefix, IsMemberOfIata
    V.1.3.1 * 26.09.2000 * PS * added SendersRole (export,import,agent,...)
    V.1.3.2 * 26.09.2000 * PS * TDT: Air/Sea optional e.g. for bookings

    SQL> drop table t;
    Table dropped.
    SQL> create table t
      2  (txt varchar2(4000));
    Table created.
    SQL> insert into t
      2  values('V.0.1 * 28.01.1999 * PS * init)
      3  V.0.2 * 04.02.2000 * PS * changes: follow suggestions made by GL,JR,MSK
      4  V.1.0 * 08.02.2000 * PS * correct some errors, checked DTD with produced output
      5  from AE2XML
      6  V.1.1 * 10.02.2000 * PS * Tracking events
      7  V.1.2 * 01.03.2000 * PS * Added Sea, Dgs, Eqd
      8  V.1.3 * 22.09.2000 * PS * added freight on shipment level; added optional internal RSI fields
      9  * for carrier: ShortName, Prefix, IsMemberOfIata
    10  V.1.3.1 * 26.09.2000 * PS * added SendersRole (export,import,agent,...)
    11  V.1.3.2 * 26.09.2000 * PS * TDT: Air/Sea optional e.g. for bookings
    12  ');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> create or replace type TStrings as table of varchar2(4000);
      2  /
    Type created.
    SQL> create or replace function SamplePipe return TStrings pipelined is
      2 
      3   vc1 varchar2(4000);
      4   n number;
      5  begin
      6    for rec in (select txt from t) loop
      7     n := length(rec.txt)-length(replace(rec.txt,chr(10)));
      8     for i in 1..n loop
      9      pipe row(substr(rec.txt||chr(10),instr(rec.txt||chr(10),chr(10),1,i),
    10             instr(rec.txt||chr(10),chr(10),1,i+1)-instr(rec.txt||chr(10),chr(10),1,i)));
    11     end loop;
    12   end loop;
    13   return;
    14  end;
    15  /
    Function created.
    SQL> show errors
    No errors.
    SQL> select * from table(samplepipe);
    COLUMN_VALUE                                                                   
    V.0.2 * 04.02.2000 * PS * changes: follow suggestions made by GL,JR,MSK        
    V.1.0 * 08.02.2000 * PS * correct some errors, checked DTD with produced output
    from AE2XML                                                                    
    V.1.1 * 10.02.2000 * PS * Tracking events                                      
    COLUMN_VALUE                                                                   
    V.1.2 * 01.03.2000 * PS * Added Sea, Dgs, Eqd                                  
    V.1.3 * 22.09.2000 * PS * added freight on shipment level; added optional intern
    al RSI fields                                                                  
    * for carrier: ShortName, Prefix, IsMemberOfIata                               
    COLUMN_VALUE                                                                   
    V.1.3.1 * 26.09.2000 * PS * added SendersRole (export,import,agent,...)        
    V.1.3.2 * 26.09.2000 * PS * TDT: Air/Sea optional e.g. for bookings            
    10 rows selected.
    Message was edited by:
            jeneesh
    If this give you any idea, thanks to Billy...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Need to show data related to Process order request , BOM in a smart form

    Hi,
    I need to show data related to
    •     Process order request
    •     BoM
    Now in selection screen we are entering the followings.
    Manufacturing  Plant ,MRP Controller, Production scheduler, Order type , Order , Material, Sales order, WBS Element,Release,Scheduled start, Scheduled finish ,Selection profile.
    how to get 1> Process Order number,Produced Material,Material Description,Print date,Narcotics indicator , Quantity produced , Phase number , Phase description ,Resource description,Standard value  to show in a request form.
      2> Item category ,Component code,Component description , Component quantity ,Component Unit of measure ,BoM base quantity.
    Please help me how to get those values , what should be the aaproach , how to write the select quiry.
    Thanks

    Hi
    To get BOM details, do the following:
    1. Use the material number and goto Article to BOM link table (MAST) to get STLNR (BOM).
    2. With this STLNR, goto STPO table (where STLNR is the key field).  Here you will get all the BOM details like components (IDNRK), UoM (MEINS) etc....
    Hope this helps.
    THanks
    Vijay
    <b>PLZ REWARD POINTS IF HELPFUL</b>

  • Need to show No applicable data in the report.

    Hi All,
    We ave a key figure in the selection screen. And user will enter the value. based on the input, the report has to display less than or equal to the entered value as a result in the output of the report.
    Input NIV as 67,169.48 then below results -
    If user gives input NIV as 16,544.14 , the below output is showing.
    But we need to show zero as result or no applicable data in the report. Is it possible to achieve through FORMULA.Please help on this
    Thanks.

    Hi Jalina,
    Yasemin already asked few questions.
    but this is what we may do:-
    to create a formula variable and use it for user input. use this formula variable in a formula , if your NIV kf<= formula variable, then NIV KF, else, 0.
    then make a condition on this KF, not equal to zero to suppress this record.
    regards,
    Sakthi.

  • Need to show a data in weeks for stacked column

      I need to show the data broken down in weeks if you choose the start date and end date.   I have to show in a stacked column chart. I am trying to show the values if you choose for example last month i need to show it by weeks for example 
    week    user name   total approved first approved    last aprovedDate  totalitemsAdded
    week 1   XYZ                 3                10/01/2012       10/05/2012         5
    week2   XYZ                  5                 etc                      etc            
      etc
    week 3 
    Below is the code and the result  i am getting now . 
    Current Results
    UserName TotalApproved
    FirstApprovedDate LastApprovedDate
       TotalItemsAdded
    XYZ            9
               2011-11-19 16:56:49.960
         2011-11-19 18:18:20.783
                   2
    DECLARE @StartDate DATETIME
    DECLARE @EndDate DATETIME
    SET @StartDate = '10/1/2012 '
    SET @EndDate = '10/31/2012'
    ;with Items as(
           SELECT
                  UserName = Profile.Description,
                  TotalItems = COUNT(TransactionID),
                  FirstAddedDate = MIN(UTCDate),
                  LastAddedDate = MAX(UTCDate)
           FROM Transactiondatabase.dbo.transaction
                    JOIN Biography.dbo.Profile ON transaction.ProfileId = Profile.ProfileID
           WHERE 
                  Data like '%ItemAdded%'
                    AND UTCDate BETWEEN @StartDate AND DATEADD(dd,1,@EndDate)
           GROUP BY
                  Profile.Description 
    Approved as
           SELECT 
                  UserName = Profile.Description,
                  TotalApproved = COUNT(TransactionID),
                  FirstApprovedDate = MIN(UTCDate),--Demo
                  LastApprovedDate = MAX(UTCDate)                 
           FROM Transactiondatabase..transaction
                    JOIN Biography.dbo.Profile ON transaction.ProfileId = Profile.ProfileID
           WHERE 
                  Data like '%Approved%'
                    AND UTCDate BETWEEN @StartDate AND DATEADD(dd,1,@EndDate)
           GROUP BY
                    Profile.Description
    Select Distinct Approved.*, TotalItemssAdded = sum(distinct Items.TotalItems)
    from Items, Approved  
    Group by Approved.UserName, Approved.FirstApprovedDate, Approved.LastApprovedDate, Approved.TotalApproved
    using ssrs 2005 

    Hi Sunny04,
    If I understand correctly, you want to display the data by weeks in a stacked column chart. If in this case, we can add a calculated field named week to display the week name, and then group it. For more details, please see the following steps:
    Right-click the dataset to add a calculated field with the values below:
    Name: Week
    Calculated field: =DatePart(DateInterval.WeekOfYear,Fields!FirstApprovedDate.Value,0,0)
    Add Week field to category group area in a stacked column chart.
    Right-click Week field to open the Properties dialog box, modify the expression of Label to like this:
    ="week"&Fields!Week.Value
    Add TotalApproved or TotalItemsAdded field to data area in the chart.
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Need to show date & a counter in my video - HELP!

    I need the date and a counter to show (superimposed?) over the video in my iMovie/iDVD. I know the date and time recorded was imported with the video files from my DV camcorder because they are available in File Info. The video recorded was a court deposition for a lawyer, and they will want the date recorded to show on the video. I'm also guessing they'll want a counter for easy access to certain parts of the video if needed. How can I do this? Is it done in iMovie or iDVD, or can it be done in both? Thanks!

    Hi Shannon:
    I answered you in the other discussion group you posted this question to:
    http://discussions.apple.com/thread.jspa?threadID=277756&tstart=0
    Please don't post in more than one forum at a time..;) Thanks!
    Sue

  • Need to show previous 3months data

    Hi
    I need to show last 3months data in the report. Currently i am able to do it by creating 3 reporsitory variables - Last 3months,last 2months, last month
    Variable created : Select to_char(add_months(sysdate,-3),'Month'),to_char(add_months(sysdate,-2),'Month'),to_char(add_months(sysdate,-1),'Month') from dual
    With these variables i have to include filter for current year in my request in answers.But for year 2011 it will create problem as i would need data for both the years but only for previous 3mnths from sysdate.
    Appreciate valuable suggestions.

    If you are looking for last 3 months data irrespective of year i.e. last 90 days data use the following at report level
    date >= timestampadd(sql_tsi_day,-90,current_date).

  • Inbound Delivery (DESADV): How to transmit SLED/BBD and Manufacture Date?

    Hello
    We have another challenging task to solve. Here is the scenario (SAP Release ERP 6.0):
    One Lindt company (supplier) sends an outbound DESADV IDoc to another Lindt company (Purchaser). Here the inbound DESADV should create an inbound delivery. Finally, the inbound delivery is replicated to the external WHS partner who does the Goods Receipt against this inbound delivery.
    The outbound DESADV contains all logistical data including SSCC. In particular, the batches have a manufacture date (LIPS-HSDAT) and a SLED/BBD (LIPS-VFDAT).
    SLED = Shelf Life Expiration Date
    BBD = Best-Before Date
    In the outbound DESADV the SLED/BBD is mapped by default into segment E1EDL24/VFDAT. For the manufacture date we implemented an user-exit.
    How does the inbound delivery look like? The batch number appears as "Vendor batch". The SLED/BBD does NOT show up even though the inbound DESADV contains the date in E1EDL24/VFDAT. This inbound DESADV did NOT contain any controlling segment E1EDL19. Adding this segment (QUALF = 'VDT' = Shelf Life Expiration or Best-Before Date) had no effect.
    Here is my assumption why the SLED/BBD does not show up in the inbound delivery created by the inbound DESADV:
    Because we do not yet have the "real" batch (just the "Vendor batch") the system ignores any SLED/BBD. As soon as the external WHS partner sends the GoodsReceipt message (as inbound WHSCON ) the inbound delivery is updated with the "real" batch as well as the SLED/BBD.
    QUESTIONS:
    (1) Why does the SLED/BBD not show up in the inbound delivery created by an inbound DESADV?
    (2) Do we need another user-exit to map the manufacture date into the inbound delivery?
    Once again thank you for sharing your time and expertise with us.
    Regards
       Uwe

    Apply SAP Note
    Note 1576788 - Transfer of exp. date
    (IDOC_INPUT_DESADV1) to inb. delivery
    Here are the correction instructions for your reference:
    =========================================
    FORM DESADV_IDOC_PARSE
    Delta001Context Block 
            IF NOT t_dlgn-vbelv IS INITIAL.
              t_dlgn-posnv = s_dl24-posex.
            ENDIF.
    Delete Block 
            mv s_dl24-brgew t_dlgn-brgew.
    Insert Block 
            mv s_dl24-vfdat t_dlgn-vfdat.                         "n_1576788
            mv s_dl24-brgew t_dlgn-brgew.
    Have fun!
    - Joemil

  • MANUFACTURING DATE IN QUALITY CERTIFICATE

    Hello, we are just with sap implemented but i don't know many things yet. The issue is that the quality certificates shows the final date of production as manufacturing date but, what i need is that the certificate shows the initial date of production as the manufaturing date. After, from the manufacturing date i want sap calculate the best before date and to show it in the certificate.
    Could some one help me?
    thanks.
    Jrdz

    Typically this is controlled by your production people.  When the receipt the material they have the ability to enter/change the production date.  The production date is visible in the batch record, (msc3n), and can be changed updated via msc2n.
    In the cert you shouldn't have to worry about figuring out the production date, it should print what has been maintained.  If what is maintained is incorrect then the process should be reviewed to make sure it is correct.
    FF

  • Date fields are showing as  /  /   in DSO for blank dates or no dates

    We are loading flat file data to DSO and the date fields are showing as  /  /   in DSO for blank dates or no dates in the flat file source system.  We don't want to see this / /  and instead of this, we would want to this field in DSO to be in blank. Please help how to achieve this. Is there any way to do this transformation. If yes, then can you please provide  the sample coding.
    Advance Thanks,
    Christy

    I have added the code and data loading is successful. while DSO activation, it is failing. The error message is,
    Value '#' of characteristic 0DATE is not a number with 000008 spaces.
    It seems that we need to change the code. Can you provide me the corrected code please. Thanks.
    Christy

  • In IPhoto I changed movie dates after thumb nails were created in IMovie but the new dates are not showing up in IMovie.  Is there someway to refresh the IPhoto event in IMovie?

    Background:  I'm transferring file folders from a Visa laptop via an external hard drive to my IMac.  In the folders are photos and videos from different cameras.  SO I first tried to import to IMovie but it would not recognize any of the files.  So then I imported into IPhoto and both photos and videos were imported and I created events for each folder.  When I first opened IMovie I had to wait for it to create "thumb nails".  Then I could view the events in IMovie BUT the video clips are not together because they have vastly different dates and are mixed with videos from other events.  I looked at the dates and said I can fix that in IPhoto which i did but those new dates are not showing up in IMovie.    I think I need to somehow refresh the event data that Imovie is using but have not found how to do that in either IPhoto or IMovie. 
    I'm doing this on three events with about 100 photos and videos.  But I have many 1000s more to do so need to know how to either fix this or delete these events, reimport, change the dates, then open again in IMovie.   I'm sure that would work but I can't understand why changing the dates in IPhoto is not being reflected in IMovie.  
    Appreciate any tips or pointers.
    OBTW this is my first question as a first time Apple owner. 

    It was suggested I move this question to IPhoto or IMovie which I did. 
    Well moving to a different discussion group did not provide an answer to this question either. But what I finally did was import one batch of photos and videos into IPhoto for a given day at a time. Working with these I could change the date and times in order to get them in the original sequench taken. Then I would create an album with that batch. These would all be on the same day (IMove was closed for this phase). Then I would open IMovie, generate the thumbnails for that album, and select the album I had created. This was necessary because the importing process in IPhoto was using incorrect dates for my video so it was a real struggle finding them in IMove until I developed this approach.
    I believe that this whole process was so screwy because I was importing from an external hard drive not a camera. I had these photos on a PC and did not have the original cameras to use to import directly which I am fairly sure would have made this easier!

  • How to find out the "manufacture date"?

    Hello!
    Can you tell me how to find out the manufacture date of my Satellite A110-334 with the serial "SY6224123K"?
    I need this information for my insurance!
    I found only this link for HDD`s: http://www.storage.toshiba.eu/index_manual.php?pid=220&sid=536&la=en
    But there is no "S" on the first digit!??
    So it is maybe "Y6" which can be November 2006! Is this right?
    Thank you!
    ===========
    This is the information on the link above:
    How to encode a Toshiba Hard Disk Drive Serial Number?
    The Toshiba serial number (S/N) includes details of the date of manufacture. The first digit of the serial number indicates the Month of manufacture and the 2nd digit indicates the Year.
    Example:
    M Y x x x x x x x
    M = Month
    Y = Year
    The month digit goes from 1, for January, through to 9, for September, and then X, Y and Z, for October, November and December.
    Examples:
    2 8 1 7 0 0 0 1 A
    2 = February
    8 = 1998
    3 0 5 4 4 3 0 6 T
    3 = March
    0 = 2000
    X 9 D 7 8 3 3 1 T
    X = October
    9 = 1999
    The remaining digits contain information about factory and production line, and some digits are reserved for a continuously running serial number.

    Hello
    Try with http://gedb.toshiba.com/
    Let me know if you find info you need.

  • Outbound Delivery without Manufacturing date

    Hi Guys,
    I have activated SLED in Article master.(We are using SAP IS Retail, ECC 6.00)
    At the time of GRN, users have entered manufacturing date to check
    remaining shelf life for an article.
    I have made following customization (using transaction code OMJE)
    (a) 3 No Check at Goods Issue for movement type 601,602, 647 and 648
    In spite of above IMG settings (No Check at at Goods Issue), system
    shows an error message that, Enter the date of production (Message No.
    12018) in transaction code VL02N.
    Pls note that, we don't want system to check SLED at the time of PGI.
    Any feedback....most welcome.
    Regards,
    Muralidhara

    Hi MURALIDHARA,
    Please Check your incompletness procedure.
    I guess u r sending the goods to the store. During stock transfer movement type 641, 603 are used. You will also have to set this indicator.
    Let me know if u r still stuck. I have the solution as i have already configured this process.
    Regards
    Tapan

  • Need  to show three diff sheets in a smart form , first to be printed twice

    Hi
    I need to show data in a smart form where I have 3 different sheets
    •     Process order request
    •     BoM
    •     Assembly
    where the first sheet will be printed twice .
    as header in each case we have order no , produced material order qty , qty produced etc with the title changing for each sheet . main window we have diff data depending on each form like it will b changing for process order req, bom , assembly .
    how to do that & I need to print each layout in 2 diff language.
    plz help.
    useful answers will be rewarded.
    Thanks

    Create three pages . The first and the last are static and the second variable.
    The first page repeat with a loop twice. The headers of the second pages and next has a window static (the header) and other variable .
    If you have two languages repeat the operation. Call the smartform with a parameter called language by example

  • Nokia N8 manufacture date / production date ?

    I read somewhere that  *#92702689# can show the manufature date of the phone, but only if it is still under warranty period. After that it shows you only a lifetimer like hours:minutes . I also read that this can be reseted with some software. So, how can I find out what is the date that my Nokia N8 was built ?  Some people said the saw on the box something like week.year but I don't have this on my 2 boxes of N8. I want to know this because I want to switch the batteries between my old N8 and another N8 that I bought as used , since the life timer shows 473 hours on one and 101 on another, but if it is reseted ...

    Did you at least bother reading all the text I wrote or do you have difficulties understanding the reason I wrote it ? I have 2 Nokia N8 and I want to exchange their batteries between them in order to have the better one in the phone that I usually keep with me. The disassembly procedure can be found freely on Internet, there are only 2 screws that allows you to pull out the battery. Is that a violation of the warranty ? Do you have an answer that can help me, or you just like to type words ?
    Mr. Mobile Sensei , how can I find the manufacture date of my Nokia N8, one bought as new and another bought as used ? So I can know which battery is newer ! Is that clear enough now ?

Maybe you are looking for