<?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: create screen when creating OOP ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-screen-when-creating-oop-alv/m-p/4247914#M1013879</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           I think there is a new ABAP ALV Class .. which doesn't require a screen to be created for display.. check the package.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SALV_OBJECTS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards,&lt;/P&gt;&lt;P&gt;Ranganathan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Aug 2008 15:02:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-11T15:02:14Z</dc:date>
    <item>
      <title>create screen when creating OOP ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-screen-when-creating-oop-alv/m-p/4247911#M1013876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi everybody&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created an OOP ALV but I dont know how to attach it to a screen, i know its tcode se51, but i dnt know how to link it to the ALV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anybody help me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 14:13:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-screen-when-creating-oop-alv/m-p/4247911#M1013876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T14:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: create screen when creating OOP ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-screen-when-creating-oop-alv/m-p/4247912#M1013877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I think first you have to check some standard sap program :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BCALV_EDIT_01                  Switch on and off the ready-for-input status of the entire grid&lt;/P&gt;&lt;P&gt;BCALV_EDIT_02                  Define ready-for-input status at cell level                    &lt;/P&gt;&lt;P&gt;BCALV_EDIT_03                  Verification of modified cells                                 &lt;/P&gt;&lt;P&gt;BCALV_EDIT_04                  Delete and append rows                                         &lt;/P&gt;&lt;P&gt;BCALV_EDIT_05                  Checkboxes                                                     &lt;/P&gt;&lt;P&gt;BCALV_EDIT_06                  Dropdown Listbox at Column Level                               &lt;/P&gt;&lt;P&gt;BCALV_EDIT_07                  Dropdown Listbox at Cell Level                                 &lt;/P&gt;&lt;P&gt;BCALV_EDIT_08                  Integrate Non-Standard F4 Help                                 &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;there simple process like you have to add a container on a screen &lt;/P&gt;&lt;P&gt;    and in report program&lt;/P&gt;&lt;P&gt;create an instance&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data  g_container TYPE scrfname VALUE 'ZGW_CONTAINER',
      grid1  TYPE REF TO cl_gui_alv_grid.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;where zgw_container is conatiner name which is asing to screen&lt;/P&gt;&lt;P&gt;then call the method set_table_for_first_display of class cl_gui_alv_grid .&lt;/P&gt;&lt;P&gt;pass the require parameter to that method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    CALL METHOD GRID1-&amp;gt;SET_TABLE_FOR_FIRST_DISPLAY
      EXPORTING
*    I_BUFFER_ACTIVE               =
*    I_BYPASSING_BUFFER            =
*    I_CONSISTENCY_CHECK           =
*    I_STRUCTURE_NAME              =    'ZGW3RE007'
    IS_VARIANT                    =    GS_VARIANT
        I_SAVE                        =    'A'
*    I_DEFAULT                     = 'X'
        IS_LAYOUT                     =     GS_LAYOUT
*    IS_PRINT                      =
*    IT_SPECIAL_GROUPS             =
       IT_TOOLBAR_EXCLUDING          =  lt_exclude
*    IT_HYPERLINK                  =
*    IT_ALV_GRAPHICS               =
*    IT_EXCEPT_QINFO               =
*    IR_SALV_ADAPTER               =
      CHANGING
        IT_OUTTAB                     =    GT_OUTTAB[]
        IT_FIELDCATALOG               =    WA1_FIELDCATALOG
*    IT_SORT                       =
*    IT_FILTER                     =
*  EXCEPTIONS
*    INVALID_PARAMETER_COMBINATION = 1
*    PROGRAM_ERROR                 = 2
*    TOO_MANY_LINES                = 3
*    others                        = 4
            .
    IF SY-SUBRC &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or read this pdf document.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-partner.hu/ABAP_HELP_INFO/An%20Easy%20Reference%20for%20ALV%20Grid%20Control.pdf" target="test_blank"&gt;http://www.sap-partner.hu/ABAP_HELP_INFO/An%20Easy%20Reference%20for%20ALV%20Grid%20Control.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Anirudh Saini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 14:19:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-screen-when-creating-oop-alv/m-p/4247912#M1013877</guid>
      <dc:creator>former_member745780</dc:creator>
      <dc:date>2008-08-11T14:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: create screen when creating OOP ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-screen-when-creating-oop-alv/m-p/4247913#M1013878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a Dynpro using SE51, in the dynpro (layout) create a "Custom Control".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your Abap (or in PBO) create a container object ([cl_gui_custom_container|https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&amp;amp;query=cl_gui_custom_container&amp;amp;adv=false&amp;amp;sortby=cm_rnd_rankvalue])  with container_name equal to the name of your Custom control then create an alv grid object ([cl_gui_alv_grid|https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&amp;amp;query=cl_gui_alv_grid&amp;amp;adv=false&amp;amp;sortby=cm_rnd_rankvalue]), then use the method set_table_for_first_display on your alv grid object. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at&lt;/P&gt;&lt;P&gt;- [ALV Grid Control (BC-SRV-ALE)|http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVALV/BCSRVALV.pdf]&lt;/P&gt;&lt;P&gt;- [SAP Container|http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCCIDOCK/BCCIDOCK.pdf]&lt;/P&gt;&lt;P&gt;Also don't hesitate to use the SAP demos program, look at transactions&lt;/P&gt;&lt;P&gt;- DEMO_SCREEN_FLOW     Demonstration for Screen Sequences &lt;/P&gt;&lt;P&gt;- DEMO_TRANSACTION     Demonstration Transaction          &lt;/P&gt;&lt;P&gt;- DWDM                 Development Workbench Demos        &lt;/P&gt;&lt;P&gt;- SE83                 Reuse Library                      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 14:25:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-screen-when-creating-oop-alv/m-p/4247913#M1013878</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-08-11T14:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: create screen when creating OOP ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-screen-when-creating-oop-alv/m-p/4247914#M1013879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           I think there is a new ABAP ALV Class .. which doesn't require a screen to be created for display.. check the package.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SALV_OBJECTS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards,&lt;/P&gt;&lt;P&gt;Ranganathan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:02:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-screen-when-creating-oop-alv/m-p/4247914#M1013879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T15:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: create screen when creating OOP ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-screen-when-creating-oop-alv/m-p/4247915#M1013880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's right, there is.  The ALV Object model was introduced in NetWeaver 2004, which is an encapsulation of the existing ALV tools, the REUSE functions, and the CL_GUI_ALV_GRID class.  The new Object model is OO based, and still allows to you show your grid in either full screen mode, which does not require you to create a screen, and it also provides container support, which allows to you embed the ALV control into your screens.  Here is a document to get your started, and there are example programs which start withe SALV*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/eac1fa0b-0e01-0010-0990-8530de4908a6" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/eac1fa0b-0e01-0010-0990-8530de4908a6&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:07:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-screen-when-creating-oop-alv/m-p/4247915#M1013880</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-08-11T15:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: create screen when creating OOP ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-screen-when-creating-oop-alv/m-p/4247916#M1013881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note that if you want to display your ALV list (CL_GUI_ALV_GRID) in fullscreen mode it is not required to have a custom container on the screen. Instead I usually use a docking container as parent for the grid control and simply LINK the docking container to the screen (see sample report ZUS_SDN_TWO_ALV_GRIDS in &lt;SPAN __jive_macro_name="thread" id="384685"&gt;&lt;/SPAN&gt; ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Advantage of such a solution: you can easily re-link your docking container (including the control) to another screen if required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* Link the docking container to the target dynpro
  CALL METHOD go_docking-&amp;gt;link
    EXPORTING
      repid                       = syst-repid
      dynnr                       = '0100'
*      CONTAINER                   =
    EXCEPTIONS
      OTHERS                      = 4.
  IF sy-subrc  0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
 
 
* NOTE: dynpro does not contain any elements
  CALL SCREEN '0100'.
* Flow logic of dynpro (does not contain any dynpro elements):
*
*PROCESS BEFORE OUTPUT.
*  MODULE STATUS_0100.
**
*PROCESS AFTER INPUT.
*  MODULE USER_COMMAND_0100.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 03:28:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-screen-when-creating-oop-alv/m-p/4247916#M1013881</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-08-12T03:28:14Z</dc:date>
    </item>
  </channel>
</rss>

