<?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 Problem in ABAP code. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797571#M653123</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;below is part of my code.when i click on any PO no. on output screen , it goes to me22 screen for last PO displayed on output screen.Instead it should go to me22 screen on PO no. i click ..Can anyone plz help me n tell me the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; write :/1 itab_out1-f_ebeln COLOR 5 HOTSPOT ON,&lt;/P&gt;&lt;P&gt;            20  itab_out1-f_lifnr,&lt;/P&gt;&lt;P&gt;            45 itab_out1-f_name1,&lt;/P&gt;&lt;P&gt;            60 itab_out1-f_matnr,&lt;/P&gt;&lt;P&gt;            80 itab_out1-f_aedat,&lt;/P&gt;&lt;P&gt;            100 itab_out1-f_ebelp ,&lt;/P&gt;&lt;P&gt;            108 itab_out1-f_netpr,&lt;/P&gt;&lt;P&gt;            /,&lt;/P&gt;&lt;P&gt;            /100'TOTAL',&lt;/P&gt;&lt;P&gt;            108 itab_out1-f_price color 3.&lt;/P&gt;&lt;P&gt;          HIDE: ITAB_OUT1-F_EBELN.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt; ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt; SET PARAMETER ID 'BES' FIELD itab_out1-f_ebeln.&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'ME22'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Sep 2007 10:56:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-18T10:56:02Z</dc:date>
    <item>
      <title>Problem in ABAP code.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797571#M653123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;below is part of my code.when i click on any PO no. on output screen , it goes to me22 screen for last PO displayed on output screen.Instead it should go to me22 screen on PO no. i click ..Can anyone plz help me n tell me the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; write :/1 itab_out1-f_ebeln COLOR 5 HOTSPOT ON,&lt;/P&gt;&lt;P&gt;            20  itab_out1-f_lifnr,&lt;/P&gt;&lt;P&gt;            45 itab_out1-f_name1,&lt;/P&gt;&lt;P&gt;            60 itab_out1-f_matnr,&lt;/P&gt;&lt;P&gt;            80 itab_out1-f_aedat,&lt;/P&gt;&lt;P&gt;            100 itab_out1-f_ebelp ,&lt;/P&gt;&lt;P&gt;            108 itab_out1-f_netpr,&lt;/P&gt;&lt;P&gt;            /,&lt;/P&gt;&lt;P&gt;            /100'TOTAL',&lt;/P&gt;&lt;P&gt;            108 itab_out1-f_price color 3.&lt;/P&gt;&lt;P&gt;          HIDE: ITAB_OUT1-F_EBELN.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt; ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt; SET PARAMETER ID 'BES' FIELD itab_out1-f_ebeln.&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'ME22'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 10:56:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797571#M653123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T10:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in ABAP code.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797572#M653124</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;put the hotspot on for EBELN only..&lt;/P&gt;&lt;P&gt;and use hide stmt for that EBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not for all fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and capture the USER-COMMAND in event catelog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dummy code for user-command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM user_command USING r_ucomm LIKE syst-ucomm&lt;/P&gt;&lt;P&gt;                           rs_selfield TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONSTANTS:&lt;/P&gt;&lt;P&gt;    lc_x(1) TYPE c VALUE 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF r_ucomm = '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CASE rs_selfield-fieldname.&lt;/P&gt;&lt;P&gt;      WHEN 'VBELN'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;When Sales Order Document is selected...&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        SET PARAMETER ID  'AUN' FIELD rs_selfield-value.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN .&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  rs_selfield-refresh = lc_x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    "USER_COMMAND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 10:59:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797572#M653124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T10:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in ABAP code.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797573#M653125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try using HIDE option also for this ebeln field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 11:02:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797573#M653125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T11:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in ABAP code.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797574#M653126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have used hide option, bt still its not working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 11:07:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797574#M653126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T11:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in ABAP code.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797575#M653127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hide statement stores - in the current list level - the content of the variable dobj together with the current list line whose line number is contained in sy-linno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here u have used hide statement in the loop so loop executes for all the records into the internal table.&lt;/P&gt;&lt;P&gt;And lastly by hide statement only the last PO number is present in the current list level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now after u r clicking on whatever the numbet but, in the &amp;lt;b&amp;gt;itab_out1-f_ebeln&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;only last PO number is present.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So u are facing this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Dharmishta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 11:10:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797575#M653127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T11:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in ABAP code.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797576#M653128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;loop at itab_out1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    write :&lt;/P&gt;&lt;P&gt;            /1 itab_out1-f_ebeln COLOR 5 HOTSPOT ON,&lt;/P&gt;&lt;P&gt;            20  itab_out1-f_lifnr,&lt;/P&gt;&lt;P&gt;            45 itab_out1-f_name1,&lt;/P&gt;&lt;P&gt;            60 itab_out1-f_matnr,&lt;/P&gt;&lt;P&gt;            80 itab_out1-f_aedat,&lt;/P&gt;&lt;P&gt;            100 itab_out1-f_ebelp ,&lt;/P&gt;&lt;P&gt;            108 itab_out1-f_netpr,&lt;/P&gt;&lt;P&gt;            /,&lt;/P&gt;&lt;P&gt;            /100'TOTAL',&lt;/P&gt;&lt;P&gt;            108 itab_out1-f_price color 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; HIDE: itab_out1-f_ebeln.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt; SET PARAMETER ID 'BES' FIELD itab_out1-f_ebeln.&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'ME22'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 11:16:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797576#M653128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T11:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in ABAP code.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797577#M653129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i tried using hide inside and outside loop.bt still its not working.&lt;/P&gt;&lt;P&gt;Code is :&lt;/P&gt;&lt;P&gt;loop at itab_out1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    write :&lt;/P&gt;&lt;P&gt;            /1 itab_out1-f_ebeln COLOR 5 HOTSPOT ON,&lt;/P&gt;&lt;P&gt;            20  itab_out1-f_lifnr,&lt;/P&gt;&lt;P&gt;            45 itab_out1-f_name1,&lt;/P&gt;&lt;P&gt;            60 itab_out1-f_matnr,&lt;/P&gt;&lt;P&gt;            80 itab_out1-f_aedat,&lt;/P&gt;&lt;P&gt;            100 itab_out1-f_ebelp ,&lt;/P&gt;&lt;P&gt;            108 itab_out1-f_netpr,&lt;/P&gt;&lt;P&gt;            /,&lt;/P&gt;&lt;P&gt;            /100'TOTAL',&lt;/P&gt;&lt;P&gt;            108 itab_out1-f_price color 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; HIDE: itab_out1-f_ebeln.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt; SET PARAMETER ID 'BES' FIELD itab_out1-f_ebeln.&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'ME22'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 11:17:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797577#M653129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T11:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in ABAP code.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797578#M653130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friend,&lt;/P&gt;&lt;P&gt;Try by giving Hide statement inside At Line selection.&lt;/P&gt;&lt;P&gt;Because only after Line selection The value is assigned to That Field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 11:36:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797578#M653130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T11:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in ABAP code.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797579#M653131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;done.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 06:20:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-code/m-p/2797579#M653131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T06:20:22Z</dc:date>
    </item>
  </channel>
</rss>

