Want to display report output field as input field

hi, all.
In my report i am displaying output field which is blank, i want that field to be converted into input field for the same report.
Give proper decision ASAP.
Thanks & Regards,
Sandip Sonar.

Hi,
you need to use this following statement, before your write statement, with INPUT ON as per the following syntax.
FORMAT [COLOR       {{{color [ON]}|OFF}|{= col}}]
       [INTENSIFIED [{ON|OFF}|{= flag}]]
       [INVERSE     [{ON|OFF}|{= flag}]]
       [HOTSPOT     [{ON|OFF}|{= flag}]]
       [INPUT       [{ON|OFF}|{= flag}]]
       [FRAMES      [{ON|OFF}|{= flag}]]
       [RESET].

Similar Messages

  • Dont want to display "Report Successfully Run" applet

    Dear Users....I Dont want to display "Report Successfully Run" applet after my report runs successfully. I'm calling report from Forms-10g Rel.2 and my browser is Internet Explorer ver.6. I'm sending my report directly to printer using Web.Show_Document.If my report is sent to printer successfully there is no need to display browser window with the above mentioned message. Is there any solution for this???

    Code in when-button-pressed
    DECLARE
    V_Usr_Prm Varchar2 (1000);
    BEGIN
    V_Usr_Prm :=
    'FROM_REF_NO='
    || P_FRM_REF_NO
    || '+TO_REF_NO='
    || P_FRM_REF_NO
    || '+P_PRE_BY='
    || P_PRE_BYE
    || '+P_VR_TYPE='
    || P_VOR_TYP
    || '+YEAR1='
    || P_VOR_YER
    || '+MNU_IDE=0'
    || '+P_PRN_FLG=1';
    web_show_document_proc ('HTMLCSS', 'Y:\02\\02\VOR_PRN.REP', V_USR_PRM);
    END;
    Procedure Web_Show_Document_Proc is
    PROCEDURE WEB_SHOW_DOCUMENT_PROC (runformat varchar2,
    reportname varchar2,
    userparameters vARCHAR2)
    IS
    i NUMBER (10);
    v_a VARCHAR2 (10);
    v_b VARCHAR2 (10);
    vc_url VARCHAR2 (1000);
    vc_url_temp VARCHAR2 (1000);
    vc_user_name VARCHAR2 (30) := GET_APPLICATION_PROPERTY (username);
    vc_user_pw VARCHAR2 (30) := GET_APPLICATION_PROPERTY (password);
    vc_user_connect VARCHAR2 (30)
    := GET_APPLICATION_PROPERTY (connect_string) ;
    BEGIN
    vc_url :=
    'userid='
    || vc_user_name
    || '/'
    || vc_user_pw
    || '@'
    || vc_user_connect;
    FOR i IN 1 .. LENGTH (vc_url)
    LOOP
    v_a := LTRIM (TO_CHAR (TRUNC (ASCII (SUBSTR (vc_url, i, 1)) / 16)));
    IF v_a = '10'
    THEN
    v_a := 'A';
    ELSIF v_a = '11'
    THEN
    v_a := 'B';
    ELSIF v_a = '12'
    THEN
    v_a := 'C';
    ELSIF v_a = '13'
    THEN
    v_a := 'D';
    ELSIF v_a = '14'
    THEN
    v_a := 'E';
    ELSIF v_a = '15'
    THEN
    v_a := 'F';
    END IF;
    v_b := LTRIM (TO_CHAR (MOD (ASCII (SUBSTR (vc_url, i, 1)), 16)));
    IF v_b = '10'
    THEN
    v_b := 'A';
    ELSIF v_b = '11'
    THEN
    v_b := 'B';
    ELSIF v_b = '12'
    THEN
    v_b := 'C';
    ELSIF v_b = '13'
    THEN
    v_b := 'D';
    ELSIF v_b = '14'
    THEN
    v_b := 'E';
    ELSIF v_b = '15'
    THEN
    v_b := 'F';
    END IF;
    vc_url_temp := vc_url_temp || '%' || v_a || v_b;
    END LOOP;
    vc_url :=
    '/reports/rwservlet?server=rep_appsrv_frhome1+'
    || vc_url_temp
    || '+report='
    || reportname
    || '+destype=Printer+desformat='
    || runformat
    || '+paramform=No+'
    || userparameters;
    WEB.SHOW_DOCUMENT (vc_url, '_blank');
    END;

  • Dont want to display "Report Successfully Run"

    Dear Users....I Dont want to display "Report Successfully Run" applet after my report runs successfully. I'm calling report from Forms-10g Rel.2 and my browser is Internet Explorer ver.6. I'm sending my report directly to printer using Web.Show_Document.If my report is sent to printer successfully there is no need to display browser window with the above mentioned message. Is there any solution for this???

    Code in when-button-pressed
    DECLARE
    V_Usr_Prm Varchar2 (1000);
    BEGIN
    V_Usr_Prm :=
    'FROM_REF_NO='
    || P_FRM_REF_NO
    || '+TO_REF_NO='
    || P_FRM_REF_NO
    || '+P_PRE_BY='
    || P_PRE_BYE
    || '+P_VR_TYPE='
    || P_VOR_TYP
    || '+YEAR1='
    || P_VOR_YER
    || '+MNU_IDE=0'
    || '+P_PRN_FLG=1';
    web_show_document_proc ('HTMLCSS', 'Y:\02\\02\VOR_PRN.REP', V_USR_PRM);
    END;
    Procedure Web_Show_Document_Proc is
    PROCEDURE WEB_SHOW_DOCUMENT_PROC (runformat varchar2,
    reportname varchar2,
    userparameters vARCHAR2)
    IS
    i NUMBER (10);
    v_a VARCHAR2 (10);
    v_b VARCHAR2 (10);
    vc_url VARCHAR2 (1000);
    vc_url_temp VARCHAR2 (1000);
    vc_user_name VARCHAR2 (30) := GET_APPLICATION_PROPERTY (username);
    vc_user_pw VARCHAR2 (30) := GET_APPLICATION_PROPERTY (password);
    vc_user_connect VARCHAR2 (30)
    := GET_APPLICATION_PROPERTY (connect_string) ;
    BEGIN
    vc_url :=
    'userid='
    || vc_user_name
    || '/'
    || vc_user_pw
    || '@'
    || vc_user_connect;
    FOR i IN 1 .. LENGTH (vc_url)
    LOOP
    v_a := LTRIM (TO_CHAR (TRUNC (ASCII (SUBSTR (vc_url, i, 1)) / 16)));
    IF v_a = '10'
    THEN
    v_a := 'A';
    ELSIF v_a = '11'
    THEN
    v_a := 'B';
    ELSIF v_a = '12'
    THEN
    v_a := 'C';
    ELSIF v_a = '13'
    THEN
    v_a := 'D';
    ELSIF v_a = '14'
    THEN
    v_a := 'E';
    ELSIF v_a = '15'
    THEN
    v_a := 'F';
    END IF;
    v_b := LTRIM (TO_CHAR (MOD (ASCII (SUBSTR (vc_url, i, 1)), 16)));
    IF v_b = '10'
    THEN
    v_b := 'A';
    ELSIF v_b = '11'
    THEN
    v_b := 'B';
    ELSIF v_b = '12'
    THEN
    v_b := 'C';
    ELSIF v_b = '13'
    THEN
    v_b := 'D';
    ELSIF v_b = '14'
    THEN
    v_b := 'E';
    ELSIF v_b = '15'
    THEN
    v_b := 'F';
    END IF;
    vc_url_temp := vc_url_temp || '%' || v_a || v_b;
    END LOOP;
    vc_url :=
    '/reports/rwservlet?server=rep_appsrv_frhome1+'
    || vc_url_temp
    || '+report='
    || reportname
    || '+destype=Printer+desformat='
    || runformat
    || '+paramform=No+'
    || userparameters;
    WEB.SHOW_DOCUMENT (vc_url, '_blank');
    END;

  • Best Practice for report output of CRM Notes field data

    My company has a requirement to produce a report with variable output, based upon a keyword search of our CRM Request Notes data.  Example:  The business wants a report return of all Service Requests where the Notes field contains the word "pay" or "payee" or "payment".  As part of the report output, the business wants to freely select the output fields meant to accompany the notes data.  Can anyone please advise to SAP's Best Practice for meeting a report requirement such as this.  Is a custom ABAP application built?  Does data get moved to BW for Reporting (how are notes handles)?  Is data moved to separate system?

    Hi David,
    I would leave your query
    "Am I doing something wrong and did I miss something that would prevent this problem?"
    to the experts/ gurus out here on this forum.
    From my end, you can follow
    TOP 10 EXCEL TIPS FOR SUCCESS
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/204c3259-edb2-2b10-4a84-a754c9e1aea8
    Please follow the Xcelsius Best Practices at
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a084a11c-6564-2b10-79ac-cc1eb3f017ac
    In order to reduce the size of xlf and swf files follow
    http://myxcelsius.com/2009/03/18/reduce-the-size-of-your-xlf-and-swf-files/
    Hope this helps to certain extent.
    Regards
    Nikhil

  • How to display a value in an input field in webdynpro

    I want to get a value already shown in a particular input field
    i.e., have to fetch data to that input field as we enter that screen.
    how can we do that?
    kindly reply if anyone knows.
    Thanks and regards
    suju

    Hi,
    First of all u have to declare one variable in the prog. with the name of the i/o box u have given in the screen.
    Now in the PBO of the screen call one module.
    and in that module write the code like,
    if your i/p field name is INPUT_F then
    MODULE assign OUTPUT.
      INPUT_F = 'XYZ'.
    ENDMODULE. 
    Here u can assign the value by fatching through the DB also.
    I think this will help u.
    thanks

  • Display Report output in Matrix format

    Hi
      I want to display normal report output in somewhat this manner.
    I will have one change requrest number and many transport requests will be assigned to that change request number, and to the transport requests many objects will be assigned.
    I have to display the output in this format:
    Change Request 1  |   Tr No.1 |  Tr No.2 |  Tr No.1 | and so on....
    Obj1
    Obj2
    Obj3
    Change Request 1  |   Tr No.1 |  Tr No.2 |  Tr No.1 | and so on....
    Obj1
    Obj2
    Obj3
    Like this it should go on.
    I have done the coding part, how to display the data in the above format i am not getting any idea, please help me out if you have any ideas.
    Thanks & Regards
    Haritha.

    Hi Vijay,
      First of all thank you for the response.
    I am retrieving the data from different tables and putting all the data in one internal table called i_final. Below is the declaration of that internal table and how i have populated the data to that. I am using control break statements to display the data but the data is coming in the next line.
    Please see the final internal table:
    1. Declaration:
    Data:Begin of i_final occurs 0,
           ccsnr like ysts-ccsnr,
           trkorr like ysts-trkorr,
           obj_name like e071-obj_name,
           check_box(1),
           status LIKE YSCS-STATUS,
          End of i_final.
    2. Populating different internal tables data to this table:
      loop at i_ccno.
        i_final-ccsnr = i_ccno-ccsnr.
        i_final-trkorr = i_ccno-trkorr.
        read table i_status with key trkorr = i_ccno-trkorr.
        if sy-subrc = 0.
          i_final-status = i_status-status.
        endif.
        read table i_obj_name with key trkorr = i_ccno-trkorr.
        if sy-subrc = 0.
          i_final-obj_name = i_obj_name-obj_name.
        endif.
        append i_final.
        clear i_final.
      endloop.
    3. Using Control break statements to display the data.
      sort i_final by ccsnr.
      loop at i_final.
         at new ccsnr.
           write:/2 i_final-ccsnr.
         endat.
           write:20 i_final-trkorr.
           uline.
      endloop.
    But the output is coming like this:
    CHG0003785  HSDK933109
                          HSDK933111
                          HSDK933113
                          HSDK933143
                          HSDK933268
    But i want the output like this:
    CHG0003785 | HSDK933109  |  HSDK933111  |   HSDK933113
    Thanks & Regards
    Haritha.

  • How can i display console outputs in my form field?

    Hi,
    I have an application which performs some actions like, insert 200 rows in the database. While inserting data i am using
    int i=0;
    system.out.println ("Insert "+i+" row in database");
    i=i+1;
    The output displays on the commnad line
    what i am trying to do is i have a form, which has text area. I want to display the console output "Insert 1 row in database" and next "Insert 2 row in database"..... and soon in the text area. How could i do that?
    Thanks in advance!!
    pin2g

    solution removed, because you crossposted.
    Message was edited by:
    Navy_Coder

  • Firefox 3.6.8 does not correctly display inuktitut text in an input field. Any solution?

    Firefox 3.6.8 seems to have an issue with Unicode in input fields, e.g.
    The following code
    <input type="text" value="ᕿᓂᕐᓂᖅ..." style="font-family:Pigiarniq">
    should look more or less the same as
    <input type="text" value="ei3i6..." style="font-family:AiPaiNunavik">
    The first one uses a Unicode font (available at http://www.gov.nu.ca/english/font/) the second one one of the traditional non-unicode fonts.
    The two squares in the first string are not really squares. When you copy and paste the string onto a system with a unicode font containing canadian syllabic characters, then the squares are displayed correctly.
    Additional information: I just found that this is not related to input fields, as I thought in the beginning, but also happens within normal Ps or DIVs.
    Strangely enough, the following complete HTML seems to work when saving as a local file:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="iu-ca" lang="iu-ca">
    <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <style>body{font-family:Arial,Pigiarniq;}</style>
    </head>
    <body>
    <p>ᕿᓂᕐᓂᖅ</p>
    <div>ᕿᓂᕐᓂᖅ</div>
    <p>a real unicode font:</p>
    <input type="text" value="ᕿᓂᕐᓂᖅ..." style="font-family:Pigiarniq">
    <p>a non-unicode font:</p>
    <input type="text" value="ei3i6..." style="font-family:AiPaiNunavik">
    </body>
    </html>
    and opend within this same browser session in another tab.
    In my current browser session, I see two different renditions of the string:
    - on this support form submission page, the string is incorrectly displayed (with two squares) as on the webpage which is currently under development
    - in another tab, the above mentioned HTML file displays all instances of the string correctly.

    (A) is what I see on this webpage (Firefox support form submission page)
    (B) is what I see within the same browser instance in another tab, viewing the above HMTL code
    (C) is what happens on the webpage under development.
    A and C show the same strange behaviour.
    Opera, Safari on Windows and IE display it correctly.
    Thanks for any hints,

  • Not able to display the values in the input fields of the view

    Hi All.
    I am facing an unique issue.
    My custom element created in my custom node getting a null value
    from a Get Vendor Details RFC written in RFC.
    The values are getting populated in the custom element but not coming in the
    input field of the corresponding view.
    Then, I wrote this code
    wdContext.nodeCustom.setLeadSelection(1);
    and all the output came in the input field.
    Now, after a build it is not coming in the input fields of the view.
    All my custom nodes are Singleton and values are coming in the custom elements
    as I can print them by wdComponentApi.getMessageManager.reportSuccess(""+customnode.getField());
    All my nodes are Singleton.
    Please give your valuable inputs.
    Regards
    Kaushik Banerjee

    Hi
    Check the node property
    initializeLeadSelection     true
    if not make it true , I would suggest to make a value node of the same structure as in RFC after execuation of the RFC populate the value manually.Dont bind it directly to the UI element.
    BR
    Satish Kumar

  • Display Report Output in Email Body (EBS).

    Hi,
    I was wondering if it is possible to display the output of a BIP report within the body of an email using bursting instead of having the report in an attachment.
    Thanks in advance
    Carl

    Hi Carl,
    I use the API directly:
         // Parse RTF og lav XSL
                   ByteArrayOutputStream xsl;
                   xsl = new ByteArrayOutputStream(1024);
                   RTFProcessor rtfProc = new RTFProcessor(rtfPath);
                   rtfProc.setOutput(xsl);
                   rtfProc.process();
                   xsl.flush();
                   xsl.close();
                   // Lave rtf udfra xml og det nye xsl
                   BufferedOutputStream bout = new BufferedOutputStream(new FileOutputStream(output));
                   ByteArrayInputStream xmlStream = new ByteArrayInputStream(xml);
                   FOProcessor foProc = new FOProcessor();
                   foProc.setTemplate(new ByteArrayInputStream(xsl.toByteArray()));
                   foProc.setData(xmlStream);
                   foProc.setOutput(bout);
                   foProc.setOutputFormat(FOProcessor.FORMAT_RTF);
                   foProc.generate();
                   bout.flush();
                   bout.close();
    I can change the output format to HTML (haven't tried) -> and then send the email with contenttype html. Can I email directly via the api ?

  • How to Display Report Output in X & Y Axis Format based on Date & Site ?

    Hi,
       I got a requirement to display the output of a Report in X & Y Axis Format like  Date in Vertical wise & Site in Horizontal wise.
       please suggest me how to do this.

    These programs also..
    GFW_PROG_BAR : Bar chart example
    GFW_PROG_PIE: Pie chart example

  • Quantity field as input field in purchase templates

    Hi SDN,
    we are on WAS 700, SRM 5.0. SRM Server 5.5
    I am facing an urgent change request, which is a modification of standard templates and dynpros.
    The Task:
    When I create a shopping cart via "Old Purchase Orders and Templates" I want the quantity field as an input field, so that I can change quantities right here, when adding items from the public template to the shopping cart.
    The Business Case:
    We get tons of bad user feedback, as the process as it is, is really time consuming, because first you chose items from the template and in the next step you have to change the quantities.
    The html template involved is the:
    SAPLBBP_PDH_SEARCH 4001
    The corresponding dynpro is:
    4001 in function group BBP_PDH_SEARCH
    In the dynpro I see a quantity-field in the creen painter:
    -QUANTITY in Table Control TC_SUBLIST_SC
    in the html template I have:
    `if (SUBLIST-ITM_TYPE[n].value != "HIER")`
                  `SUBLIST-QUANTITY[n].value` `SUBLIST-UNIT[n].value`
    I guess I need something like:
    <input type="text" name="<SUB_WA>-QUANTITY" value="`SUBLIST-QUANTITY[n].value`">
    How do I set up the input field? Help greatly appreciated!!!
    Kind regards, Matthias Kasig
    Message was edited by:
            Matthias Kasig

    Hi,
    in perform mark_read_from_web you have something like that:
    MODIFY <sublist> FROM <lfs_sub_wa>.
    this modifies your sublist with new values.
    All you have to do is add to <lfs_sub_wa> quantity field.
    in code:
    lv_index = lv_index + 1.
          field-get 'SUBLIST-MARK' lv_index lt_mark lv_leng.
          IF sy-subrc <> 0.
            CONTINUE.
          ELSE.
            READ TABLE lt_mark INDEX 1.
            IF sy-subrc EQ 0.
              MOVE lt_mark TO <lfs_sub_mark>.
              MODIFY <sublist> FROM <lfs_sub_wa>.
              IF <lfs_itm_type> EQ c_hier AND
                 <lfs_exp> is initial And
                 lt_mark EQ gc_yes.
                MOVE <lfs_itm_guid> TO lt_sel_hier-guid.
                APPEND lt_sel_hier.
              ENDIF.
            ENDIF.
          ENDIF.
    add something like this:
    lv_index = lv_index + 1.
          field-get 'SUBLIST-MARK' lv_index lt_mark lv_leng.
          field-get 'SUBLIST-QUANTITY' lv_index lt_mark lv_leng.
          IF sy-subrc <> 0.
            CONTINUE.
          ELSE.
            READ TABLE lt_mark INDEX 1.
            IF sy-subrc EQ 0.
              MOVE lt_mark TO <lfs_sub_mark>.
              MODIFY <sublist> FROM <lfs_sub_wa>.
              IF <lfs_itm_type> EQ c_hier AND
                 <lfs_exp> is initial And
                 lt_mark EQ gc_yes.
                MOVE <lfs_itm_guid> TO lt_sel_hier-guid.
                APPEND lt_sel_hier.
              ENDIF.
            ENDIF.
          ENDIF.
    Regards,
    Marcin Gajewski

  • AGS_WORK_INCIDENT_MAN - add field as input field

    Hi experts!!
    I would like to customize a bit the WD AGS_WORK_INCIDENT_MAN, so as to have the "created at" field as an input field on message edit mode. I have never again done this..
    Could anyone please guide me a bit????
    Thank you all in advance!!!
    Edited by: Grigoria Koutsogianni on Oct 19, 2009 2:54 PM

    Hi,
    Call SE80. Select Web Dynpro Comp and search for the object AGS_WORK_INCIDENT_MAN. You can customize using the options displayed below. Select the reqired option say View .You will get the detailed view at the right side and go ahead with your changes.
    Hope this helps.
    Rajeev

  • Display some constant in the input field and allow the user to change it.

    Dear All,
    I have a requirement in WDA to display inputfield with some constant initially and allow
    the user to change that value according to his wish.Currently I am using UI Element
    InputField for this,but I am not able to show the constant initially.
    How can I achieve this pls suggest.
    Thanks,
    Reddy.

    Hi sudhir,
    To display with default values, you need to write your code in wddointi method.
    Check this code..
    * navigate from <CONTEXT> to <INPUT> via lead selection
      lo_nd_input = wd_context->get_child_node( name = wd_this->wdctx_input ).
    * get element via lead selection
      lo_el_input = lo_nd_input->get_element( ).
      lv_ship_point = '1001'.
    * set single attribute
      lo_el_input->set_attribute(
        name  =  `SHIP_POINT`
        value = lv_ship_point ).  // Now ship_point have initial value 1001.
    Cheers,
    Kris.

  • I want to display the output

    selection scree.
    parameters:P_PRT_RB RADIOBUTTON GROUP GR1 DEFAULT 'X',
                    P_PRT_TX TYPE NAST-LDEST.
    for the print options the output wiil be in the normal format but it should pop up the window box for providing the printer name.
    what should be the logic

    Hi debasish,
    call function 'GET_PRINT_PARAMETERS'
        exporting
          in_archive_parameters  = arcpar
          in_parameters          = pripar
          layout                 = lay
          line_count             = lines
          line_size              = cols
    <b>      no_dialog              = 'X'</b>
    if you turn no_dialog to true, it wont promt for printer name.
    Rgds,
    Jothi.P
    *reward if useful.

Maybe you are looking for

  • I've purchased songs thru iTunes Store and they will not sync to my iPhone 5.  They show up as if they are in the cloud but wont download to my iPhone, Why?

    So some of my purchased songs from iTunes are not syncing to my iPhone.  Is there a setting or format issue?  If so, how do I change it?  The songs show up on my iPhone as if they synced, but do not play.  There is an icon to the right saying it need

  • No sound effects with firewire audio device

    I use an external (firewire) sound device for better sound. When I'm in a call, the audio output is routed correctly to that device. But, sound fx, such as when someone sends me an IM or when someone is calling are NOT routed to that device. If I unp

  • Exchange 2013 Autodiscover priority set

    In the environment four exchange server 2013. two in the server firm zone and another two is in the DMZ zone. In AD two autodiscover record are in server firm. no pointing for DMZ zone server. but in outlook by default audiscover connect to dmz zone

  • Some good swing resource

    HI everyone: I need to find some free online resource (other than the online tutorial to help me with java swing package), immediately!! Are there anything good online that teaches you java and gives great examples too? Thank you!!

  • Starting database using PFILE

    Hello, Gurus. I am a newbie to Oracle. Need to modify the paramters for database, so the use of Pfile is required. But even the Pfile created by oracle is not working correctly. Below shows the error messages: SQL> create pfile='C:\responsefiles\orac