<?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: Restricting a field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/restricting-a-field/m-p/4075257#M974417</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Go to PFCG and remove authorization for those transactions which you do not want to give them, or create the new profile for those users.&lt;/P&gt;&lt;P&gt;&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;Divya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Jul 2008 08:44:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-10T08:44:59Z</dc:date>
    <item>
      <title>Restricting a field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/restricting-a-field/m-p/4075255#M974415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a question: I want to restrict a field(e.g. Tax Code, in transaction xk01), so that only users with SAPALL, would be able to see and add data in that field!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2008 08:31:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/restricting-a-field/m-p/4075255#M974415</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-10T08:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Restricting a field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/restricting-a-field/m-p/4075256#M974416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;See whether this would help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS s_Taxcode FOR ........... NO INTERVALS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_Taxcode for ........NO-EXTENSION NO INTERVALS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Find the code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZEX_SELECTOPTIONS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables: ......,&lt;/P&gt;&lt;P&gt;        .......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: int_vbak type vbak occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select-options: s_taxcode for ....... NO-EXTENSION NO INTERVALS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select * INTO int_VBAK from VBAK where&lt;/P&gt;&lt;P&gt;         VBELN in s_vbeln.&lt;/P&gt;&lt;P&gt;APPEND int_VBAK.&lt;/P&gt;&lt;P&gt;CLEAR int_VBAK.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at s_taxcode.&lt;/P&gt;&lt;P&gt;WRITE: /   'SIGN:',   s_taxcode-sign,&lt;/P&gt;&lt;P&gt;           'OPTION:', s_taxcode-option,&lt;/P&gt;&lt;P&gt;           'LOW:',    s_taxcode-low,&lt;/P&gt;&lt;P&gt;           'HIGH:',   s_taxcode-high.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at int_vbak.&lt;/P&gt;&lt;P&gt;Write:/ int_vbak-vbeln, int_vbak-AUART.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am not sure with these fields, please replace with your fields..&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Divya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2008 08:44:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/restricting-a-field/m-p/4075256#M974416</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-10T08:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Restricting a field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/restricting-a-field/m-p/4075257#M974417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Go to PFCG and remove authorization for those transactions which you do not want to give them, or create the new profile for those users.&lt;/P&gt;&lt;P&gt;&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;Divya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2008 08:44:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/restricting-a-field/m-p/4075257#M974417</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-10T08:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: Restricting a field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/restricting-a-field/m-p/4075258#M974418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will check all your answers. Regarding PFCG, i cannot use that, because i only want to restrict a field, not the whole transaction. &lt;/P&gt;&lt;P&gt;Anyway, thank you very much for your help. I'll keep in touch with solving this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;George&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2008 08:50:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/restricting-a-field/m-p/4075258#M974418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-10T08:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: Restricting a field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/restricting-a-field/m-p/4075259#M974419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;George&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP is providing us a concept called Screen Variants and Transaction variants.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Features :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inserting default values in fields&lt;/P&gt;&lt;P&gt;Hiding and changing the ready for input status of fields&lt;/P&gt;&lt;P&gt;Hiding and changing the attributes of table control columns&lt;/P&gt;&lt;P&gt;Hiding individual menu functions&lt;/P&gt;&lt;P&gt;Hiding entire screens&lt;/P&gt;&lt;P&gt;Transaction variants are actually made up of a series of screen variants. The field values and field attributes for each screen in a transaction variant are stored in screen variants. Each variant is assigned to a transaction. Variants may, however, contain values for screens in multiple transactions, if transaction flow makes this necessary. The transaction the variant is assigned to serves as its initial transaction,  whenever you start the variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both client-specific and cross-client transaction variants exist. Screen variants are always cross-client; they may, however, be assigned to &lt;STRONG&gt;a client-specific transaction.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A specific namespace has been designated for cross-client transaction variants and screen variants and they are both automatically attached to the Change and Transport System. Client-specific transaction variants can be transported manually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transaction and screen variants may be created for all dialog and reporting transactions. However, there are certain restrictions that apply to their use, depending on how their corresponding transactions have been realized internally.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transaction variants may not be created for transactions already containing pre-defined parameters (parameter transactions and variant transactions).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can only create transaction variants for dialog transactions and reporting transactions.&lt;/P&gt;&lt;P&gt;Only "normal" screens, dialog boxes, and subscreens can be included in the variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Screen variants are automatically created anytime you create a transaction variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For This I am Giving The Simple Flow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="green" __jive_macro_name="color"&gt;&lt;/SPAN&gt;Go to Transaction SHD0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Transaction Code: XK01&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Click On transaction variants Tabs.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;provide any name .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Click on Create .Then It will go to XK01&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Click on Enter&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Then for the field which should be greyed out tick under :Output only&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;Click on Save and Exit.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if Found helpfull do reward.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Eshwar&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2008 09:21:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/restricting-a-field/m-p/4075259#M974419</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-10T09:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Restricting a field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/restricting-a-field/m-p/4075260#M974420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I doubt you can suppress/hide this field, but you can do a validation or set to default value the users  other than background user.&lt;/P&gt;&lt;P&gt;Try this user exit : EXIT_SAPMF02D_001&lt;/P&gt;&lt;P&gt;If the hint is usefulu2026 Say thanks by rewardu2026.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabhu Rajesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: PrabhuRajesh Janardanan on Jul 10, 2008 11:52 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2008 09:51:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/restricting-a-field/m-p/4075260#M974420</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-10T09:51:40Z</dc:date>
    </item>
  </channel>
</rss>

