<?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: collaps / expand button - demo program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/collaps-expand-button-demo-program/m-p/1529724#M242247</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the transaction&lt;/P&gt;&lt;P&gt;BIBS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Aug 2006 10:41:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-24T10:41:44Z</dc:date>
    <item>
      <title>collaps / expand button - demo program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/collaps-expand-button-demo-program/m-p/1529723#M242246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I know there is a example program in the SAP system to learn about hide ALV, tree-controls... -&amp;gt; e.g. ME21N -&amp;gt; there are collaps and expand buttons included.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know the demo program to learn programing the buttons function? I cant find it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2006 10:37:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/collaps-expand-button-demo-program/m-p/1529723#M242246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-24T10:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: collaps / expand button - demo program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/collaps-expand-button-demo-program/m-p/1529724#M242247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the transaction&lt;/P&gt;&lt;P&gt;BIBS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2006 10:41:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/collaps-expand-button-demo-program/m-p/1529724#M242247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-24T10:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: collaps / expand button - demo program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/collaps-expand-button-demo-program/m-p/1529725#M242248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the below sample program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ypra_sample36.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INCLUDE &amp;lt;icons&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-003 NO&lt;/P&gt;&lt;P&gt;INTERVALS.&lt;/P&gt;&lt;P&gt;PARAMETERS:       p_inst TYPE eanl-anlage MODIF ID new.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: PUSHBUTTON 50(18) pbexco USER-COMMAND expcol&lt;/P&gt;&lt;P&gt;                                   MODIF ID new.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_status TYPE eanl-zzsptstatus MODIF ID exp.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK blk1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  PERFORM set_expcol USING pbexco.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      FORM set_expcol&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM set_expcol USING button TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF button IS INITIAL OR button EQ '@K2\QHide@'.&lt;/P&gt;&lt;P&gt;    CLEAR button.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'ICON_CREATE'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        name   = icon_data_area_expand&lt;/P&gt;&lt;P&gt;        info   = text-001&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        RESULT = button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-name = 'PBEXCO'.&lt;/P&gt;&lt;P&gt;        screen-input = '1'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'EXP'.&lt;/P&gt;&lt;P&gt;        screen-input = '0'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ELSEIF button = '@K1\QShow@'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'ICON_CREATE'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        name   = icon_data_area_collapse&lt;/P&gt;&lt;P&gt;        info   = text-002&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        RESULT = button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'EXP'.&lt;/P&gt;&lt;P&gt;        screen-input = '1'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '0'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                               "set_expcol&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text Elements:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;001	Show&lt;/P&gt;&lt;P&gt;002	Hide&lt;/P&gt;&lt;P&gt;003	Installation data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Selection texts:&lt;/P&gt;&lt;P&gt;P_INST	Installation No&lt;/P&gt;&lt;P&gt;P_STATUS	Installation Status&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This program is just a sample program with Expand and collapse button in selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prakash.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prakash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2006 10:43:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/collaps-expand-button-demo-program/m-p/1529725#M242248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-24T10:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: collaps / expand button - demo program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/collaps-expand-button-demo-program/m-p/1529726#M242249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;go through these links&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/e6/83a0375b5dd003e10000009b38f8cf/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/e6/83a0375b5dd003e10000009b38f8cf/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2006 11:21:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/collaps-expand-button-demo-program/m-p/1529726#M242249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-24T11:21:56Z</dc:date>
    </item>
  </channel>
</rss>

