<?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: changing Fields in LDB..? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-fields-in-ldb/m-p/2152281#M454430</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vamshi,&lt;/P&gt;&lt;P&gt;Search for other HR Report Cateogry in that PNP .If you find it's OK.&lt;/P&gt;&lt;P&gt;Even you can modify that report category by pressing Search Report category..displays the screen, in that you can make the unwanted field to display.&lt;/P&gt;&lt;P&gt;other wise create you own Report category with those  with Pernr and KOSTL fields and use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But with PNP  Even if Personal area is there along with Personal Number and Cost center on selection screen in what way it matters? I mean let it be there on selection screen.&lt;/P&gt;&lt;P&gt;I feel that it will not be a problem at all.&lt;/P&gt;&lt;P&gt;But the client still insists you can create your own and use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ANJI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Anji Reddy Vangala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Apr 2007 09:54:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-12T09:54:41Z</dc:date>
    <item>
      <title>changing Fields in LDB..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-fields-in-ldb/m-p/2152278#M454427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI experts please helpme.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to our requirement selection screen should display &amp;#147;Cost center&amp;#148; &amp;amp; &amp;#147;Personnel Number&amp;#148;, for this I&amp;#146;m using LDB PNP. &lt;/P&gt;&lt;P&gt;Using Attributes&amp;amp;#61664; HR report category, created my own report category with the name 1SFPWs for Master data Info types, &lt;/P&gt;&lt;P&gt;It is showing in selection screen, &amp;#147;Personnel Number&amp;#148;, Payroll area&amp;#148; &amp;amp; &amp;#147;Cost center&amp;#148;, but I require only  &amp;#147;Personnel number&amp;#148; &amp;amp; &amp;#147;Cost center&amp;#148; only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 09:32:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-fields-in-ldb/m-p/2152278#M454427</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T09:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: changing Fields in LDB..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-fields-in-ldb/m-p/2152279#M454428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can do it using selction-screen output event.&lt;/P&gt;&lt;P&gt;Check the screen attribute in debugging, like group, field name etc, and use the same to disable the elements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample code is below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF SCREEN-GROUP3 = 'IXS'.&lt;/P&gt;&lt;P&gt;      SCREEN-ACTIVE = '0'.&lt;/P&gt;&lt;P&gt;      SCREEN-INVISIBLE = 1.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      CONTINUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ELSEIF SCREEN-GROUP4 = '023'.&lt;/P&gt;&lt;P&gt;      SCREEN-ACTIVE = '0'.&lt;/P&gt;&lt;P&gt;      SCREEN-INVISIBLE = 1.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      CONTINUE.&lt;/P&gt;&lt;P&gt;    ELSEIF SCREEN-NAME = 'DD_BUKRS-LOW'.&lt;/P&gt;&lt;P&gt;      SCREEN-REQUIRED = '1'.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      CONTINUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ELSEIF SCREEN-NAME = 'DD_BUKRS-HIGH'.&lt;/P&gt;&lt;P&gt;      SCREEN-ACTIVE = '0'.&lt;/P&gt;&lt;P&gt;      SCREEN-INVISIBLE = 1.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      CONTINUE.&lt;/P&gt;&lt;P&gt;    ELSEIF ( SCREEN-GROUP3 = 'VPU'&lt;/P&gt;&lt;P&gt;        AND SCREEN-GROUP4 = '007' ).&lt;/P&gt;&lt;P&gt;      SCREEN-ACTIVE = '0'.&lt;/P&gt;&lt;P&gt;      SCREEN-INVISIBLE = 1.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      CONTINUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ELSEIF SCREEN-NAME = 'DUEDATE1'.&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      CONTINUE.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 09:37:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-fields-in-ldb/m-p/2152279#M454428</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T09:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: changing Fields in LDB..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-fields-in-ldb/m-p/2152280#M454429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vamsi&lt;/P&gt;&lt;P&gt;as you are using your own report category you can select the number of feilds you need on your selection screen.&lt;/P&gt;&lt;P&gt;from SPRO when you go the report category screen double click on  ur report category, now you will see &amp;lt;b&amp;gt;Allowable selection&amp;lt;/b&amp;gt; at the left hand side double click on it and you will see a screen where all the selection screen feilds are dipslayed&lt;/P&gt;&lt;P&gt;just you need to tick the checkbox right beside the field you want to see on the screen rest you can leave like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps you solve ur problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Zarina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 09:53:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-fields-in-ldb/m-p/2152280#M454429</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T09:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: changing Fields in LDB..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-fields-in-ldb/m-p/2152281#M454430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vamshi,&lt;/P&gt;&lt;P&gt;Search for other HR Report Cateogry in that PNP .If you find it's OK.&lt;/P&gt;&lt;P&gt;Even you can modify that report category by pressing Search Report category..displays the screen, in that you can make the unwanted field to display.&lt;/P&gt;&lt;P&gt;other wise create you own Report category with those  with Pernr and KOSTL fields and use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But with PNP  Even if Personal area is there along with Personal Number and Cost center on selection screen in what way it matters? I mean let it be there on selection screen.&lt;/P&gt;&lt;P&gt;I feel that it will not be a problem at all.&lt;/P&gt;&lt;P&gt;But the client still insists you can create your own and use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ANJI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Anji Reddy Vangala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 09:54:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-fields-in-ldb/m-p/2152281#M454430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T09:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: changing Fields in LDB..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-fields-in-ldb/m-p/2152282#M454431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I&amp;#146;m using &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pa0015-pernr, &lt;/P&gt;&lt;P&gt;pa0015-begda,&lt;/P&gt;&lt;P&gt;pa0015-betrg &lt;/P&gt;&lt;P&gt;pa0015-lgart.&lt;/P&gt;&lt;P&gt;Pa0001-pernr, &lt;/P&gt;&lt;P&gt;pa0001-kostl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per our requirement I need to fetch the data based on the cost center. I&amp;#146;m using LDB pnp, can you please help me for writing the querie to fetch the data. at least can you give idea how to proceed. &lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 11:35:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-fields-in-ldb/m-p/2152282#M454431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T11:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: changing Fields in LDB..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-fields-in-ldb/m-p/2152283#M454432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vamsi&lt;/P&gt;&lt;P&gt;i donno wat feilds you are going to fetch but as you said while using the LDB &lt;/P&gt;&lt;P&gt;you need to define the node PERNR&lt;/P&gt;&lt;P&gt;then in the start of selection write&lt;/P&gt;&lt;P&gt;GET PERNR&lt;/P&gt;&lt;P&gt;this stament gets you the record of teh pernr you will give in the selection screen&lt;/P&gt;&lt;P&gt;and most importantly you will have to end the start of selection with end of selection.&lt;/P&gt;&lt;P&gt;Start-of-selection.&lt;/P&gt;&lt;P&gt;GET PERNR&lt;/P&gt;&lt;P&gt;PErform get_data.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  all ur select queires.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may also have to sue few funciton modules if you have to get data from Results table i.e RT tabel for payroll results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so lemme know wat all data you are displaying in the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Zarina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 11:51:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-fields-in-ldb/m-p/2152283#M454432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T11:51:01Z</dc:date>
    </item>
  </channel>
</rss>

