<?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: How to put validation for the t-code COR6N in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-validation-for-the-t-code-cor6n/m-p/12723951#M2019968</link>
    <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Thanks for the help. It's working&lt;/P&gt;</description>
    <pubDate>Tue, 09 May 2023 08:49:24 GMT</pubDate>
    <dc:creator>uzair_1234</dc:creator>
    <dc:date>2023-05-09T08:49:24Z</dc:date>
    <item>
      <title>How to put validation for the t-code COR6N</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-validation-for-the-t-code-cor6n/m-p/12723947#M2019964</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;I have made a ZTable where the entries maintained should not have authorization to make any changes in the T-Code ZCOR6N. Whenever the user will make changes and tries to save, "You have no authorization to make any changes", this message should pop up. Can anyone please guide me on how to put the validation or which specific enhancement or BADI should I search so that I can add the code.&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 05:02:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-validation-for-the-t-code-cor6n/m-p/12723947#M2019964</guid>
      <dc:creator>uzair_1234</dc:creator>
      <dc:date>2023-05-09T05:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to put validation for the t-code COR6N</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-validation-for-the-t-code-cor6n/m-p/12723948#M2019965</link>
      <description>&lt;P&gt;ZCOR6N is a customer transaction, so we cannot help. Is this just a z-transaction calling same program than COR6N?&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 05:43:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-validation-for-the-t-code-cor6n/m-p/12723948#M2019965</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2023-05-09T05:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to put validation for the t-code COR6N</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-validation-for-the-t-code-cor6n/m-p/12723949#M2019966</link>
      <description>&lt;P&gt;To implement this validation in T-Code ZCOR6N, you can use an authorization check using the Function Module "AUTHORITY_CHECK_TCODE". Here are the steps to implement this validation:&lt;/P&gt;&lt;P&gt;Identify the user roles that should not have authorization to make changes in T-Code ZCOR6N.&lt;/P&gt;&lt;P&gt;Create a custom authorization object and assign it to these roles.&lt;/P&gt;&lt;P&gt;Implement the authorization check using the Function Module "AUTHORITY_CHECK_TCODE" in a user exit, BADI or enhancement spot in T-Code ZCOR6N.&lt;/P&gt;&lt;P&gt;In the authorization check code, call the Function Module "AUTHORITY_CHECK_TCODE" and pass the T-Code and the user ID as parameters.&lt;/P&gt;&lt;P&gt;If the user does not have authorization to execute the T-Code, display the error message "You have no authorization to make any changes" using the Function Module "MESSAGE".&lt;/P&gt;&lt;P&gt;You can implement this validation using a user exit (SMOD), BADI or enhancement spot, depending on your specific requirements and the feasibility of each option.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rachel Gomez&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 05:46:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-validation-for-the-t-code-cor6n/m-p/12723949#M2019966</guid>
      <dc:creator>former_member814031</dc:creator>
      <dc:date>2023-05-09T05:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to put validation for the t-code COR6N</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-validation-for-the-t-code-cor6n/m-p/12723950#M2019967</link>
      <description>&lt;P&gt;For standard transaction COR06n (and associated variant transactions) check&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;BAdI, WORKORDER_GOODSMVT and simliar&lt;/LI&gt;&lt;LI&gt;Also you can use the Enhancement like CONFPI02 or CONFPI07.&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Tue, 09 May 2023 05:48:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-validation-for-the-t-code-cor6n/m-p/12723950#M2019967</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2023-05-09T05:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to put validation for the t-code COR6N</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-validation-for-the-t-code-cor6n/m-p/12723951#M2019968</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Thanks for the help. It's working&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 08:49:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-validation-for-the-t-code-cor6n/m-p/12723951#M2019968</guid>
      <dc:creator>uzair_1234</dc:creator>
      <dc:date>2023-05-09T08:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to put validation for the t-code COR6N</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-validation-for-the-t-code-cor6n/m-p/12723952#M2019969</link>
      <description>&lt;P&gt;Thanks for the help everyone. This particular issue was solved.&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2023 05:13:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-validation-for-the-t-code-cor6n/m-p/12723952#M2019969</guid>
      <dc:creator>uzair_1234</dc:creator>
      <dc:date>2023-05-18T05:13:55Z</dc:date>
    </item>
  </channel>
</rss>

