<?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 SAP std Structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-std-structure/m-p/4818246#M1127652</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 have to create an ALV report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;among all the standard tables I have some standard SAP defined structures for eg RIHSTPO,MINST and many more...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding DB table like mara i know that I have to create a structure, internal table and WA and then fetch the data from DB table and populate ITAB for generating ALV  etc etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now please tell me when I have Structure and not DB table, How to display data? for eg, in RIHSTPO i have to display MENGE as a column in ALV, how can I do so?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my selection screen also I have to create a select-option field of type structure, can I write, select-options: klart for rmclf-klart . ? in this case how to declare the structure, can declare same as table? i.e. TABLES: rmclf  or declaration for structure is different ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain the procedure with small sudocode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Dec 2008 06:56:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-05T06:56:01Z</dc:date>
    <item>
      <title>SAP std Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-std-structure/m-p/4818246#M1127652</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 have to create an ALV report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;among all the standard tables I have some standard SAP defined structures for eg RIHSTPO,MINST and many more...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding DB table like mara i know that I have to create a structure, internal table and WA and then fetch the data from DB table and populate ITAB for generating ALV  etc etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now please tell me when I have Structure and not DB table, How to display data? for eg, in RIHSTPO i have to display MENGE as a column in ALV, how can I do so?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my selection screen also I have to create a select-option field of type structure, can I write, select-options: klart for rmclf-klart . ? in this case how to declare the structure, can declare same as table? i.e. TABLES: rmclf  or declaration for structure is different ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain the procedure with small sudocode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2008 06:56:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-std-structure/m-p/4818246#M1127652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-05T06:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAP std Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-std-structure/m-p/4818247#M1127653</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;Structures are just a layout and doesnot contains any data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are asking about creating a internal table which is type a already existing structure in DDIC, you can just create it just like you create a internal table like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: t_table type standard table of  &amp;lt;structure_name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also create a structure in your own program as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure Declaration.&lt;/P&gt;&lt;P&gt;types: begin of ty_struc,&lt;/P&gt;&lt;P&gt;             matnr type matnr,&lt;/P&gt;&lt;P&gt;             -&lt;/P&gt;&lt;HR originaltext="-------------------" /&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;            -&lt;/P&gt;&lt;HR originaltext="--------------------" /&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;          end of ty_struc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal table Declaration.&lt;/P&gt;&lt;P&gt;data: t_table type standard table of ty_struc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, you can declare the select option i.e. selection screen parameters using the fields of structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jayant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2008 07:08:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-std-structure/m-p/4818247#M1127653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-05T07:08:25Z</dc:date>
    </item>
  </channel>
</rss>

