<?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: screen refresh in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070787#M94678</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you rewrite your logic as I mentioned in my second response?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your original code, you are trying to update multiple sales views of a material at one go, but that is not possible. You have to do them seperately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Nov 2005 01:45:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-11-25T01:45:21Z</dc:date>
    <item>
      <title>screen refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070783#M94674</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 have created BDC program for MM02 and the t_mat(itab) having 2 records.This program working fine.But while looping second record is not gettng into the screen(means screen is not getting empty to get second record),but it showing in debugging correctly.How to refresh the screen?&lt;/P&gt;&lt;P&gt;Pls see the code.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Actually i have two distribution channels FM &amp;amp; TD.&lt;/P&gt;&lt;P&gt;In the first loop it is gettng FM from itab.Second loop also getting FM instead of TD.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  YMATERIAL_CHANGE  no standard page heading&lt;/P&gt;&lt;P&gt;        line-size 100&lt;/P&gt;&lt;P&gt;        line-count 65&lt;/P&gt;&lt;P&gt;        message-id Z1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: mvke,makt,mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of t_mat occurs 0,&lt;/P&gt;&lt;P&gt;        MATNR like mvke-matnr,&lt;/P&gt;&lt;P&gt;        MAKTX like makt-maktx,&lt;/P&gt;&lt;P&gt;        VERSG like mvke-VERSG,&lt;/P&gt;&lt;P&gt;        MTPOS_MARA like mara-MTPOS_MARA,&lt;/P&gt;&lt;P&gt;        MTPOS like mvke-MTPOS,&lt;/P&gt;&lt;P&gt;        KTGRM like mvke-KTGRM,&lt;/P&gt;&lt;P&gt;        PRODH like mvke-PRODH,&lt;/P&gt;&lt;P&gt;        VTWEG like mvke-VTWEG,&lt;/P&gt;&lt;P&gt;      end of t_mat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of t_ch occurs 0,&lt;/P&gt;&lt;P&gt;       vtweg(2),&lt;/P&gt;&lt;P&gt;      end of t_ch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data:  messtab like bdcmsgcoll occurs 0 with header line,&lt;/P&gt;&lt;P&gt;       bdcdata like bdcdata    occurs 0 with header line.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of bdctab occurs 10.       "BDC table&lt;/P&gt;&lt;P&gt;        include structure bdcdata.&lt;/P&gt;&lt;P&gt;data: end of bdctab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: g_maktx like makt-maktx.&lt;/P&gt;&lt;P&gt;data: g_MTPOS_MARA like mara-MTPOS_MARA.&lt;/P&gt;&lt;P&gt;data: v_prodh like mvke-prodh.&lt;/P&gt;&lt;P&gt;data: v_ktgrm like mvke-ktgrm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter: p_matnr like mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select MATNR VERSG MTPOS KTGRM PRODH VTWEG&lt;/P&gt;&lt;P&gt;           from MVKE into corresponding fields of table t_mat&lt;/P&gt;&lt;P&gt;           where matnr =  p_matnr and&lt;/P&gt;&lt;P&gt;                 ktgrm = '12'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at t_mat.&lt;/P&gt;&lt;P&gt;    select single *  from makt where matnr = t_mat-matnr.&lt;/P&gt;&lt;P&gt;    t_mat-maktx =  makt-maktx.&lt;/P&gt;&lt;P&gt;    if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      modify t_mat.&lt;/P&gt;&lt;P&gt;      clear t_mat.&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;  loop at t_mat.&lt;/P&gt;&lt;P&gt;    select single * from mara where matnr = t_mat-matnr.&lt;/P&gt;&lt;P&gt;    t_mat-MTPOS_MARA = mara-MTPOS_MARA.&lt;/P&gt;&lt;P&gt;    if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      modify t_mat.&lt;/P&gt;&lt;P&gt;      clear t_mat.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  fill_bdcdata&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  perform bdc_dynpro      using 'SAPLMGMM' '0060'.&lt;/P&gt;&lt;P&gt;  perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                'RMMG1-MATNR'.&lt;/P&gt;&lt;P&gt;  perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                '/00'.&lt;/P&gt;&lt;P&gt;  perform bdc_field       using 'RMMG1-MATNR'&lt;/P&gt;&lt;P&gt;                                 p_matnr.&lt;/P&gt;&lt;P&gt;  perform bdc_dynpro      using 'SAPLMGMM' '0070'.&lt;/P&gt;&lt;P&gt;  perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                'MSICHTAUSW-DYTXT(04)'.&lt;/P&gt;&lt;P&gt;  perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                '=ENTR'.&lt;/P&gt;&lt;P&gt;  perform bdc_field       using 'MSICHTAUSW-KZSEL(04)'&lt;/P&gt;&lt;P&gt;                                 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  perform bdc_dynpro      using 'SAPLMGMM' '0080'.&lt;/P&gt;&lt;P&gt;  perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                'RMMG1-VTWEG'.&lt;/P&gt;&lt;P&gt;  perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                '=ENTR'.&lt;/P&gt;&lt;P&gt;  perform bdc_field       using 'RMMG1-WERKS'&lt;/P&gt;&lt;P&gt;                                 '3000'.&lt;/P&gt;&lt;P&gt;  perform bdc_field       using 'RMMG1-VKORG'&lt;/P&gt;&lt;P&gt;                                 '3000'.&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt;loop at t_mat.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    perform bdc_field       using 'RMMG1-VTWEG'&lt;/P&gt;&lt;P&gt;                                   t_mat-vtweg.&amp;lt;----- &amp;lt;b&amp;gt;here iam getting the problem..not getting second record&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    perform bdc_dynpro      using 'SAPLMGMM' '4000'.&lt;/P&gt;&lt;P&gt;    perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                  'BU'.&lt;/P&gt;&lt;P&gt;    perform bdc_field       using 'MAKT-MAKTX'&lt;/P&gt;&lt;P&gt;                                  t_mat-MAKTX.&lt;/P&gt;&lt;P&gt;    perform bdc_field       using 'MVKE-VERSG'&lt;/P&gt;&lt;P&gt;                                   t_mat-VERSG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    v_prodh = t_mat-prodh+0(2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if v_prodh = 'LM'.&lt;/P&gt;&lt;P&gt;      t_mat-KTGRM = '21'.&lt;/P&gt;&lt;P&gt;    elseif v_prodh = 'LA'.&lt;/P&gt;&lt;P&gt;      t_mat-KTGRM = '22'.&lt;/P&gt;&lt;P&gt;    elseif v_prodh = 'LX'.&lt;/P&gt;&lt;P&gt;      t_mat-KTGRM = '23'.&lt;/P&gt;&lt;P&gt;    elseif v_prodh = 'LC'.&lt;/P&gt;&lt;P&gt;      t_mat-KTGRM = '24'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    perform bdc_field       using 'MVKE-KTGRM'&lt;/P&gt;&lt;P&gt;                                   t_mat-KTGRM.&lt;/P&gt;&lt;P&gt;    perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                  'MVKE-PRODH'.&lt;/P&gt;&lt;P&gt;    perform bdc_field       using 'MARA-MTPOS_MARA'&lt;/P&gt;&lt;P&gt;                                  t_mat-MTPOS_MARA.&lt;/P&gt;&lt;P&gt;    perform bdc_field       using 'MVKE-MTPOS'&lt;/P&gt;&lt;P&gt;                                  t_mat-MTPOS.&lt;/P&gt;&lt;P&gt;    perform bdc_field       using 'MVKE-PRODH'&lt;/P&gt;&lt;P&gt;                                  t_mat-PRODH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &amp;lt;b&amp;gt;call transaction 'MM02' using bdcdata&lt;/P&gt;&lt;P&gt;       mode 'A' update 'S' messages into messtab.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt;endloop.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                                   "bdc_va02&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     Form  BDC_DYNPRO&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form bdc_dynpro using program dynpro.&lt;/P&gt;&lt;P&gt;  clear bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-program  = program.&lt;/P&gt;&lt;P&gt;  bdcdata-dynpro   = dynpro.&lt;/P&gt;&lt;P&gt;  bdcdata-dynbegin = 'X'.&lt;/P&gt;&lt;P&gt;  append bdcdata.&lt;/P&gt;&lt;P&gt;endform.                               " BDC_DYNPRO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     Form  BDC_FIELD&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form bdc_field using fnam fval.&lt;/P&gt;&lt;P&gt;  clear bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-fnam = fnam.&lt;/P&gt;&lt;P&gt;  bdcdata-fval = fval.&lt;/P&gt;&lt;P&gt;  append bdcdata.&lt;/P&gt;&lt;P&gt;endform.                    "bdc_field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FORM NAME        : BDC_TAB&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FORM DESCRIPTION : This routine fills the BDC table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form bdc_tab using dynbegin program dynpro.&lt;/P&gt;&lt;P&gt;  clear bdctab.&lt;/P&gt;&lt;P&gt;  if dynbegin = 'X'.&lt;/P&gt;&lt;P&gt;    bdctab-dynbegin = dynbegin.&lt;/P&gt;&lt;P&gt;    bdctab-program  = program.&lt;/P&gt;&lt;P&gt;    bdctab-dynpro   = dynpro.&lt;/P&gt;&lt;P&gt;    append bdctab.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    bdctab-fnam     = program.&lt;/P&gt;&lt;P&gt;    bdctab-fval     = dynpro.&lt;/P&gt;&lt;P&gt;    append bdctab.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endform.                    "bdc_tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points guaranteed&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2005 01:15:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070783#M94674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-25T01:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: screen refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070784#M94675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Either after your call transaction or at the start of your loop at itab statement, &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;refresh&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt; your bdcdata internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2005 01:21:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070784#M94675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-25T01:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: screen refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070785#M94676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically your logic should be like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT T_MAT.&lt;/P&gt;&lt;P&gt;*-- REFRESH BDCDATA INTERNAL TABLE&lt;/P&gt;&lt;P&gt;*-- PREPARE BDC DATA&lt;/P&gt;&lt;P&gt;*-- CALL TRANSACTION&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2005 01:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070785#M94676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-25T01:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: screen refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070786#M94677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas,&lt;/P&gt;&lt;P&gt;If i write the "refresh bdctab" with in the loop it is throwing the error.Can u check the code pls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kaki.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2005 01:36:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070786#M94677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-25T01:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: screen refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070787#M94678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you rewrite your logic as I mentioned in my second response?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your original code, you are trying to update multiple sales views of a material at one go, but that is not possible. You have to do them seperately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2005 01:45:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070787#M94678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-25T01:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: screen refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070788#M94679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;o ic,but if i have 10 records to update in sales view then how to write separately? can u explain me clearly srinivas if u dont mind.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2005 01:56:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070788#M94679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-25T01:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: screen refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070789#M94680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank u srinivas i got it.&lt;/P&gt;&lt;P&gt;points allowted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2005 02:25:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070789#M94680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-25T02:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: screen refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070790#M94681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad to see that the problem is resolved. I was away from the computer for some time, so I could not respond immediately. But looks like you understood and found a way to achieve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Materials, Customers, Vendors, even though are identified by a unique identifier, they have different attributes for different views. So for a sales view they will have certain attributes and for a general view they will have certain attributes. There will be only one general view, but multiple instances of other views.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So a material can be just one, but will have 3 different values for attributes in sales view, if it is extended to 3 different sales areas. You can only view/change a specific sales area data at any point of time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you initially attempted was to do the updates to all sales views at one go.&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;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2005 04:58:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-refresh/m-p/1070790#M94681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-25T04:58:20Z</dc:date>
    </item>
  </channel>
</rss>

