User entered Text in out put of report

Hi Gurus....
I am using WAD my user wants to input some comment while executing the report or after executing report .....
user will take print out with that comment and send to seniors........
Please help me i am strugling for past 2 weeks its urjent.......
Thanks.....
Chinna

Hi,
If its dynamic message just like current date..you have to include one text variable and you can use the same variable in the your template (WAD ). if its standard message (just like always fixed..name..etc). you can include a text box in your template and you hard code that text box.
Please go through for more detials: http://help.sap.com/saphelp_nw70/helpdata/en/2a/2da2394fbf4e6ae10000000a11402f/frameset.htm
hope its clear..
Thanks,
Ashok

Similar Messages

  • User Text in Out put of report

    Hi..
    I need to show some remark text in output of the report.
    User will enter at the runtime of the querry...that shoul be display in bottom of the querry ...
    Can any one please through lite..........
    Thanks,
    Chinna

    Hi Chinna,
    1. Open your web template in the Web Application Designer
    2. Go to the HTML layout (second tab)
    3. Find the location where you want to add your text field, for example after your analysis item
    4. Paste the following example code:
    <form method="post" action="">
    <textarea name="comments" cols="40" rows="5">
    Enter your comments here...
    </textarea><br>
    <input type="submit" value="Submit" />
    </form>
    Kind regards,
    Alex

  • User entered text at the bottom of my report

    Hi SDN
    I Need user entered text at the intial variable screen should come in my out put of the report as comment at the bottom
    Thanks,
    Chinna.

    which front end tool you want to use to create the report
    we have query designer, report designer, WAD, crystal reports and many?
    I am not sure that with query designer you will be able to acahieve it. But sure that not a straight forward soltuion.
    With report designer, and crystal reports, you can easily achieve it, it seems.

  • User entered text in a Report..

    For the Report that I am generating, most of the data will come from user entered text like descriptions and policies.
    I am thinking that the best way to do this, is use a Java GUI, and have this GUI prompt the user for all user entered data to be included in the report, and then have the GUI make an http call to rwcgi60.
    Is this the best approach?

    hello,
    well, this is one way todo it. you could also create a forms or portal-forms application to enter the data, save it into a database table and then invoke the report.
    that mainly depends on the requirements for your application.
    regards,
    the oracle reports team

  • Validate user-entered text in JTable

    How do I validate user entered text in JTable cell, so only the values 1234567890. are acceptet? The cell should contain only doubles....

    import java.awt.*;
    import javax.swing.*;
    import javax.swing.table.*;
    public class aslan extends JFrame {
      public aslan() {
        TableModel model = new CustomTableModel();
        JTable table = new JTable(model);
        getContentPane().add(new JScrollPane(table), "Center");
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setSize(300,200);
        setLocation(300,300);
        setVisible(true);
      private class CustomTableModel extends AbstractTableModel {
        String[] headings = new String[] {
          "Cost", "Item", "Type"
        Object[][] data = new Object[][] {
          { new Double(12.75), "glue",   "tube" },
          { new Double(15.20), "hammer", "claw" },
          { new Double(8.32),  "saw",    "hack" }
        public int getRowCount() {
          return data.length;
        public int getColumnCount() {
          return data[0].length;
        public Object getValueAt(int row, int column) {
          return data[row][column];
        public void setValueAt(Object value, int row, int column) {
          data[row][column] = value;
          fireTableDataChanged();
        public String getColumnName(int column) {
          return headings[column];
        public Class getColumnClass(int column) {
          return data[0][column].getClass();
        public boolean isCellEditable(int row, int column) {
          return true;
      public static void main(String[] args) {
        new aslan();
    }

  • Validating User Entered text inside jtable

    I have a editable jtable.My problem is validation of user entered text.
    I know how to validate integer text but I want to validate string.such as no special chars are there,and field shud be not null.and as long as text is not valid focus is restricted to that column only.
    Any body having any idea abt this.plz do help me.

    Well you really have 2 requirements:
    such as no special chars This can be edited as the character is typed. You create a custom editor the uses a text field with a DocumentFilter. Then you can edit the text as it is typed. Read the Swing tutorial on "Text Component Feature" for an example of using a DocumentFilter:
    http://java.sun.com/docs/books/tutorial/uiswing/components/generaltext.html
    field shud be not nullThis needs to be edited when you leave the cell. So you will need a custom editor. This posting has an example that should help you:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=575309

  • Interactive Report - comparing user entered text field against a table field - the comparison is not finding a hit when it should.

    Example
    User enters 12345 in a pre filter ----- item_number field and this value exist in the table but its defined as VARCHAR2(2000).
    No match is found.  Do I need to define this text field in a certain way so that a match occurs - say in the element or source for P1_ITEM_NUMBER.
    How does a user entered value of 12345 match a value in the table of 12345 - defined as a varchar2(2000).
    Thanks  

    Why are you storing numbers in a varchar2?
    This is bad designing.  (storing date information in a varchar2 field is even worst.)
    99% of the time, when the number 12345 does not match the string '12345', it is because the value in the table is actually '                         12345'
    Run the following SQL command in the SQL workshop.  (you'll need to adjust to match schema,table,column names)
    select item_number, length( item_number) as string_length
    from schema_name.table_name
    If '12345' does not have a string_length of 5, then you have bad data in your database.

  • Can you create a user entered text field that flows content in a subform?

    I am working on a conversion project taking a document library of over 600 forms from Word into PDF, for the most part it's simple and binding fields to the database schema and using subforms is working quite well - however, there are some instances where there is a combination of user entered fields mixed with database fields and in some cases the end user fields are all there are but the amount of content can vary from 250 characters to thousands.  The project manager wants a PDF that enables users to enter whatever amount of text they need to and have the form layout function the way it does as if all fields were populated by the database - I don't know of a way to make that work unless content is entered in the schema first (or implement CM and have all users working in LiveCycle, but the database uses PDF, sothat's not an option right now).
    If anyone has any ideas how to make these things work I would greatly appreciate hearing about it.
    Thank you so much,
    R

    Hi,
        If you can post your form in the post, I can have a look at it and provide my feedback.
        I created a sample file for your reference..
        1) The Content property for the Page1 was set to Flowed.
        2) Each text box is placed inside a Subform which is also has the content property set to Flowed.
        3) In the Form Properties, under the Default tab, set the PDF render format as Dynamic XML form.
        4) In the Form Properties, under the Preview tab, set the Preview Type as "Interactive Form" and Preview Adobe XML Form as "Dynamic XML form". (this step is for the previewing the PDF in the designer).
        5) Finally save the form as Dynamic XML form. (File Menu -> Save As).
    Hope this helps.
    If you still have issues, please post your form..
    Thanks
    Srini
    Please find the sample file at the below location
    https://acrobat.com/#d=qQohvZGsJrky-sTdPTJbzA

  • Problem with dispalying out put of report RLLI0400

    i have added one field in the report by copieng the report to zprogram...
    i want see the out of the report ,but i am not getting any out put just giving the message saying that tha document is printed...
    i need to change code in this report?
    i need to change any thing in form DRUCKER_EINSCHALTEN,
    if yes please tell me what changes are needed.....

    Hi Kranthi,
    in sub routine DRUCKER_EINSCHALTEN omit the code NO-DIALOG with NEW_PAGE command. i think it is genreating output into a spool request and suppress the dialog. if you omit this NO-DIALOG it will generate output.
    Regards
    Krishnendu

  • Error message "Enter a Printer" when the user clicks on PO out put preview

    Dear SRM Gurus,
    We are using SRM 5.5 extended classic scenario. When the user presses on Output Preview of PO we are getting a message that "Enter a Printer" and not able to see the preview. This messge we are getting for some particular PO's and for other we are able to see the preview.
    Please do the needful..
    Thanks and Regards,
    Chandra Sekhar.

    Hi
    <u>Please maintain default  Printer for Organizational user in PPOMA_BBP (Attribute  - PRI)...</u>
    <u><b>In PPOMA_BBP, your purch org must be defined under (or at the same level as) a company. This company org id (defined in function tab) will be used to read address and use it as "contact" addresse. Check this point, correct if necessary and tell me if this is ok.</b></u>
    <u>Also go through the useful related links -></u>
    Re: PO output
    Re: Add a Printer ?  -> LP01
    Re: Adding Send Medium to Vendor Record
    Re: Offline approval of SC
    <u>Do let me know.</u>
    Regards
    - Atul

  • Placing fonts in a JEditorPane after user enters text in a text field

    Hello all,
    I am writing a chat application that enables me to place fonts in a JEditorPane.
    The user will write the text in a text field and when the user press the enter key and whatever is written on the text field will be shown on the JEditorPane along with the choosen font.
    The only thing I can acomplish now is getting the font's to change inside the text field.
    But I want the text to be send to the JEditorPane look like the choosen font that is set by the user after the user presses the enter key.
    Does anybody here know how to do that? And can you give me some samples so I may be able to work on it?

    When you insert the new text in the JEditorPane, you can do it using the insertString method of the editor pane's Document instance. This method allows you to pass an AttributeSet which can be used to pass the correct font. This is all well explained in the following tutorial :
    http://java.sun.com/docs/books/tutorial/uiswing/components/text.html

  • Comounded Info object Out put in Report?

    Hi,
    I have cost center which is compounded to controlling area and in report we are getting like abcd/123456 where abcd is cost center and 123456 is contrlolling are.I want to see in report only abcd.Is is possible to make that ?if so please let me know the steps to be fallowed?
    Thanks,
    Vasu

    Hi,
    The Best way to model is: Put an attribute with same length/type in Controlling area/Cost center master data. Map the same with the controlling area/Cost center.
    This will keep the same values as key in master data object so when you will display that attribute it will display the correct value with no compounding. It will help in fufture enhancements as well.
    In compunding master data object it is the best way to avoid this.
    I hope it will help.
    Thanks,
    S

  • CSV , text file out put from flash exe

    Hi,
    I want to save data from flash exe to CSV file and text file
    . OS is XP and there will be no server connections. Is this
    possible. Please help.
    Thanks,
    Manu

    If th ecomputer you're working with has some server software
    running (Apache or IIS) you could save your data with php or asp.
    If you don't then you could use the Shared Objects (which works as
    a cookie, so you'll be e bit limited here). There was a function
    called MMSAVE back in FlashMX, don't know it that still works, that
    writes to a text file (but only in the development enviroment).
    Let me know a few more details and we'll find a way.
    Cheers
    Gorka

  • Report out put to Excel file

    Hi,
    Please help me in this requirement.
    Is there any option to get the out put of report 6i out put to excel format file.

    Its not possible to export data directly from 6i to excel but you can export in text file and then open it in excel it will open very easily but keep it in you mind first eliminate all report groups.
    and
    There is a trick to capture Oracle Reports output (text output) into a excel sheet.
    Basic Steps :
    1) Set the output format for the report to XML
    2) Run the report to generate output.
    3) Save the output file locally as a XML file.
    4) Open the file using MS Excel.
    5) To make it more beautiful, you may use a MS Excel Template
    and read below may be this will be helpful to u
    http://kr.forums.oracle.com/forums/thread.jspa?threadID=853876
    Reports 6i Matrix Output in Excel Format

  • Csv report out put problem

    am trying to generate delimited format report on command prompt.
    out put is to huge and it gives error . To over come this when I turned page break to yes the report will be generated successfully but the out put number of rows are being doubled.
    suppose initially I am getting 100 rows , With page break set to yes the out put in
    report csv format will be 200

    Its not possible to export data directly from 6i to excel but you can export in text file and then open it in excel it will open very easily but keep it in you mind first eliminate all report groups.
    and
    There is a trick to capture Oracle Reports output (text output) into a excel sheet.
    Basic Steps :
    1) Set the output format for the report to XML
    2) Run the report to generate output.
    3) Save the output file locally as a XML file.
    4) Open the file using MS Excel.
    5) To make it more beautiful, you may use a MS Excel Template
    and read below may be this will be helpful to u
    http://kr.forums.oracle.com/forums/thread.jspa?threadID=853876
    Reports 6i Matrix Output in Excel Format

Maybe you are looking for

  • My laptop crashed and I had to get a new hard drive.  How do I get the music from my Ipod back into my itunes library?

    My laptop crashed and I had to get a new hard drive.  How do I get the music from my iPod back into iTunes Library?

  • ICloud Mail not syncing as "read" across all devices

    If I read an email on my Mac, it does not mark as read on my iPhone and i still see the new mail notification on the lock screen and there is a new mail mark on the mail app icon when i unlock the iPhone until I open up mail app and it checks manuall

  • Difference in balance sheet

    Hi Sap gurus,   i am getting a difference in my balance sheet that is difference in sources of funds and application of funds. and how to go to check the trial balance. can somebody please guide me. urgently required. advancely thanks and points will

  • Thread Safe Testing

    I havn't written much mult-threaded code but I realise it's important when many web round-trips are required. How do I design, test and verify that I have a thread-safe application? I don't like relying on the testing statistics of chance unless the

  • How to check the button Disable/enable property in openscript

    I am creating a test script using openscipt 12.2.0.1 and needs to verify whether a button is in disabled or enabled mode. I am trying below code: boolean enable=adf.commandToolbarButton( *125, "/web:window[@index='0' or @title=' - Collections Custome