<?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 Field not getting defaulted in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-not-getting-defaulted/m-p/1501170#M232070</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;I am working on Infotype 185, my requirement is i need to default the PAN no. for IT 185 based on some condition(i.e subtye for pan no.) . i am writing code  in zxpadu01 for defaulting. But when we go through pa30 Tcode and try to create a record with subtype 2 , system after executing zxpadu01 exit, the standard module gets executed which again defaults the PAN card to 'AAAAA9999A'. The code for the same is mentioned below.&lt;/P&gt;&lt;P&gt;MODULE ASSIGN_DEFAULT OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF PSYST-IOPER EQ 'INS' AND PSYST-NSELC EQ '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P0185-ICNUM = 'AAAAA9999A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE. " ASSIGN_DEFAULT OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module in which the code get executed is MP01852IN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any one who has worked on this please help me solving the issue .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;Dhiraj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Aug 2006 09:26:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-14T09:26:18Z</dc:date>
    <item>
      <title>Field not getting defaulted</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-not-getting-defaulted/m-p/1501170#M232070</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;I am working on Infotype 185, my requirement is i need to default the PAN no. for IT 185 based on some condition(i.e subtye for pan no.) . i am writing code  in zxpadu01 for defaulting. But when we go through pa30 Tcode and try to create a record with subtype 2 , system after executing zxpadu01 exit, the standard module gets executed which again defaults the PAN card to 'AAAAA9999A'. The code for the same is mentioned below.&lt;/P&gt;&lt;P&gt;MODULE ASSIGN_DEFAULT OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF PSYST-IOPER EQ 'INS' AND PSYST-NSELC EQ '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P0185-ICNUM = 'AAAAA9999A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE. " ASSIGN_DEFAULT OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module in which the code get executed is MP01852IN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any one who has worked on this please help me solving the issue .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;Dhiraj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 09:26:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-not-getting-defaulted/m-p/1501170#M232070</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-14T09:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Field not getting defaulted</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-not-getting-defaulted/m-p/1501171#M232071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi dhiraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I don't think much can be done about this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. BCOS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. The standard code  &lt;/P&gt;&lt;P&gt;   P0185-ICNUM = 'AAAAA9999A'&lt;/P&gt;&lt;P&gt;   is getting called after our user exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. One way is to REPAIR this include,&lt;/P&gt;&lt;P&gt;   (by getting access key),&lt;/P&gt;&lt;P&gt;   and remove the line&lt;/P&gt;&lt;P&gt;  P0185-ICNUM = 'AAAAA9999A'&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 09:33:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-not-getting-defaulted/m-p/1501171#M232071</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-14T09:33:56Z</dc:date>
    </item>
  </channel>
</rss>

