<?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 Popup in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup/m-p/2713768#M629292</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 am working on a report where i am calling a Popup for a set of values in the Internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am calling the following the following FM for that : POPUP_WITH_TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is working fine.I need a option where i can edit the values in the popup.&lt;/P&gt;&lt;P&gt;When I change them they must get changed in the corresponding internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone tell how to do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Supriya Manik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Aug 2007 15:56:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-22T15:56:20Z</dc:date>
    <item>
      <title>Popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup/m-p/2713768#M629292</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 am working on a report where i am calling a Popup for a set of values in the Internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am calling the following the following FM for that : POPUP_WITH_TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is working fine.I need a option where i can edit the values in the popup.&lt;/P&gt;&lt;P&gt;When I change them they must get changed in the corresponding internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone tell how to do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Supriya Manik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2007 15:56:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup/m-p/2713768#M629292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-22T15:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: Popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup/m-p/2713769#M629293</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;Create a custom table.&lt;/P&gt;&lt;P&gt;Create a maintenance view for it.&lt;/P&gt;&lt;P&gt;Make your code fill the F4 from the custom table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2007 15:59:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup/m-p/2713769#M629293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-22T15:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: Popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup/m-p/2713770#M629294</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 to do this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*&amp;amp;---------------------------------------------------------------------*
* Form f_upload_regions_popup                                          *
*&amp;amp;---------------------------------------------------------------------*
* This form will give popup for input of region code                   *
*----------------------------------------------------------------------*
form f_upload_regions_popup.
  data : p_grptitle(30) type c.
  data : p_grpreturn(1) type c.
  data : p_grpsval like sval occurs 0 with header line.
*
  p_grpsval-tabname    = text-266.
  p_grpsval-fieldname  = text-267.
  p_grpsval-field_obl  = c_x.
  p_grpsval-fieldtext  = text-268.
  append p_grpsval. clear : p_grpsval.
*
  p_grpsval-tabname    = text-266.
  p_grpsval-fieldname  = text-269.
  p_grpsval-field_obl  = c_x.
  append p_grpsval. clear : p_grpsval.
*
  p_grptitle = text-270.
*
  call function 'POPUP_GET_VALUES_USER_CHECKED'
    exporting
      popup_title = p_grptitle
      programname = sy-repid
      formname    = text-271
    importing
      returncode  = p_grpreturn
    tables
      fields      = p_grpsval.

  read table p_grpsval index 1.
  if sy-subrc eq 0.
    move p_grpsval-value to v_plgrp.
    read table p_grpsval index 2.
    if sy-subrc eq 0.
      move p_grpsval-value to v_affind.
    endif.
  endif.
  if not v_plgrp is initial and not v_affind is initial.
    perform f_f4_help_region using v_plgrp.
  endif.
*
endform.                                 " F_upload_regions_popup
*
*&amp;amp;---------------------------------------------------------------------*
* Form f_check_regions                                                 *
*&amp;amp;---------------------------------------------------------------------*
* This form for check the user entered values with table YATTGRP       *
*----------------------------------------------------------------------*
form f_check_regions  tables   fields structure sval
                      changing error  structure svale.
  tables : yattgrp.
  data : p_plgrp like yattgrp-plgrp.

* Read entered values from FM
  read table fields index 1.
  p_plgrp = fields-value.
  select single * from yattgrp into yattgrp
      where plgrp eq p_plgrp.
  if sy-subrc &amp;lt;&amp;gt; 0.
    clear error.
    error-msgty      = 'E'.
    error-msgid      = c_yatt.
    error-msgno      = '366'.
    error-msgv1      = p_plgrp.
  endif.
endform.                                 " F_check_regions
*

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2007 16:01:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup/m-p/2713770#M629294</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-08-22T16:01:35Z</dc:date>
    </item>
  </channel>
</rss>

