How We Can Change Page Size During Report Run Time

Hello !
How We Can Change Page Size During Report Run Time .
How can we stop to change the column name when we amend a sql in report data model.
Thanks !
null

hello sohail
1. question - i'm afraid this cannot be done ... bit in report 6 and newer you have posibility to divide your report in 3 parts (former header, body, trailor) and each part can have diferent page siz, orientation , ...
2. question - best is give each column in your statements in one report diferent alias. when you have to chnge something, alias will remain same ...
try this: select 1 as fist_column, 1 as second_column from dual
hope this helsp

Similar Messages

  • I buy my iphone from KSA but now i live in jordan how i can change my region to use face time ??!  Because its locked in ksa but free in jordan

    I buy my iphone from KSA but now i live in jordan how i can change my region to use face time ??!  Because its locked in ksa but free in jordan

    No.
    You can never have facetime on that iphone.
    Sorry

  • How do I change page size?

    I'm totally new to the mac platform and to iWeb but have some dreamweaver experience on PC. I have a very simple question. How do I change the size of page in iWeb 08. When I use a template it has a fixed page length and I can't seem to add content and make a vertically longer page. Thanks.
    Sam

    Go to the "page" inspector and select "layout". Here you can change the dimensions by using the up & down arrows or by typing in a new dimension and hit the "enter" key.
    You can also lengthen a page quickly by dropping a text box onto it as a "footer". Enter your copyright info into it then click hold and drag it down the page until you get the length you require.
    eg "Copyright © Sam - 2007 - All Rights Reserved"
    You get the © by typing "option" g

  • How do I change page size of an existing .pdf?

    I have Adobe Acrobat  XI Pro on my Mac running 10.6.
    How do I resize an existing .pdf document that is 20" x 40" down to 4" x 8"?
    Thanks!
    Bob

    Thank you Gilad D, Steve and Bill for your answers. Unfortunately, they don't solve my problem.
    Acrobat does not have a virtual printer option for a Mac operation 10.6. The only way you can "print" to a .pdf is by opening up any application and using File -> Print -> PDF -> Save as PDF.
    Any application, that is, except Acrobat.
    The Acrobat print dialog box gives the user a robust number of options to manipulate the printing of a document. Sadly, there is no "print to PDF" option. When you choose "Printer" (lower left corner), you get the printer's default dialog box that gives making a PDF an option. However if you choose this, another dialog box pops up stating "Saving a PDF file when printing is not supported. Instead, choose File > Save." When you go to File > Save, it is greyed out (since you are using an existing saved PDF file). If you try Save As, you are not given the option to resize the page.
    Alternatively, when you open the existing PDF file in Macintosh's Preview or Skim applications, you are given the option in the print dialog boxes to scale the image. However when you print to a PDF, the file size does not change (which is one of the driving motivations for changing the page size).
    I can't believe that Adobe doesn't have an option in Acrobat to address this issue. While I appreciate the suggestions regarding InDesign (or even PhotoShop for that matter), I'd rather not drop $400 +/- for a program to solve a problem that a reasonable person would expect Acrobat to do itself.
    Please... are there any other options?
    Thank you,
    Bob

  • I was using Firefox on a website and all of a sudden everything changed to such small font that I can hardly read it. Any suggestions as to how I can change the size of the font?Ray Fowler

    While using Firefox the font size automatically changed to so small I can hardly read it. How do I change the font size in Mozilla Firefox?

    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages

  • How do i change the image path at run time in wpf ?

    I have a button and i need to show image two different image based on condition. 
    <Button x:Name="btn" MouseEnter="btn_MouseEnter_1">
    <Button.Template>
    <ControlTemplate TargetType="Button">
    <StackPanel Width="43">
    <Image Name="btnS" Source="Resources/main.png" />
    </StackPanel>
    <ControlTemplate.Triggers>
    <MultiTrigger>
    <MultiTrigger.Conditions>
    <Condition Property="IsMouseOver" Value="True" />
    <Condition Property="IsEnabled" Value="True" />
    </MultiTrigger.Conditions>
    <MultiTrigger.Setters>
    <Setter TargetName="btnS" Property="Source" Value="Resources/hover.png"></Setter>
    </MultiTrigger.Setters>
    </MultiTrigger>
    <MultiTrigger>
    <MultiTrigger.Conditions>
    <Condition Property="IsPressed" Value="True" />
    <Condition Property="IsEnabled" Value="True" />
    </MultiTrigger.Conditions>
    <MultiTrigger.Setters>
    <Setter TargetName="btnS" Property="Source" Value="Resources/audio-push.png" />
    </MultiTrigger.Setters>
    </MultiTrigger>
    <Trigger Property="IsEnabled" Value="false">
    <Setter TargetName="btnS" Property="Source" Value="/Resources/disabled.png" />
    </Trigger>
    </ControlTemplate.Triggers>
    </ControlTemplate>
    </Button.Template>
    </Button>
    I want to change the source of btnS at run time bases on condition.
    Suppose that if a = 1 then 
    btnS source is "Resources/main.png" this
    else btnS source should be "Resources/main1.png"
    same for mouse hover and enable disable triggers.
    Thanks,

    Hi Sumit,
    We can use
    VisualTreeHelper class to find Image control in visual tree.
    UIHelper.cs:
    public class UIHelper
    public static T FindChild<T>(DependencyObject parent, string childName)
    where T : DependencyObject
    // Confirm parent and childName are valid.
    if (parent == null) return null;
    T foundChild = null;
    int childrenCount = VisualTreeHelper.GetChildrenCount(parent);
    for (int i = 0; i < childrenCount; i++)
    var child = VisualTreeHelper.GetChild(parent, i);
    // If the child is not of the request child type child
    T childType = child as T;
    if (childType == null)
    // recursively drill down the tree
    foundChild = FindChild<T>(child, childName);
    // If the child is found, break so we do not overwrite the found child.
    if (foundChild != null) break;
    else if (!string.IsNullOrEmpty(childName))
    var frameworkElement = child as FrameworkElement;
    // If the child's name is set for search
    if (frameworkElement != null && frameworkElement.Name == childName)
    // if the child's name is of the request name
    foundChild = (T)child;
    break;
    else
    // child element found.
    foundChild = (T)child;
    break;
    return foundChild;
    Code Behind:
    private void Button_Click(object sender, RoutedEventArgs e)
    Image image1 = UIHelper.FindChild<Image>(btn, "btnS");
    if(image1!=null)
    image1.Source = new BitmapImage(
    new Uri("Resources/main1.png", UriKind.Relative)
    Screenshot:
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How i can change the phone number for face time in iPhone 6

    plas i want change my old number to new number for face time in iPhone

    Go into Settings, turn FaceTime off. Power the phone off/on. Go back into Settings, turn on FaceTime and let it activate. The phone number comes from the SIM and the activation message. It should populate the correct number.

  • How to Hide a column in a report @run time

    Hello Can you help me please
    I need to hide some columns in a report when you run it , I dont want it to be displayed.
    Here is the scenerio.
    I have a column called (QTY) and the other (Price). Now I have a new one where I take
    (Qty*Price) and the result is in a column called(qtyprice)now I only want to display of the qtyp*price at the end of the report.
    can you help please
    Thank you
    alpha

    Their are so many ways to do this..
    1.simplest thing is just delete that field from your layout so it will not apperar.
    2.go to layout and right click on that field and go to property and just click hide so that field will be hide while running the report.
    3. when you create a layout at that time just deselect that fields so it will not appeare in report while it running.

  • How i can fix "Wiki setting error" and "Running time error" ?

    I've found this message when using server app on Mountain lion.
    and this error data.
    Can i fixed this? Thanks guys!

    It so happens that I saw an answer to a similar question today somewere else. I have not tested this myself:
    "I have the final solution and fix but beware you may not like it that much.
    Having had all of the above problems with more or less everything I finally pieced it all together from various threads. This will fix both the AEBS control and the central services problems.  Dont shout at me for being a bit basic and not coding etc. but it worked for me.  If I can avoid code I do as often as possible as am less likely to balls it up!
    This method will loose some data but the main files and users do remain
    The Fix:
    1. Close Server.app
    2. Library/Server  make a copy of Server file under a diff name as software server files and a few others would appear to still be usable and you will have to re download it all again of you dont copy it back in ( I didn't and now have learned my lesson). then delete the whole of the Server file.
    3. Go to Keychain and search all Airport then delete associated keys permissions etc
    4. Delete Server.app and reinstall.
    5. Start new setup and it will migrate properly with no errors. This time a big green tick will appear!
    6. Replace the software update files into the new Library/Server folder if you want to or leave it untill the rest is done
    7 Reconfigure any missing bits..... any enrolled devices will have vanished but probably if you have  saved the data from this in Library/Server prior to deletion you may be able to reinstate this but I didnt risk it
    This is going to be a total pain if in a large organisation but once working the system is excellent with no swapping from one control set to the other.  As each service is switched on it auto configures the AEBS and no further errors and a joy to work with unless you really like to get into the nuts and bolts.
    Hope this helps and good luck"

  • How do I change text size in auto-page tabs

    Now I'm trying to make the page tabs fit across my page. I've got several pages and will probably have more. I don't want all of them on the bar as they'll be linked in my text. I would also like to make the text smaller and maybe reformat to another font or style.
    I don't find anything on this but maybe I'm not searching the right terminology.

    You're referring to the navbar.  You can remove any page from the navbar by going to the Inspector/Page/Page pane while viewing the page and unchecking the box to include that page in the navbar:
    To change the font size of the navbar text see this post by Cyclosaurus: How do you change the size and font of...: Apple Support Communities.
    Wyodor also posted a way to change the font size: Darkroom Navigation Font Size: Apple Support Communities.
    If you only have a couple of pages you can create your own text based navbar and complete control over the font, size, rollover color, etc. This demo page has an example: Text Based Navbar. Be sure to use Web Safe Fonts. 
    OT

  • XI Pro: How to change page size?

    I have a letter-sized document where each page has extremely large margins and text in a tiny font size. Can I use the 'Remove White Margins' function (Crop pages > Set Page Boxes) to remove the large margins and then resize what remains back to 8.5" x11" using the 'Change Page Size' function?
    When I try this, I can do the first step and I'm left with pages about 5.5"x8". But the Change Page Size function does not allow me to resize the page.
    It this possible?

    Hi J Kart,
    Please refer the doc: https://acrobatusers.com/tutorials/how-to-resize-pages-in-a-pdf-file
    Regards,
    Rave

  • How do I change the size of my screen, in Develop Module, so that I can access the Exposure Slide in the right-hand colummn?

    The right-hand column, under the Develop Module, begins with the Histogram and directly under the Histogram, the Tone Curve is seen.  Missing is the Exposure Slide.  How do I change the size of the screen to show the Exposure Slide before the Tone Curve?

    Right-click (Cmd-click Mac) on the tone curve panel header or any of the other panel headers and make sure there is a checkmark for Basic.

  • Change Page Size of a Form

    I created a form in Adobe Acrobat Pro from a spreadsheet that I had printed to PDF. However, the PDF was in a landspace orientation rather than a portrait orientation. Does anyone know how I can change the page size and orientation of the form. I tried opening it importing it into LifeCycle Designer, but it messes up my java script calculations. If I print it to another PDF it no longer remains a fillable form.

    You really need to go back to your spreadsheet program and properly orient it there. Consider a PDF only a piece of paper that you created. You might be able to create the new PDF and then use replaces pages in the old PDF to keep the form fields. This last step is the typical process to keep the form fields. You will probably still have to move the fields. I am just not sure if the orientation and such will be kept with the replace pages, but that is where I would start. You could also copy the fields from one PDF to the other.

  • Change Page Size in PDF

    How do I change the size of every page in an existing PDF? I'm using Acrobat 9.

    Your only option is to use crop. What you are trying to do is generally done in the original document, not in Acrobat. If you want to scale it you can print it to a new PDF with the size you want and scaling turned on.

  • Hi, I am using Indesign CS6, How to set the page size in Inches.

    Hi, I am using Indesign CS6, How to set the page size in Inches.

    All fields in InDesign can be entered in any measurement system. So, if you want to make an 8"x10" document and go to File>New Document and the window looks like this:
    …you can type either 8 in or 8" into the Width field like this:
    …and when you move to the next field, it will convert the eight inches into the equivalent number in the unit of measure that it is using at the moment, like this:
    … (203.2 milimeters is the same as 8 inches). You can also enter a different measurement unit into other fields once the file is created, such as the width or height of a frame, or the position of an object in the X and Y coordinates.
    If you would rather just work in inches instead of having to type the inches mark or abbreviation, go to InDesign>Preferences>General and select the Units & Increments tab. There you will see Ruler Units for Horizontal and Vertical at the top of the window. Set them to Inches and all of the fields will display in inches. If you do that to an open document, you will change the unit of measure for that document. If you do it while no documents are open, it will change the unit of measure for any new documents you create. To change the unit of measure for existing documents, you will have to open each and make the change.

Maybe you are looking for

  • PLEASE CONTINUE iWeb (and site) and Gallery

    I bought a mac so easy it was to share my photos and website with iweb and Gallery, and able to make DVDs very easily. I bought a mobile.me account for it, but now I'm not very interested icloud offers too I can not publish my site and create beautif

  • Albums in Order by year

    Is there a way i can have itunes organize the albums by the year that they came out? i'm sort of an order freak like that.

  • Unable to start Oracle Database Express Edition (XE) on window 7 - 64 bit

    I installed Oracle Database Express Edition (XE) on a WINDOWS 7 - 64 bit machine. I tried "Get Started" and http://localhost:8080/apex. It does not start/connect of anything. Please help. Thanks. Debbie

  • アップデート出来ない

    今回のアップデート(photoshop14.1.2.inDesigon9.1.0.33)で更新がかかり無事アップデート出来ました. Adobe Application Managerで Photoshop CC(14.0)とInDesign CC(9.0)が最新ではないのに最新になって更新できません.InCopy CCは更新かかってアップデートできました. AAMのバージョンは7.0.0.427です. Library/Application Support/Adobe/AAMUpdater/1.

  • Locking a block after X number of user entry records

    Is there a way to lock a block after X many records have been entered by the user? I dont have a problem after the data is entered and saved, its just when they are entering the information the first time do I see the problem where the user can use t