How to Provide Zoom-in/out Facility in SmartForms Report?

hi all,
can someone tell me how to provide Zoom-in/out facility in a smartforms report? We have a report with very small font and we hardly read contents in preview screen. can someone provide some help on this?
thanks in advance,
sid

This will take in your spool request and download a PDF file to your PC where you can view it in Acrobat:
REPORT zpdf MESSAGE-ID zc LINE-SIZE 255 NO STANDARD PAGE HEADING.
PARAMETERS: spoolid LIKE tsp01-rqident OBLIGATORY.
DATA BEGIN OF pdf_table OCCURS 0.
        INCLUDE STRUCTURE tline.
DATA END   OF pdf_table.
DATA pdf_fsize TYPE i.
CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
     EXPORTING
          src_spoolid   = spoolid
          no_dialog     = 'X'
     IMPORTING
          pdf_bytecount = pdf_fsize
     TABLES
          pdf           = pdf_table
     EXCEPTIONS
          OTHERS        = 0.
CALL FUNCTION 'DOWNLOAD'
     EXPORTING
          bin_filesize = pdf_fsize
          filetype     = 'BIN'
     TABLES
          data_tab     = pdf_table.
Rob

Similar Messages

  • Safari 6.0 page zooms in (even if I'm not touching the mouse) how do I zoom back out?

    Safari 6.0 page zooms in (even if I'm not touching the mouse) how do I zoom back out?

    I turned off zoom in sys pref so hopefully that will help… but when it zooms in huge "on its own" you have to use the back button to go back to normal size as the double tap doesn't work but half the time the back button is greyed out so you have to close the window and start all over which is a pain in the … so why is my back button doing this. It will do this on a page that I used the backbutton on previously?

  • HT4721 How do I zoom in/out if using a mouse?

    Recently upgraded to Lion.  I keep accidentially clicking somehow on the mouse and the opened application zooms in.  What am I doing and how do I zoom out?  Thanks.

    It's probably the smart zoom feature of the magic mouse.  A Double tap with one finger will zoom.
    Double tap until it unzooms.  You can turn the feature off in System Preferences > Mouse > Point & Click tab > Smart zoom.

  • I've created a slideshow. Some of the photos are "zoomed in " too much. How do I zoom back out?

    I created a slideshow but some of the photos need to be adjusted (zoomed out) how do I do that with individual photos in the slideshow?

    With the amount of information you've provided it's impossible to offer a solution.  We can't see your computer so we need to know the details of your problem and setup, i.e.:
    what version of iPhoto are you using?
    what system version are you running?
    what slideshow theme are you using?
    when did this issue start?
    did you apply any updates or upgrades just prior to the problem occurring?
    what fixes have you tried?
    where is your library located?
    are you running a "managed" or "referenced" library?
    what type of Mac?
    how much free space on your boot drive?

  • How can I zoom in/out using my mac trackpad as it was possible in the previous version?

    The way we could use our two fingers on mac to zoom in and out,please help me configure it on the new firefox

    Some gestures have been removed in Firefox 4.
    You can restore the zoom feature by changing the values of the related prefs on the <b>about:config</b> page.
    browser.gesture.pinch.in -> <b>cmd_fullZoomReduce</b>
    browser.gesture.pinch.in.shift -> <b>cmd_fullZoomReset</b>
    browser.gesture.pinch.out -> <b>cmd_fullZoomEnlarge</b>
    browser.gesture.pinch.out.shift -> <b>cmd_fullZoomReset</b>
    browser.gesture.pinch.latched -> <b>false</b>
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />

  • How to send mail with out attachment in a report using oops concept

    Hi Abap Experts,
                     My requirement is i have to send a mail with out attaching any documents this is a report using oops conceopt how can i acheive it .

    Hi Saeed,
    Please search SDN before posting. There are so may threads for the same.
    Check out the standard reports--
    bcs_example_1, bcs_example_2, .. bcs_example_7
    Howard

  • How to provide the fixed space in xml publisher report

    Hi,
    I have a report where the report has header information and line information.
    In the first page the header information is prinintg ( like 'Address', 'Logo' and other stuff ).
    Beneath of this the lines data is prining.
    But i need the space which was occupied by the header information in the subsequent pages 1, 2 and otheres
    How to do this , any help on this ?

    Hi,
    I would propose reviewing the eText documentation. I noticed that for RTF templates it's difficult explicitly set the length though within an eText template, you can specify the intended length.
    The Oracle post is, in my opinion, convoluted, though it's a point in the right direction
    Oracle Business Intelligence Publisher Report Designer's Guide
    Regards,
    Daniel

  • I was viewing a page online, and somehow it zoomed out so the page is tiny in the browser window. How do I zoom back in?

    I was viewing a page online, and somehow it zoomed out so that the page is now tiny in the browser window. I've shut down all my windows and rebooted my computer, but every time I return to that page, it is still tiny. I've looked for a button to control the zoom, but cannot find anything. How do I zoom back out so the page is the correct size again?

    See this: <br />
    https://support.mozilla.com/en-US/kb/Page+Zoom

  • How to Provide Mailing/fax  Facility from a report Pg

    Hi all, We are trying to provide a mailing/fax facility through a report pg. We got following Error messages in "Procesing logs"
    1.No communication type from strategy 1 could not be used.2.Communication type cannot be used
    following is what we have done in report pg
    1-set nast-nacha = 5 (mail/fax facility in output type)
    2-created a Z-table for storing sender/recepiant Address
    3-following is the code
    IF NOT NAST-TCODE IS INITIAL AND NAST-NACHA EQ '5'.
      ... use stratagy to get communication type
        CALL FUNCTION 'ADDR_GET_NEXT_COMM_TYPE'
             EXPORTING
                  STRATEGY           = NAST-TCODE
                  ADDRESS_NUMBER     = ADDR_KEY-ADDRNUMBER
                  PERSON_NUMBER      = ADDR_KEY-PERSNUMBER
             IMPORTING
                  COMM_TYPE          = LVS_COMM_TYPE
                  COMM_VALUES        = LVS_COMM_VALUES
             EXCEPTIONS
                  ADDRESS_NOT_EXIST  = 1
                  PERSON_NOT_EXIST   = 2
                  NO_COMM_TYPE_FOUND = 3
                  INTERNAL_ERROR     = 4
                  PARAMETER_ERROR    = 5
                  OTHERS             = 6.
        IF SY-SUBRC <> 0.
          retcode = sy-subrc.
          SYST-MSGTY = 'E'.
          perform protocol_update.
        ENDIF.
      ENDIF.
    convert communication data
      MOVE-CORRESPONDING NAST TO LVS_SNAST.
      MOVE SY-REPID           TO LVF_PROGRAM.
      CALL FUNCTION 'CONVERT_COMM_TYPE_DATA'
           EXPORTING
                PI_COMM_TYPE              = LVS_COMM_TYPE
                PI_COMM_VALUES            = LVS_COMM_VALUES
                PI_SCREEN                 = US_SCREEN
                PI_COUNTRY                = US_COUNTRY
                PI_REPID                  = LVF_PROGRAM
                PI_SNAST                  = LVS_SNAST
           IMPORTING
                PE_ITCPO                  = LVS_ITCPO
                PE_DEVICE                 = LVF_DEVICE
                PE_MAIL_RECIPIENT         = LVS_RECIPIENT
                PE_MAIL_SENDER            = LVS_SENDER
           EXCEPTIONS
                COMM_TYPE_NOT_SUPPORTED   = 1
                RECIPIENT_CREATION_FAILED = 2
                SENDER_CREATION_FAILED    = 3
                OTHERS                    = 4.
      IF SY-SUBRC <> 0.
        RETCODE = SY-SUBRC.
        SYST-MSGTY = 'E'.
        PERFORM PROTOCOL_UPDATE.
      ENDIF.
      check retcode eq 0.
    if there is a communication strategy used ...
      IF NOT NAST-TCODE IS INITIAL AND NAST-NACHA EQ '5'.
    Title of the mail
        LVS_ITCPO-TDCOVER = 'X'.
        Clear  LVS_ITCPO-TDTITLE .
      To get the text
          gv_DOMNAME = 'VBTYP'.
          gv_VALUE = GV_VBTYP.
          CALL FUNCTION 'DD_DOMVALUE_TEXT_GET'
               EXPORTING
                    DOMNAME       = gv_DOMNAME
                    VALUE         = gv_VALUE
                    LANGU         = Nast-spras
              IMPORTING
                   DD07V_WA      = W_DD07V.
    For order
        IF GC_TYPE = 'ORDER'.
          Concatenate 'adidas' W_DD07V-DDTEXT GV_VBELN
                      into LVS_ITCPO-TDTITLE SEPARATED BY SPACE.
          Select single * from Ztable
              where vkorg = gv_vkorg and
                    vbtyp = gv_vbtyp and
                    type = 'S'.
        SWC_CONTAINER LT_CONTAINER.
       Create sender using sender mail address from new table
        SWC_CLEAR_CONTAINER LT_CONTAINER.
        SWC_CREATE_OBJECT L_SENDER    'RECIPIENT' SPACE.
        SWC_SET_ELEMENT LT_CONTAINER 'AddressString'
                                         Ztable-SENDER.
        SWC_SET_ELEMENT LT_CONTAINER 'TypeID' 'B'.
        SWC_CALL_METHOD L_SENDER    'CreateAddress' LT_CONTAINER.
        IF SY-SUBRC NE 0.
             MESSAGE ID SY-MSGID TYPE 'E' NUMBER SY-MSGNO
                     WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4
                     RAISING SENDER_CREATION_FAILED.
        ENDIF.
        SWC_OBJECT_TO_PERSISTENT L_SENDER LVS_SENDER.
      ENDIF.
    When we use Tcode SOST we find the 'order sent by report pg is "waiting in queue for communication service"(it is a warning message)with the sender and receiver name present.
    What is that we are missing out. help required..!!

    Hi,
      Try this.
      In SOST goto <b>UTILITIES-->Start send process</b>
      In the Pop up select the <b>Trans.Method</b>.
      This should work.
      If not then there might be some settings missing to
      send mail.
    Regards,
    GSR.

  • N96 video playback Zoom in/out feature ?!

    Well, i've been trying to figure out how can i zoom in/out while playing videos on N96 but i couldn't & i can't imagine such a High end video centric device doesn't have it ?!, so anyone could help me with that ?

    OK how about this
    My video is played via Real Player so I went to
    settings
    applications
    Real Player
    Video
    Default playback view and toggeled between window view and full screen.
    Best way I can see
    Would be nice if there was a way to select it at the point of playback.
    N96-1 + 8G SD~Software Version 30.033~Software Version Date 18-06-09~Type RM-247~P/C 0543713~T Mobile UK

  • E72 / Images - how to zoom in/out???

    Hi,
    Could not figure out how to zoom in/out when displaying an image in Media>Images... the usual */# do not seem to work here. And no clue in the provided help.
    Any ideas?
    Thanks!
    Rodolphe
    Solved!
    Go to Solution.

    Well done >

  • How do I zoom in and out on my iPad videos

    How do I zoom in and out using my ipad video?

    Double click the clip in the Timeline, to place it in the viewer.
    In the Viewer window click the Motion tab. Adjust the "Scale" control and set keyframes as needed.

  • I am unable to zoom in/out using the touch pad; yesterday i could zoom in/out of website pages, pics, etc, now today it is not letting me; how do i fix this?

    i am unable to zoom in/out using the touch pad; yesterday i could zoom in/out of website pages, pics, etc, now today it is not letting me; how do i fix this?

    See Here  >  http://support.apple.com/kb/HT1212

  • How do I zoom in or zoom out the camera?

    How do I zoom in or zoom out on the Facetime camera?

    The FT cam has a fixed focal length.  It does not zoom.  You can approximate the effect by moving the Mac closer or farther away.
    Click here -> for "iGlasses" add-on software that can offer digital zoom as well as give you manual control of several of your cam's functions.
    Message was edited by: EZ Jim
    Mac OSX 10.8.3

  • How do i zoom in or out to take a picture?

    How do I zoom in or out before taking a picture?

    You can not take pictures with iPhoto - is this by chance an iPhone question? on the iPhone you use two fingers to squeeze the photo and then use the zoom slider that appears at the bottom of the screen
    LN

Maybe you are looking for

  • Not getting fields in logical database of infotypes

    Hi All, I have created Infotype(9xxx) through PM01, and also maintained the screen for this with 6 feilds.. BEGDA, ENDDA, SUBTY, OBJPS, Zxxx1, Zxxx2 every thing is going fine but when im creating logical database for that infotype, im getting only 3

  • GRC AC Filter for System in GRC AC End user Home

    Hi, I need to create a filter for system (for all user) in the ALV, from END USER HOME when try to select roles and system from Model User I see the instructions in the link: http://scn.sap.com/community/grc/blog/2013/09/04/customizing-access-request

  • Offline Form Issue in SAP GRC System

    Experts: I am working on creating a Offline Form for GRC Process Control  in SAP GRC System. I have couple of doubts. 1. In the Form property, there is a new field call 'Inbound Handler'.    The document which I referred says  that, this 'inbound han

  • What do I need to open a connection from the Linux box to the Oracle server

    Hi all, I want to access oracle database from java application running on Linux. The database is installed on a Window 2000 machine. What do I need to install before I can open a connection from the Linux box to the Oracle server on Windows 2000 ? Do

  • My skype credit is eaten up even after buying subs...

    Hi, i bought subscription for calling malaysia. After getting an confirmation, i dialled a malaysian number and was surprised and shocked to learn that the call actually ended up eating my entire skype credit. Can you please help me understand what w