<?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: Reports Specification !!!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports-specification/m-p/3258172#M778274</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK.. try below things.&lt;/P&gt;&lt;P&gt;1. Get all the material based on the selection screen parameters from MARA and description from MAKT and show it.&lt;/P&gt;&lt;P&gt;2. Get the documents from BKPF and all the line items based on this from BSEG and show in the report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create these two.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Jan 2008 02:48:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-11T02:48:13Z</dc:date>
    <item>
      <title>Reports Specification !!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports-specification/m-p/3258168#M778270</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;I am trying to learn reports, can anyone of you please suggest me few simple simple reports to start with...I mean I don't want standard reports.. I just want you guys to give me some specification and then I will try to develop those reports on my own and then will ask you if I get stuck. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanksm &lt;/P&gt;&lt;P&gt;Rajeev !!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 02:34:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports-specification/m-p/3258168#M778270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T02:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reports Specification !!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports-specification/m-p/3258169#M778271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate ur will to learn reports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sending a sample report program which consists of all the various types of data declarations of variables. Hope this will help u a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Report Z_OOABAP18 *&lt;/P&gt;&lt;P&gt;*&amp;amp; *&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; *&lt;/P&gt;&lt;P&gt;*&amp;amp; *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;REPORT Z_OOABAP18 .CLASS lcl_employee DEFINITION.&lt;P&gt;&lt;/P&gt;&lt;P&gt;PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The public section is accesible from outside &lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;TYPES:&lt;/P&gt;&lt;P&gt;BEGIN OF t_employee,&lt;/P&gt;&lt;P&gt;no TYPE i,&lt;/P&gt;&lt;P&gt;name TYPE string,&lt;/P&gt;&lt;P&gt;END OF t_employee.&lt;/P&gt;&lt;P&gt;METHODS:&lt;/P&gt;&lt;P&gt;constructor&lt;/P&gt;&lt;P&gt;IMPORTING im_employee_no TYPE i&lt;/P&gt;&lt;P&gt;im_employee_name TYPE string,&lt;/P&gt;&lt;P&gt;display_employee.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Class methods are global for all instances &lt;/P&gt;&lt;P&gt;CLASS-METHODS: display_no_of_employees.&lt;/P&gt;&lt;P&gt;PROTECTED SECTION.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The protecetd section is accesible from the class and its subclasses &lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Class data are global for all instances &lt;/P&gt;&lt;P&gt;CLASS-DATA: g_no_of_employees TYPE i.&lt;/P&gt;&lt;P&gt;PRIVATE SECTION.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The private section is only accesible from within the classs &lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;DATA: g_employee TYPE t_employee.&lt;/P&gt;&lt;P&gt;ENDCLASS.&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;LCL Employee - Implementation &lt;/P&gt;&lt;P&gt;CLASS lcl_employee IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;METHOD constructor.&lt;/P&gt;&lt;P&gt;g_employee-no = im_employee_no.&lt;/P&gt;&lt;P&gt;g_employee-name = im_employee_name.&lt;/P&gt;&lt;P&gt;g_no_of_employees = g_no_of_employees + 1.&lt;/P&gt;&lt;P&gt;ENDMETHOD.&lt;/P&gt;&lt;P&gt;METHOD display_employee.&lt;/P&gt;&lt;P&gt;WRITE:/ 'Employee', g_employee-no, g_employee-name.&lt;/P&gt;&lt;P&gt;ENDMETHOD.&lt;/P&gt;&lt;P&gt;METHOD display_no_of_employees.&lt;/P&gt;&lt;P&gt;WRITE: / 'Number of employees is:', g_no_of_employees.&lt;/P&gt;&lt;P&gt;ENDMETHOD.&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R E P O R T &lt;/P&gt;&lt;P&gt;*********************************************************************&lt;/P&gt;&lt;P&gt;DATA: g_employee1 TYPE REF TO lcl_employee,&lt;/P&gt;&lt;P&gt;g_employee2 TYPE REF TO lcl_employee.&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;CREATE OBJECT g_employee1&lt;/P&gt;&lt;P&gt;EXPORTING im_employee_no = 1&lt;/P&gt;&lt;P&gt;im_employee_name = 'Vikram.C'.&lt;/P&gt;&lt;P&gt;CREATE OBJECT g_employee2&lt;/P&gt;&lt;P&gt;EXPORTING im_employee_no = 2&lt;/P&gt;&lt;P&gt;im_employee_name = 'Raghava.V'.&lt;/P&gt;&lt;P&gt;CALL METHOD g_employee1-&amp;gt;display_employee.&lt;/P&gt;&lt;P&gt;CALL METHOD g_employee2-&amp;gt;display_employee.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Hema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 02:40:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports-specification/m-p/3258169#M778271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T02:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: Reports Specification !!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports-specification/m-p/3258170#M778272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of just writing some report I better suggest you go to transaction ABAPDOCU and look for the sample code and create the programs from referrring them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 02:41:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports-specification/m-p/3258170#M778272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T02:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Reports Specification !!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports-specification/m-p/3258171#M778273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply guys...actually what I want is ...if u guys can ask me to create report with some specification!!! I mean I don't want sample codes !!!! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will be great if u can just tell me that look at these tables and retrieve this information !!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrads, &lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 02:44:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports-specification/m-p/3258171#M778273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T02:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: Reports Specification !!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports-specification/m-p/3258172#M778274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK.. try below things.&lt;/P&gt;&lt;P&gt;1. Get all the material based on the selection screen parameters from MARA and description from MAKT and show it.&lt;/P&gt;&lt;P&gt;2. Get the documents from BKPF and all the line items based on this from BSEG and show in the report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create these two.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 02:48:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports-specification/m-p/3258172#M778274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T02:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: Reports Specification !!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports-specification/m-p/3258173#M778275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Atish, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for this, I have already created the second report but I will work on the first one. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Rajeev !!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 02:50:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports-specification/m-p/3258173#M778275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T02:50:19Z</dc:date>
    </item>
  </channel>
</rss>

