ABAP list to spool and converting to pdf problem in QAS

Hi
         i am converting the report output to PDF by submitting the spool. i done evrything. but my problem is
in DEV -everything is ok.when i downalod pdf is coming fine with all fields.
in QAS- pdf is coming with half page. some fields are cutting off.
in program i given the format like this.
wa_pri_params-paart = 'X_65_80'.
    wa_pri_params-linsz = '185'.
  can anyone suggest?? and also can i increase programatically the size becoz it is displaying with small size??

Programatically you can specify the size by giving
REPORT XXXXXX NO STANDARD PAGE HEADING
                                     LINE-SIZE 255
                                     LINE-COUNT 90

Similar Messages

  • Freehand and converting to pdf problem

    for some reason when i try to convert a freehand document to pdf ready for printing im losing an "inline" effect around some of the text.
    i've put an example to illustrate
    http://simonboard.com/photos/pdf.html
    can anyone on these forums help?

    Distiller is part of Acrobat Pro and used to set up files for output to an imagesetter.
    How are you printing these? Is the printer going to make films for burning plates or is this direct from computer to printer?
    If it's direct, as I suspect, then merely save the file as an EPS, then import it into Illustrator to check it over and make sure everything is good. Or just import it into Preview to look at it. They should be able to print from a Freehand EPS, but best to check with them first.
    Instead of using Freehand's export to PDF simply print then instead of clicking on the Print button on the right, look to the left for a button that says "Save as PDF". This would probably be better than the EPS file, but either one can be imported into Illustrator.

  • I want to create a Pdf file - do i misunderstand the product?  I thought i could create a PDF similar to excel or word file or do i have to create there and convert to PDF? I bought the pack for $89.PDF Pack!

    I want to create a Pdf file - do i misunderstand the product?  I thought i could create a PDF similar to excel or word file or do i have to create there and convert to PDF? I bought the pack for $89.PDF Pack!

    Hi Brian,
    You can create it in Word or excel and then you can Convert it into .pdf Format
    Here's a feature list that depicts benefits of PDF pack: Convert Word to PDF, Convert PDF to Word & Merge PDFs | Adobe PDF Pack
    Please revert back if you have any other questions or need any help.
    Regards,
    Rahul

  • No Microsoft files listed in the settings "convert into PDF files"

    Hi, I wanted to convert different Microsoft Office files, but it doesn't work. There are no Microsoft files listed in the settings "convert into PDF files". I had the trial version of Adobe Acrobat Pro XI installed on a MAC in Windows that runs trough Parallels. Hope somebody can help. Thx

    Hi Rahul,
    many thanks for your suggestion.
    Yes, Parallels is a virtual machine on the top of MAC and I can see all files in the Windows Explorer. Also the ones I created on the MAC top with the Microsoft Office Software Word or Excel for MAC as well the ones I created earlier on a Windows PC.
    Unfortunately there is no possibility to convert files into PDF format with a click on the right mouse. And Adobe also doesn't open Word documents because it doesn't support this format.
    But nonetheless it wouldn't be a solution that I prefer to convert in adavance every single file in a PDF format. I need to create a PDF package from different formats.
    I assume this issue has to do something with MAC or Parallels, because this function of the Adobe Versions Acrobat 8 Pro and XI Pro work well on a Windows PC. I just don't understand why there are no Microsoft Office file formats listed in the Adobe settings. This settings also can't be changed. I tried to find out but couldn't find any hint for this problem thus I'm a bit at a loss... Maybe you have another idea?
    Regards
    Ly

  • ABAP program for BAPI and convert DB into XML

    ABAP program for BAPI and convert DB into XML
    Thank you,
    Regards,
    Jagrut BharatKumar Shukla

    Refer the link -
    give an example of bapi coding?
    how can we transfer huge amount of data from database server to xml format
    Regards,
    Amit
    Reward all helpful replies.

  • With Adobe Illustrator I may open doc documents(word) and convert to pdf

    With Adobe Illustrator I may open doc documents(word) and convert to pdf ?

    Ise,
    You can, although (maybe) only the first page of the .doc; this may depend on the Illy version.

  • Convert spool output of ABAP list into excel and send email

    Hello All,
      I have a requirement where we need to
    1. schedule a background job programtically
    2. moniter backround job (if complete or not)
    3. once its complete take spool output ,convert into excel and email.
    I have following difficulties.
      1. i have reached upto stage 3. However, i am not getting proper ouput of excel via mail. it contains junk characters. I searched SDN and tried various option but not successful.
    2. AT last i have submited report and collected output in memory rather than submiting back ground job. Now excel out put is coming somewhat as required but while sending mail , i am getting limitation of 255 chars . My excel row has more than 255 line size.
    Please suggest.
    Thanks in advance,
    jigs.
    <<text removed>>
    Edited by: Matt on Jul 1, 2009 3:52 PM - removed point offer

    I've edited your post.  Please take the time to read the Rules of Engagement of these forums.  Offering points is not permitted for reasons outline in the Rules of Engagement.
    matt

  • While Changing ABAP List from Spool to PDF Whole List is not displaying

    Hi,
    There is Z Program to convert Payslip ABAP List to PDF, when it is generating in PDF from Spool, I cannot view whole Payslip.
    Previously it is dislpaying fully in PDF file, But not Now.
    Please Help me...............
    With Regards,
    Gaurav.

    Hi,
    Thank you very much. My problem has been solved
    Thanks & Regards,
    Gaurav Mittal

  • PDF Printing Issue (Converting to Spool and back to PDF)

    Hi,
    I have a document which has minimum of 25 pages. This document is designed using BSP. When i print this document in DEV this is printed without any issue, but when we print in QA this doesn't print and keeps going on and on and finally we get session time out.
    And now we got some information that this issue occurs because of Memory Management. So now we have to convert the data first to spool and from the spool we have to convert the same to PDF and then try to print.
    I have no idea about the spool. So could someone help me regarding this.
    Thanks in advance.

    Try building your code with FM " CALL FUNCTION 'GET_PRINT_PARAMETERS'
    you will have to submit your program and then
    Read spool from table tsp01.
    refer to the SAP help demo code below.
    DATA: number           TYPE tbtcjob-jobcount,
          name             TYPE tbtcjob-jobname VALUE 'JOB_TEST',
          print_parameters TYPE pri_params.
    CALL FUNCTION 'JOB_OPEN'
      EXPORTING
        jobname          = name
      IMPORTING
        jobcount         = number
      EXCEPTIONS
        cant_create_job  = 1
        invalid_job_data = 2
        jobname_missing  = 3
        OTHERS           = 4.
    IF sy-subrc = 0.
      SUBMIT submitable TO SAP-SPOOL
                        SPOOL PARAMETERS print_parameters
                        WITHOUT SPOOL DYNPRO
                        VIA JOB name NUMBER number
                        AND RETURN.
      IF sy-subrc = 0.
        CALL FUNCTION 'JOB_CLOSE'
          EXPORTING
            jobcount             = number
            jobname              = name
            strtimmed            = 'X'
          EXCEPTIONS
            cant_start_immediate = 1
            invalid_startdate    = 2
            jobname_missing      = 3
            job_close_failed     = 4
            job_nosteps          = 5
            job_notex            = 6
            lock_failed          = 7
            OTHERS               = 8.
        IF sy-subrc <> 0.
        ENDIF.
      ENDIF.
    ENDIF.
    Regards,
    Nikhil

  • Submit program to send a smartform to the spool and obtain a PDF

    Hi all,
    I wanna know if there is a way to submit (execute) a program that print a smartform for print this smartform to the spool and then obtain a PDF file from the spool order.
    I wanna do this because the program that allows to print the smartform is already implemented and its logic is complicated, and I need to get the smartform as a PDF to show it into a WDP Java application.
    If it's posible to do this, could you explain me how can I do it?
    Regards,
    Gregory.

    Hi,
    To get the PDF format output of smartform you can try with the following Function Module.Before that you have to declare the function module for calling the smartform.
    DATA:
      W_bin_filesize TYPE i,                            " Binary File Size
    Internal table to hold the OTF data*
    DATA:
    t_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
    Internal table to hold OTF data record from the SMARTFORM
    t_otf_from_fm TYPE ssfcrescl,
    Internal table to hold the data from the FM CONVERT_OTF
    T_pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE.
    Function Module CONVERT_OTF is used to convert the OTF format to PDF
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    FORMAT = 'PDF'
    MAX_LINEWIDTH = 132
    ARCHIVE_INDEX = ' '
    COPYNUMBER = 0
    ASCII_BIDI_VIS2LOG = ' '
    PDF_DELETE_OTFTAB = ' '
    IMPORTING
    BIN_FILESIZE = W_bin_filesize
    BIN_FILE =
    TABLES
    otf = T_OTF
    lines = T_pdf_tab
    EXCEPTIONS
    ERR_MAX_LINEWIDTH = 1
    ERR_FORMAT = 2
    ERR_CONV_NOT_POSSIBLE = 3
    ERR_BAD_OTF = 4
    OTHERS = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Regards,
    Suvajit

  • ABAP List to SPOOL

    Hi,
    Is theer any function module that converts list output to spool and the export parameter should give the SPOOL ID ..
    Thanks in advance..
    -Mohan

    Hi,
    Please check the below link
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/submit_t.htm
    Hope this helps.

  • Will buzzword allow to upload word template, edit and convert to PDF.

    Hi,
    we have a module in our project where we need to Upload a word template - Edit the template - and save the changes - and attach exisitng uploaded files (for e.g. Word, excel and pdf file) and convert the word template along with the attached file into single PDF.
    So is this possible?
    Can any one help me in this?
    Is there any free download?

    Hello,
    Buzzword is an online word processor that will absolutely allow you to upload a word .doc, edit it in Buzzword format, then export as a PDF. The one part that you can't do with Acrobat.com is to merge files - so you'd either need to merge the word .docs first and then upload, or use Adobe Acrobat desktop software if you need to merge PDF files. There is nothing to download as this is an online tool. Basic accounts are free - you can sign up at www.acrobat.com.
    Please let me know if you have additional questions or concerns.
    Kind Regards,
    Michelle

  • Export ABAP List to Excel and send it as email attachment

    Hi,
    I have a program that sends email to employees, using SAP Office, this email sends an attachment in html (an abap lisp exported to html). To create this attachment I use LIST_FROM_MEMORY to recover data and then WWW_HTML_FROM_LISTOBJECT to create the html file.
    Then the email is sent using SO_NEW_DOCUMENT_ATT_SEND_API1 and it works fine. But now I need to send this ABAP List as an Excel instead of sending as a HTML file.
    How can I do this? Is this possible?
    Thanks in advance
    Best regards
    P.S: I've tried to recover information from ABAP List as an ASCII file (using LIST_TO_ASCII instead of WWW_HTML_FROM_LISTOBJECT) and then sending the file as an XLS instead of HTM (this is determined in PACKING_LIST parameter of SO_NEW_DOCUMENT_ATT_SEND_API1), but when I open the excel file, all information is stored in the first cell, so you cannot perform any operation on it.

    Hi,
    Please refer to the link below :
    http://www.sapdev.co.uk/reporting/rep_spooltopdf.htm
    or
    http://www.sapdev.co.uk/reporting/email/attach_xls.htm
    Thanks,
    Sriram Ponna.

  • Read a Word/Excel doc and convert to PDF

    Can any one suggest a way or source to read a word/excel document and convert it to an PDF.. using Java
    Thanks,
    Satya

    Parse the Excel document with the Apache POI API and generate a PDF document with the Apache FOP API.

  • Read word/excel doc and convert to pdf

    Can any one suggest a way or source to read a word/excel document and convert it to an PDF.. using Java

    Parse the Excel document with the Apache POI API and generate a PDF document with the Apache FOP API.

Maybe you are looking for

  • Forms and Network Resource

    I have made several forms using Adobe 9 and distributed them.  Most often I get a message in the Tracker that says "you do not have access rights to this network resource".  Is Acrobat.com considered a network resource?  If so, then how do I change m

  • Retina MacBook Pro 16GB or 8GB RAM

    Is 8 GB enough or I need 16 GB For: Parallels Desktop 8 (Win 8) - gaming and  C/C++/Java programming Final Cut Pro X - full HD video editing 60FPS Minecraft Server for 80-250 slots PhotoShop CS6 easy editing and logo design Music to the max! Movie do

  • Transport BW warehouse management objects

    hi can soem one explain which is the best practise for transporting AWB objects in BW 1. create Single packages to transport AWB objects or 2.create multiple packages to transport AWB objects what are the pros and cons can some one explain?

  • Can Login Items be disabled instead of just hidden/removed?

    cderalow wrote in another thread: "system preferences accounts login items uncheck as applicable " I always thought unchecking just made the app hidden on login but still launched. Is there a way of disabling items in this window instead of deleting

  • VBPA and VBAK query using OPEN CURSOR... anyway to skip buffer?

    Hi all, I have a query which VBPA inner join VBAK. In this query, I am using VBPA-KUNNR and VBPA-PARVW to query out data. I know VBPA holds a lot of data and querying in this way will be very heavy. So I use OPEN CURSOR to query the SELECT .. INNER J