<?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: TCODE VA02 -  Partner data in display mode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-va02-partner-data-in-display-mode/m-p/2899986#M681937</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;thank you for your reply. I've tried to work with MV45AFZZ but I believe that&lt;/P&gt;&lt;P&gt;there are no call to it between the double click on partner code&lt;/P&gt;&lt;P&gt;(pgm SAPLV09C subscreen 1000) and the address data (SAPLSZA1 subscreen 030).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At present I've applied this solution:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have modified the include LV09CF70 of functionpool SAPLV09C as follow:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- step 1 (row 26)&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    . . . . . .&lt;/P&gt;&lt;P&gt;    lv_parnr = gt_tc_selected_lines-rec-partner.&lt;/P&gt;&lt;P&gt;*{   INSERT         D03K909152                                        2&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  In trans.'VA02' (Change Sales Order), for the partner function&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  'AG'(Sold-to party) and 'RG'(Payer) adress data are not modifiable.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IF sy-tcode EQ 'VA02' AND&lt;/P&gt;&lt;P&gt;     ( lv_parvw  EQ 'AG' or lv_parvw  EQ 'RG' ).&lt;/P&gt;&lt;P&gt;       lv_display_only = 'X'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;*}   INSERT&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call pop-up partner detail information&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL FUNCTION 'SD_PARTNER_ADDRESS_DIALOG'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;            . . . . . . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;step 2 (row 66)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    . . . . . . . &lt;/P&gt;&lt;P&gt;    IF lvs_sel_partner cn ' 0'.&lt;/P&gt;&lt;P&gt;*{   INSERT         D03K909152                                        3&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  In trans.'VA02' (Change Sales Order), for the partner function&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  'AG'(Sold-to party) and 'RG'(Payer) adress data are not modifiable.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IF sy-tcode EQ 'VA02' AND&lt;/P&gt;&lt;P&gt;     ( lv_parvw  EQ 'AG' or lv_parvw  EQ 'RG' ).&lt;/P&gt;&lt;P&gt;       lv_display_only = 'X'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;*}   INSERT&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call pop-up&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      CALL FUNCTION 'SD_PARTNER_ADDRESS_DIALOG'&lt;/P&gt;&lt;P&gt;           EXPORTING&lt;/P&gt;&lt;P&gt;           . . . . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wish to thank you again for your interest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                                                      Paolo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Oct 2007 09:15:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-18T09:15:08Z</dc:date>
    <item>
      <title>TCODE VA02 -  Partner data in display mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-va02-partner-data-in-display-mode/m-p/2899982#M681933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using TCODE VA02. &lt;/P&gt;&lt;P&gt;I go to GOTO --&amp;gt; Header --&amp;gt; Partner and it displays Partner list. Then I double click on one of those partner which displays Partner data, addr (SAPLV09C Screen 5000) in change mode. I need to make this screen in DISPLAY mode not in Change but I've not found a USEREXIT before the screen is displayed. &lt;/P&gt;&lt;P&gt;What can I do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAPLV09C is a function pool with include LV09CF70 where I have found the form FCODE_PSDE_1000; here, I think to insert the code so as to obtain my purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you think is the best solution (even if I had to modify a standard object)? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                                                    I thank you in advance.&lt;/P&gt;&lt;P&gt;                                                                     Best regards, Paolo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 08:26:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-va02-partner-data-in-display-mode/m-p/2899982#M681933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T08:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: TCODE VA02 -  Partner data in display mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-va02-partner-data-in-display-mode/m-p/2899983#M681934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paolo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is some of the partial solutions , i dont know weather it will be helpful or not,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. You can u can freeze screen fields using the subroutine &amp;lt;b&amp;gt;userexit_field_modification&amp;lt;/b&amp;gt; in the include &amp;lt;b&amp;gt;MV45AFZZ&amp;lt;/b&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. check the function exit &amp;lt;b&amp;gt;EXIT_SAPMV45A_004&amp;lt;/b&amp;gt; in the enchancement &amp;lt;b&amp;gt;V45A0003&amp;lt;/b&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Also you can make changes and write a code in to &amp;lt;b&amp;gt; Include ZSDAUTH01&amp;lt;/b&amp;gt; in Program &amp;lt;b&amp;gt;SAPLV69A&amp;lt;/b&amp;gt;. In that UserExit_Field_Modification Function is there , u can write code like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.                       &lt;/P&gt;&lt;P&gt;      if screen-name = 'NAME_OF_FIELD_HERE_IN_CAPS'.    &lt;/P&gt;&lt;P&gt;         e.g. screen-input = 0.               &lt;/P&gt;&lt;P&gt;         modify screen.                   &lt;/P&gt;&lt;P&gt;      endif.                              &lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;[ set attributes of screen such as REQUIRED, INPUT, OUTPUT, INTENSIFIED, INVISIBLE, ACTIVE, DISPLAY_3D, VALUE_HELP to 1(ON) or 0(OFF) ] &amp;lt;/b&amp;gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this solutions , and tell me weather its useful or not !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward with some points if useful ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2007 05:23:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-va02-partner-data-in-display-mode/m-p/2899983#M681934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-12T05:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: TCODE VA02 -  Partner data in display mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-va02-partner-data-in-display-mode/m-p/2899984#M681935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi bh_hir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first I would like to thank you for your reply. I've tried the first and the second&lt;/P&gt;&lt;P&gt;solution as you suggested me, but they are not called when I double click on&lt;/P&gt;&lt;P&gt;a partner in order to go to subscreen of Partner data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding the third solution I have not understood where I found the include ZSDAUTH01; do I have to insert it in the functionpool SAPLV69A?&lt;/P&gt;&lt;P&gt;Please, could you explain me this point in detail?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thank you again.                                                    Regards,&lt;/P&gt;&lt;P&gt;                                                                              Paolo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2007 16:09:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-va02-partner-data-in-display-mode/m-p/2899984#M681935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-12T16:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: TCODE VA02 -  Partner data in display mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-va02-partner-data-in-display-mode/m-p/2899985#M681936</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;sorry for late reply ! as i was busy with some other work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZSDAUTHO1 is the include and its being called from userexit_field_modification function. as it might not come coz u r searching for partner data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but MV45AFZZ should work definately , as everyone can write user exit functions here ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try it out , tell me if u can get any other solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 06:13:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-va02-partner-data-in-display-mode/m-p/2899985#M681936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T06:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: TCODE VA02 -  Partner data in display mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-va02-partner-data-in-display-mode/m-p/2899986#M681937</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;thank you for your reply. I've tried to work with MV45AFZZ but I believe that&lt;/P&gt;&lt;P&gt;there are no call to it between the double click on partner code&lt;/P&gt;&lt;P&gt;(pgm SAPLV09C subscreen 1000) and the address data (SAPLSZA1 subscreen 030).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At present I've applied this solution:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have modified the include LV09CF70 of functionpool SAPLV09C as follow:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- step 1 (row 26)&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    . . . . . .&lt;/P&gt;&lt;P&gt;    lv_parnr = gt_tc_selected_lines-rec-partner.&lt;/P&gt;&lt;P&gt;*{   INSERT         D03K909152                                        2&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  In trans.'VA02' (Change Sales Order), for the partner function&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  'AG'(Sold-to party) and 'RG'(Payer) adress data are not modifiable.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IF sy-tcode EQ 'VA02' AND&lt;/P&gt;&lt;P&gt;     ( lv_parvw  EQ 'AG' or lv_parvw  EQ 'RG' ).&lt;/P&gt;&lt;P&gt;       lv_display_only = 'X'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;*}   INSERT&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call pop-up partner detail information&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL FUNCTION 'SD_PARTNER_ADDRESS_DIALOG'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;            . . . . . . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;step 2 (row 66)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    . . . . . . . &lt;/P&gt;&lt;P&gt;    IF lvs_sel_partner cn ' 0'.&lt;/P&gt;&lt;P&gt;*{   INSERT         D03K909152                                        3&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  In trans.'VA02' (Change Sales Order), for the partner function&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  'AG'(Sold-to party) and 'RG'(Payer) adress data are not modifiable.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IF sy-tcode EQ 'VA02' AND&lt;/P&gt;&lt;P&gt;     ( lv_parvw  EQ 'AG' or lv_parvw  EQ 'RG' ).&lt;/P&gt;&lt;P&gt;       lv_display_only = 'X'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;*}   INSERT&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call pop-up&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      CALL FUNCTION 'SD_PARTNER_ADDRESS_DIALOG'&lt;/P&gt;&lt;P&gt;           EXPORTING&lt;/P&gt;&lt;P&gt;           . . . . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wish to thank you again for your interest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                                                      Paolo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 09:15:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-va02-partner-data-in-display-mode/m-p/2899986#M681937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T09:15:08Z</dc:date>
    </item>
  </channel>
</rss>

