<?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: regarding the get pernr function in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-get-pernr-function/m-p/1458260#M216474</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Generally, authorization checks in reporting do not differ from those in the transactions. Since data access in reporting is always of the read type, the system checks for a read authorization; this means the authorization group must be R or *.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In some situations, you may want to use a simplified authorization check when running reports. The object RPABAP is required for the check as well as the object RPORGIN ; if these authorizations are available, a simpler and faster check is performed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gunjan&lt;/P&gt;&lt;P&gt;If the report cannot read certain personnel data due to lack of authorization, the data for these persons is not processed at the GET PERNR event. A note appears at the end of the list stating the number of persons who were skipped due to lack of authorization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Gunjan Kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 25 Jun 2006 09:50:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-25T09:50:08Z</dc:date>
    <item>
      <title>regarding the get pernr function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-get-pernr-function/m-p/1458258#M216472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;          Got to know that when we use get pernr it automatically checks for the autherization on pernrs to view data.&lt;/P&gt;&lt;P&gt;    Would like to know who all have access to see which pernrs? Can i get any ideas on this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;/P&gt;&lt;P&gt;Abhi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Jun 2006 09:38:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-get-pernr-function/m-p/1458258#M216472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-25T09:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: regarding the get pernr function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-get-pernr-function/m-p/1458259#M216473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Triggers the associated events when data is read in an executable (type 1) program using a logical database. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;node is a node in the logical database that is assigned to the report (type 1 program) in the program attributes. You must declare the node in the report using the NODES statement (or the TABLES statement, if the node is of the type "table"). &lt;/P&gt;&lt;P&gt;The node node corresponds to a data object of the same name. &lt;/P&gt;&lt;P&gt;node is available for processing during the flow of the logical database. Moreover, you can also make reference to the fields from the node that lie on the access path for node in the logical database associated with the report - unless the node is of the dynamic dictionary type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes &lt;/P&gt;&lt;P&gt;You can use the event "GET dbtab." only once in the report. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The GET events are implemented internally as FORM routines. This makes all data objects declared with DATA local, that is, they are only recognized and addressable within the event. This also applies to AT SELECTION-SCREEN .... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The logic is somewhat different for nodes of the dynamic dictionary type. You must declare these nodes in the report using the NODES node TYPE type statement. In this case, type a dictionary type from the logical database for the node node - that is, the type of the data object node assigned to the node node can differ in different reports. In this case, the data object node is local to the -GET event and has the structure type. Outside the -GET event, a (global) data object node also exists and has the static type assigned to the node. The actual data is, however, returned in the local field node and is available only within the -GET event. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;The program uses the logical database F1S which has a structure where the table BOOKING appears below the table FLIGHT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NODES: SFLIGHT, SBOOK. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET SFLIGHT. &lt;/P&gt;&lt;P&gt;  WRITE: SFLIGHT-CARRID, &lt;/P&gt;&lt;P&gt;         SFLIGHT-CONNID, &lt;/P&gt;&lt;P&gt;         SLFIGHT-FLDATE, &lt;/P&gt;&lt;P&gt;         SFLIGHT-PLANETYPE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET SBOOK. &lt;/P&gt;&lt;P&gt;  WRITE: SBOOK-BOOKID, &lt;/P&gt;&lt;P&gt;         SBOOK-CUSTOMID, &lt;/P&gt;&lt;P&gt;         SBOOK-ORDER_DATE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Jun 2006 09:48:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-get-pernr-function/m-p/1458259#M216473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-25T09:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: regarding the get pernr function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-get-pernr-function/m-p/1458260#M216474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Generally, authorization checks in reporting do not differ from those in the transactions. Since data access in reporting is always of the read type, the system checks for a read authorization; this means the authorization group must be R or *.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In some situations, you may want to use a simplified authorization check when running reports. The object RPABAP is required for the check as well as the object RPORGIN ; if these authorizations are available, a simpler and faster check is performed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gunjan&lt;/P&gt;&lt;P&gt;If the report cannot read certain personnel data due to lack of authorization, the data for these persons is not processed at the GET PERNR event. A note appears at the end of the list stating the number of persons who were skipped due to lack of authorization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Gunjan Kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Jun 2006 09:50:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-get-pernr-function/m-p/1458260#M216474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-25T09:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: regarding the get pernr function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-get-pernr-function/m-p/1458261#M216475</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;This link will solve all ur doubt..it completely explains the authorization concept in Get Pernr event:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/a8/b9b83b5b831f3be10000000a114084/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/a8/b9b83b5b831f3be10000000a114084/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gunjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Jun 2006 09:53:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-get-pernr-function/m-p/1458261#M216475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-25T09:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: regarding the get pernr function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-get-pernr-function/m-p/1458262#M216476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Request u to close the thread if ur query is answered .&lt;/P&gt;&lt;P&gt;if u r unable to view the flowchart ..give me ur id, i'll send it at the earliest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gunjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Jun 2006 10:07:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-get-pernr-function/m-p/1458262#M216476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-25T10:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: regarding the get pernr function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-get-pernr-function/m-p/1458263#M216477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for closing it after soooo long&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2006 12:39:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-get-pernr-function/m-p/1458263#M216477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-05T12:39:44Z</dc:date>
    </item>
  </channel>
</rss>

