<?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: Interactive ALV Issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727356#M1299298</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It depends how you are using SUBMIT.&lt;/P&gt;&lt;P&gt;Try this : ... USING SELECTION-SCREEN dynnr and return.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Jun 2009 06:22:01 GMT</pubDate>
    <dc:creator>Sandeep_Panghal</dc:creator>
    <dc:date>2009-06-03T06:22:01Z</dc:date>
    <item>
      <title>Interactive ALV Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727352#M1299294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ALV, By Clicking a Particular Field I call another one Report using SUBMIT by passing the clicked field as input. It is working fine and i got the Correct Result. But when i click 'BACK' Button the input screen of that report is shown. I want to skip the initial screen of that report and cme to the ALV Screen of the Original Report. Can anyone Help me to cme out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vimal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 06:11:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727352#M1299294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T06:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727353#M1299295</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;Try this coding,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPE-POOLS : SLIS.

tables : mara,makt,RF42B,sscrfields.

*NODES.

data : field type slis_fieldcat_alv,
       fieldcat type slis_t_fieldcat_alv.

data : layout type slis_layout_alv,
       lay type slis_layout_alv_spec1.

data :  heading  TYPE slis_t_listheader,
        SM_EVENT TYPE SLIS_T_EVENT,
        WA_SM_EVENT TYPE SLIS_ALV_EVENT.

data :  begin of itab occurs 0,
         matnr like mara-matnr,
         maktx like makt-maktx,
         matkl like mara-matkl,
        end of itab.

data : field1(30).
*----------------------------------------------------------------*
*---------------------------------------------------------------------*
selection-screen : begin of block abc with frame title a1.
selection-screen : skip.
select-options   : matnr for mara-matnr memory id MAT,matkl for mara-matkl.
*select-options: maktx for makt-maktx.
selection-screen : skip.
selection-screen : end of block abc.

*---------------------------------------------------------------------*

selection-screen : function key 1,
                   function key 2.

*---------------------------------------------------------------------*

initialization .
 a1 = 'Selection-Screen'.

  sscrfields-functxt_01 = text-001.
  sscrfields-functxt_02 = text-002.

*---------------------------------------------------------------------*
at selection-screen.

  case SSCRFIELDS-UCOMM.

    when 'FC01'.
    leave program.

    when 'FC02'.
    call transaction 'MM03'.

  endcase.

*---------------------------------------------------------------------*&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1st part...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 06:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727353#M1299295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T06:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727354#M1299296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;2nd part...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;start-of-selection.

select matnr matkl from mara into corresponding fields of itab
       where matnr in matnr.

append itab.
endselect.
loop at itab.

select  maktx from makt into itab-maktx
       where matnr = itab-matnr.

modify itab.
endselect.
endloop.

layout-zebra = 'X'.
layout-colwidth_optimize = 'X'.
layout-detail_popup        = 'X'.
*layout-CONFIRMATION_PROMPT = 'X'.
layout-COLWIDTH_OPTIMIZE = 'X'.
layout-no_input          = 'X'.

CLEAR WA_SM_EVENT.
WA_SM_EVENT-NAME = 'TOP_OF_LIST'.
WA_SM_EVENT-FORM = 'TOP_OF_LIST'.
APPEND WA_SM_EVENT TO SM_EVENT.

field-col_pos   = '1'.
field-fieldname = 'MAKTX'.
field-seltext_l = 'Material Desc'.
field-outputlen = '40'.
append field to fieldcat.
clear field.

field-col_pos   = '2'.
field-fieldname = 'MATKL'.
field-seltext_l = 'Material Grp'.
field-outputlen = '40'.
append field to fieldcat.
clear field.


CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
EXPORTING
   I_CALLBACK_PROGRAM             =  sy-repid
   I_CALLBACK_USER_COMMAND        =  'PICK'
   IS_LAYOUT                      = LAYOUT
   IT_FIELDCAT                    = FIELDCAT
   I_DEFAULT                      = 'X'
   I_SAVE                         = 'A'
*   IS_VARIANT                     =
   IT_EVENTS                      = SM_EVENT
  TABLES
    T_OUTTAB                       = ITAB
          .
IF sy-subrc &amp;lt;&amp;gt; 0.
ENDIF.

FORM PICK USING COMMAND LIKE SY-UCOMM
SELFIELD TYPE SLIS_SELFIELD.

READ TABLE ITAB INDEX SELFIELD-TABINDEX.

CASE COMMAND.
WHEN '&amp;amp;IC1'.

GET CURSOR FIELD field1.

CHECK field1 EQ 'ITAB-MATNR'.

SET PARAMETER ID 'MAT' FIELD ITAB-MATNR.

CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN.

ENDCASE .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nikhil.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nikhil Kanegaonkar on Jun 3, 2009 8:20 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 06:20:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727354#M1299296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T06:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727355#M1299297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  After submit use Return statment as below&lt;/P&gt;&lt;P&gt;SUBMIT {rep|(name)} [selscreen_options] AND RETURN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 06:20:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727355#M1299297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T06:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727356#M1299298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It depends how you are using SUBMIT.&lt;/P&gt;&lt;P&gt;Try this : ... USING SELECTION-SCREEN dynnr and return.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 06:22:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727356#M1299298</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2009-06-03T06:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727357#M1299299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Vimal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction 'Tcode' and skip first screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before this pass input to this t-code with the help of parameter id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 06:37:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727357#M1299299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T06:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727358#M1299300</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;I m not asking about calling Transaction i wants to call a report using SUBMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; submit   &lt;SPAN __jive_macro_name="rep_name1"&gt;&lt;/SPAN&gt; with selection-table seltab and return. this is for entering into another report not transaction.&lt;/P&gt;&lt;P&gt;after seeing output, while press 'BACK' it is not skip the first screen of rep_name1. How can i skip that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vimal Raj on Jun 3, 2009 8:44 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 06:42:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727358#M1299300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T06:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727359#M1299301</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;Assign a tcode and call the report using &lt;STRONG&gt;CALL TRANSACTION....AND AND SKIP FIRST SCREEN&lt;/STRONG&gt; after setting the required parameter ids.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check whether its coming back directly to the alv or not, because i have used the same to call a standard tcode and its coming back directly to the alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 06:48:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727359#M1299301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T06:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727360#M1299302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;   I_CALLBACK_PROGRAM             =  sy-repid&lt;/P&gt;&lt;P&gt;   I_CALLBACK_USER_COMMAND        =  'PICK'&lt;/P&gt;&lt;P&gt;   IS_LAYOUT                      = LAYOUT&lt;/P&gt;&lt;P&gt;   IT_FIELDCAT                    = FIELDCAT&lt;/P&gt;&lt;P&gt;   I_DEFAULT                      = 'X'&lt;/P&gt;&lt;P&gt;   I_SAVE                         = 'A'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IS_VARIANT                     =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   IT_EVENTS                      = SM_EVENT&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    T_OUTTAB                       = ITAB&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc  0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM PICK USING COMMAND LIKE SY-UCOMM&lt;/P&gt;&lt;P&gt;SELFIELD TYPE SLIS_SELFIELD.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;READ TABLE ITAB INDEX SELFIELD-TABINDEX.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CASE COMMAND.&lt;/P&gt;&lt;P&gt;WHEN '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;GET CURSOR FIELD field1.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CHECK field1 EQ 'ITAB-MATNR'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'MAT' FIELD ITAB-MATNR.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;when 'BACK'.&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;LEAVE TO LIST-PROCESSING.&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;ENDCASE .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 06:51:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727360#M1299302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T06:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727361#M1299303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Vimalraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the case statement of 'BACK' button,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;When 'BACK'.
SET SCREEN 3000.
LEAVE PROGRAM.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where 3000 is the screen number of the alv display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is not working, please send in your code so that we can find the mistake.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;SakthiSri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 06:52:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727361#M1299303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T06:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727362#M1299304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vimal again,&lt;/P&gt;&lt;P&gt;Sorry dear, i have missed the things.&lt;/P&gt;&lt;P&gt;Let's try this..&lt;/P&gt;&lt;P&gt;SUBMIT pgm_name AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 06:53:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727362#M1299304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T06:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727363#M1299305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;loop at itp_draw1 into wap_draw1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              wa_seltab-selname = 'STDOKNR'.&lt;/P&gt;&lt;P&gt;              wa_seltab-kind = 'S'.&lt;/P&gt;&lt;P&gt;              wa_seltab-sign = 'I'..&lt;/P&gt;&lt;P&gt;              wa_seltab-option = 'EQ'.&lt;/P&gt;&lt;P&gt;              wa_seltab-low = wap_draw1-doknr..&lt;/P&gt;&lt;P&gt;              append wa_seltab to seltab.&lt;/P&gt;&lt;P&gt;              clear: wa_seltab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              clear: wap_draw1.&lt;/P&gt;&lt;P&gt;            endloop.&lt;/P&gt;&lt;P&gt;            wa_seltab-selname = 'STDOKAR'.&lt;/P&gt;&lt;P&gt;            wa_seltab-kind = 'S'.&lt;/P&gt;&lt;P&gt;            wa_seltab-sign = 'I'.&lt;/P&gt;&lt;P&gt;            wa_seltab-option = 'EQ'.&lt;/P&gt;&lt;P&gt;            wa_seltab-low = 'PDF'.&lt;/P&gt;&lt;P&gt;            append wa_seltab to seltab.&lt;/P&gt;&lt;P&gt;            clear: wa_seltab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SUBMIT   zplm_document_latest_revision  WITH SELECTION-TABLE seltab AND RETURN.&lt;/P&gt;&lt;P&gt;**********************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STDOKNR &amp;amp; STDOKAR are the inputs for rep1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After clicking my ALV it skipped the input screen of rep1 and displays the output. Once i press 'BACK' Button in rep1's ALV, It should not go to the inputscreen of rep1 and it cme to the Interactive ALV again. wt is the solution for that? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope u Understood my scenario.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 07:12:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727363#M1299305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T07:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727364#M1299306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also paste ur code along with your Qn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check with this !!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA:l_mblnr TYPE mseg-mblnr.&lt;/P&gt;&lt;P&gt;  IF cursor-fieldname EQ 'MBLNR'.&lt;/P&gt;&lt;P&gt;    READ TABLE it_mseg3 INTO wa_mseg3 INDEX cursor-tabindex.&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      l_mblnr = wa_mseg3-mblnr.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    SET PARAMETER ID 'MBN' FIELD l_mblnr.&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION 'MB03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 08:36:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-issue/m-p/5727364#M1299306</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-06-03T08:36:49Z</dc:date>
    </item>
  </channel>
</rss>

