Printing a wide jsp page

Hi Friends,
I have a jsp page displaying some information.It is wide and I have to scroll side ways to see the complete page.Its 2 to 3 times the actual width of the screen.But when I take a print out only the part which is visible is printed and the remaining part which is to the side is truncated.Is there a way so that I can take a print out of the entire width of the page.
Thanks in Advance for your help.
(Anthony)

Hi,
Thanks for your time.
I am using tables but the no. of columns in the table are more and it grows dynamically thus becoming a wide report.My requirement is to print the complete report however wide it is.
please let me know if you have a solution
thanks,
Anthony

Similar Messages

  • Print Button on JSP page prints title,time etc

    Hi I have aprint Button on my jsp page which prints whatever I want selectively using the <style tags>
    <style type="text/css" media=print>
    .noprint { display: none}
    .noscreen { color: black }
    </style>
    <style type="text/css" media=screen>
    .noscreen { display: none}
    .noprint { color: blue }
    </style>
    <SCRIPT Language="Javascript">
    function printit(){
    window.print();
    </SCRIPT>
    My print Button calls the JavaScript and prints everything that does not have a class=noprint in it... When I print however it also prints on the page
    -The Title on the Left Top corner
    - Page 1 of 1 on RIGHT TOP
    - 2/13/03 on Left bottom
    - 4:06 thats the time on the RIGHT BOTTOM
    Is there anyway I can prevent it from printing this?

    These probably come from the browser. Check if your browser is configured to print these on every page that is printed. If so, you can turn these of from the browser's Page Setup dialog.

  • How to print report from JSP Page

    Hi Everybody,
    I am developing a simple project in JSP with MS Access. I hav some tables and reports for them. I hav a JSP page which gets inputs from user and save it in the table. Its working fine. But my problems are,
    1) I hav a button called "SAVE & PRINT" in that bottom of the page, if i click that button, the currently entered data has to save in the table and the same data has to print from the MS Access report. I dont know how to print this report from JSP page.
    2) Another button called "REPRINT". If i click that button, it has to ask a number to print the report page, that number is nothing but a field in that report.
    Could anyone help me to solve this problem.

    Hi Everybody,
    I am developing a simple project in JSP with MS Access. I hav some tables and reports for them. I hav a JSP page which gets inputs from user and save it in the table. Its working fine. But my problems are,
    1) I hav a button called "SAVE & PRINT" in that bottom of the page, if i click that button, the currently entered data has to save in the table and the same data has to print from the MS Access report. I dont know how to print this report from JSP page.
    2) Another button called "REPRINT". If i click that button, it has to ask a number to print the report page, that number is nothing but a field in that report.
    Could anyone help me to solve this problem.

  • How to print report in jsp page?

    excuse me,i am new to jsp
    may i know how to pritn report in jsp page or html?
    tq

    here is a hacked up example.. i ripped out a lot, so it may not compile, but you get the idea... the full version is really long and not much new info.. just all awt/display stuff...
    package rowe;
    import javax.swing.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import java.sql.*;
    import utility.*;
    import java.awt.print.*;
    public class rowePrint extends JFrame implements ActionListener, Printable{
         String printType = "";
         static JButton j = new JButton("Print");
         FontMetrics fm;
         String jID, promotion, product, jComments;
         public void getInfo(int jid) {
              ResultSet rs;
              try {
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   Connection conn = DriverManager.getConnection("jdbc:odbc:rowe");
                   Statement stmt = conn.createStatement();
                   rs = stmt.executeQuery("select j.id as jID, j.comments, p.title as pTitle, p.product, p.packagingCartonCost, p.foldingQuarterCostPerM, p.foldingQuarterCostPerM, j.customizationOption as setupFee, p.perMcost, p.qtyCarton, d.name as dName, d.contact as dContact, d.email as dEmail, d.address as dAddress, d.city as dCity, d.state as dState, d.zip as dZip, d.phone as dPhone, d.fax as dFax, r.name as rName, j.totalQty, j.orderIn, j.estFreight, j.miscCost, j.coverSelection, j.imprintSelection from jobs j, promotions p, dealers d, reps r where j.promotion = p.id and j.dealer = d.id and j.rep = r.id and j.id = " + jid);
                   rs.next();
                   jID = rs.getString("jID");
                   jComments = rs.getString("comments");
                   promotion = rs.getString("pTitle");
                   product = rs.getString("product");
              } catch (Exception e) {
                   System.out.println("getinfo: " + e);
       public void actionPerformed(ActionEvent e) {
            if (e.getSource() instanceof JButton) {  
                   wookie();
         public void wookie() {
              PrinterJob printJob = PrinterJob.getPrinterJob();
              Paper paper = new Paper();
              PageFormat page = new PageFormat();
              paper.setImageableArea(0, 0, 600, 780);            
              page.setPaper(paper);
              printJob.setPrintable(this, page);
              try{
                   //printJob.pageDialog(page);
              //     if (printJob.printDialog()) {
                        printJob.print();
              } catch (Exception e) {
                   System.out.println("wookie1" + e);
         public static void main(String[] args) {
              rowePrint at = new rowePrint("Invoice");
              at.getInfo((new Integer(args[0])).intValue());
              at.drawShapes();
         //     at.wookie();
         public void drawShapes() {
              setBounds(0, 0, 670, 550);
              addWindowListener(new WindowAdapter() {public void windowClosing(WindowEvent e) {System.exit(0);}});
              j.setBounds(10, 10, 10, 10);
              j.addActionListener(this);
              getContentPane().setLayout(null);
              getContentPane().add(l);
              getContentPane().add(j);
              show();
         public rowePrint(String s){
              printType = s;
         public void paint(Graphics g) {
              g.setFont(new Font("Serif", Font.BOLD, 18));
              g.drawString(promotion, 20, 30);
              g.setFont(new Font("SansSerif", Font.PLAIN, 4));
              g.drawString("" + new java.util.Date(), 20, 37);
              g.setFont(new Font("Serif", Font.BOLD, 21));
              g.drawString("Rowe Furniture", 440, 35);
              g.fillRect(440, 40, 145, 25);
              g.setColor(Color.white);
              fm = g.getFontMetrics(new Font("Serif", Font.BOLD, 21));
              g.drawString(printType, 512 - (fm.stringWidth(printType) / 2), 60);
        public int print(Graphics g, PageFormat pf, int pi) throws PrinterException {
            if (pi >= 1) {
                return Printable.NO_SUCH_PAGE;
              paint(g);
            return Printable.PAGE_EXISTS;
    }

  • Print statement in JSP page after redirection

    Hi,
    I have written a JSP page and in that i am redirecting it to another page. Now after redirection i am printing a statement on the console. It is getting printed whereas when i am printing the same on the browser i am not able to print that. Please can any one tell me the difference between printing the same on the console and browser.
    My first JSP page(one.jsp)
    <%
         response.sendRedirect("two.jsp");
         out.println("After redirect");
         System.out.println("After out");
    %>
    My second JSP(two.jsp)
    <%
         out.println("In two.jsp");
    %>
    Thanks in advance
    regards
    Prashanth

    The sendRedirect sets a code in the HTTP response being sent to the client (I believe it is a 302 code but I am not sure off hand) and then proceeds to process the rest of the JSP on the server which is why the print statement shows up in the console.
    The out.println writes to the HTTP response output stream. The client gets the response and sees the HTTP Header code telling it to make a new request so it stops processing the response message and sends a new request message which is why the out.println message is not seen in the browser.

  • Print version for JSP pages

    Hi,
    I have the following requirement. I have a site consisting of JSP pages. I need to provide a print version for every page.
    The problem is, while printing, if a webpage spans for multiple printing pages, I need to put a footer on each of these pages. But, this footer must appear only once (at the bottom of the page).
    How do I achieve this? any help will be greatly appreciated.

    there is one work around for doing this... in order to print the header and footer...generate a dummy page with the exact format...
    Header
    20-25 Lines Text
    Footer
    Header
    20-25 Lines Text
    Footer
    and so on...
    so when this is flushed to the printer....u would get every page formatted with Header and Footer as this is going to happen in the background...there willl be no pblm to users...
    hope this helps u...

  • Printing the populated JSP page

    I'm generating the student reports of all the students in a class. I've the data in form of beans in my servlet. i can forward to a JSP and display the reports of the students one by one. as soon as the report is generated, i want the JSP page to be printed. what java api can i use for it? or any other alternative for this?

    JavaScript has a way of printing the page. But that would be certainly on the client side and the client machine needs to have a printer. :P
    Sample:
    <input type="button" value="Print This Page" onClick="window.print()">

  • Printing table in JSP page

    Hi friends,
    i am developing an web application where customers and vendors can able to view a detailed report of what are all the product they purchase/sold. Here i need to print that report and not the whole page.. I think i am clear my point. Please help me do accomplish this.. I don't want my whole site design to be printed, instead print that particular table that contains the report... Any help will be appreciated... Please help me get rid of this....

    1) Design a CSS rule with an @media print rule that hides everything except the table to be printed
    2) Make your table its own JSP. Have it included in your normal screen display. Then provide a "Printable Version" that is a new JSP that skips most of your UI and just includes the table (and whatever HTML markup around it is necessary). Have a link on the regular page that says 'View Printable Version'.

  • Recursive Print in JSP page

    I have a tree like structure in my java code and I want to print the output in my JSP page. Any idea how to perform recursive print in a JSP page.

    Couldnt U just use a while loop something like the following...
    <table>
    <%
    while(tree.next()){
    %>
    <tr>
    <td><%=tree.getString("output") %></td>
    <td><%=tree.getString("output2") %></td>
    </tr>
    <%
    } %>
    </table>
    or your version of that...
    Assuming U have Ur tree.next returning a false when it gets to the end.
    Hope I helped.
    - meMyselfAndI

  • Print previous jsp page generated content

    Hi to all
    Today i am trying to print a previous jsp page content in a next jsp page.
    For this reason i am passing the pagecontext object from the first jsp page to second jsp.
    My first jsp page coding is
    ===================
    <%
    out.print("hello");
    session.setAttribute("pagedata",pageContext);
    %>
    Click
    The coding in page.jsp is
    ===================
    <%@ page import="java.io.*"%>
    <%
    PageContext p=(PageContext) session.getAttribute("pagedata");
    JspWriter pageWriter = null;
    HttpServletRequest respon = (HttpServletRequest)p.getRequest();
    out.print(respon.getContentLength());
    InputStream print=respon.getInputStream();
    if(print.read()!=-1)
    out.print(print.read());
    %>
    but page.jsp doesn't print anything
    can i do this way
    Please Help me.

    Your code doesn't seem to be doing anything related to what you want to do. You are reading from the inputStream of the previous request and writing it to the current response. How is that supposed to work?? When you write to a response stream, the response is sent to the client and not stored in the request object or anywhere else. If you want to send the response of another page in a different page, you'll have to send all the response of the first page to a StringBuffer, send it as the response in the first request and store it in session scope. This is a way that I can think of for doing this...

  • View jasper report in jsp page

    i have developed a java code that could connect to the databse n compile xml code into jasper report. report is generated when it is executed in dos prompt. however i wan the report to appear after a button "print" in a jsp page is pressed. how do i do dat? how do i ask my jsp page to execute my curret java code to generate a report?

    same

  • How to print new line in jsp page

    hi
    how to print new line in jsp page
    thanks

    \n - new line character is in java specific not HTML
    specific.Well, if the correct line separator sequence (by far not always \n) would be used, it does add a new line to the HTML output. Too bad that you don't want to see HTML but formatted text. The BR tag is a formatting element for the displayed text, not a line break in HTML. ;)

  • Problem with printing debug statements in JSP page

    Hi all,
    I am debugging an application with System.out.println() statements - my debug statements in the *.java class printed just fine, but when I do the same thing in my JSP page, nothing gets printed out.
    I am already wrapping my System.out.println() statements inside the <% %> tag.
    Does anyone know what may be causing this? Any help will be greatly appreciated!
    - JL

    Where do you expect to see the output?
    System.out.println will write to the console/logs
    They WON'T write to the JSP page.
    If you check your error/output logs you will probably find the statements there.
    If you want to print things into the JSP page, just use out.println.
    "out" is an implicit reference to the current JSPWriter.
    Cheers,
    evnafets

  • How to print a JSP page ?

    HI,
    I need to implement a printing functionality on a JSP page.
    So I have a JSP page and there wud be a button on top of it.There is one table containing around 20 columns. So I jusst want to print that table out and nothng else from page.
    So when user clicks on Print button , whcih will open a new window and show the contents to be printed.Once user click Print bbutton on this second newly opened window it shud print.
    Can any one provide pointer to any link or help to implement this?
    Thanks in advance..
    javaardentfan

    You can do it using javascript, see the following JSP code and follow it.
    put the code in DIV tags that you do not wat to see in the final print
    previewRpt() javascript method does all the work..
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <%-- jsf:pagecode language="java" location="/JavaSource/pagecode/jsp/reports/OrderEditDetailsPopup.java" --%><%-- /jsf:pagecode --%>
    <%@taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    <%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@taglib uri="http://www.ibm.com/jsf/html_extended" prefix="hx"%>
    <HTML>
    <HEAD>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
         pageEncoding="ISO-8859-1"%>
    <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <META name="GENERATOR" content="IBM Software Development Platform">
    <META http-equiv="Content-Style-Type" content="text/css">
    <LINK href="../../theme/Master.css" rel="stylesheet" type="text/css">
    <LINK rel="stylesheet" href="../../theme/EOPS.css" type="text/css">
    <LINK REL="stylesheet" TYPE="text/css" HREF="../../theme/menus.css" />
    <TITLE>Option Order Edit Details</TITLE>
    <LINK rel="stylesheet" type="text/css" href="../../theme/stylesheet.css"
         title="Style">
    <script language="javascript">
    function previewRpt() {
         document.getElementById("buttonsArea").style.display="none";
         document.getElementById("buttonArea").style.display="none";
         if (document.all) {
              var OLECMDID = 7;
              /* OLECMDID values:
              * 6 - print * 7 - print preview * 1 - open window * 4 - Save As
              var PROMPT = 1; // 2 DONTPROMPTUSER
              var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
              document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
              WebBrowser1.ExecWB(OLECMDID, PROMPT);
              WebBrowser1.outerHTML = "";     
              window.PrintArea.innerHTML = "<div class='formlabel'>Please Click the X on the window to close!</div>"
              window.close();
         } else {
              window.print();
    </script>
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    </HEAD>
    <f:view>
         <BODY onload="javascript:scrollTop=0"><hx:scriptCollector id="scriptCollector1">
              <div style="visibility:hidden">
                   <hx:commandExButton type="button" value="Close"
                   styleClass="custbutton1" id="button2">
              </hx:commandExButton>
              </div>
              <div id="buttonsArea">
                   <table cellpadding="0" cellspacing="0" border="0" width="100%">
                   <tr>
                   <td></td>
                   <td align="right">
                        <input type="image" src="../../images/printRest.gif" title="Print This report"
                                  onclick="previewRpt()"/>
                   </td>
                   </tr>
                   </table>
              </div>
              <TABLE width="100%">
                   <TR><TD align="center"> <h3>Order Edit Detail Report</h3></TD></TR>
                   <TR><TD align="center"> Order Id # <c:out value="${ORDER_HEADER_ID}"></c:out> Details</TD></TR>
              </TABLE>
         <BR>
              <TABLE class="grooved" border="1" cellpadding="0" cellspacing="0">
                   <TR><TD class="formlabel">Account</TD><TD><c:out value="${PART1.ACCOUNT}"> </c:out></TD></TR>
                   <TR><TD class="formlabel">Order Status</TD><TD><c:out value="${PART1.ORDER_STATUS}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Order Number</TD><TD><c:out value="${PART1.ORDER_NO}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Sales Rep #</TD><TD><c:out value="${PART1.SALES_REP_NO}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Order Date</TD><TD><c:out value="${PART1.ORDER_DATE}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">PO</TD><TD><c:out value="${PART1.PO}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">School or Institution Name</TD><TD><c:out value="${PART1.SCHOOL_NAME}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">District or Parent Institution Name</TD><TD><c:out value="${PART1.DISTRICT_NAME}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Account Name</TD><TD><c:out value="${PART1.ACCOUNT_NAME}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Attention</TD><TD><c:out value="${PART1.ATTENTION}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Miscellaneous</TD><TD><c:out value="${PART1.MISC}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Street Address</TD><TD><c:out value="${PART1.STREET}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">City</TD><TD><c:out value="${PART1.CITY}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">State</TD><TD><c:out value="${PART1.STATE}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Zip</TD><TD><c:out value="${PART1.ZIP}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Contact Phone</TD><TD><c:out value="${PART1.CONTACT_PH}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Contact Fax</TD><TD><c:out value="${PART1.CONTACT_FAX}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Pack By</TD><TD><c:out value="${PART1.PACK_BY}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Ship On Date</TD><TD><c:out value="${PART1.SHIP_ON_DATE}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Order Ship Via</TD><TD><c:out value="${PART1.ORDER_SHIP_VIA}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Customer Default Ship Via</TD><TD><c:out value="${PART1.CUSTOMER_DEFAULT_SHIP_VIA}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Warehouse</TD><TD><c:out value="${PART1.WAREHOUSE}"></c:out> </TD></TR>
              </TABLE>
              <BR>
              <c:if test="${PART2_FOUND eq 'YES'}">
              <h:form styleClass="form" id="form1"><h:dataTable border="1" cellpadding="2" cellspacing="0" columnClasses="columnClass1" headerClass="headerClass" footerClass="footerClass" rowClasses="rowClass1" styleClass="dataTable" id="table1" value="#{PART2}" var="rpt" rows="40">
                   <h:column id="column1">
                        <f:facet name="header">
                             <h:outputText id="text1" styleClass="outputText" value="Product Title"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text11" value="#{rpt.PRODUCT_TITLE}"></h:outputText>
                   </h:column>
                   <h:column id="column2">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Product Code" id="text2"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text12" value="#{rpt.PRODUCT_CODE}"></h:outputText>
                   </h:column>
                   <h:column id="column3">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Order QTY" id="text3"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text13" value="#{rpt.ORDER_QTY}"></h:outputText>
                   </h:column>
                   <h:column id="column4">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Customer Service QTY" id="text4"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text14" value="#{rpt.CUSTOMER_SERVICE_QTY}"></h:outputText>
                   </h:column>
                   <h:column id="column5">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Sales Admin QTY" id="text5"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text15" value="#{rpt.SALES_ADMIN_QTY}"></h:outputText>
                   </h:column>
                   <h:column id="column7">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Product Price" id="text7"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text17" value="#{rpt.PRODUCT_PRICE}"></h:outputText>
                   </h:column>
                   <h:column id="column8">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Extended Cost" id="text8"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text18" value="#{rpt.EXTENDED_COST}"></h:outputText>
                   </h:column>
                   <h:column id="column9">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Gratis" id="text9"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text19" value="#{rpt.GRATIS}"></h:outputText>
                   </h:column>
                   <h:column id="column10">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Series" id="text10"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text20" value="#{rpt.SERIES}"></h:outputText>
                   </h:column>
                        <f:facet name="footer">
                             <hx:panelBox styleClass="panelBox" id="box1">
                                       <hx:pagerDeluxe styleClass="pagerDeluxe" id="deluxe1" />
                                  </hx:panelBox>
                        </f:facet>
                   </h:dataTable></h:form>
              </c:if>
              <br>
              <div id="buttonArea">     
              <center><hx:commandExButton type="button" value="Close"
                   onclick="window.close();" styleClass="custbutton1" id="button1">
              </hx:commandExButton></center>
              </div>
              <BR>
         </hx:scriptCollector></BODY>
    </f:view>
    <HEAD>
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    </HEAD>
    </HTML>

  • Printer friendly version of a jsp page

    Hi
    i have a results.jsp page that displays certain data in a table format.I also have a print button on this page, which on clicking should bring up a new page with all teh data in the results page and should be printer friendly.How do I accomplish this.
    Thanks.

    http://www.javascriptkit.com/dhtmltutors/cssmedia.shtml
    http://www.w3schools.com/css/css_ref_print.asp
    http://www.w3schools.com/css/css_mediatypes.asp
    http://webdesign.about.com/od/printerfriendly/
    andi

Maybe you are looking for

  • How can I install Firefox SILENTLY in a specific installation folder, -ms with which parameters ?

    How can I install Firefox SILENTLY in a specific installation folder, -ms with which parameters ? "Firefox.exe_path" -ms OPTIONS ?? Thanks.

  • JVM problem with EJB...

    Hi, I have an application which access EJBs located in WebSPhere Application Server 3.5 on a server. Why when i execute my application with SUN's JRE i have a problem (FAILED to Lookup Bean) and when i execute my application with Websphere'JRE, there

  • Why do blank copies of Numbers files retain the size of the original file?

    I made a copy of my budget file but cleared all the data so I could e-mail it to a friend.  Although the spreadsheets are empty, the file is still too large to e-mail.  What is wrong?

  • Underlining characters in a string

    Is there an easy way of making an underline mark appear beneath a character in a string? I'm thinking along the lines of some escape character that causes the next character to be underlined. e.g. new String("\uContents"); would cause the 'C' to be u

  • RERAPP and reference field

    Hi, does anyone know how SAP determines the Reference field (XBLNR) when generating vendor open items via Periodic posting run RERAPP? Is there any possibility to define a certain reference by the user? Thanks, Sonja