<?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: describe statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/describe-statement/m-p/3189628#M759793</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi priya latha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have gone through it.&lt;/P&gt;&lt;P&gt;can u tell me what is the purpose of it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds &lt;/P&gt;&lt;P&gt;Chalam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Dec 2007 11:19:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-07T11:19:47Z</dc:date>
    <item>
      <title>describe statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/describe-statement/m-p/3189626#M759791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to all Guru's,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anybody explain me how this below syntax get works?&lt;/P&gt;&lt;P&gt;i am not getting the flow of this program?&lt;/P&gt;&lt;P&gt;so please can anybody explain me the flow of this particular code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE FIELD dobj INTO td. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM DESCTEST. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF name_struc, &lt;/P&gt;&lt;P&gt;         first  TYPE c LENGTH 20, &lt;/P&gt;&lt;P&gt;         last   TYPE c LENGTH 20, &lt;/P&gt;&lt;P&gt;       END OF name_struc, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       BEGIN OF absence_time_struc, &lt;/P&gt;&lt;P&gt;         day        TYPE d, &lt;/P&gt;&lt;P&gt;         from       TYPE t, &lt;/P&gt;&lt;P&gt;         to         TYPE t, &lt;/P&gt;&lt;P&gt;       END OF absence_time_struc, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       phone_number TYPE n LENGTH 20, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       BEGIN OF employee_struc, &lt;/P&gt;&lt;P&gt;         id         LIKE sbook-customid, &lt;/P&gt;&lt;P&gt;         name       TYPE name_struc, &lt;/P&gt;&lt;P&gt;         BEGIN OF address, &lt;/P&gt;&lt;P&gt;           street  TYPE c LENGTH 30, &lt;/P&gt;&lt;P&gt;           zipcode TYPE n LENGTH 4, &lt;/P&gt;&lt;P&gt;           place   TYPE c LENGTH 30, &lt;/P&gt;&lt;P&gt;         END OF address, &lt;/P&gt;&lt;P&gt;         salary_per_month TYPE p LENGTH 10 DECIMALS 3, &lt;/P&gt;&lt;P&gt;         absent           TYPE STANDARD TABLE OF absence_time_struc &lt;/P&gt;&lt;P&gt;                               WITH NON-UNIQUE DEFAULT KEY, &lt;/P&gt;&lt;P&gt;         phone            TYPE STANDARD TABLE OF phone_number &lt;/P&gt;&lt;P&gt;                               WITH NON-UNIQUE DEFAULT KEY, &lt;/P&gt;&lt;P&gt;       END OF employee_struc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can determine the structure of the type EMPLOYEE_STRUC by collecting the type group SYDES as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: sydes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: employee TYPE employee_struc, &lt;/P&gt;&lt;P&gt;      td       TYPE sydes_desc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE FIELD employee INTO td. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following table shows a few selected columns of the type description table TD-TYPES. For a better overview, the names of the columns IDX_NAME, IDX_UERR_TYPE and IDX_EDIT_MASK have been shortened: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    |FROM| TO |BACK|NAME|UTYP|EMSK|TYPE &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;|--&lt;DEL&gt;|&lt;/DEL&gt;&lt;DEL&gt;|&lt;/DEL&gt;&lt;DEL&gt;|&lt;/DEL&gt;&lt;DEL&gt;|&lt;/DEL&gt;&lt;DEL&gt;|&lt;/DEL&gt;&lt;DEL&gt;|&lt;/DEL&gt;-- &lt;/P&gt;&lt;P&gt;  1 |  2 |  7 |  0 |  0 |  2 |  0 |  v &lt;/P&gt;&lt;P&gt;  2 |  0 |  0 |  1 |  6 |  0 |  4 |  N &lt;/P&gt;&lt;P&gt;  3 |  8 |  9 |  1 |  7 |  5 |  0 |  u &lt;/P&gt;&lt;P&gt;  4 | 10 | 12 |  1 |  8 |  0 |  0 |  u &lt;/P&gt;&lt;P&gt;  5 |  0 |  0 |  1 |  9 |  0 |  0 |  P &lt;/P&gt;&lt;P&gt;  6 | 13 | 13 |  1 | 11 |  0 |  0 |  h &lt;/P&gt;&lt;P&gt;  7 | 17 | 17 |  1 | 12 |  0 |  0 |  h &lt;/P&gt;&lt;P&gt;  8 |  0 |  0 |  3 | 13 |  0 |  0 |  C &lt;/P&gt;&lt;P&gt;  9 |  0 |  0 |  3 | 14 |  0 |  0 |  C &lt;/P&gt;&lt;P&gt;10 |  0 |  0 |  4 | 15 |  0 |  0 |  C &lt;/P&gt;&lt;P&gt;11 |  0 |  0 |  4 | 16 |  0 |  0 |  N &lt;/P&gt;&lt;P&gt;12 |  0 |  0 |  4 | 17 |  0 |  0 |  C &lt;/P&gt;&lt;P&gt;13 | 14 | 16 |  6 |  0 | 18 |  0 |  u &lt;/P&gt;&lt;P&gt;14 |  0 |  0 | 13 | 20 |  0 |  0 |  D &lt;/P&gt;&lt;P&gt;15 |  0 |  0 | 13 | 21 |  0 |  0 |  T &lt;/P&gt;&lt;P&gt;16 |  0 |  0 | 13 | 22 |  0 |  0 |  T &lt;/P&gt;&lt;P&gt;17 |  0 |  0 |  7 |  0 |  0 |  0 |  N &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Priyalatha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 09:25:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/describe-statement/m-p/3189626#M759791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T09:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: describe statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/describe-statement/m-p/3189627#M759792</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;this is no "flowing code". It is just declaration. The only working statement is "DESCRIBE", which delivers the attributes of the named data object (field or table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;P&gt;Jo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 10:45:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/describe-statement/m-p/3189627#M759792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T10:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: describe statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/describe-statement/m-p/3189628#M759793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi priya latha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have gone through it.&lt;/P&gt;&lt;P&gt;can u tell me what is the purpose of it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds &lt;/P&gt;&lt;P&gt;Chalam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 11:19:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/describe-statement/m-p/3189628#M759793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T11:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: describe statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/describe-statement/m-p/3189629#M759794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Simha chalam ,&lt;/P&gt;&lt;P&gt;i want to know the significance of that describe statement statement so i took that code.&lt;/P&gt;&lt;P&gt;can u tel me the flow of that describe statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 12:32:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/describe-statement/m-p/3189629#M759794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T12:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: describe statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/describe-statement/m-p/3189630#M759795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE FIELD f INTO td. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here your field td is of type sydec_desc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This structure has two components Types and Names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In This &amp;lt;b&amp;gt;Types&amp;lt;/b&amp;gt; stores the components of the field. The beginning and end of the line area representing the components are stored in TYPES-FROM and TYPES-TO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Names diff details about the Names, IDX_Name, Length, Decimals etc etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more details press F1 on describe. You should get the details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Lalit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Lalit Kabra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 13:31:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/describe-statement/m-p/3189630#M759795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T13:31:24Z</dc:date>
    </item>
  </channel>
</rss>

