<?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 How we can update fields in PRPS table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-we-can-update-fields-in-prps-table/m-p/3004810#M710023</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a requirement like, need to update one field in PRPS table. Actually this table append with some Z - fields. I have to update one of the Z field for WBS level 1 value also sub levels i.e. level2 and level3   of respective WBS element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me int this. Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Nov 2007 08:52:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-07T08:52:13Z</dc:date>
    <item>
      <title>How we can update fields in PRPS table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-we-can-update-fields-in-prps-table/m-p/3004810#M710023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a requirement like, need to update one field in PRPS table. Actually this table append with some Z - fields. I have to update one of the Z field for WBS level 1 value also sub levels i.e. level2 and level3   of respective WBS element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me int this. Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2007 08:52:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-we-can-update-fields-in-prps-table/m-p/3004810#M710023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-07T08:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: How we can update fields in PRPS table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-we-can-update-fields-in-prps-table/m-p/3004811#M710024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report  ZUPDATE_PRPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: prps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter: p_wbs like prps-pspnr,&lt;/P&gt;&lt;P&gt;           p_value like prps-fakkz default 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_fakkz type prps-fakkz.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;*START-OF_SELECTION&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'CONVERSION_EXIT_ABPSP_INPUT'&lt;/P&gt;&lt;P&gt;     exporting&lt;/P&gt;&lt;P&gt;         input     = p_wbs&lt;/P&gt;&lt;P&gt;    importing&lt;/P&gt;&lt;P&gt;         output    = p_wbs&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;         not_found = 1&lt;/P&gt;&lt;P&gt;         others    = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single fakkz&lt;/P&gt;&lt;P&gt;  into wa_fakkz&lt;/P&gt;&lt;P&gt;  from prps&lt;/P&gt;&lt;P&gt; where pspnr eq p_wbs.&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;   update prps set fakkz = p_value where PSPNR eq p_wbs.&lt;/P&gt;&lt;P&gt;   if p_value is initial.&lt;/P&gt;&lt;P&gt;     message i999(za) with 'Billing element field has been unchecked'.&lt;/P&gt;&lt;P&gt;   else.&lt;/P&gt;&lt;P&gt;     message i999(za) with 'Billing element field has been checked'.&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;  message i999(za) with 'WBS element not found'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward point if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2007 09:02:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-we-can-update-fields-in-prps-table/m-p/3004811#M710024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-07T09:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: How we can update fields in PRPS table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-we-can-update-fields-in-prps-table/m-p/3004812#M710025</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;Check transactions CJ11, CJ12 and CJ13.. &lt;/P&gt;&lt;P&gt;Check if one of the below exits are useful esp ones in bold&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CNEX0004  PS: Customer specific fields standard WBS element&lt;/P&gt;&lt;P&gt;CNEX0007  PS customer specific fields WBS element&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;CNEX0012  Derive external network number from WBS number&lt;/P&gt;&lt;P&gt;CNEX0033  WBS: Predefine Search and Replace String&lt;/P&gt;&lt;P&gt;IWO10010  Maint. order: Cust. enhancement for determining WBS ele&lt;/P&gt;&lt;P&gt;MBCF0006  Customer function for WBS element&lt;/P&gt;&lt;P&gt;PCSD0008  WBS BOM: Customer-specific explosion for creating&lt;/P&gt;&lt;P&gt;PCSD0009  Order/WBS BOM, determine URL page&lt;/P&gt;&lt;P&gt;PCSD0010  Order/WBS BOM, determine explosion date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Arun Nair&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2007 09:04:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-we-can-update-fields-in-prps-table/m-p/3004812#M710025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-07T09:04:16Z</dc:date>
    </item>
  </channel>
</rss>

