<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: AT USER-COMMAND IN NORMAL REPORT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264241#M1215648</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At first create the pf status in start-of -selection evenmt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'PF_SUM' EXCLUDING p_rt_extab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(where p_rt_extab TYPE slis_t_extab) and declare the function code for enter (ENT) in that pf status.&lt;/P&gt;&lt;P&gt;then,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;case  SY-UCOMM.&lt;/P&gt;&lt;P&gt;when 'ENT'.&lt;/P&gt;&lt;P&gt;result = num1 + num2.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Nilay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Mar 2009 09:40:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-06T09:40:49Z</dc:date>
    <item>
      <title>AT USER-COMMAND IN NORMAL REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264231#M1215638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Please do not have your subject in ALL CAPITALS&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having three fields in output first one  is directly fetched from table and other two are variables.&lt;/P&gt;&lt;P&gt;ITAB-MENGE = fetched data.&lt;/P&gt;&lt;P&gt;ITAB-UCOMM =   user command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AT SELECTION-SCREEN OUTPUT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;when the user press ENTER&lt;/P&gt;&lt;P&gt;ITAB-SUM = ITAB-MENGE + ITAB-UCOMM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eq:&lt;/P&gt;&lt;P&gt;Suppose if:&lt;/P&gt;&lt;P&gt; ITAB-MENGE = 100&lt;/P&gt;&lt;P&gt;and if the user enters the value in ITAB-UCOMM = 200 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and when the user press enter the sum should display on the other field ITAB-SUM&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note: I am using normal write statement ( not ALV ) &amp;amp; I am not using any parameters in selection screen all these has to fired on output screen&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;R.Karthik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Karthik R on Feb 28, 2009 3:34 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Matt on Mar 1, 2009 7:18 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 08:53:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264231#M1215638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T08:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: AT USER-COMMAND IN NORMAL REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264232#M1215639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Karthik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Past your Code for better understanding it is not clear what you want and where the user entering the Value ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be the following Code will help you to solve out your problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF it OCCURS 10,
  menge TYPE i,
  ucomm TYPE i,
  sum TYPE i,
  END OF it.

SELECT-OPTIONS soucomm FOR it-ucomm NO-EXTENSION NO INTERVALS.
it-menge = 10.
DO 5 TIMES.
  APPEND it TO it.
  ADD 10 TO : it-menge.
ENDDO.

LOOP AT it INTO it.
  it-ucomm = soucomm-low.
  it-sum = it-menge + it-ucomm.
  MODIFY it FROM it INDEX sy-tabix.
  WRITE: / it-menge, it-ucomm , it-sum.
ENDLOOP.

INITIALIZATION.

  soucomm-low = 200.
  APPEND soucomm TO soucomm.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 14:55:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264232#M1215639</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-02-28T14:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: AT USER-COMMAND IN NORMAL REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264233#M1215640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this Code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERs:
   p_val1 TYPE i DEFAULT '100',
   p_val2 TYPE i,
   p_comm TYPE char4.


AT SELECTION-SCREEN OUTPUT.
  If p_comm Eq 'SUM'.
    p_val2 = p_val2 + p_val1.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 15:05:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264233#M1215640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T15:05:58Z</dc:date>
    </item>
    <item>
      <title>Re: AT USER-COMMAND IN NORMAL REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264234#M1215641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Faisal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your post, but it does'nt meet my requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I cannot use ucomm in select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my output one field will be in edit-mode( with no data in it ) and another field is &lt;STRONG&gt;menge&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the user enters some value in the field which in edit-mode ( in out-put / report ) and then press&lt;/P&gt;&lt;P&gt;enter the sum of menge and the value manully entered by the user should display in another field( with on data ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have not done this report in ALV but in normal report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice.&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Mar 2009 14:07:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264234#M1215641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-01T14:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: AT USER-COMMAND IN NORMAL REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264235#M1215642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note: I am using normal write statement ( not ALV ) &amp;amp; I am not using any parameters in selection screen all these has to fired on output screen&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with the above note you mean to say that you dont have selection-screen in the program but you have input fields on the list...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this what you meant... by the above statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Mar 2009 15:46:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264235#M1215642</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-01T15:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: AT USER-COMMAND IN NORMAL REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264236#M1215643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Please do not have your subject in ALL CAPITALS&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Mar 2009 18:18:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264236#M1215643</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-03-01T18:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: AT USER-COMMAND IN NORMAL REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264237#M1215644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  it is not possible to catch ENTER event in the list. The only way you can use is to create a hotspot and then catch this click. Check out the code below (taken from standard SAP help):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: input_field TYPE c LENGTH 100,
      line_num TYPE i.

START-OF-SELECTION.
  WRITE 'Input text:'.
  SET BLANK LINES ON.
  FORMAT INPUT.
  WRITE / input_field.
  FORMAT INPUT OFF.
  WRITE / '&amp;gt;&amp;gt;&amp;gt; OK &amp;lt;&amp;lt;&amp;lt;' COLOR 5 HOTSPOT.

AT LINE-SELECTION.
  IF sy-lisel = '&amp;gt;&amp;gt;&amp;gt; OK &amp;lt;&amp;lt;&amp;lt;'.
    line_num = sy-lilli - 1.
    READ LINE line_num FIELD VALUE input_field.
    WRITE:   'The input was:',
           /  input_field.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Karol&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Karol Seman on Mar 1, 2009 8:24 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Mar 2009 18:51:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264237#M1215644</guid>
      <dc:creator>karol_seman</dc:creator>
      <dc:date>2009-03-01T18:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: AT USER-COMMAND IN NORMAL REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264238#M1215645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI, Karthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Past your code if you can to get the appropriate answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Mar 2009 18:56:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264238#M1215645</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-03-01T18:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: AT USER-COMMAND IN NORMAL REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264239#M1215646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sidharth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, I meant that I am not using any parameter for ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 03:39:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264239#M1215646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T03:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: AT USER-COMMAND IN NORMAL REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264240#M1215647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Karthik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Test My Sample Code int the following Thread Hope will solve out your problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Sample Code for you|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1254233"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Reply if any Issue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 05:00:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264240#M1215647</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-03-02T05:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: AT USER-COMMAND IN NORMAL REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264241#M1215648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At first create the pf status in start-of -selection evenmt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'PF_SUM' EXCLUDING p_rt_extab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(where p_rt_extab TYPE slis_t_extab) and declare the function code for enter (ENT) in that pf status.&lt;/P&gt;&lt;P&gt;then,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;case  SY-UCOMM.&lt;/P&gt;&lt;P&gt;when 'ENT'.&lt;/P&gt;&lt;P&gt;result = num1 + num2.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Nilay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 09:40:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264241#M1215648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T09:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: AT USER-COMMAND IN NORMAL REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264242#M1215649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer code:-&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  Z19TG7_1 NO STANDARD PAGE HEADING.

TABLES : LFA1.

TYPES : BEGIN OF VENDOR,
        LIFNR LIKE LFA1-LIFNR,
        NAME1 LIKE LFA1-NAME1,
        END OF VENDOR,

        BEGIN OF VENDOR1,
        LIFNR LIKE LFA1-LIFNR,
        NAME1 LIKE LFA1-NAME1,
        ORT01 LIKE LFA1-ORT01,
        LAND1 LIKE LFA1-LAND1,
        BUKRS LIKE LFB1-BUKRS,
        END OF VENDOR1.

DATA : VENDOR_TAB TYPE STANDARD TABLE OF VENDOR INITIAL SIZE 20 WITH HEADER LINE,
       VENDOR1_TAB TYPE STANDARD TABLE OF VENDOR1 INITIAL SIZE 20 WITH HEADER LINE,
       CB.
*       WAS_USED.

TOP-OF-PAGE DURING LINE-SELECTION.
  WRITE SY-LSIND.

START-OF-SELECTION.

  SET PF-STATUS 'Z19TG7_1_PF'.

  SELECT LIFNR NAME1
  FROM LFA1
  INTO TABLE VENDOR_TAB.

AT USER-COMMAND.

  CASE SY-UCOMM.

    WHEN 'VL'.

      IF SY-LSIND = 1.

        SET PF-STATUS SPACE.

        DO.

          CLEAR CB.

          READ LINE SY-INDEX FIELD VALUE CB.

          IF SY-SUBRC &amp;lt;&amp;gt; 0.
            EXIT.
          ELSE.

            CHECK CB = 'X'.

            MODIFY CURRENT LINE : FIELD VALUE CB FROM SPACE.

            SELECT A~LIFNR A~NAME1 A~ORT01 A~LAND1 B~BUKRS
            FROM LFA1 AS A
            LEFT OUTER JOIN LFB1 AS B
            ON A~LIFNR = B~LIFNR
            INTO TABLE VENDOR1_TAB
            WHERE A~LIFNR = VENDOR_TAB-LIFNR.

            LOOP AT VENDOR1_TAB.

              WRITE : / 'Vendor ID:' NO-GAP, VENDOR1_TAB-LIFNR,
                      / 'Vendor Name :' NO-GAP, VENDOR1_TAB-NAME1,
                      / 'City :' NO-GAP, VENDOR1_TAB-ORT01,
                      / 'Land :' NO-GAP, VENDOR1_TAB-LAND1,
                      / 'Country Code :' NO-GAP, VENDOR1_TAB-BUKRS.

              ULINE.

            ENDLOOP.

          ENDIF.

        ENDDO.

      ENDIF.

  ENDCASE.

END-OF-SELECTION.

  WRITE : /1 'CB', 5 TEXT-001, 18 TEXT-002.
  ULINE.

  LOOP AT VENDOR_TAB.

    WRITE : /1 CB AS CHECKBOX, 5 VENDOR_TAB-LIFNR, 18 VENDOR_TAB-NAME1.

    HIDE : VENDOR_TAB-LIFNR.

  ENDLOOP.

  ULINE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 09:43:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command-in-normal-report/m-p/5264242#M1215649</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-06T09:43:35Z</dc:date>
    </item>
  </channel>
</rss>

