<?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 Return code 8 on OPEN DATASET in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-8-on-open-dataset/m-p/1801692#M344136</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;i try to migrate a file with ISU-Migration workbench.&lt;/P&gt;&lt;P&gt;in the Display option I can see the file. All looks fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I press IMPORT I got the message "migration executed" but actually it did not read anysthing. So I debugged and came to the OPEN DATASET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There I get a sy-subrc of 8.&lt;/P&gt;&lt;P&gt;Do not remember what this means...probably the directory is protected or something...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Who knows?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Dec 2006 21:25:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-13T21:25:07Z</dc:date>
    <item>
      <title>Return code 8 on OPEN DATASET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-8-on-open-dataset/m-p/1801692#M344136</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;i try to migrate a file with ISU-Migration workbench.&lt;/P&gt;&lt;P&gt;in the Display option I can see the file. All looks fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I press IMPORT I got the message "migration executed" but actually it did not read anysthing. So I debugged and came to the OPEN DATASET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There I get a sy-subrc of 8.&lt;/P&gt;&lt;P&gt;Do not remember what this means...probably the directory is protected or something...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Who knows?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 21:25:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-8-on-open-dataset/m-p/1801692#M344136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-13T21:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: Return code 8 on OPEN DATASET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-8-on-open-dataset/m-p/1801693#M344137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems you have permission denied on the open dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before the open dataset, please use the function module 'AUTHORITY_CHECK_DATASET' to see if you really have the authorization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 21:27:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-8-on-open-dataset/m-p/1801693#M344137</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2006-12-13T21:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: Return code 8 on OPEN DATASET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-8-on-open-dataset/m-p/1801694#M344138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Thomas,&lt;/P&gt;&lt;P&gt;     hi thomas u can  do authority check as stated below..&lt;/P&gt;&lt;P&gt;if sy-subrc is 8 it means too many parameters (fields, values). Maximum allowed is 10. I have also added the other sy-subrc condition so that u can benifit...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     AUTHORITY-CHECK OBJECT object &lt;/P&gt;&lt;P&gt;    ID name1  FIELD f1 &lt;/P&gt;&lt;P&gt;    ID name2  FIELD f2 &lt;/P&gt;&lt;P&gt;    ... &lt;/P&gt;&lt;P&gt;    ID name10 FIELD f10. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object &lt;/P&gt;&lt;P&gt;Field which contains the name of the object for which the authorization is to be checked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;name1 ... &lt;/P&gt;&lt;P&gt;Fields which contain the names of the &lt;/P&gt;&lt;P&gt;name10 &lt;/P&gt;&lt;P&gt;authorization fields defined in the object. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;f1 ... &lt;/P&gt;&lt;P&gt;Fields which contain the values for which the &lt;/P&gt;&lt;P&gt;f10 &lt;/P&gt;&lt;P&gt;authorization is to be checked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AUTHORITY-CHECK checks for one object whether the user has an authorization that contains all values of f (see SAP authorization concept). &lt;/P&gt;&lt;P&gt;You must specify all authorizations for an object and a also a value for each ID (or DUMMY). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system checks the values for the IDs by AND-ing them together, i.e. all values must be part of an authorization assigned to the user. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a user has several authorizations for an object, the values are OR-ed together. This means that if the CHECK finds all the specified values in one authorization, the user can proceed. Only if none of the authorizations for a user contains all the required values is the user rejected. &lt;/P&gt;&lt;P&gt;If the return code value in SY-SUBRC is 0, the user has the required authorization and may continue. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The return code value changes according to the different error scenarios. The return code values have the following meaning: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4 &lt;/P&gt;&lt;P&gt;User has no authorization in the SAP System for such an action. If necessary, change the user master record. &lt;/P&gt;&lt;P&gt;8 &lt;/P&gt;&lt;P&gt;Too many parameters (fields, values). Maximum allowed is 10. &lt;/P&gt;&lt;P&gt;12 &lt;/P&gt;&lt;P&gt;Specified object not maintained in the user master record. &lt;/P&gt;&lt;P&gt;16 &lt;/P&gt;&lt;P&gt;No profile entered in the user master record. &lt;/P&gt;&lt;P&gt;24 &lt;/P&gt;&lt;P&gt;The field names of the check call do not match those of an authorization. Either the authorization or the call is incorrect. &lt;/P&gt;&lt;P&gt;28 &lt;/P&gt;&lt;P&gt;Incorrect structure for user master record. &lt;/P&gt;&lt;P&gt;32 &lt;/P&gt;&lt;P&gt;Incorrect structure for user master record. &lt;/P&gt;&lt;P&gt;36 &lt;/P&gt;&lt;P&gt;Incorrect structure for user master record. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope i had answered u.. rewward if u find it useful.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajkumar.G.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2006 05:05:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-8-on-open-dataset/m-p/1801694#M344138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-14T05:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: Return code 8 on OPEN DATASET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-8-on-open-dataset/m-p/1801695#M344139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Rajkumar.G. ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your answer, but I think the reply with "too many parameters" was not the point. I was wondering how I could have too many parameters in an open dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I fould the reason for sy-subrc: the path name was too long.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks anyway.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2006 20:57:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-8-on-open-dataset/m-p/1801695#M344139</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-14T20:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Return code 8 on OPEN DATASET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-8-on-open-dataset/m-p/1801696#M344140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see my last thread&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2006 20:57:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-8-on-open-dataset/m-p/1801696#M344140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-14T20:57:46Z</dc:date>
    </item>
  </channel>
</rss>

