<?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 User Exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567068#M858465</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   My requirement is to make PAN number as mandatory while creating vendor.&lt;/P&gt;&lt;P&gt;In XK01 PAN field was not there. After making settings in SPRO one extra tab 'CIN Detail' came inside xk01 and inside that PAN number is there. Through SPRO settings i cannot make this field as mandatory. So using user exit i have to write validations. I dont know which user exit i have to use. Can you please help me to find out the user exit. Please.. this is very urgent.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Apr 2008 03:52:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-02T03:52:44Z</dc:date>
    <item>
      <title>User Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567068#M858465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   My requirement is to make PAN number as mandatory while creating vendor.&lt;/P&gt;&lt;P&gt;In XK01 PAN field was not there. After making settings in SPRO one extra tab 'CIN Detail' came inside xk01 and inside that PAN number is there. Through SPRO settings i cannot make this field as mandatory. So using user exit i have to write validations. I dont know which user exit i have to use. Can you please help me to find out the user exit. Please.. this is very urgent.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 03:52:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567068#M858465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T03:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567069#M858466</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;&lt;/P&gt;&lt;P&gt;RFKRRANZ            User exits: Accounts Payable Information System&lt;/P&gt;&lt;P&gt;SAPMF02K            User exits: Vendor master data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_470/helpdata/en/5b/d233f543c611d182b30000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_470/helpdata/en/5b/d233f543c611d182b30000e829fbfe/frameset.htm&lt;/A&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;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;V.Balaji&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if Usefull...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 03:54:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567069#M858466</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T03:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567070#M858467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi hima,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this program . It will give you o/p as list of userexits asscociated with ANY TRANSACTION given as input..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT ZUSEREXIT NO STANDARD PAGE HEADING.
.
*report zuserexit no standard page heading.
TABLES : TSTC, TADIR, MODSAPT, MODACT, TRDIR, TFDIR, ENLFDIR.
         TABLES : TSTCT.

DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
DATA : FIELD1(30).
DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.

PARAMETERS : P_TCODE LIKE TSTC-TCODE OBLIGATORY.

SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
IF SY-SUBRC EQ 0.
   SELECT SINGLE * FROM TADIR WHERE PGMID = 'R3TR'
                    AND OBJECT = 'PROG'
                    AND OBJ_NAME = TSTC-PGMNA.
   MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
      IF SY-SUBRC NE 0.
         SELECT SINGLE * FROM TRDIR WHERE NAME = TSTC-PGMNA.
         IF TRDIR-SUBC EQ 'F'.
            SELECT SINGLE * FROM TFDIR WHERE PNAME = TSTC-PGMNA.
            SELECT SINGLE * FROM ENLFDIR WHERE FUNCNAME =
            TFDIR-FUNCNAME.
            SELECT SINGLE * FROM TADIR WHERE PGMID = 'R3TR'
                               AND OBJECT = 'FUGR'
                               AND OBJ_NAME EQ ENLFDIR-AREA.

            MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
          ENDIF.
       ENDIF.
       SELECT * FROM TADIR INTO TABLE JTAB
                     WHERE PGMID = 'R3TR'
                       AND OBJECT = 'SMOD'
                       AND DEVCLASS = V_DEVCLASS.
        SELECT SINGLE * FROM TSTCT WHERE SPRSL EQ SY-LANGU AND
                                         TCODE EQ P_TCODE.
        FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
        WRITE:/(19) 'Transaction Code - ',
             20(20) P_TCODE,
             45(50) TSTCT-TTEXT.
                    SKIP.
        IF NOT JTAB[] IS INITIAL.
           WRITE:/(95) SY-ULINE.
           FORMAT COLOR COL_HEADING INTENSIFIED ON.
           WRITE:/1 SY-VLINE,
                  2 'Exit Name',
                 21 SY-VLINE ,
                 22 'Description',
                 95 SY-VLINE.
           WRITE:/(95) SY-ULINE.
           LOOP AT JTAB.
              SELECT SINGLE * FROM MODSAPT
                     WHERE SPRSL = SY-LANGU AND
                            NAME = JTAB-OBJ_NAME.
                   FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
                   WRITE:/1 SY-VLINE,
                          2 JTAB-OBJ_NAME HOTSPOT ON,
                         21 SY-VLINE ,
                         22 MODSAPT-MODTEXT,
                         95 SY-VLINE.
           ENDLOOP.
           WRITE:/(95) SY-ULINE.
           DESCRIBE TABLE JTAB.
           SKIP.
           FORMAT COLOR COL_TOTAL INTENSIFIED ON.
           WRITE:/ 'No of Exits:' , SY-TFILL.
        ELSE.
           FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
           WRITE:/(95) 'No User Exit exists'.
        ENDIF.
      ELSE.
          FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
          WRITE:/(95) 'Transaction Code Does Not Exist'.
      ENDIF.

AT LINE-SELECTION.
   GET CURSOR FIELD FIELD1.
   CHECK FIELD1(4) EQ 'JTAB'.
   SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
   CALL TRANSACTION 'SMOD' AND SKIP FIRST   SCREEN.

*---End of Program&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;~&lt;SUB&gt;Lakshmiraj&lt;/SUB&gt;~&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 04:02:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567070#M858467</guid>
      <dc:creator>abapdeveloper20</dc:creator>
      <dc:date>2008-04-02T04:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567071#M858468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hima.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the  following exit &lt;/P&gt;&lt;P&gt; EXIT_SAPMF02K_001             &lt;/P&gt;&lt;P&gt; Vendors: User Exit for Checks prior to saving&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Find out which table your fields for the PAN has been added to ..by clicking on the technical details on the screen....&lt;/P&gt;&lt;P&gt;Once it is identified and if the table is present in the (importing/tables/changing) parameters of the exit..you can write the code and block the "SAVE" operation until the user fills the field by giving messages on the screen..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also look out for the BADI documentation for VENDOR_ADD_DATA in se18&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Byju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 04:43:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567071#M858468</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T04:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567072#M858469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Byju,&lt;/P&gt;&lt;P&gt;         I dont know how to use BADI. Can you please help me to find out for that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 04:45:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567072#M858469</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T04:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567073#M858470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hima,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the PAN field you have created...press F1 -&amp;gt; click on technical properties and let me know which table the field is stored in ........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also try the exit solution suggested....Please close one of the post so that i can help you better...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Byju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 04:58:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567073#M858470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T04:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567074#M858471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u will try using field exit..&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;Sugumar G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 05:04:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567074#M858471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T05:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567075#M858472</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;Can you tell me which user exit did you use to make PAN No field mandatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFKRRANZ User exits&lt;/P&gt;&lt;P&gt;SAPMF02K  User exits&lt;/P&gt;&lt;P&gt;BADI's : VENDOR_ADD_DATA_CS, VENDOR_ADD_DATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These exits dont have CIN details (PAN No) fields as an interface.&lt;/P&gt;&lt;P&gt;I want to make PAN No field mandatory in some cases, so need to write the code but can not find right BADI, Exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reply if you have a solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Dec 2009 07:06:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3567075#M858472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-11T07:06:22Z</dc:date>
    </item>
  </channel>
</rss>

