<?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: Structure defination inside include in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-defination-inside-include/m-p/8465427#M1650829</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Bruno,&lt;/P&gt;&lt;P&gt;As this should be a genric approach so i can't do like this is there any RFC or table which  maintain these values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rg,&lt;/P&gt;&lt;P&gt;Anuj jain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jan 2012 12:05:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-01-17T12:05:53Z</dc:date>
    <item>
      <title>Structure defination inside include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-defination-inside-include/m-p/8465425#M1650827</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;Is there any dynamic way to get the all structure name which are defined  inside  any include?&lt;/P&gt;&lt;P&gt;Like &lt;/P&gt;&lt;P&gt;In include RPC2b200 i want to get the name of all  INCLUDE STRUCTURE  like &lt;STRONG&gt;PC205&lt;/STRONG&gt;,PC25X.PC20E.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anuj jain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2012 10:41:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-defination-inside-include/m-p/8465425#M1650827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-17T10:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: Structure defination inside include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-defination-inside-include/m-p/8465426#M1650828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuj Jain,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try the code below that is just one example of the include:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  TYPES: lty_code TYPE string.

  DATA:
        lt_code TYPE STANDARD TABLE OF lty_code.

  FIELD-SYMBOLS:
        &amp;lt;lf_code&amp;gt; LIKE LINE OF lt_code.

  READ REPORT 'RPC2RX02' INTO lt_code.

  loop at lt_code assigning &amp;lt;lf_code&amp;gt;.
   "IMPLEMENT YOUR LOGIC FOR SEARCH: INCLUDE STRUCTURE
  endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Bruno Xavier.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2012 11:46:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-defination-inside-include/m-p/8465426#M1650828</guid>
      <dc:creator>brunobex</dc:creator>
      <dc:date>2012-01-17T11:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Structure defination inside include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-defination-inside-include/m-p/8465427#M1650829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Bruno,&lt;/P&gt;&lt;P&gt;As this should be a genric approach so i can't do like this is there any RFC or table which  maintain these values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rg,&lt;/P&gt;&lt;P&gt;Anuj jain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2012 12:05:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-defination-inside-include/m-p/8465427#M1650829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-17T12:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Structure defination inside include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-defination-inside-include/m-p/8465428#M1650830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;also giving you my actual requirement  i want to extract cluster data for pcl2 table for that i want to know the import structures of every relid(xx).which are present in specific include.&lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;IMPORT &lt;STRONG&gt;TABLE1 ,TABLE2&lt;/STRONG&gt; FROM DATABASE PCLn(xx) ID xx-KEY.&lt;/P&gt;&lt;P&gt;Rg,&lt;/P&gt;&lt;P&gt;Anuj jain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2012 12:09:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-defination-inside-include/m-p/8465428#M1650830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-17T12:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Structure defination inside include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-defination-inside-include/m-p/8465429#M1650831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use fm PYXX_READ_PAYROLL_RESULT to import the payroll results.&lt;/P&gt;&lt;P&gt;changing parameter RESULT is of type PAY99_RESULT.&lt;/P&gt;&lt;P&gt;there you can find all tables and structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;alternatively you could use GET PAYROLL event of logocal database PNP. See documentation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2012 15:05:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-defination-inside-include/m-p/8465429#M1650831</guid>
      <dc:creator>former_member226519</dc:creator>
      <dc:date>2012-01-17T15:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Structure defination inside include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-defination-inside-include/m-p/8465430#M1650832</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;Is there any way to get the  Personnel Area (T500P&lt;SUB&gt;PERSA) related to any cluster id (PCL2&lt;/SUB&gt;RELID)of pcl2 table?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anuj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2012 11:51:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-defination-inside-include/m-p/8465430#M1650832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-19T11:51:39Z</dc:date>
    </item>
  </channel>
</rss>

