<?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 Purchase Order Printing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900675#M1481237</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Good day to all, I just to ask some help on this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   1. What table in SAP that tells if a PO is already printed?&lt;/P&gt;&lt;P&gt;   2. Can i use ABAP program to tag a PO to printed? Is there any BAPI for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently im developing RFC programs, and I really need this, I have no idea where these tables and how to update this using ABAP,Kindly give me snippet of codes if you have some, any help will be greatly appreciated, thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 May 2010 03:36:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-07T03:36:48Z</dc:date>
    <item>
      <title>Purchase Order Printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900675#M1481237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Good day to all, I just to ask some help on this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   1. What table in SAP that tells if a PO is already printed?&lt;/P&gt;&lt;P&gt;   2. Can i use ABAP program to tag a PO to printed? Is there any BAPI for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently im developing RFC programs, and I really need this, I have no idea where these tables and how to update this using ABAP,Kindly give me snippet of codes if you have some, any help will be greatly appreciated, thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 03:36:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900675#M1481237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-07T03:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase Order Printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900676#M1481238</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;You have to get the information from NAST table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Select kappl objkey kschl nacha vstat
from nast
where kappl = 'EF'
and     objkey = &amp;lt;po number&amp;gt;
and     kschl = &amp;lt;print output type/message type&amp;gt;
and     nacha = '1'    "print output"
and     vstat = '1'      "Ouptut successfully generated"

if sy-subrc eq 0.
  Output generated.
else.
 output not generated.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 04:57:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900676#M1481238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-07T04:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase Order Printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900677#M1481239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinod thank you very much for the info, I will try this, but how about tagging a PO number to printed using ABAP is this possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 05:09:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900677#M1481239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-07T05:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase Order Printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900678#M1481240</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;I don't think there is any standard field available to store the printing indicator. You can use any unused field for storing the custom information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 05:38:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900678#M1481240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-07T05:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase Order Printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900679#M1481241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;okey, thank you very much for the information. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 05:47:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900679#M1481241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-07T05:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase Order Printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900680#M1481242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;okey, thank you very much for the information. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 05:47:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900680#M1481242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-07T05:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase Order Printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900681#M1481243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;problem solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 08:39:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-printing/m-p/6900681#M1481243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-07T08:39:41Z</dc:date>
    </item>
  </channel>
</rss>

