<?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: Adding fields to Vendor Master not saving. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-fields-to-vendor-master-not-saving/m-p/12597492#M2010712</link>
    <description>&lt;P&gt;Did you also implement method GET_TAXI_SCREEN?&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2110735-image.png" /&gt;&lt;/P&gt;&lt;P&gt;And are your dynpro fields called the same as IF_EX_VENDOR_ADD_DATA_CS~GET_DATA?&lt;/P&gt;</description>
    <pubDate>Wed, 09 Nov 2022 16:03:13 GMT</pubDate>
    <dc:creator>thkolz</dc:creator>
    <dc:date>2022-11-09T16:03:13Z</dc:date>
    <item>
      <title>Adding fields to Vendor Master not saving.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-fields-to-vendor-master-not-saving/m-p/12597491#M2010711</link>
      <description>&lt;P&gt;I'm currently trying to add some custom fields to the Vendor Master using this guide here. &lt;/P&gt;
  &lt;P&gt;&lt;A href="https://blogs.sap.com/2012/11/27/adding-customer-fields-in-vendor-master/" target="test_blank"&gt;https://blogs.sap.com/2012/11/27/adding-customer-fields-in-vendor-master/&lt;/A&gt;&lt;/P&gt;
  &lt;P&gt;Fields show up fine but I seem to be having accessing the fields from the Badi Implementations? After clicking the new tab the fields show up, but it doesn't populate the fields based on what's in the vendor table LFA-1. Same goes for saving data, if I go to save it doesn't seem to save the data to LFA-1. Ideas on what might be wrong? If I try to reference the checkbox (WA_ISO) it can not see the fields. Am I missing something?&lt;/P&gt;
  &lt;P&gt;SET Method&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;method IF_EX_VENDOR_ADD_DATA_CS~SET_DATA.
  CALL FUNCTION 'Z_SET_COMPLIANCE_VENDOR'
    EXPORTING
      iv_ZISO = I_LFA1-ZISO_14001.
endmethod.&amp;lt;br&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;SET Function &lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;FUNCTION Z_SET_COMPLIANCE_VENDOR.
*"----------------------------------------------------------------------
*"*"Local Interface:
*"  IMPORTING
*"     REFERENCE(IV_ZISO) TYPE  LFA1-ZISO_14001
*"----------------------------------------------------------------------

  LFA1-ZISO_14001 = IV_ZISO.  "set here

ENDFUNCTION.&amp;lt;br&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Get Method&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;method IF_EX_VENDOR_ADD_DATA_CS~GET_DATA.
  DATA: lv_ZISO TYPE LFA1-ZISO_14001.

  CALL FUNCTION 'Z_GET_COMPLIANCE_VENDOR'
  IMPORTING
  ev_ZISO = lv_ZISO.

  S_LFA1-ZISO_14001 = lv_ZISO.

endmethod.&amp;lt;br&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Get Function&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;FUNCTION Z_GET_COMPLIANCE_VENDOR.
*"----------------------------------------------------------------------
*"*"Local Interface:
*"  EXPORTING
*"     REFERENCE(EV_ZISO) TYPE  LFA1-ZISO_14001
*"----------------------------------------------------------------------
ev_ZISO = LFA1-ZISO_14001.  "set here
ENDFUNCTION.&amp;lt;br&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 09 Nov 2022 15:21:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-fields-to-vendor-master-not-saving/m-p/12597491#M2010711</guid>
      <dc:creator>former_member793859</dc:creator>
      <dc:date>2022-11-09T15:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Adding fields to Vendor Master not saving.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-fields-to-vendor-master-not-saving/m-p/12597492#M2010712</link>
      <description>&lt;P&gt;Did you also implement method GET_TAXI_SCREEN?&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2110735-image.png" /&gt;&lt;/P&gt;&lt;P&gt;And are your dynpro fields called the same as IF_EX_VENDOR_ADD_DATA_CS~GET_DATA?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 16:03:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-fields-to-vendor-master-not-saving/m-p/12597492#M2010712</guid>
      <dc:creator>thkolz</dc:creator>
      <dc:date>2022-11-09T16:03:13Z</dc:date>
    </item>
    <item>
      <title>Re: Adding fields to Vendor Master not saving.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-fields-to-vendor-master-not-saving/m-p/12597493#M2010713</link>
      <description>&lt;P&gt;Here is my Get Taxi Screen.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;method IF_EX_VENDOR_ADD_DATA_CS~GET_TAXI_SCREEN.
  IF flt_val = 'ZC'
    AND i_taxi_fcode = 'ZMM_ZC'.
    e_screen = '9000'.
    e_program = 'SAPLZMM_ZC'.
    e_headerscreen_layout = ''.
  ENDIF.
endmethod.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 09 Nov 2022 16:14:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-fields-to-vendor-master-not-saving/m-p/12597493#M2010713</guid>
      <dc:creator>former_member793859</dc:creator>
      <dc:date>2022-11-09T16:14:53Z</dc:date>
    </item>
  </channel>
</rss>

