<?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: ALV Class in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-class/m-p/4377695#M1041542</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow ... I've never seen some one so straight forward in asking people to do your job while you sit back and relax ...&lt;/P&gt;&lt;P&gt;As Amit said ... So how much do I get paid !! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dude... If you try yourself ... you will learn something .. &lt;/P&gt;&lt;P&gt;If you take this approach .. then I don't think you will ever learn ABAP !! &lt;/P&gt;&lt;P&gt;An what will you tell your boss when he asks some questions back ?&lt;/P&gt;&lt;P&gt;And what if he is impressed and gives you another OO ALV report to write !! You will come back to SDN again !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well check out the some tutorials and code examples here ...&lt;/P&gt;&lt;P&gt;And then try it out yourself ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tutorials: &lt;A href="http://www.abaplearning.com/abap-tutorials" target="test_blank"&gt;http://www.abaplearning.com/abap-tutorials&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Examples: &lt;A href="http://www.abaplearning.com/abap-example-codes" target="test_blank"&gt;http://www.abaplearning.com/abap-example-codes&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And believe me ... there is nothing as pleasing when you see the output of your own written code... instead of running some one else's code !! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Aug 2008 05:12:37 GMT</pubDate>
    <dc:creator>former_member69765</dc:creator>
    <dc:date>2008-08-25T05:12:37Z</dc:date>
    <item>
      <title>ALV Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-class/m-p/4377692#M1041539</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;Please rewrite the below code to get the output using only &lt;STRONG&gt;ALV class&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZALV_CLASS7.&lt;/P&gt;&lt;P&gt;data class1 type ref to cl_gui_alv_grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES:BEGIN OF t_mat,&lt;/P&gt;&lt;P&gt;  matnr TYPE mara-matnr,&lt;/P&gt;&lt;P&gt;  werks TYPE marc-werks,&lt;/P&gt;&lt;P&gt;  maktx TYPE makt-maktx,&lt;/P&gt;&lt;P&gt;  END OF t_mat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES:BEGIN OF t_bseg,&lt;/P&gt;&lt;P&gt;  bukrs TYPE bseg-bukrs,&lt;/P&gt;&lt;P&gt;  blart TYPE bkpf-blart,&lt;/P&gt;&lt;P&gt;  END OF t_bseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF it_final OCCURS 0,&lt;/P&gt;&lt;P&gt;  matnr TYPE mara-matnr,&lt;/P&gt;&lt;P&gt;  werks TYPE marc-werks,&lt;/P&gt;&lt;P&gt;  maktx TYPE makt-maktx,&lt;/P&gt;&lt;P&gt;  bukrs TYPE bseg-bukrs,&lt;/P&gt;&lt;P&gt;  blart TYPE bkpf-blart,&lt;/P&gt;&lt;P&gt;  END OF it_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:it_mat TYPE STANDARD TABLE OF t_mat WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA:it_bseg TYPE STANDARD TABLE OF t_bseg WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT * FROM mara INTO CORRESPONDING FIELDS OF TABLE&lt;/P&gt;&lt;P&gt;        it_mat.&lt;/P&gt;&lt;P&gt; SELECT * FROM marc INTO CORRESPONDING FIELDS OF TABLE&lt;/P&gt;&lt;P&gt;        it_mat    .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM bseg INTO CORRESPONDING FIELDS OF TABLE&lt;/P&gt;&lt;P&gt;          it_bseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP at it_final.&lt;/P&gt;&lt;P&gt;  it_final-matnr = it_mat-matnr.&lt;/P&gt;&lt;P&gt;  it_final-werks = it_mat-werks.&lt;/P&gt;&lt;P&gt;  it_final-maktx = it_mat-maktx.&lt;/P&gt;&lt;P&gt;  it_final-bukrs  = it_bseg-bukrs.&lt;/P&gt;&lt;P&gt;  it_final-blart = it_final-blart.&lt;/P&gt;&lt;P&gt;  APPEND it_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WIth Regards&lt;/P&gt;&lt;P&gt;Vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Aug 2008 07:51:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-class/m-p/4377692#M1041539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-23T07:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-class/m-p/4377693#M1041540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Please rewrite the below code to get the output using only ALV class.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How much buks you will give for rewriting your code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/wiki?path=/display/abap/class%2balv" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/wiki?path=/display/abap/class%2balv&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="749056"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Aug 2008 07:56:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-class/m-p/4377693#M1041540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-23T07:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-class/m-p/4377694#M1041541</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;No one is here to write your code, you have to write your own.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow this link for Procedure to write ALV using Class concept-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[ALV using Class Concept|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/abap-7&lt;EM&gt;Steps&lt;/EM&gt;to&lt;EM&gt;create&lt;/EM&gt;OOPS&lt;EM&gt;ALV%28for&lt;/EM&gt;beginners%29&amp;amp;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Aug 2008 10:16:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-class/m-p/4377694#M1041541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-23T10:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-class/m-p/4377695#M1041542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow ... I've never seen some one so straight forward in asking people to do your job while you sit back and relax ...&lt;/P&gt;&lt;P&gt;As Amit said ... So how much do I get paid !! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dude... If you try yourself ... you will learn something .. &lt;/P&gt;&lt;P&gt;If you take this approach .. then I don't think you will ever learn ABAP !! &lt;/P&gt;&lt;P&gt;An what will you tell your boss when he asks some questions back ?&lt;/P&gt;&lt;P&gt;And what if he is impressed and gives you another OO ALV report to write !! You will come back to SDN again !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well check out the some tutorials and code examples here ...&lt;/P&gt;&lt;P&gt;And then try it out yourself ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tutorials: &lt;A href="http://www.abaplearning.com/abap-tutorials" target="test_blank"&gt;http://www.abaplearning.com/abap-tutorials&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Examples: &lt;A href="http://www.abaplearning.com/abap-example-codes" target="test_blank"&gt;http://www.abaplearning.com/abap-example-codes&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And believe me ... there is nothing as pleasing when you see the output of your own written code... instead of running some one else's code !! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 05:12:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-class/m-p/4377695#M1041542</guid>
      <dc:creator>former_member69765</dc:creator>
      <dc:date>2008-08-25T05:12:37Z</dc:date>
    </item>
  </channel>
</rss>

