<?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 Reading Posting Documents in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-posting-documents/m-p/935436#M61858</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;is there anyway to read posting documents in CO?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if so can someone point me in the right direction on how to do this from a programming aspect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP reads them through transaction pcp0, I was wondering how I could do this through a programming aspect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Jul 2005 15:44:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-07-28T15:44:48Z</dc:date>
    <item>
      <title>Reading Posting Documents</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-posting-documents/m-p/935436#M61858</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;is there anyway to read posting documents in CO?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if so can someone point me in the right direction on how to do this from a programming aspect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP reads them through transaction pcp0, I was wondering how I could do this through a programming aspect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2005 15:44:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-posting-documents/m-p/935436#M61858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-28T15:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Posting Documents</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-posting-documents/m-p/935437#M61859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could do a SQL trace on transaction pcp0.  This will tell you the tables that it is hitting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2005 15:46:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-posting-documents/m-p/935437#M61859</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-28T15:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Posting Documents</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-posting-documents/m-p/935438#M61860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the following tables in these select statements.  These statements I pulled directly out of that transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


  SELECT PEVST~TYPE PEVST~RUNID PEVST~NAME PEVST~SIMU H1~STATUS
         H2~CREATOR H2~CREADATE H2~CREATIME
         INTO CORRESPONDING FIELDS OF TABLE RUNTAB
&amp;lt;b&amp;gt;         FROM PEVST JOIN PEVSH AS H1 ON  H1~TYPE  = PEVST~TYPE
                                     AND H1~RUNID = PEVST~RUNID
                    JOIN PEVSH AS H2 ON  H2~TYPE  = PEVST~TYPE
                                     AND H2~RUNID = PEVST~RUNID&amp;lt;/b&amp;gt;
        WHERE PEVST~TYPE IN VALID_TYPES
         AND   H1~ACTUAL = 'X'
         AND   H2~SEQNO = '00'
         ORDER BY PEVST~TYPE PEVST~RUNID.

  SELECT TYPE RUNID ATTR VALUE
         INTO TABLE ATTRIBUTES
&amp;lt;b&amp;gt;         FROM PEVAT&amp;lt;/b&amp;gt;
         WHERE TYPE IN VALID_TYPES
*        AND   ATTR IN ('AKPER', 'SPECRUN')               "PF_2002/05/21
*        new attribute BEGDAENDDA: Only used by type PF
         AND   ATTR IN ('AKPER', 'SPECRUN', 'BEGDAENDDA') "PF_2002/05/21
         AND   ID = '00'
         ORDER BY TYPE RUNID.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rich Heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2005 15:49:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-posting-documents/m-p/935438#M61860</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-28T15:49:34Z</dc:date>
    </item>
  </channel>
</rss>

