<?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: How to create an update customer data program? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-an-update-customer-data-program/m-p/699445#M31728</link>
    <description>&lt;P&gt;I suggest you learn about table control, ALV which both give you a list and editable cells feature.&lt;/P&gt;</description>
    <pubDate>Thu, 04 Oct 2018 01:16:08 GMT</pubDate>
    <dc:creator>DoanManhQuynh</dc:creator>
    <dc:date>2018-10-04T01:16:08Z</dc:date>
    <item>
      <title>How to create an update customer data program?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-an-update-customer-data-program/m-p/699444#M31727</link>
      <description>&lt;P&gt;Hi I'm learning ABAP and I've created a few reports successfully and also have created a program to register new customers.&lt;/P&gt;
  &lt;P&gt;I was wondering how it would be possible to update a given customer data. I know I could just get into SE16 to add/remove/update any field but what I've been looking for is a way to make it happen in my program.&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK b_jnl WITH FRAME TITLE text-001.
PARAMETERS :  s_cod TYPE Z60CLI-CODCLI.

SELECTION-SCREEN END OF BLOCK b_jnl.
START-OF-SELECTION.
  SELECT * FROM z60cli INTO TABLE it_z60cli WHERE codcli = s_cod.
END-OF-SELECTION.

    LOOP AT it_z60cli INTO wa_z60cli.
        WRITE :   /05 wa_z60cli-codcli,
                  15 wa_z60cli-nome,
                  50 wa_z60cli-tipocli,
                  55 wa_z60cli-regio,
                  65 wa_z60cli-ativo.
    ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;The PARAMETER s_cod receives the costumer code. The loop down there takes the given customer code and writes all customer data (name, location, etc).&lt;/P&gt;
  &lt;P&gt;My point is that I'm trying to figure out how I could display these values in an editable way so I could save them into the original table. Reading ABAPDOCU I was not able to find a proper way.&lt;/P&gt;
  &lt;P&gt;Any advice on how to proceed would be great.&lt;/P&gt;
  &lt;P&gt;Ty&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 19:34:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-an-update-customer-data-program/m-p/699444#M31727</guid>
      <dc:creator>wesleynz</dc:creator>
      <dc:date>2018-10-03T19:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an update customer data program?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-an-update-customer-data-program/m-p/699445#M31728</link>
      <description>&lt;P&gt;I suggest you learn about table control, ALV which both give you a list and editable cells feature.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Oct 2018 01:16:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-an-update-customer-data-program/m-p/699445#M31728</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2018-10-04T01:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an update customer data program?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-an-update-customer-data-program/m-p/699446#M31729</link>
      <description>&lt;P&gt;What do you mean by &lt;EM&gt;so I could save them into the original table&lt;/EM&gt;? What is the "original table"?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Oct 2018 06:21:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-an-update-customer-data-program/m-p/699446#M31729</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2018-10-04T06:21:04Z</dc:date>
    </item>
  </channel>
</rss>

