SAP form- Printing all pages on same page

HI Gurus,
We are facing a strange issue while printing more than one page.
The system generates the spool with the correct number of pages , but the printer prints all pages on the same paper (the word of one page over the words of other pages) ?!?!?!?!
The program prints all pages correctly if I print from another program – a report for example .  Also if I print  with only one page it goes fine….
Hence i assume it cannot be a printer issue.
Did anyone faced any kind of similar issues? Pls let me know if u have any solution to this.
Regards,
John

Hi,
Sounds very strange :P. Have you checked following things:
- Is print preview correct?
- Does same problem occur also with other printers / forms?
Br,
  Hannu

Similar Messages

  • How to do a partial refresh of a form and report on the same page?

    Hi all,
    im trying to make a page where you have a report on top and when you click the link instead going to the form page, the form page is on the bottom of the report. lets say im trying to send an id from the report to the item below so that i could fetch the rest of the item. however when i pass,other items would still refer to this one as null.
    if im not mistaken this could be done with submit,but i want it to be partial refresh..
    i tried steps here but this only worked when the lower part is a also a report:
    https://forums.oracle.com/thread/2345863
    i also tried this,but this actually submits a page..
    Grassroots Oracle: Apex Tutorial - Form & Report sharing the same page
    would it be possible to get a form and report in one page as partial refresh?
    Message was edited by: T101_cyberdyne

    If so, you need to create a dynamic action with a javascript action to set the id of the report row in the id form field, and a subsequent pl/sql action to fetch the record based on the id. You can use this record to set the other form field items.
    For the example in the above link the code looks as follows.
    the javascript action:
    var empno = $(this.triggeringElement).find('td[headers="EMPNO"]').text()
    $s('P26_EMPNO',empno)
    the PL/SQL action:
    declare
    cursor c_emp is
    select * from emp
    where empno = :p26_EMPNO;
    BEGIN
    for r_emp in c_emp loop
      APEX_UTIL.SET_SESSION_STATE('P26_ENAME',r_emp.ename);
      APEX_UTIL.SET_SESSION_STATE('P26_JOB',r_emp.job);
      APEX_UTIL.SET_SESSION_STATE('P26_MGR',r_emp.mgr);
      APEX_UTIL.SET_SESSION_STATE('P26_HIREDATE',to_char(r_emp.hiredate,'dd-mon-yyyy'));
      APEX_UTIL.SET_SESSION_STATE('P26_SAL',r_emp.sal);
      APEX_UTIL.SET_SESSION_STATE('P26_COMM',r_emp.comm);
      APEX_UTIL.SET_SESSION_STATE('P26_DEPTNO',r_emp.deptno);
      APEX_UTIL.SET_SESSION_STATE('P26_ORDNO',r_emp.ordno);
    end loop;
    END;
    Hi Vincent,
    Yes! im looking for something similar. This looks interesting. I did look into apex_util.set_session_state yesterday but didnt know how to apply. perhaps i was doing it wrong.
    Question though, so basically first use the javascript to send the EMPNO from top report to the EMPNO in the form fields below.
    Then based on the EMPNO received in the form, do a loop to get the rest and put it into session. Correct?
    if i'm not mistaken i did something similar,but when i tried to set session for the rest,it refers to to the p26_EMPNO still as null..does the javascript sets the id of report to the id of the form or does it just send over?
    i'll try it out.
    Thanks.

  • How to print all columns in one page

    Hi,
    Can anybody explain me how to print all columns in one page.we have around 15 to 20 columns for 4 reports and all these reports are build on one multiprovider.we are using BW 3.5.
    Can anyone explain me  how to print ALL COLUMNS IN ONE PAGE  .currently they are getting all columns in 2 to 3 pages. They are using PORTAL to run the reports here.
    Is it possible to do by customizing Webtemplate or by macros in Workbook.Please help me
    Edited by: kotha123 on Oct 11, 2010 5:58 PM

    Hi,
    Your best bet is to use a workbook template or else Excel to pdf option...Thanks

  • Form and report on the same page...

    Hi,
    I want to have a form and report on the same page... as soon as user enters the information and submit the form via button then the report should be able to display the addition...
    may I know how to accomplish this...
    Thanks in advance

    Hi
    Can you try like this
    1.First create an empty page and add a html region and template as form region and add the necessary fields to insert into table
    2. create a another region with type as "SQL Query" and template as report region and add the necessary fields for the reports.
    Once u entered the details into form region and created process and insert into table and then automatically the report region query will fetch the recently added row and displays in the report.
    Hopes this might helps you.
    Thanks & Regards
    Srikkanth.M

  • How to get a form to appear on the same page when a button is clicked?

    Hi,
    I have a report on a page with a create button. When a user clicks the create button, a form should appear on another region in the same page....how do i go about doing this?
    I know how to do this if the form is on a different page, but i'd like the form to appear on the same page as the report and only when the button is clicked.
    Thanks.

    Hi,
    I did the following, but it didnt work....
    1) Created a hidden item on the page, and in the Default Value field, I set the value to N.
    2) Created a button in the report with the following values under "Optional URL Redirect":
    Target is a: Page in this application
    Page: 4
    Set these items: P1_SHOW_FORM
    With these values: Y
    3) Created a form of HTML text type with the following values under "Conditional Display":
    Condition Type: Request=Expression 1
    Expression 1: P1_SHOW_FORM='Y'
    What have I done wrong or have i missed something?
    Thanks.

  • FORM and JSP in the same page

    Hello All
    Is it possible to pass variable from a html textbox to a JSP? but they both are in the same page.
    For this purpose, I have a created a index.html, which contain two frames, top.html and bottom.jsp. There is a textbox in the top.html, it collects 2 variables and use form action "POST" to call bottom.jsp to display a graph.
    However after I run this page on Tomcat, it gave me error message in the bottom.html:
    The server encountered an internal error () that prevented it from fulfilling this request.
    Can anyone teach me how to solve this problem? Thanks a lot
    Viola
    index.html
    ===============================
    (FRAME) top.html
    <form action="bottom.jsp" method="post">
    <input type="text" name="apple">
    <input type="text" name="orange">
    ===============================
    (FRAME) bottom.jsp
    String apple = request.getParameter("apple");
    String orange = request.getParameter("orange");
    use those two variables to do something
    and display a graph

    The problem is that both pages are loaded @ the same time so when the getParameter gets executed the parameters are null and this is the probable cause of your error. Another problem is the action in form will cause the bottom to go into tops frame and not have anything to do with the other frame. If you want data to go from one frame to another while the user still sees them look @ DHTML, JavaScript and IFrames.
    HTH,
    J.Clancey

  • Form Submission with Results on Same Page

    Hi there,
    I am new to Spry, well, have used an accordion and thats
    about it. I
    want to create a page that has a form that submits to an ASP
    page, all
    the ASP does is insert a record. After the ASP has inserted
    the data, it
    will return the data, I want this to appear on the same page
    that
    submitted it without refreshing the page. The page will allow
    another
    set of data to be submitted, and again this data needs to be
    displayed,
    but below the previous data displayed.
    Is this possible with Spry? If it is, which part of Spry do I
    need to
    investigate?
    Are there any gotchas I should know about whilst using this
    technique?
    Thanks in advance!
    Dooza

    V1 Fusion wrote:
    > Hello Dooza,
    >
    > Check out these examples:
    >
    >
    >
    http://labs.adobe.com/technologies/spry/samples/form_submission/Submit_and_Valid
    > ate_Form.php.html
    I like the validation, and the demo works well.
    >
    http://labs.adobe.com/technologies/spry/samples/form_submission/SubmitFormWithXH
    > RSample.asp.html
    For some reason I don't see the response from the server as I
    do with
    the PHP example, all I see is:
    <%
    Response.Expires = -1
    Sub dump_object_irequestdictionary(ByRef var)
    If var.Count<>0 Then
    Dim i
    For each i in var
    quote = """"
    If var(i).Count = 1 Then
    Response.write i & " = " & quote & var(i) &
    quote &
    vbNewLine
    Else
    Response.write i & " = " & vbNewLine
    For j = 1 to var(i).Count
    Response.write vbTab & "(" & j & ") = " &
    quote
    & var(i)(j) & quote & vbNewLine
    Next
    End If
    Response.write vbNewLine
    Next
    End If
    End Sub
    Response.Write "POST:" & vbNewLine
    dump_object_irequestdictionary Request.Form
    Response.Write "GET:" & vbNewLine
    dump_object_irequestdictionary Request.QueryString
    %>
    Which looks like the code to get the response, or is the
    intended output?
    Dooza

  • How to print 2 copy of same page in smartform

    Hi,
    I have a form having one page which contains Main and few other windows. I have a template in Main window. My requirement is to print two copy of this page whenever print pgm gets executed. I tried by copying FIRST page as DUPLICPAGE and put this as NExt page to FIRST page but it is not working. Can anybody please suggest how to achieve this.
    Rgds
    Sid

    Hi,
       One way without Coading...
    1. Go to txn. NACE... select your application (for Ex. "EF")... then click on "Condition Records" button
    2. Select your Output Types...(ex. NEU)....
    3. Go to Change condtion Record Screen. Select ur condtion then click on "communication" button..
    4. Under Print Output Check the field "Number of Message" here maintain 2...
    Regards
    GK

  • When I click a button to open an online enrolment form, Firefox just reloads the same page.

    I've tried clicking on this link to a allow you to enrol to vote in Australia on my mac, but everytime I do it it just reloads the page. I've been able to open it in chrome and on firefox on a pc and from that I can gather it seems to be one of those separate web apps but I don't have java installed on either of my computers so it's not a java applet. This has happened before with other links to similar styles of interactive web apps but the same thing happens, it just reloads the page with the link on it. I always just ended up doing them on a different computer or browser. I tried disabling all add-ons and allowed all pop ups but that didn't solve it. I couldn't find anyone with similar problems when I searched.

    You can try these steps in case of issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox > Preferences > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Printing different photos on same page in PSE 8

    Is there a way to print 2 or more different photos on the same page?  If you know
    of a way please respond.  This is in Photoshop elements 8.
    Thank you,
    Ed Dunlap

    The help file in organizer will lead you to making a collage, using  pre-packaged templates. I like the versatility of making a collage manually.
    Open a new blank file in Editor (File>new>blank file). Enter height & width in inches. Color mode:RGB, Background color: your choice. White is default. Resolution: 240-300px/in for printing. It is desirable to have the resolution of the two pictures which you will be placing on the background to have about the same value
    Drag each picture up from the project bin to the background. Note that each picture will be on its own layer in the layers palette
    Access the move tool, and you can position each picture (on its respective layer), and resize it with the corner handles as necessary.
    HTH

  • Setting Printer Acrobat XI Default to print all PDF files last page first

    Hello,
    I have just recently upgraded to Mavericks and also have the Creative Cloud using Acrobat XI Pro. In using Reader 9, whenever I printed a PDF the output would print in reverse order, so all I would have to do is take it from the printer and hand it off; it would be in the correct order. How do I setup Acrobat XI Pro to accomplish the same settings (print in reverse order) on not only 1 PDF, but all PDF files? Any assistance would be greatly appreciated.
    Thanks,
    John

    Can a print preset be created that would work for all PDF files and not just the one opened? Just trying to find out since no one has answered my question in 2 days and Tech Support wasn't much help.
    Thanks,
    John

  • Form With Report om the same page

    Currently i usr a form to insert e a report to disply the results.
    However i'like tom link ther row of the report to fil the form with that data!
    I post a image to maque a picture
    http://diolicopia.pt/screenshot.jpg
    what i want to do it's whena click de report column... it fill the form with the records on the tablhe.
    thanks

    Hi
    You can use column link functionality to link a report table.column to corresponding form item. Best is to link through Primary Key column. Say the report has column Titulo so go to Edit Page>Report Attributes> clik on edit link against the Alias Titulo>Column Attributes>scrol down to section Column Link>
    1. enter some link text (choose one image)
    2. target=page in this application; page=enter page number on which you have form
    3. in the Name Value pair region in Item 1 row, under Name search for item name for Titulo e.g. P1_TITULO, under Value search for the column name value for Titulo e.g. #TITULO#.
    4. Click apply changes
    Now if you click on some value in the column Titulo in report the edit form will display data populated with records corresponding to that.
    Thanks,

  • How to print all images in each page

    hi
    this is indela. developing print option in flex. in a folder i have 100 images. when click on print its going only one images. but i want to send all images to printer without displaying. the no. of images change dynamically.
    please tell me how to do this one.
    Thanks in advance....

    Hi,
    Your best bet is to use a workbook template or else Excel to pdf option...Thanks

  • Canon HV30, FCP and ishowu... get get them all on the same page

    Looking for some help with FCP, ishowu and a Canon HV30...
    I’ve been trying for weeks now to get video captures using ishowu to work with video from the Canon HV30...
    The video I’ve brought in from the camera is:
    1440x1080
    29.97
    HD 1080i60 compression
    The video from the camera looks great and plays back with no issues... Neither the video nor the audio needs to be rendered...
    What I need help with is finding the proper settings for ishowu...
    The only issue I can think of is that I’m working on a 15 inch MacBook Pro, meaning a 1440 x 900 display...
    Any help would be appreciated...
    Thanks
    Jeff

    Then it depends on how you captured the footage with ishowu. If you used the DVNTSC preset, then create a DV sequence in FCP and import the clip. If you want to bring it into the same timeline as your other footage then you'll have to capture it using the same settings in ishowu... if that's possible.
    rh

  • Previous & next page on same page trick doesn't seem to work in CS4

    I am working on a book of around 500 pages and would like to have a previous and next page number on my right page.
    So I did some research on this and found the threading text box trick which seems to work fine if I do it on a page in my document.
    But if I try to do it on my masterpage it doesn't work properly.I am not really in the mood to do this manually.
    I am working on CS4 and from what I understand this seems to be a CS4 specific problem or bug because it works fine in CS3.
    The only solution I found is to put the threaded page number boxes into a seperate layer on your master page and when your doc is finished you can override all your master page items (while you keep other layers locked of course).
    Things get a bit tricky when you start inserting new pages though and it's not the ideal solution imo. So I was wondering if there isn't a better trick to pull this off. You can do so much with Indesign, that a simple thing like this isn't as straightforward as I thought it would be, really surprises me.

    This is, unfortunately, a bug.  I reported it and got a response from an Adobe engineer who is investigating it. He was unable to reproduce the problem from my description, so I sent a sample file, and I presume at this point they are figuring out what to do to fix it, hopefully in the next dot release and not in CS5.
    That doesn't help you now, unfortunately, and it sounds to me like the layer idea is a really good one, better in fact than anything else I've seen or come up with myself.
    I'm curious why you want to do this. I've never personally had a reason to do it, but you are at least the third person here in the last couple of months, and that's a trend. What is the purpose for having a next/previous page on every spread, or even putting both page numbers on one page?
    Peter

Maybe you are looking for

  • Adobe Photoshop CS3 updater quits

    I recently bought the new iMac and I installed my Adobe CS3 onto it. Everything seems to be working fine but the Photoshop updater would quit upon opening. So I can't get the needed updates to view my RAW files. Also, when I tried to go and download

  • 2x16 GB RAM instead of 4x8 RAM?

    I am planning to buy the new MacPro. I mainly do after effects and cinema 4d. I am confsued wheather to buy a 6 core or an 8 core CPU. Is it worth spending additional $1500 for 8 core? On the other note, in regrards to the future upgrades currently i

  • X6 How to Search Music Titles?

    I seem to recall I could search on my 5800 for titles or anything in a song using a Search option in the music library. I do not see this function in the X6 (20.2.005). When I scroll the titles, large letters of the alphabet are displayed, but with 6

  • Can not attach older iSCSI lun to repository

    I am a current Virtual Iron user and have set up OVM to replace my aging system. I have everything set up on some new hardware and up to a point where I want to set up some VMs. I have an older VM under Virtual Iron I am no longer using, so I thought

  • Scale bug during export in CS3!!!

    I have a slideshow which all of the pics are scaled with the option "scale and crop edges". When I preview it in encore it looks perfect. The problem occurs when I export/builds the dvd, flash or whatever. When I playback the slideshow it looks like