How to include Serial Numbers in a marketing documents

Hi,
we would like to show the serial number attached to the right item in the Invoice and Delivery documents.  But the serial number columns are always empty in the markleting documents.  My boss don't want to see the serial numbers on a separate report like it is right now.
Do you have any solution ?  I tried to use a Formatted search to fill the Serial Number Field, but it's not working, I can't discard the wrong serial number or the SQL query do not work in SAP (thought it's working well in SQL Server)..
Daniel Gagnon

You should select the setting for When Batch/Serial No. Exist, Print 
Select the option to print Batch or Serial Number information in inventory documents.
Document and Batch/Serial No. (Print the document and the Batch or Serial Number information)
To access this area  Administration > System Initialization > Print Preferences..Per document Tab
Suda

Similar Messages

  • IDOC message type WMMBXY not including Serial numbers in GR material documents when created with reference to an Inbound delivery

    Hello,
    We currently have an inbound ALE process (message type WMMBXY and basic type WMMBID02) to post GR's against inbound delivery. If the inbound delivery item is maintained with serial numbers, we want those serial numbers to be pulled into the goods movement material document (and stored in SER03).
    Currently segment E1MBXYJ is maintained with the inbound delivery number in field VLIEF_AVIS and Inbound delivery item number in field
    VBELP_AVIS. In segment E1MBXYI, no purchase order is assigned and the fields EBELN and EBELP are blank. The movement indicator (KZBEW) has the value 'B'.
    Even after making the above settings, the serial number(s) maintained on the Inbound delivery item do not get saved to the material document.I did look at OSS note 833603 (Solution for 2 - GR for Inbound delivery) and we have followed the same settings. This works when there is no serial number in the Inbound delivery. However if we have serial numbers, the IDOC posts successfully, however the material documents in MB03 do not have any serial numbers copied over from the Inbound delivery where the serial numbers are definitely assigned.
    Any help you can provide is greatly appreciated!
    Thanks,
    Ashvin
    P.S
    If we manually create the GR via MIGO, the serial numbers are automatically applied to the GR material document. This is what we want to accomplish via the above IDoc process.

    Hi
    Try with enhancement MWMIDO08. See note 833603 - EDI: Goods receipt for stock transport order for further information.
    I hope this helps you
    Regards
    Eduardo

  • How to re-initialize numbering in any marketing document

    Dear All
    In A/R Invoice, a numbering series with name 'Primary' is currently in use. Starting number of this series is '1' and so far, document numbers has reached till '3450'.
    I want to create anothing numbering series while locking the current one and wants to re-initialize the numbering from '1' in A/R Invoice.
    How is it possible? Kindly guide.
    Thanks and Regards
    Nabeel

    HI!
    This can be handled using Posting Periods and Period Indicator.
    For doing this current Period should not have any Transaction .

  • New Report including Serial numbers

    Hi all
    Need to develop a new report
    Feilds to be included are - PO number, Material code, Serial number , GRN , Goods issue note, text feild
    what are  the most suiatable tables that i can collect the above information
    Thanks and Regards
    Sasika

    Hi,
    Hope these tables will be useful
    EQBS Serial Number Stock Segment
    EQSE Serial Number Records
    MASE Last Serial Number for Material
    OBJK Plant Maintenance Object List
    SER00 General Header Table for Serial Number Management
    SER01 Document Header for Serial Numbers for Delivery
    SER02 Document Header for Serial Nos for Maint.Contract (SD Order)
    SER03 Document Header for Serial Numbers for Goods Movements
    SER04 Document Header for Serial Numbers for Inspection Lot
    SER05 Document Header for Serial Numbers for PP Order
    SER06 Document Header for Serial Numbers for Handling Unit-Content
    SER07 Document Header for Serial Numbers in Physical Inventory
    SER08 Document Header for Purchase Order Item Serial Numbers
    SERBL Plant Maintenance Object List
    SERI Serial Numbers
    ITOB
    Regards
    Madhu
    Edited by: MADHU SUDHANA on Sep 21, 2009 12:50 PM

  • Where can I find a list of all products I have purchased and registered with apple, including serial numbers?

    Where can I find a list of all products I have purchased and registered with apple, including serial numbers?

    Hi,
    Look under https://supportprofile.apple.com.
    It has all products associated with your apple ID.
    Richie

  • How to generate Serial numbers using JAVA SCRIPT

    how to generate serial numbers(incrementing by 1) using JAVA SCRIPT
    thanking you,
    pola pradeep

    i am afraid that whether ur looking for this. bcoz its a simple for loop
    <script language="JavaScript">
    //count = limit value for u
    for(i=0;i<count;++i){
         alert(i);
    </script>
    or if ur looking for something else, pls mention ur requrment precisely
    aleena

  • How to insert page numbers in a PDF document?

    How to insert page numbers in a PDF document using Adobe Acrobat X Pro 10.1.2?
    Thanks.

    OK, I found it myself:
    1. Tools - Pages - Edit Page Design - Header & Footer - Add Header & Footer.
    2. Select the font and size, etc, place the cursor on the appropriate site to insert the page number, click the "Insert Page Number" button, and click OK.
    That is!

  • How to Query serial numbers on VXI smip modules.

    I'm trying to write a program in C# that will query the VXI SMIP Switch Modules for their serial numbers.  Right now I am able to view all the serial numbers through the soft front panel provided with the drivers but I need to automate this process and extract the serial numbers for further processing so I need to access the modules directly and read the data.
    My current  Setup:
    [Computer with PCI-MXI-2 Board] ------> [ Racal Chassis  with  "SM1000E double wide Carrier" that can hold 6 VXI SMIP switch module plugin cards]
    I'm able to see all resources in NI MAX.
    The VXI resource is shown in NI MAX as : VXI0::26::INSTR
    The VXI SM1000E Carrier that holds the 6 plugin module has logical address 26
    and there are 6 modules in there carrier that is 0 based, module 1 is 0, module 2, is 1, module 3, is 2 and so on...
    To my understanding, Visual Studio can automatically create wrapper code using the "Driver Wrapper Wizard" included with the T&M ToolKit.  And by doing this I was able to access some of the functions of the drivers associated with this module.
    I'm trying to use the vtvmSmip_QuerySmip function, which will return the NonVol data for up to six plug-in cards at once according to the documentation in the driver header file.  The definition of the SMiP NonVol structure can be found in the vtvmSmip.h file. But I'm still unsure how to use it.
    Using Visual Studio 2003, the function is available but it requires some arguments.
    Below is the wrapper code generated.
    [code]
    private void button1_Click(object sender, System.EventArgs e)
     // This code creates and initializes an instance of the VXIplug&play wrapper class
     // TODO:  Insert your appropriate values for address, idQuery etc.
     Agilent.TMFramework.InstrumentDriverInterop.Vxipn​pWrappers.VtvmSmip myVtvmSmip;
     myVtvmSmip = new Agilent.TMFramework.InstrumentDriverInterop.Vxipnp​Wrappers.VtvmSmip("GPIB0::7::INSTR", true, true);
     // TODO:  Add your code here.  For example:
     // myVtvmSmip.Reset();
    [code end]
    I was wondering if, I want to use myvtvmSmip.QuerySmip();  What should I pass in as the arguments?  This fuction suppose to return all 6 modules information. not sure how...
    Its definition is as follows:
    void VtvmSmip.QuerySmip(int smipStruct)
    "smipStruct points to the locaton where the data is to be sotred.  The Structure is of type vtvmSmip_SMIP_TYPE.  Look in vtSmipDefs.h for the definition of vtvmSmip_SMIP_TYPE.  Note:  The Plug&Play spec prohibits exporting data structures, so the structure is not exported."
    s
    I get and exception when I use this as:
    myVtvmSmip.QuerySmip(1);
    didnt work gave me exception..
    Another fuction I coulduse was this one.
    myVtvmSmip.ReadNonvol();
    I guess this returns 1 module at a time.
    Definition:
    voidVtvmSmip.ReadNonvol(short smodNmbr, System.Text.StringBuilder nvData)
    I suppose smodnmbr responds to each module, 0, 1, 2, 3, 4, and 5.
    I hope this isnt too much information.. I just want to be able to read the serial numbers of of these switch modules so I can process them.  If anyone can help, that would be great.  Thanks.
    Chan

    Hi Matt,
    Thanks for your replay. Right now im trying to query the VXI Tech SMP1200 double slot carrier that holds 6 SMP5004 modules.  But I have other SMP switches as well after I figure this one out, I belive if I can do this one, they should be the same for the other switches.
    SMP1200 Product Link:
    http://www.vxitech.com/ProductDescription.aspx?PID​=218
    SMP5004 Product Link:
    http://www.vxitech.com/ProductDescription.aspx?PID​=242
    I belive I have the drivers from the manufacturer.  When I try to implement the code below, I get an exception error.
    The logical address of the SMP1200 Carrier is 26. And it has a resource name of "VXI0::26::INSTR" as should in NIMAX.
    The SMP1200 holds 6 switch modules and I think its zero based ( Module 1 is 0, Module 2 is 1, Module 3 is 2 etc..up to 5)
    reading through the vtSmipDefs.h file included with the drivers, It says QuerySmip() returns information about 6 modules at once.
    ReadNonvol() reads one module at a time I belive.  Not sure how this works because using these functions, they dont return a value.  I don't know If I have to somehow read it back.
    [CODE]
    private void button1_Click(object sender, System.EventArgs e)
     // This code creates and initializes an instance of the VXIplug&play wrapper class
     // TODO:  Insert your appropriate values for address, idQuery etc.
     Agilent.TMFramework.InstrumentDriverInterop.Vxipn​pWrappers.VtvmSmip myVtvmSmip;
     myVtvmSmip = new Agilent.TMFramework.InstrumentDriverInterop.Vxipnp​Wrappers.VtvmSmip("VXI0::26::INSTR", true, true);
     // TODO:  Add your code here.  For example:
     // myVtvmSmip.Reset();
    myVtvmSmip.QuerySmip(1);
    [CODE}
    The code above is automatically generated using the built in Agilent T&M Toolkit driver wrapper wizard in the menu in Visual Studio 2003.  using this code, the intellisense menu does appear to show all the class members functions from the driver.
    When I run the program, I get an exception error.
    Ill post the exact data as soon as im back at work.
    I can also send you a link to the drivers and the help files that have some information about it. 
    Im kinda a newbie here with programming in C# and also VXI/MXI.  This is just part of my whole application im writing.  So far I've been able to query all the instruments(meters, scopes, etc) through the GPIB using IDN query so far.  Just the VXI left and its killing me.  Appreciate you help.  Look forward to your reply.
    Thanks Chan

  • How to insert serial numbers in the creation of a delivery via VL01N

    Hello everybody,
    In the creation of an outbound delivery via VL01N I have to copy the serial number from a specific inbound delivery. I can get these serial numbers but I do not know where or how I can insert these serial numbers.
    I have to insert them just after the user press enter in the first screen of VL01N (before the delivery number is created) I cannot use a bapi like BAPI_OUTB_DELIVERY_CHANGE because the delivery is not created yet.
    Could anybody tell me how to do it? Any BAdI/Exit I can use? and which internal table I shoud update?
    Thanks a lot.

    But this is impossible! Believe me! When I open Creative Cloud.app, the window which pops out says :
    ===========================================
    APPLICATIONS INSTALLEES (= Installed applications)
    Indesign CC (2014) ----- A jour (= up-to-date)
    Acrobat XI pro ----- A jour (= up-to-date)
    TROUVER DE NOUVELLES APPS (= Find new apps)
    Photoshop CC (2014) ----- Installer (Install)
    etc., etc.
    ===========================================
    In the second part of the window, you have already installed apps, as Photoshop, which have not been updated as well as apps I have never installed, as Scout CC.
    So it is impossible to install Indesign anew.
    When I click on the small gear, a small window opens up, and I can check that in Preferences/Apps that the "Langue de l'app", that is the "Language of the app" is "English plus hebrew (some hebrew characters)
    ", since i made this choice yesterday, as you told me.
    And nevertheless, the Creative Cloud.app does not want to download any new Indesign application.
    It is not possible to ask the people at Adobe who have designed CC.app?
    Thank you,
    André Bellaïche

  • How to update serial numbers in function module BAPI_GOODSMVT_CREATE

    Hi,
    Can you please let me know how to update the serial numbers for the movement type 561,563 and 565 with the material, plant,  storage location, quantity and Unit of measure values using BAPI_GOODSMVT_CREATE

    Hi,
    Can you please let me know how to update the serial numbers for the movement type 561,563 and 565 with the material, plant,  storage location, quantity and Unit of measure values using BAPI_GOODSMVT_CREATE

  • How to give Serial numbers

    Hi Seth,
        My problem is..I do not want to activate "Batch management" but i would like to allocate number for my material during GR.. To be more specific  I am getting in 10 coils in my company,now during GR i want to give 1 to  10 numbers to each of the coils.My question is  "  IS IT POSSIBLE ",if yes please guide me frm scratch.Points will gives dude
    Thanks

    Hi,
    Yes it is possible to assign serial number at the time of GR.
    Pls find the details for Serial Number Assignment while GR as below :
    Assigning Serial Numbers at Goods Receipt
    Use
    When carrying out the final backflush, a specific serial number is assigned to materials which require a serial number.
    You can only assign serial numbers to assemblies, not to the individual components of an assembly.
    Prerequisites :
    1.You must have defined that the material requires a serial number by selecting the serial number profile in the material master record (sales view).
    In Customizing for Sales and Distribution, you must define how the serial number is to be assigned in the serial number profile for the serialization procedure PPSF (Serial Numbers in Repetitive Manufacturing):
    Automatic
    Mandatory entry
    Optional entry
    Features
    When backflushing a material that is to be assigned a serial number, the following functions are carried out depending on the settings in Customizing:
    *Assigning serial numbers automatically :
    In this setting, the serial number is automatically assigned by the system in the final backflush using the settings in the serial number profile.
    Serial numbers as a mandatory entry :
    With this setting, when saving the final backflush, the system displays the dialog box entitled Maintain Serial Numbers where you have to enter a serial number. The goods receipt cannot be posted if you do not enter a serial number.
    Here, you can enter a serial number manually or you can instruct the system to search for the next free serial number and assign it to the material. In this case, choose Create serial no. automatically.
    Serial numbers as an optional entry :
    With this setting, when saving the final backflush, the system displays the dialog box entitled Maintain Serial Numbers where you can enter a serial number.
    Here, you can enter a serial number manually or you can instruct the system to search for the next free serial number and assign it to the material. In this case, choose Create serial no. automatically.
    Activities :
    Displaying serial number per material document
    The serial numbers are recorded in the material documents. You can check the serial number assignment in the backflush document log.
    In the SAP menu, choose Logistics ® Production ® Repetitive manufacturing ® Evaluations ® Display backflush documents.
    Enter the selection criteria and choose Execute.
    The system displays a list of the backflushing logs.
    Double-click the required document number.
    The system accesses the overview display of the document.
    Access the detailed display by choosing Details fm.item and then entering the appropriate item number.
    The system accesses the details display.
    In the detailed display, choose, Goto ® Serial number.
    The system displays the dialog box, Display Serial Number.
    Displaying and changing serial numbers:
    Starting from the main Repetitive Manufacturing menu, you can display, or change a certain serial number. In the SAP menu, choose Logistics ® Production ® Repetitive manufacturing ® Master data ® Serial numbers ® Display or Change.
    Creating, displaying, and changing serial numbers collectively :
    Starting from the main Repetitive Manufacturing menu, you can create, display or change serial numbers collectively. To do this, choose Logistics ® Production ® Repetitive manufacturing ® Master data ® Serial numbers ® List editing ® Create or change or display.
    Hope this helps.
    Revert if any doubt and reward if useful.
    Regards,
    Tejas
    Edited by: Tejas  Pujara on Jul 25, 2008 8:04 AM

  • How to deactivate serial numbers PEPE10

    I Restored my computer to its factory defaults. when reinstalling  PEPE10, Accidentally installed disc 1, I should have installed disc 2 for windows 7 x64bit.The uninstaller tells me to deactivate and remove serial numbers used when installing on my machine.  Question is how do I do that? Please help.
    Message was edited by: cease4tea 07/07/2014 1:05 AM mt

    Well to deactivate, you just need to launch Editor. Go to Help menu, and click on Deactivate button.
    Deactivation is for the purpose that you can use your license on 2 computers, and remove the license from the ones you don't use right now. So you should always deactivate you PEPE version before formatting your machine.

  • How to see serial numbers which have been sold

    Hi,
    I want to see serial numbers which has been sold.
    How to see that.
    Regards
    Gaurav Jain

    Hi there,
    There is no standrd table that will display all the serial num that are sold in a given time.
    You can write an ABAP query / report for this. In the report, you can code in such a way that if you give the validity dates, it should give all the deliveries that are created within that period & serial num of serialized products in those deliveries. This is because serial num are assigned only of the item that is serialized. Non-serialized items willnot have serial num.
    For this, you will have to 1st extract all the entries in LIKP for a specific sales org / plant / shipping point within that period. Then you will have to extract LIPS values of those deliveries. Then you will have to pick up only serialized items from the list.
    Ask you ABAPer to check if it is possible to develop this kind of a query / report.
    Regards,
    Sivanand

  • How to use serial numbers in Crystal Reports?

    I want to use serial numbers in Invoices and Packing Lists in the report I built in Crystal. Is there a easy way to do that? I searched the forum but no helpful answers could be found.......

    I need more help! I did the following for my Invoice: OSRD-INV1 join by ItemCode and DocEntry
    DLN1-OSRD join by DocEntry and INV1-OINV join by DocEntry
    I'm sure this is not good. What are the right joins and which field from which table has to be placed in the Report? Thanks for your help, we just got life from April 1st, so I'm new with this....
    Edited by: Frits Pen on Apr 13, 2009 2:38 PM
    Edited by: Paulo Calado on Jun 12, 2009 4:56 PM

  • How to pass serial numbers in L_IDOC_INPUT_WMMBXY

    Hi folks,
    I'm using L_IDOC_INPUT_WMMBXY to post goods movement during PGI. I wanted to pass serial numbers in this idoc for the materials. There is a user exit in this Idoc, EXIT_SAPLLMDE_002 which I guess could be used to pass the serial numbers but I don't know to pass them. Did any one worked on this kind of req. or any other solution would be highly appreciated.
    Thanks,
    Tom

    Hi Shankar;
       I am unaware of any function module, I searched for it high and low a few months ago...  This website describes the process of getting the serial numbers using WM if it is of any help to you...
    http://www.sapgenie.com/sapfunc/serialnumbers.htm
    Cheers,
    John

Maybe you are looking for

  • Installing self signed certificate

    I'm trying to install a self signed certificate in iPhone OS 3.1.3 so that I can securely access a web service at home via mobile Safari and an application that uses the same web service. I've tried emailing myself the certificate and installing it b

  • Stretched image MacBook Pro Retina to 720p TV

    Whenever I connect my MacBook Pro Retina to my Panasonic HD Ready tv the entire image on the tv is stretched a bit vertically. It's not the gravest of problems but it is pretty **** annoying when watching any kind of video. All the heads and everythi

  • Battery after hard reset on Lumia 800

    Hi A few days ago i did a hard reset on my Lumia 800. Since that everything was great, the only reason why i did it, to restore the default settings. After that i updated the firmware to 12070 via Zune. Since that day, my phone doesn't really know ho

  • SETTING UP EMAIL ACCOUNTS

    My curve 8520 has suddenly lost the persoanl email setup option and i need to know how delete old email accounts, i'm unable to do so.

  • JFileChooser leaves grey box after closing - why?

    Hi all, I have a tabbed pane with 2 tabs. Each tab has 3 other panels, top, middle and bottom. On the frame in which this tabbed pane is contained there is a menubar, on which there is a File menu and a number of options. When one of these options, t