Print Program - Export Packing List/Export Invoice Form

Hi friends,
I've to create two new smartforms for the above said subject and assign the same in output control as a new output type instead of Script.
Im in ECC 6.0 version and in NACE->Billing,i've the std output control(FUEP) in form of script as "SD_EXPORT_FUEP" and the calling print program is RVADAUS1.....here i want to assign the std program for my customised smartform...like smb40 package or relates to ecc 6.0 version.
So,pls if anyone did the same object or having any std programs for this...pls help me by posting ur attachment to my email-id.
[email protected]
[email protected]
Pls reply.
thanks & regards
Sankar.
Edited by: sankar babu on Jan 21, 2008 12:56 PM

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

Similar Messages

  • 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

  • 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

  • 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 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

  • Packing list and Pro forma invoice

    Dear Experts,
    Can i print a Pro Forma Invoice from the Sales Order (before delivery) ?
    Can i print the Packing list without making handling units (the materials comes in Cartoons) ?
    Thanks for your time

    Hi,
    For both, yes.
    To print order related proforma invoice, in t.code VF01 select the relevant order related proforma invoice document type and create the proforma invoice. Then you can print it.
    In the same way you can print the packing list in VL02 or VL02N t.code. In VL02N, go to menu Outbound delivery ->Issue delivery output. Here select the output for packing list and print. Printing packing list without making handling unit really depends on the packing list print program.In the program if it is coded to look for handling units, then without handling unit you can't print. Otherwise, you can try.
    Regards

  • Dunning form print program and process

    Hi Experts...
             Pls. can one help me in finding the dunning form(script) F150_BE_DUNN_02 print program.
         And also pls. can any one explain me about hw i need to modify the dunning form for different level.
    my que. is do i need to modify form each level or i need to modify only in one form..
    and also pls. can any  one explain me hw dunning form will be printed.. (through f150 i know) but i cound not find any selection screen parameter as dunning level...
        .....PLS. DO NOT GIVE ME THE LINKS......i have been most of the links..
    Full rewards will awarded..
    Thanks
    Yugi...

    If you're lucky you can find the print program by entering the form in SE71, then Form -> Check -> Texts, Enter. The print program should be listed there. It could be SAPLF150. You'll need to get one of your Accounts Payable people to set up a test case for you in F150.

  • How to find standard print programs for ADOBE forms

    Hi All,
    My question is how to find the standard SAP print program for a SAP provided ADOBE form. For example - how to find what is the satndard SAP provided print program for the ADOBE form for payment advice 'F110_AVIS_INT'.
    As by default in the transaction F110 (where the payment advice form configuration is done), a SAP Script form is attached and the print program assigned is an SAP Script (as it contains call to function module like open_form, write_form... ) program and not an ADOBE print program.

    Hi Renu,
    I have gone through the link provided by you but it only shows a list of standard PDF forms.
    My question was how to find the standard SAP provided print program (or driver program which contains the data fetch logic and passing of the data to the interface of the ADOBE form) for these SAP provided ADOBE form.
    If SAP has provided standard ADOBE form then definitely they would also have provided the standard print program too ?
    @Srihari,
    The path system --> Status --> program SAPLFPUIFB is the standard program for the SFP transaction and not for the payment advice form F110_AVIS_INT.
    It will be same for all the ADOBE forms if we check in System --> Status --> Program.

  • Standard print program for Adobe Forms

    Hi all -
    Does anyone know if there was a standard print program delivered for the predelivered Adobe form F110_AVIS_INT?  And if there is - what is it?  Is there any document anywhere to determine predelivered print programs for Adobe forms?
    Your help is much appreciated!
    Thanks
    Abby

    Hi
    In SAP you can check for the Print Programs in Tcode <b>OB96</b>
    which gives assignment of programs to script layouts
    see the links related to Adobe forms
    look at the Adobe page here in SDN:
    https://www.sdn.sap.com/sdn/developerareas/was.sdn?page=AdobeForms.htm
    Check these links on Adobe forms
    http://help.sap.com/saphelp_nw04/helpdata/en/1e/05853ff8ec2c17e10000000a114084/content.htm
    https://www.sdn.sap.com/irj/sdn/interactiveforms
    http://www.sap.com/solutions/solutionextensions/pdf/BWP_Interactive_Forms_Adobe.pdf
    It contains lots of useful information, documentation, and e-learning materials teaching you the basics.
    Reward points for useful Answers
    Regards
    Anji

  • OPK8 PDF Form Print Program

    Hi Experts,
    I can see in OPK8, we can maintain Scripts and PDF Forms, but in Print Program, there is only 1 program mentioned and I could see code for SAPScript in the print program. Where is the print program for PDF Form maintained ?
    Also, the forms can be assigned at plant level but the print programs are general for all plants. Is there any way we can restrict a particular print program at plant level.
    Thanks and Regards
             Vivek

    Hi swamy!
    This has nothing to do with your print program.Probably the assignment of your form in the NACE is creating this problem.
    When it is working for you on your id. there should not be any problem with others.Check whether the clients have changed.
    Also as per my knowledge there is no code for detecting correct output device.
    Also you can get the output device name of the user and check with your id.Please let us know the result for further help.
    Regards
    Prasanna Kumar

  • To find print program for smartforms.

    pls tell me how to find print programs for smartforms.pls tell me with all steps.clearly.i tried with tanpr table but unable to find

    hi,
    Please take a look at the NACE transaction where all the output conditions will be configured. Drill down into you specific application and you should be able to find the print program as well as the smart form name.
    Steps..
    Use NACE and follow procedure as follows
    1)Choose Application from list(eg PO)
    2)Click OP type
    3)Chose one OP type from Right pane.
    4)Click on processing routines
    and you got it
    regards,
    keerthi

  • Code for the transaction ME42 to call the customised print program

    HI,
    I am working on forms, i have the transcation ME42, i need to call the customised print prg, from the print program i need to call the form.
    In nace i have customised the print prg with the smartform and i have checked with the table tnapr.
    what coding should i give in the customised print prg so the when the transaction ME42 is save the print prg is called.
    I am checking the standard print prg how is it calling . i am not able to find . can u pls tell what code can be used

    Hello Anitha,
    Use this code
             Entry routine
    FORM ENTRY USING RETURN_CODE US_SCREEN.
      CLEAR RETCODE.
      XSCREEN = US_SCREEN.
      PERFORM PROCESSING.
      IF RETCODE NE 0.
        RETURN_CODE = 1.
      ELSE.
        RETURN_CODE = 0.
      ENDIF.
    ENDFORM.    
    In the for Processin, U do all the opration to proint the form.
    Reaward if useful.
    Vasanth

  • Copying print program for sapscript

    Hello all,
    I would like to customize the print program PSFCPICK which we are using to print a sap script for shop orders.
    So I did a copy of the program and named the new one ZPSFCPICK and assigned the copied print program to the list in OPK8. I know the copied print program is called when printing the script,
    but no output is coming out of the printer. When I change it back to the original program, it is working fine.
    Is there anything I have to pay attention when copying a print program??
    Thanks
    Anne

    HI Anne,
    Check in this custom program or copied program whether you are calling FM -  CLOSE_FORM
    The function module closes the layout set opened using OPEN_FORM. The system executes any terminating processing steps for the last opened layout set. You must use this function module to close layout set printing. Otherwise, no output appears on printer or screen.
    Best Regards,
    Krishna

  • Packing list and COA Address

    Hi ALL,
    Where do we maintain the address that gets printed on the packing list and COA.
    I want to change the address that is getting printed on Printing list and COA...But not aware where to do the changes...
    Thanks..
    Regards,
    Ameya K.

    For the first question, please get in touch with your development guy or refer to  your functional specification. Either of them should help you.
    For changing address of company code, you can go to
    SPRO--ENTERPRISE STRUCTUREDEFINITION-FINANCIAL ACCOUNTING-DEFINE COPY DELETE CHECK COMPANY CODE--EDIT COMPANY CODE DATA
    Here once you reach the company code, select the company code and in the menu
    Go to----Address. Now a screen will pop up, here  you can change your address.

  • Export Documents - Smart Forms - Print program

    Hello,
    I searched the sap notes to find standard print programs from SAP for the export documents with message type:
    FECO
    FETR
    FEEU
    The smart forms are easy to find.
    They are FT_COM_FEEU, FT_COM_FETR, FT_COM_FECO.
    But I don´t find the print programs belonging to the forms.
    Greetings
    Mark

    If you look at the SMARTFORMS they are all blank.
    I would create your own SMARTFORMS and call them in a similiar way as the example programs listed below :
    SF_EXAMPLE_01
    SF_EXAMPLE_02
    SF_EXAMPLE_03
    Hope this helps.
    Cheers
    Colin.

Maybe you are looking for

  • How do I make a photo black and white but leave the color of her dress and flowers?

    I am trying to make one of my granddaughters prom pictures black and white but leave the color of her dress and flowers. Can someone tell me how this is done?

  • Marker and line styles as a choice in drop down menu

    Is it possible to create a drop down choice menu(Choice xyz = new Choice(); ) in java AWT which has line styles or marker styles (no text)( basically these things are required to edit the graph) as choice options?

  • Fragmentation content not working in OBIEE

    Hi I have 2 fact table one is detail and other one is summary and both are added into one LTS(aggregated navigation) in BMM.  In detailed table I have data from 2009 to 2013 but in summary I have data only from 2011 to 2013. I am generating one repor

  • MVC problem - infinite loop?

    I'm going to use a horribly oversimplified example to make my point here, because if I were to describe the actual code I'm looking at, it would take the better part of the afternoon and I'd probably bore you all to tears in the process. So, for the

  • Audio not playing in Preview

    I have a slide that audio was recorded within Captivate.  When I play the slide the audio does play, but when I preview/publish, the audio is not there.  I have three caption boxes that fade in during the slide presentation.  Not sure if this could b