Packing list number & packing list date

Hi All,
We need to generate a report that details the amount of product shipped from a manufacturing plant. I need the details like from where do we need to fetch the packing list number & packing list date. Like the field & table names. Pelase suggest asap.
Regards
VT

Hi,
Pls try below tables
Shipping Unit Header - VEPO
Shipping Unit Item - VEKP.

Similar Messages

  • In the packing list, batch number and expiry date is not appearing for a ma

    Dear Friends,
    I have an issue in the packinglist.
    In the packing list, batch number and expiry date is not appearing for a material.
    But in the delivery the batch number and expiry date is appearing.
    Why this has triggered and how to solve this?
    With regards

    Hi Vamsi,
              Please go through the output type Smart form or script programe of the packing list and check with the abaper If is there any Bug.
    Regard's
    Murali.

  • Packing List and Price list

    Hi ,
    Can anyone please let me know how to create packing list?and what is Pricelist , and how can we maintain pricelist ?
    Please explain with some simple scenarios.
    Thanks,
    Kanna.

    Dear Kanna,
    Packing list is one of the output type in the shipping output process.
    Standard output type for Packing list is PL00
    To get the Packing list output you need to do the output determination settings for the outbound deliveries.
    In the output determination procedure you keep the Packing list output type.
    For output determination in shiiping go through this link
    http://help.sap.com/saphelp_47x200/helpdata/en/93/745127546011d1a7020000e829fd11/frameset.htm
    Price list
    Net Price Lists
    Use
    The net price list allows you to provide your customers with pricing information on materials.
    Features
    In the menu, choose: Sales and distribution ® Master data ® Pricing reports ® Net price lists.
    Enter the sales area, the sold-to party and the plant.
    Enter the data that influences pricing (such as order type and pricing date).
    After starting program SDNETPRO a billing document is simulated and the system issues the result.
    Note
    The net price list works with the ABAP List Viewer.
    You can define your own display variants using the ABAP List Viewer. All fields of table VBRP are also available. Subtotal fields KZW11 to KZW16 can be used to create customer-specific information.
    You can find more information on the ABAP List Viewer in: Cross Application Components ® General Application Functions.
    I hope this will help you,
    Regards,
    Murali.

  • Pick List and Pack List

    Can anyone please provide some light on how the system should generate a pick list and pack list. what config needs to be done and settings. or help me with some tutorials even.
    Thanks,
    Kanna Palle.

    Dear Kanna,
    Picking & Packing lists are the output types in the shipping output process.
    Packing list
    Standard output type for Packing list is PL00
    To get the Packing list output you need to do the output determination settings for the outbound deliveries.
    In the output determination procedure you keep the Packing list output type.
    Picking list
    1. First assign your Output type EK00 to the shipping point(Enterprise Structure - Definition of Shipping point), also maintain the time and medium.
    2. Use TCode V/38, to maintain the condition type EK00, maintain the time,print parameters and transmission medium.
    Also assign the processing routines Prog: RVADEK1,Form Routine: ENTRY, Form:SD_PICK_SINGLE
    3. Mainatain the print parameters for shipping pt using TCOde VL01SHP.
    For output determination in shiiping go through this IMG path
    IMG>Logistics execution>Shipping>Basic Shipping functions>Output control>Output determination>Maintain Output Determination for Outbound Deliveries
    -->Maintain Condition Tables
    -->Maintain Output Types
    -->Maintain Access Sequences
    -->Maintain Output Determination Procedure
    -->Assign Output Determination Procedures
    Maintain condition records through VV21 transaction.
    I hope this will help you,
    Regards,
    Murali.

  • IMessage waiting for activation. Phone number not listed in Send and Receive at?

    I'm going to try to be as descriptive as possible, as I'm not too sure what else I can possibly do to resolve this issue.
    3 or 4 days ago I requested a number change through my provider. Not knowing that I had to turn off iMessage whilst waiting for the change to occur, I left it on.
    Later that day my friends were complaining that I was sending them texts from two different numbers, one being my new number, one being my old number. The thing is, I'm using the exact same SIM card and it's a little unusual to have two numbers for one SIM. I then realised that iMessage is ONLY registering my iTunes e-mail address and OLD phone number as an option to 'Send and Receive at'. I have spoken to Optus (my provider in Aust.) and Apple, I have gone into an Apple store, had the phone replaced, restored newtwork settings, restored phone altogether, turned on/off iMessage and Facetime, checked date and time, made sure my correct number is listed in Settings > Phone, etc etc etc I've done EVERYTHING listed in all forums that I've read from people experiencing this same issue.
    I can choose to select my old phone number in iMessage, and can then send messages to others using iMessage from the old number, and if I switch it off, I'm then using SMS to send messages, and it's from my new number again! It's very frustrating not having all features on my phone working correctly.
    If I switch iMessages and Facetime on, not using my Apple ID to sign in, it simply says 'waiting for activation' and after a few hours, tells me it was unsucessful and to try again. I'm all out of options now, Optus don't know what to do, Apple don't know what to do and I don't know what else to do! It's been 4 days! Someone please help!?

    Just thought I'd let everybody know how it finally got resolved 1 week later!
    After trying absolutely everything, and I mean EVERYTHING that Apple support, apple forums etc told me to do, the only thing that worked was turning iMessage off, waiting for at least 24 hours at then turning iMessage back on.
    It activated itself within a few minutes, no dramas at all!
    Hope this helps!

  • Powershell script to count number of list and library items in site collection

    We are identifying large lists in our 2010 SP environment and I'm attempting to write code to output the total number of list items in a site collection.   I'm using the code below but it only displays column data for title and url. 
    What do I need to add so it can count the number of items in each sharepoint list and library? 
    Get-SPSite -WebApplication http://sharepoint -Limit All |
       Select -ExpandProperty AllWebs |
       Select -ExpandProperty Lists |
       Select ParentWebUrl, Title
    I'm referencing
    http://sharepointpromag.com/sharepoint/windows-powershell-scripts-sharepoint-info-files-pagesweb-parts

    Please find belwo script, it will iterarte through all the folder/Subfoder to get the item counts from all list and library, you can modify this script to run this at site collection scope:
    Note: save the script in .ps1 file and execute the script as described below to get log file, it will save the log file out.txt in seleted directory:
    e.g.PS D:\PowershellScripts> .\ListItemCount.ps1 > out.txt
    $SPWebApp = Get-SPWebApplication "http://weburl.com/"
    foreach ($SPSite in $SPWebApp.Sites)
    if ($SPSite -ne $null)
    foreach ($SPWeb in $SPSite.AllWebs)
    foreach ($list in $SPWeb.Lists)
    $ListURL = $SPWeb.url + "/" + $list.RootFolder.Url
    Write-Output $ListURL
    [Microsoft.SharePoint.SPQuery]$query = New-Object Microsoft.SharePoint.SPQuery
    #$query.Folder = fldr;
    #Recursive Scope....
    $query.ViewAttributes = "Scope='Recursive'"
    $allitems = $list.GetItems($query);
    $filecount = $allitems.Count;
    Write-Output " No of item: " $filecount
    if ($SPWeb -ne $null)
    $SPWeb.Dispose()
    if ($SPSite -ne $null)
    $SPSite.Dispose()
    You can update the code to get any specific list type item count, using if($list.BaseType -eq "DocumentLibrary") condition:
    if($list.BaseType -eq "DocumentLibrary")
    $ListURL = $SPWeb.url + "/" + $list.RootFolder.Url
    Write-Output $ListURL
    [Microsoft.SharePoint.SPQuery]$query = New-Object Microsoft.SharePoint.SPQuery
    #$query.Folder = fldr;
    #Recursive Scope....
    $query.ViewAttributes = "Scope='Recursive'"
    $allitems = $list.GetItems($query);
    $filecount = $allitems.Count;
    Write-Output " No of item: " $filecount
    if ($SPWeb -ne $null)
    $SPWeb.Dispose()
    If my contribution helps you, please click Mark As Answer on that post and Vote as Helpful
    Thanks, ShankarSingh

  • Drop down list item to select date

    I am using oracle form 6i, i want to use drop down list item to select date
    I was able to manipulate my codes to get values for the three drop down list items year, month and day
    but at when list change trigger on month to populate day , it populated accordingly but at point if I selected other month, it added the days of the new month selected to
    the days of already selected month. And delete list_element command failed to provide solution..
    Can any one help me out -- <email address removed by moderator so that you won't get spammed for all Eternity>

    1976 as year and march as month
    declare
    last_date date;
    nDays number;
    cursor days(v_last_date in date,vnDays in number) is
    select first_day(v_last_date)+rownum-1 sdate from dual
    connect by rownum<vnDays+1;
    begin
    select last_day(to_date(monthITEM||yearITEM,'MonthYYYY')) from dual;
    // the month is in the monthITEM
    // the year is in the yearITEM
    // last_day will have the last day of that month.
    //now you have to find the no. of days.
    select to_char(last_Date,'dd') into nDays from dual;
    for dates in days
    loop
    add_list_element(listname,dates.sdate,dates.sdate,1);
    end loop;
    end;

  • Entry list number

    Dear Experts,
    I am preparing one Z report on measuring points and documents and just want to confirm that are we assigning entry list number to any equipment or functional location ?
    My report req is client want to capture the measuring points which has no documents entered by user, any soution for this ?
    Regards,
    Ri

    Ripel,
    The entry list is to group the measuring points to ease the data entry operations in a single screen IK34 instead IK11.
    For your client requirement, you may get the measuring point from IMPTT table and pass into IMRG to find no Measurement document entries.
    Babu

  • Error: List View Threshold. The number of items in this list exceeds the list view threshold, which is 5000 items.

    Hi, i had created a SharePoint List in cloud ( office 365) using List Template.
    List template contains 12000 items taken as template from SharePoint on Premise.
    I am getting this error message, in SharePoint Online (Office 365)
    The number of items in this list exceeds the list view threshold, which is 5000 items. Tasks that cause excessive server load (such as those involving all list items) are currently prohibited.
    How to resolve it, to get data in my SharePoint list, any help will be appreciated.

    With O365 lists over 5k items are now officially supported but they will have limited behaviour due to the threshold. There are no workarounds or options to increase the threshold either temporarily, for specific users or for the list itself as you have
    with on-prem.
    You'll need to remove enough items to get it below the threshold limit, add indexed columns to support indexed views, then re-add the items again. This article is for 2010 but the section around indexed columns and views is still accurate:
    https://technet.microsoft.com/en-us/library/cc262813(v=office.14).aspx
    It may be possible to add the indexes on your on-prem list where you can increase/avoid the threshold, then re-export the list. That would rely upon the list creation script adding indexes before it uploads items but it's a logical assumption.

  • List item w/ multiple data items - how to select data items?

    I have a list component (myListBox) that is showing the
    labels for some data items read in from an XML file. Each item in
    the list has an associated name, description, and path (they're mp3
    files) and they are named accordingly in the XML tags.
    Using myListBox.selectedItem.label gives the correct label
    but myListBox.selectedItem.data is undefined. I've tried using the
    XML tags after the data selector (e.g.
    myListBox.selectedItem.data.path) but those don't work, either. All
    of the examples I've found in the docs show only a single data
    element associated with each list item.
    So, if a list item has multiple data items associated with
    it, how do you select them using the listBox.selectedItem property?
    TIA,
    rgames

    Q2. when I type "Oracle" in A long list item box, cursor is going to the initial character "O" , so I can find "Oracle" in A long list item box easily.Maybe , but of course your list gets smaller as you see only the entries starting with a "O" , except if there are entries in the list which all start with the letter "O" so the total number of entries in the list is equivalent to the number of entries start with "O"...!!!!!!!!!
    My greetings,
    Simon

  • I can't get imessages to recognize another iphone. Bubble turns green. the phone number is listed in contacts under iphone.

    I can't get my iphone to recognize another iphone while imessaging. The bubble will not turn blue, it remains green. I have tried tapping it and it wont change. The phone number is listed in contacts under iphone.

    Make sure your iMessage is activated. If the other person does not have a good data connection, iMessage will recognize that and fall back to a SMS. What you list the person's phone number as in Contacts does not matter.

  • Hi I  newly started using Iphone 6, I am not getting all the applications list under Use Cellular date for to restrict my unwanted apps on cellular data

    Hi I  newly started using Iphone 6, I am not getting all the applications list under Use Cellular date for to restrict my unwanted apps on cellular data
    Please help me out

    Hi Rajesh778484,
    Welcome to the Apple Support Communities!
    I understand that some of your applications are not appearing under Settings > Cellular on your iPhone so that you can restrict or allow use of cellular data. If you have some installed applications on your iPhone that are not showing here, the first troubleshooting step I would suggest would be to reset your iPhone. Please refer to the attached article for information on how to perform a reset. 
    Restart or reset your iPhone, iPad, or iPod touch - Apple Support
    Best regards,
    Joe

  • How do I find out why there's a number 1 listed on my eBay app?

    So I have a new notification number one listed next to my eBay app as it would be on Facebook notifications yet I can't find out who's notified me or why can anybody out there help

    Try opening Notification Center by swiping down from the top of the screen.
    Press the "All" button toward the top center.
    The notification should appear there.  You can clear it from there when finished.

  • Error: ORA-01722: invalid number performing List of Values query.

    when i created a cascading select list, For the first time it worked properly then little later
    it is giving this error.
    Error: ORA-01722: invalid number performing List of Values query: "select distinct cl_name d, cl_no r from Kclient where gr_no = :P1_GRNO order by 1
    could any one please solve the problem?
    2. when i run the application. in all the items edit button is automatically seen
    including in the login screen.
    could any one identify what is the error and give me a solution.

    Is this better?
    select DISTINCT FIRST_NAME||' '||LAST_NAME display_value
          , ROW_ID return_value
      from "PSA_RESOURCE_MANAGER"
    where PSA_RESOURCE_MANAGER.ACTIVE_FLAG='Y'
       AND :P117_REPORTING_MANAGER = PSA_RESOURCE_MANAGER.REPORTING_MANAGER
       AND :P117_REPORTING_MANAGER <> -1 order by 1or
    select DISTINCT FIRST_NAME||' '||LAST_NAME display_value
          , ROW_ID return_value
      from "PSA_RESOURCE_MANAGER"
    where PSA_RESOURCE_MANAGER.ACTIVE_FLAG='Y'
       AND :P117_REPORTING_MANAGER = PSA_RESOURCE_MANAGER.REPORTING_MANAGER
       AND :P117_REPORTING_MANAGER != '-1' order by 1Is ROW_ID a column in your table by the way? If not, you should use ROWID (without the underscore)

  • ORA-01722: invalid number performing List of Values query

    I have a situation here where I want to pass string value(available in search field) to POP up key LOV on another page as default value.
    I passed item value in default field in POPup key LOV item.I am able to see string value but It also gave me following error.
    Error: ORA-01722: invalid number performing List of Values query: "select CUSTOMER_NAME, CUSTOMER_ID from (select customer_name, customer_id from hed_customers) wwvlovinlineviewname where CUSTOMER_ID = :WWV_LOV_RETURN_KEY_UTIL_1111".
    Without Default value, it work like champ.
    Please suggest how to get rid of this error
    Thanks in advance

    I hit the same problem.
    The thing is that, in APEX, a 'null' value in a form is not really null but gets passed on as '%'.
    When that gets compared to a number, 01722 will occur.
    A workaround is to define a 'value if null' that is an implicit number, like '-1'.
    And lets hope no one ever uses that as a real ID...
    Cheers
    Peter

Maybe you are looking for

  • Can Open dialog box be made to always open same size and position?

    The Open and the Save As dialog boxes used to reopen at the same position and size as last used.  In Mavericks the always open in a small dialog box in the upper center.  Can this be changed to open in the size of and where they were last used>

  • Audigy 4 Digital Out with DTS 55

    Hi there Is it possible to connect a Audigy 4 (not the pro version) with a optical cable to a 5500er DTS Station?$ Ive got this combo and i think it wont work (optical out on audigy 4 is just show?) My soundcard works with other connections but not w

  • World of Warcraft playable?

    Can a Dell - Inspiron Laptop with Intel® Pentium® Processor play world of warcraft without buying additional things or would i have to buy a better video card and memory/

  • Spilit vauated material type changing

    Dear Sir How to change the material type which is subjected to split valuation Thanks Maruthi

  • Cannot activate imessage io7

    cannot activate imessage on io7