PDF in horizontal layout

Hi everybody,
I have a problem with a pdf creation. Everything is working fine, I am creating a pdf coming from the spool and I am attaching it to an email. The problem I have is that the information is too large and I would like to show everything, so my idea was to change the layout into horizontal, but I can not see any parameter or whatever to do it. I am using this function 'CONVERT_ABAPSPOOLJOB_2_PDF'.
Does anyone know how to solve it?
Thanks in advance

Get a format created by your Basis team with the required number of columns and assign this printer as default to your spool.
Thanks & Regards,
Bhupal

Similar Messages

  • Vertical & Horizontal layouts

    Hi All,
    Need some advice if possible? We have been give the task to covert a printed magazine into a digital iPad format. The client has sent us only the PDF's that are sent to the printers! we have cut and added them into a Vertical layout but we need to add them to a Horizontal layout - which we have done - problem is we are seeing double the horizontal spreads...
    We are new to DPS and folio builder and can’t seem to figure this out.
    This is how we see it - that is if its possible at all?
    Page 1_v   (veritcal)
    Page 1 & 2 (stitched together) for _h  (horizontal) mode
    So when they turn the iPad they can see it in landscape view... simple!
    Problem is we have when we come to “Page 2_v” we need to have “Page 1 & 2_h” again? so when the user reads it in Horizontal mode it will show “Page 1 & 2 twice” we cant have a blank missing page as the folio will say error.
    Hope that make sense...

    This is the workflow... but this is at the end off all the Horizontal pages and we still need to add verticals only after this..
    1) Set up duel layout v and h
    2) design... (this is the last horizontal page) we still have to add vertical pages only)
    3) Add in articles both V and H (as last H page)
    4) now we need to add only the vertical pages going forward..
    We add the name in  - turn off landscape layout as we have done all the H ones and wehen uploaded we get the below error...

  • How do I save a PDF as an excel file when the PDF is horizontal. Adobe tries to rotate the page, but the data is entered in an  horizontal format.

    How do I save a PDF as an excel file when the PDF is horizontal. Adobe tries to rotate the page, but the data is entered in an  horizontal format.

    Thanks for the quick reply.  I figured out how to get the desired results by using tagging.  For anyone who may reference this post in the future, I went to "Customize" in the top right corner of Adobe, then selected "Create new tool set...", looked under "accessiblity and found the "tag" option.  Hit ok, tag is added to the toolbar.  Then I highlighted the dataset in the PDF that was relevant to the output format, then clicked "tag", saved as spreadsheet.  Sorry I can't provide more details on how tagging works or if there's a more elegant solution available, but I'm sure one's out there.

  • UIX: horizontal layout for messageRadioGroup

    Hello,
    We use UIX 2.1.7.
    In our application we have a few UIX xml pages that create a (dynamic) list of screen items based on database
    content. These screen items can be text items, date items, choise fields, checkboxes or radio groups, depending on what got queried from the database. In the UIX xml, we have implemented this by a table iterating over a DataObjectList with fields, and a switcher bean to render the corresponding UI widget for each field in the list.
    This all works very well, there is only one layout shortcoming we can't seem to fix. When rendering a field as a radio group, we use the messageRadioGroup tag, and use the childdata attribute to create the individial radio buttons. Unfortunately, these buttons are stacked vertically, while we would really like to have them horizontally because of the huge amount of screen space this would save (we sometimes have dozens of radio groups, all with 4 radio buttons. There does not seem to be a way to do that using the messageRadioGroup.
    I am aware of the possibility using the radioButton tag, but due to some issues with our (already very complex, conditional and nested) databinding and the code responsible for handling the screen when the user presses 'save', we REALLY prefer having just a single UI widget in the UIX page for a radio group, just as for all the other widget types as described above.
    Is there anything we overlooked in the messageRadioGroup tag, and if not will it be possible to include this functionality in a future release?
    Thanks!

    Peter -
    We would much prefer to avoid introducing new layout behaviors into the radioGroup - and encourage clients that require different types of layouts to use the radioButton component. In your case, it sounds like you might benefit from putting your "horizontal" radioGroup layout into a UIX template, so that it can be easily accessed from your uiXML pages. For example, here is a sample template which implements a horizontal layout for radio buttons:
    <?xml version="1.0" encoding="UTF-8"?>
    <templateDefinition xmlns="http://xmlns.oracle.com/uix/ui"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:data="http://xmlns.oracle.com/uix/ui"
    targetNamespace="http://www.example.org/demo/templates"
    localName="horizontalMessageRadioGroup">
    <!-- define the template's type information -->
    <type base="ui:inlineMessage">
    <attribute name="childData" javaType="oracle.cabo.ui.data.DataObjectList"/>
    </type>
    <!-- define the content of the page -->
    <content>
    <inlineMessage data:prompt="prompt@ui:rootAttr">
    <contents>
    <flowLayout>
    <contents data:childData="childData@ui:rootAttr">
    <radioButton data:name="name@ui:rootAttr"
    data:text="txt"
    data:selected="selected"
    data:value="val"/>
    </contents>
    </flowLayout>
    </contents>
    </inlineMessage>
    </content>
    </templateDefinition>
    And here is a sample UIX page which uses both a standard messageRadioGroup as well as a horizontalMessageRadioGroup to render the same set of inline data:
    <?xml version="1.0" encoding="UTF-8"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:data="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:demoTmps="http://www.example.org/demo/templates">
    <templates xmlns="http://xmlns.oracle.com/uix/ui">
    <templateImport source="horizontalMessageRadioGroup.uit"/>
    </templates>
    <content>
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui">
    <provider>
    <data name="RGData">
    <inline>
    <btn txt="Longer name" val="Val0"/>
    <btn txt="Name2" val="Val1" selected="true"/>
    <btn txt="Name3" val="Val2"/>
    </inline>
    </data>
    </provider>
    <contents>
    <labeledFieldLayout>
    <contents>
    <!-- First, a vertical group of radio buttons -->
    <messageRadioGroup name="group1"
    data:text="txt"
    data:value="val"
    selectedValue="Val2"
    type="radio"
    prompt="Verical Group"
    data:childData="btn@RGData"/>
    <!-- Now, a horizontal group -->
    <demoTmps:horizontalMessageRadioGroup name="group2"
    prompt="Horizontal Group"
    data:childData="btn@RGData"/>
    </contents>
    </labeledFieldLayout>
    </contents>
    </dataScope>
    </content>
    </page>
    Please give this solution a try and let us know the results.
    Andy

  • Horizontal layout for images or video

    Hi, Sir
    May Check with you how coldfusion can layout for images or
    video in horizontal way? the default is vertical when we use
    cfoutput. what founction and tag support, or we had to design a
    horizontal looper for the purpose?
    The example web page horizontal layout is the youtube.com,
    like URL:
    http://youtube.com/browse?s=mp,
    All the video were layout in horizontal.
    Thanks and Regards
    David

    See
    this
    link
    Ken

  • How to switch display of label for SelectOneRadio in horizontal layout

    Using selectOneRadio with the horizontal layout and it displays the label and then the radio buttons to the right of the label.
    LABEL RADIO1 RADIO2 RADIO 3
    Is there a way to display the radio buttons to the LEFT of the label instead?
    RADIO1 RADIO2 RADIO3 LABEL
    Another question .... instead of radio buttons, we'd like to use check boxes instead, with the same functionality as the selectOneRadio ... just checkboxes instead of radio buttons.
    Can't find anything like selectOneCheckbox though, just a SelectBooleanCheckbox or SelectManyCheckbox, which won't work.
    Thanks for any help.

    Hi,
    you can use combination of selectOneRadio and outputLabel so in selectOneRadio leave label blank and put this text in outputLabel component, which you store to the right of selectOneRadio
            <af:panelGroupLayout id="pgl1" layout="horizontal">
              <af:selectOneRadio id="sor1" layout="horizontal">
                <af:selectItem label="label1" value="1" id="si1"/>
                <af:selectItem label="label2" value="2" id="si2"/>
              </af:selectOneRadio>
              <af:outputLabel value="outputLabel1" id="ol1"/>
            </af:panelGroupLayout>regards,
    Branislav

  • N8: no horizontal layout for calls?

    I have a horizontal mounting for my N8 in the car. I like OVI maps much more in horizontal layout. But incoming calls seems to be displayed always in vertikal layout !?
    Same for the dialing field if you click on "Make call" on the main window. There seems to be no horizonzal version.
    Greetings,
    HaPe
    N8-00 with orange case, loving it
    If my post was helpfull, click on the white star and give me an KuDo ;-)

    Yes it is very hard to turn it around if it is mounted in a car kit in landscape view to be able to use OVI maps in landscape, which is great and much more better in landscape.
    And it is a big lack that it is not possible to see the caller number and picture in  a correct way. 
    And it is quite impossible to dial a number because the digit buttons are arranged in portrait mode.
    (Nokia N8 is used with bluetooth car kit)
    N8-00 with orange case, loving it
    If my post was helpfull, click on the white star and give me an KuDo ;-)

  • Bug in Studio 10.3 - Automatic Handler disappears in horizontal layout

    In process model, clicking on "Layout" button causes "Automatic Handler" swimlane to disappear.
    I've observed this only when using horizontal layout.
    1. Create process
    2. add automatic activity to automaic handler swimlane
    3. add new swimlane "clerk"
    4. Create global ctearion into swimlane clerk
    5. Click "Layout" button
    6. Done: all stuff is now in swimlane clerk, which is the only swimlane left.
    Looks like a bug to me.

    KelVarnson wrote:
    Darryl.Burke wrote:
    Nothing wrong, unless the OP has a custom class named GridBagLayout in the same package, one that either isn't a LayoutManager or doesn't have a default constructor.My guess as well.
    Note that I don't expect that to be the case, it's just a possibility that comes to mind.I think this very likely IS the case, since the error goes on to say:
    2 quick fixes available:
    - Cast argument 1 to 'LayoutManager'
    - Let 'GridBagLayout' implement 'LayoutManager'
    his screenshot shows a "GridBagLayout.java" open in Eclipse, so he probably has created one in his project indeed.
    Kel, either rename that class you created or (worse option) explicitly import the correct one from java.awt.<whatever>.

  • Horizontal Layouts

    This refers to iPad app design.
    I would like to see my page layout in a horizontal format when designing pages that will be read with a horizontal swipe motion.
    I understand this can be achieved with 'Horizontal Swipe Only' pref in the properties menu within Folio Builder. However is there a way to set this up when laying out pages so you can actually see design elements flow through from page to page, just as you do in the vertical orientation of the page layout?
    This would look similar to a page layout with facing pages but would have all the pages horizontal so you have an idea of how your design elements match up or flow through the pages.
    Thanks.

    Have you updated to v21 yet? We had a bug with alternate layouts in CS6 and PDFs that was fixed in v21. Note that v21 of the Content Viewer still isn't released in iTunes, but hopefully soon.
    Neil

  • Is it possible to create a menu structure within iWeb with a so called tree layout? iWeb only provides automatically a horizontal layout

    Is it possible to create a menu structure within iWeb with a so called tree layout? iWeb only provides automatically a horizontal layout

    Not in iWeb itself.
    You have to create these menus yourself. Start here :
         A List Apart: Articles: Suckerfish Dropdowns
    Also, see podcast episode 9 of
         CSS Tricks and Tips
    and then add them to a webpage with the HTML Snippet.
    Or add the menu to the webpage with a JavaScript.
    Here's a sample page :
         http://www.wyodor.net/mfi/roodhout/
         http://www.wyodor.net/mfi/spelling/
         http://www.wyodor.net/mfi/Maaskant/Some_Menus.html
    The how-to-do page are here and here.
    More sample pages on my Made for iPad with iWeb pages.
         http://www.wyodor.net/mfi/
    You may have to learn HTML, CSS, JavaScript, AJAX, DOM and how iWeb creates its pages.

  • Horizontal Layout scrolling vertically

    Has anyone worked with the HorizontalLayout for a List?
    When you touch scroll, it lets you scroll up and down. Whereas the vertical layout won't scroll horizontally.
    Can anyone else confirm this?

    You'll need to set verticalScrollPolicy="auto" and horizontalScrollPolicy="on" styles on your List.

  • Add Horizontal Layout in Business Functions

    Hi,
    I would like to customize the Business Function layout.
    The goal is to get something like that:
    I'm trying to achieve this by changing the display preferences for Business Function -> Advances -> Customize Content, but for some reason it's not working.
    We are running on 16.5 SP03 PL02
    This is what I typed in:
    I would expect, After the Activity ID, I get a horizontal tab with Frequency and Role associated. But it's not the case ... What I get instead is this:
    Question: Am I doing something wrong, or does this function not work for Business Functions in SP03 PL02?
    Same applies to Comments for Tasks in Business Process Diagrams ... even though, the Comments are set to be displayed ... they don't appear.
    Any ideas?
    Thanks & Regards,
    Rafael

    Hi George,
    no, saying 'task', I meant an BPMN Activity -> Task/User Task/....
    I can force PD to display the comments, but only if I change the current process language to -> Analysis, then a 'Task' converts into a 'Process' and the comments do appear:
    So the question is: is it a bug or is it a 'feature' of BPMN? Or maybe a process in Analysis is not the same as a Task in BPMN ... and I can't set any properties for Tasks in PD... but then ... why does it convert? Task into Process and vice versa?
    Once I change the current process language back to -> BPMN 2.0, they dissapear from the diagram.

  • Convert 6 page pdf to dynamic layout

    Hello,
    I am trying to create a dynamic pdf that shows/hides various sections and grows as needed depending upon what is selected.  I started with a 6 page pdf that I created from the html webpage that we are currently using to do this with javascript.
    So I am setting up my subforms and using the Action Builder to set the presence of the subforms and everything is working great until I get to the bottom of the page and the last subform is not carrying over to page 2 and is just cutting off in the middle.   I've tried looking at various pagination options, and I am just not sure what to do.  So I looked in the Help more and it talks about how dynamic pdfs don't really have pages until they are fully processed, so I am not sure how to get my fields out of the current 6 page layout.  I am very new to Designer so I would appreciate if you have any advice for me on how to get this working.
    Thank you!
    Mindy

    Hi Mindy,
    It should like the page type is set to Positioned in the Object > Subform palette. To get the content to overflow onto a new page, you need to set the page type to Flowed.
    When you change the type to flowed, the page contents will become left aligned and stacked one object on top of another. This may mess up your layout. So if you undo this and then start to group objects that do not grow into positioned subforms. This will help you maintain the overall layout.
    This example form looks at the difference between positioned and flowed content. If you scale the images up you will see that the positioned content will cut off the image and will not flow onto a new page.
    http://www.assuredynamics.com/index.php/category/portfolio/explore-the-differences-between -positioned-and-flowed/
    I have a sample here that examines the steps to setting up a dynamic form:
    http://www.assuredynamics.com/index.php/category/portfolio/building-dynamic-tables/
    In addition the form needs to be saved as a Dynamic XML Form in the save-as dialog.
    Hope that helps,
    Niall
    Assure Dynamics

  • Attachment of Word/PDF to Sapscript layout

    Hello everyone,
    Need some help regarding attachment of document in script.
    I know that we can convert the ouput of a SAPscript form to a PDF in a mail attachment or a spool.
    But what we require is attaching a word/pdf document to an existing SAPscript so we can print it at the end of the existing SAPscript layout as terms & conditions.
    Has anyone does this before? I know how to upload word documents in ole and in document management, but am unsure if its possible to add it to a layout. We can add bmp/tiff files, but pdf files??
    Please advise! Thank you in advance.
    Regards,
    Ketaki

    Hi Rich
    Great to hear that someone has already solved the challenge we are facing now.
    We have to print some PDF’s which are stored in iXOS archiving system and linked with archive link to a SD invoice.
    Is it possible you describe a bit more detailed your solution and if possible you send a copy of the coding to me.
    Thanks in advance.
    Walter Wohlgemuth

  • PDF Problelm - horizontal Line and Chart

    I have in some Repeating Frames horizontal Line. When I create a PDF-File then the Line have a very, very small gap inbetween. Does somebody have any idea how I can join two lines ? When I print the same report in RDF then line are together, no gap, no problem.
    When I have a pie chart with expl. 16 categories then the PDF create and show only two colours. Where can I configure or protect that there are 16 different colors ? Also here, the RDF has no problem at all.

    I have in some Repeating Frames horizontal Line. When I create a PDF-File then the Line have a very,
    very small gap inbetween.
    Does somebody have any idea how I can join two lines ? If you want to have a vertical line that stretches across instances of a repeating frame then you can use the: "Line Stretch with Frame" propert on the vertical line. To do this:
    - create a new frame "M_StretchFrame" that surrounds your repeating frame
    - make sure the vertical elasticity for the new frame is "variable"
    - create a vertical line "B_StretchLine" and place it wherever you want (it doesn't need to be within the frame)
    - bring up the property palette for "B_StretchLine"
    - set the "Line Stretch with Frame" property to the new frame "M_StretchFrame"
    When the report runs, the line will stretch the same amount as the frame and hence cross over all instances of the repeating frame.
    If you want to stick with only the repeating frame, you can still set the "Line Stretch with Frame" property against the line to the repeating frame. You can then resize the line so that it extends beyond the end of the repeating frame.

Maybe you are looking for

  • How to get a remote server datetime in SQL Server

    I have a stored procedure in DB Server 1, if i execute then i need to capture the datetime of DB Server 2 server 1 & server 2 GMT Time may differ

  • Tutorial in abap

    hiiiiii all........ i want to practise abap so am searching for some tutorials on reports, smartforms,objects but am not able to find it. <b>i want some tutorial so that based on that only i hve to write program...wre all tables n desc of what user w

  • Remember my ID and password in OBIEE 11

    Hello, in OBIEE 10 it was possible to set a check-box for "Remember my ID and password": http://obiee101.blogspot.com/2009/06/obiee-remember-my-id-and-password.html Is this also possible for OBIEE 11? Best regards Heidi

  • Probelm wi fi macbook air 2013 Italia

    Hello I have problems with navigation, shceda wi fi freezes and I have to disable and re-enable the wi fi is a known issue with Apple rialscierà an update and I have to bring it back to the store? Thanks

  • Mount with "noacl" flag

    Hi, Please help me to understand the "noacl" mount flag and when to use it? Cheers,