How to print export packing list from invoice transaction(VF03)

Dear all,
        In export process,i need to generate export packing list
       In my case my export invoice and packing list both are same the only difference is in paking list i dont have total coloumn
       so i plan to change invoice form to packing list,
      while issuing the output from vf03 it should ask whether invoice or paking list
       according to that i need print out
        How to achieve these,otherwise any other alternative solution is there?
Regards,
Vijay
Edited by: Vijay Guru on Mar 31, 2010 9:08 AM

Instead of this you copy the same form and change as per packing list and give the user another output type for Packing list.
and say that if u choose one u will get invoice and if he chooses the other he will get Packing list
Regards,
Prakash

Similar Messages

  • Print Packing List from Delivery at Goods Issue

    We are facing an issue with our packing list for a division we are going live with in three weeks.  Our current business process for our plants already on SAP is to create the Packing List when the Delivery is created, with timing code "3" in the Packing List output condition, but to not print it until the "Check-in" button is clicked with the Shipment in VT02N based on an activity profile.
    However, for the service shipments in this division going live August 1, we do not need to create a Shipment nor generate a Bill of Lading from VT02N.  We will post goods issue from the Delivery itself, and we want the Packing List to print at the time of Post Goods Issue from the Delivery.  We have an access sequence for these service Deliveries with Shipping Point/Distribution Channel/Delivery Type, so only Distribution Channel 02 Deliveries will have Goods Issue from the Delivery, but we are not sure how to get the Packing List to not print until Goods Issue.  Any advice would be appreciated.
    Regards,
    Jeff Stewart

    Go to IMG>Logistics Execution>Shipping> Basic Shipping Functions>Output Determination> Maintain Output Determination for Outbound Deliveries.
         Select the Procedure you are using and check the control data to find the Cond. Type you are executing at the moment of the Outbound Delivery.
         Check the fifth column and see you have plenty of options, check them out helped by an ABAP team member; if there is nothing already there, just ask him/her to create a new routine with the validation you need and set it there.
    This is the same that Joao is suggesting I just went a little bit more in details.
    Good luck Jeff!

  • Can you export shipping docs (packing list and invoice) into a doc file?

    Hello Gurus,
    Is there a way to save ZRPL packing list and ZRIN ROSA Invoice into a file instead of printing?
    For example going to VL03N > outbound delivery > issue delivery output > select ZRPL and instead of printing a hardcopy, can it be exported into a file? I need to do this operation to more than 100 packing lists and invoices. I want to upload it to a sharepoint and save some paper.
    Thank You very much for your responses!

    create another comment field that doesn't use 'appending', and through SP Designer change workflow keep
    updating that field with the new comments  (prepend the field with date/username/new comment). Hide the field on all forms, but put it in the view you need to export to Excel.
    Please refer few more links: Hope they will help
    http://www.nothingbutsharepoint.com/2009/04/16/versioning-append-changes-to-existing-text-view-entries-aspx/
    http://sympmarc.com/2011/02/07/showing-all-versions-of-append-changes-to-existing-text-in-a-data-view-web-part-dvwp/comment-page-3/
    https://mossipqueen.wordpress.com/2013/03/06/display-all-appending-field-entries-in-a-single-list-view/
    http://community.office365.com/en-us/f/154/t/278560.aspx
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Need Print Program for Smartform /SAPSLL/SF_GL_EPL for Export Packing list

    Hello Friends,
                         I need a print program for Smartform /SAPSLL/SF_GL_EPL for Export Packing list. Please reply ASAP.
    Thanks,
    Ziad.

    Hi Sowjanya,
                         I am using FUEP o/p type for Export Packing list for Billing . I Copied SAPscript SD_EXPORT_FUEP form and the  print program for this is same RVADAUS1. Can we use the same print program for Smartform  /SAPSLL/SF_GL_EPL?
    Thanks,
    Ziad

  • Need Material Description in SAPscript Export Packing list

    Hi Friends,
                    I copied standard SAPscript form SD_EXPORT_FUEP for Export packing list. I need a Material description in main window but not able to get. Please tell me how to get the material description.
    Thanks,
    Ziad

    Hi Surya,
                  Here is my subroutine,please check it. Still I am not getting description.
    PROGRAM  ZSD_EXPORT.
    tables: VBRP, VBRK, V55ENAFT.
    ********form routine to fetch the material description
    form GET_DESC tables in_par  structure itcsy
                         out_par structure itcsy.
    DATA: BEGIN OF S_MAT.
         VBELN TYPE VBRP-VBELN,
         POSNR type VBRP-POSNR,
         ARKTX  type VBRP-ARKTX,
           include structure vbrp.
    data:      END OF S_MAT.
    data: it_line like V55ENAFT-POSNR,
          inv_no  like V55ENAFT-VBELN.
    data: mat_desc  type VBRP-ARKTX.
    read table in_par with key 'ITLINE'.
    check sy-subrc = 0.
    it_line = in_par-value.
    read table in_par with key 'INV'.
    check sy-subrc = 0.
    INV_NO = in_par-value.
    *SELECT SINGLE VBELN POSNR ARKTX FROM VBRP INTO S_MAT where vbeln = inv_no and posnr = it_line.
    select single * from vbrk
    where vbeln = inv_no.
    SELECT SINGLE * FROM VBRP
    WHERE VBELN = vbrk-vbeln AND POSNR = IT_LINE.
    move vbrp-arktx to mat_desc.
    read table out_par with key 'DESC'.
    check sy-subrc = 0.
    out_par-value = mat_desc.
    modify out_par index sy-tabix.
    endform.               "get_desc
    Thanks,
    Ziad

  • Print Individual task Lists from Project 2010

    Hi
    I have a routine which prints individual task lists from a Project Plan using VBA.  This routine is currently being piloted and they have advised that not all resources have a task list produced.  when I step through the code the Resource numbers
    appears in this order:
    1,3,18,7,8,9,11,12,13,14,18,19,20,21,22,23,24,25
    Task lists are produced for each of the above resources.  However this misses resource numbers 2,4,5,6,10,15,16,17 and I have no idea why.  I have supplied my code below.  Any advice/guidance appreciated.  You will note that the task
    lists are exported to a pre-defined spreadsheet template.
    Sub PrintResourceCharts()
    Dim xlApp As Excel.Application
    Dim xlRange As Excel.Range
    Dim rName As String
    Dim Tsk As Task
    Dim Res As Resource
    Dim Ass As Assignment
    Dim s As Worksheet
    Dim BookNam As String
    Dim Row As Integer
    Dim fName As String
    'Call SetSummaryTask - DB: commented out - run summaryname manually as required.
    Call Task_CF_To_Assignment_CF
    'Remove Existing Task List files from directory before creating new ones
    On Error GoTo Finish
    Kill "D:\Task List Templates\Task Lists\*.*"
    Finish:
    'Save File Location
    fName = "D:\Task List Templates\Task Lists\"
    'Start Excel and Create a new Workbook
    Set xlApp = CreateObject("Excel.Application")
    xlApp.Visible = True
    'Export Resource and Task details
    For Each Res In ActiveProject.Resources
    If Res.Assignments.Count > 0 Then
    Row = 5
    xlApp.Workbooks.Open ("D:\Task List Templates\Task List Template.xlsm")
    BookNam = xlApp.ActiveWorkbook.Name
    Set s = xlApp.Workbooks(BookNam).Worksheets(1)
    For Each Ass In Res.Assignments
    Set xlRange = s.Range("A5")
    If Ass.PercentWorkComplete < 100 Then
    With xlRange
    rName = Ass.ResourceName
    s.Range("A" & Row).Value = Ass.ResourceName
    s.Range("B" & Row).Value = Ass.TaskUniqueID
    s.Range("D" & Row).Value = Ass.Text1
    s.Range("E" & Row).Value = Ass.Start
    s.Range("G" & Row).Value = Ass.Finish
    End With
    End If
    Row = Row + 1
    Set xlRange = xlRange.Offset(Row, 0) 'Point to next row
    Next
    xlApp.Visible = True
    Application.DisplayAlerts = False
    If rName = "" Then
    GoTo Finished
    End If
    xlApp.ActiveWorkbook.SaveAs FileName:= _
    "D:\Task List Templates\Task Lists\" & rName & ".xlsm", FileFormat:= _
    xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False
    rName = ""
    xlApp.ActiveWorkbook.Close savechanges:=False
    Application.DisplayAlerts = True
    End If
    Next
    Finished:
    xlApp.Application.Quit
    Set xlApp = Nothing
    MsgBox ("Individual Task Lists have now been produced....")
    End Sub

    Tony,
    You said you step through the code and it picks up resource 1. What happens when the loop gets to resource 2? Note: since resource 1 may have several assignments and stepping through them all could take some time, I sometimes use a stop statement in the
    outer loop to make it a little easier to "catch" what I'm looking for. For example, you could put this right after the For Each Res...
    If Res.ID = 2 then stop
    Then step through and see what happens.
    John

  • Printing the pick list from the delivery automatically

    Hi All,
    Please let me know how to do the : Printing the pick list from the delivery automatically ?
    Thanks in advance.
    Regards,
    Nagaraju.

    hi,
    execute VL70.
    balajia

  • How can I export email addresses from apple mail?

    How can I export email addresses from Apple Mail?
    Just to be CRISTAL CLEAR please don't reply with export instructions from the address book.....not interested in this.
    I have customers that fill-out a request form online, then the data is sent to our database on our server, and another copy is sent to my email account. The server database got corrupted and is now lost. The only data left are in my email app called APPLE MAIL. I have created Filtered Folders so the data is just in one Folder, not mixed with all other emails. Is there a way to export the email names & addresses from APPLE  MAIL to a CVS file or Excel file?
    Again this is not a question related to Apple Address Book. This is ONLY for Apple MAIL exporting!
    Thanks

    There is a collection of AppleScripts called Mail Scripts you can download at this link.
    http://homepage.mac.com/aamann/Mail_Scripts.html
    The script to use from the collection of scripts is Add Addresses (Mail) which adds addresses found in the selected messages (in the header fields "From", "To", "Cc", and "Bcc") to the Address Book. This is much more flexible than the "Add Sender to Address Book" available in Mail and provides a convenient way for creating mailing lists.

  • How to print out multilingual reports from the main report using Xliff temp

    Hi all,
    How to print out multilingual reports from the main report using Xliff temp?
    When I want main report call subtemplate and finish xliff tranlation
    <?for-each@section:INVOICE?><?end for-each?>
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.FI/?>
    <?start:body?><?call:Header?><?call:Line?><?call:Weights?><?call:Banks?><?end body?><?call:Footer?>
    Prints out fine with Finnish translation
    But if I want in main program to check what language is used e.g.
    if trx_number = 142 call Finnish translation and if trx_number =144,
    call English translation.
    <?for-each@section:INVOICE?><?end for-each?>
    <?if:TRX_NUMBER=’142’?>
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.FI/?>
    <?start:body?><?call:Header?><?call:Line?><?call:Weights?><?call:Banks?><?end body?><?call:Footer?>
    <?end if?>
    <?if: TRX_NUMBER=’144’?>
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.US/?>
    <?start:body?><?call:Header?><?call:Line?><?call:Weights?><?call:Banks?><?end body?><?call:Footer?>
    <?end if?>
    Prints out always in English and never the Finnish translation.
    Program goes fine to if branch but does not print out Finnish
    Does anybody know what could be wrong?
    BR
    Kari

    Thanks Amit,
    I have two layout, main-layout and sub-layout
    Main layout call subtemplate
    I have registered layout and xliff-file
    Main template
    Localized Templates
    File Name           Language Territory
    XXNS_INVOICE_MAIN.rtf      English
    SUB template
    Localized Templates
    File Name           Language Territory
    XXNS_INVOICE_SUB.rtf      English
    Translatable Template
    File Name           Language      Territory
    XXNS_INVOICE_SUB.rtf      English      United States
    Available Translations
    Language Territory Progress
    English Finland Complete
    If main report call subtemplate and finish xliff tranlation
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.FI/?>
    Prints out fine with Finnish translation
    But if I want in main program to check what language is used e.g.
    if....
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.FI/?>
    .....end if;
    if....
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.US/?>
    .....end if;
    Prints out always in English and never the Finnish translation.
    Program goes fine to if branch but does not print out Finnish
    Do you it's set up problem or program problem
    BR
    Kari

  • HT4356 Is there a way to print a contact list from an iPhone?

    Is there a way to print a contact list from an iPhone?

    Another way to do this is to use Contact Sheet (https://itunes.apple.com/app/id894488957?mt=8) which can print your contacts and pictures or it can export them into an Excel file.  You can print all of your contacts or just a select group that you choose.  You can even share contacts and only include the fields you want, so, for example, if you want to share email addresses with a new mom's group but you don't want to share home addresses, you can create a contact share file (VCF) that only includes the names and email addresses of the members of your new mom's group!

  • How do I export a video from my iPhone to a friends computer?

    How do I export a video from my iPhone to a friends computer?

    Same as you would from any digital camera:
    iOS: Importing personal photos and videos from iOS devices to your computer

  • How can I export a slideshow from iPhoto to iMovie 09.  I try but it only lets me import 211 out of the 311 photos I have in the slideshow.

    How can I export a slideshow from iPhoto to iMovie 09.  I try, but it only exports 211 out of the 311 photos I have in the slideshow I made on iPhoto.

    how do i change the format to the right one?
    Before you can decide what to do, you have to know what you are starting with. Sony MPEG-1 files would be converted one way while DivX or WMV files would likely be handled in another. Extraneous tracks can be removed directly with QT Pro but if you don't have QT Pro then there may or may not be other work around possibilities depending on the specific audio and video compression formats in use. The best place to start would normally be to double-clic the source file in iPhoto to open it in the QT Player. When it opens in the QT Player, check the "Inspector" window to see what it says on the "Format:" lines. This will tell you the type of audio and video content you are dealing with here. Then come and tell us so we can offer some specific conversion solutions.

  • How can I export a list of events for one of many calendars - e.g. "sailing" to use in Excel

    How can I export a list of events for one of many calendars - e.g. "sailing" to use in Excel?

    See this thread here
    Display number of emails by sender

  • How can I export a slideshow from iPhoto 9.5.1 ..........

    How can I export a slideshow from iPhoto 9.5.1 as Quick Time Movie? It exports now as m4v.

    That's a Quicktime movie these days. What format did you want?

  • How can we export the data from OAF Page to Excel instead of .csv or .txt

    Hello,
    How can we export the data from OAF Page to Excel instead of .csv or .txt
    When i click on the export button it is exporting to txt file, But i need to export the data into Excel by default
    Please help me
    Thanks in advance
    Thanks,
    Raju
    We have changed the below profile option to get the data in excel by default
    Profile Name Export MIME type
    Profile Code FND_EXPORT_MIME_TYPE+
    Existing Value: text/tab-separated-values+
    Change as: Excel
    Thank you,
    Raju
    Edited by: 1006649 on May 21, 2013 10:55 AM

    We have changed the below profile option to get the data in excel by default
    Profile Name Export MIME type
    Profile Code FND_EXPORT_MIME_TYPE+
    Existing Value: text/tab-separated-values+
    Change as: Excel
    Thank you,
    Raju

Maybe you are looking for