<?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: I need to develop the below code  using ABAP 7.4 syntax. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-to-develop-the-below-code-using-abap-7-4-syntax/m-p/12693681#M2017836</link>
    <description>&lt;P&gt;Please edit your question, select your code and press the button [CODE], which makes the code appear colored/indented, it will be easier for people to look at it. Thank you! &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Be careful to post code on several lines...&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 17 Feb 2023 16:15:23 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2023-02-17T16:15:23Z</dc:date>
    <item>
      <title>I need to develop the below code  using ABAP 7.4 syntax.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-to-develop-the-below-code-using-abap-7-4-syntax/m-p/12693679#M2017834</link>
      <description>&lt;P&gt; I need to develop the below code using ABAP 7.4 syntax. can anyone help me with the changes i need to make.&lt;/P&gt;
  &lt;P&gt;TYPES: BEGIN OF TY_CUST, CUSTNO(4) TYPE N, "Customer Number CNAME(20) TYPE C, "Customer Name CCITY(20) TYPE C, "Customer City END OF TY_CUST. DATA: T_CUST TYPE TABLE OF TY_CUST INITIAL SIZE 3, W_CUST TYPE TY_CUST.&lt;/P&gt;
  &lt;P&gt;W_CUST-CUSTNO = 1001. W_CUST-CNAME = 'Jayem Ltd.'. W_CUST-CCITY = 'Bangalore'. APPEND W_CUST TO T_CUST. W_CUST-CUSTNO = 1002. W_CUST-CNAME = 'HK Ltd.'. W_CUST-CCITY = 'Pune'. APPEND W_CUST TO T_CUST. W_CUST-CUSTNO = 1003. W_CUST-CNAME = 'SBH'. W_CUST-CCITY = 'Hyderabad'. APPEND W_CUST TO T_CUST. W_CUST-CUSTNO = 1004. W_CUST-CNAME = 'TCL Ltd.'. W_CUST-CCITY = 'Pune'. APPEND W_CUST TO T_CUST. * Copying data into another internal table with the same structure type DATA: T_CUST2 TYPE TABLE OF TY_CUST INITIAL SIZE 3, W_CUST2 TYPE TY_CUST. T_CUST2 = T_CUST.&lt;/P&gt;
  &lt;P&gt;WRITE: /3 'Data in T_CUST:'. SKIP. LOOP AT T_CUST INTO W_CUST. WRITE: /3 W_CUST-CUSTNO, W_CUST-CNAME, W_CUST-CCITY. ENDLOOP. SKIP 2. ULINE. WRITE: /3 'Data in T_CUST2:'. SKIP. LOOP AT T_CUST2 INTO W_CUST2. WRITE: /3 W_CUST2-CUSTNO, W_CUST2-CNAME, W_CUST2-CCITY. ENDLOOP. SKIP 2. ULINE. Copying data into another internal table with a different TYPES: BEGIN OF TY_CUSTNO, CUSTOMERNO(4) TYPE N, "Customer Number END OF TY_CUSTNO.&lt;/P&gt;
  &lt;P&gt;DATA: T_CUSTNO TYPE TABLE OF TY_CUSTNO, W_CUSTNO TYPE TY_CUSTNO.&lt;/P&gt;
  &lt;P&gt;T_CUSTNO = CORRESPONDING #( T_CUST MAPPING CUSTOMERNO = CUSTNO ). WRITE: /3 'Data in T_CUSTNO: Copying only customer numbers into another internal table'. SKIP. LOOP AT T_CUSTNO INTO W_CUSTNO. WRITE: /3 W_CUSTNO- CUSTOMERNO. ENDLOOP.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 14:30:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-to-develop-the-below-code-using-abap-7-4-syntax/m-p/12693679#M2017834</guid>
      <dc:creator>former_member1349431</dc:creator>
      <dc:date>2023-02-17T14:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: I need to develop the below code  using ABAP 7.4 syntax.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-to-develop-the-below-code-using-abap-7-4-syntax/m-p/12693680#M2017835</link>
      <description>&lt;P&gt;Thank you for visiting SAP Community to get answers to your questions.&lt;/P&gt;&lt;P&gt;As you're looking to get most out of your community membership, please consider include a profile picture to increase user engagement &amp;amp; additional resources to your reference that can really benefit you:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Profile &lt;A href="https://developers.sap.com/tutorials/community-profile.html"&gt;https://developers.sap.com/tutorials/community-profile.html&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Tips for Questions: &lt;A href="https://community.sap.com/resources/questions-and-answers"&gt;https://community.sap.com/resources/questions-and-answers&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Consider to take our Q&amp;amp;A tutorial at: &lt;A href="https://developers.sap.com/tutorials/community-qa.html" target="_blank"&gt;https://developers.sap.com/tutorials/community-qa.html&lt;/A&gt;.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I hope you find this advice useful, and we're happy to have you as part of SAP Community!&lt;/P&gt;&lt;P&gt;All the best,&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 14:30:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-to-develop-the-below-code-using-abap-7-4-syntax/m-p/12693680#M2017835</guid>
      <dc:creator>AlexGourdet</dc:creator>
      <dc:date>2023-02-17T14:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: I need to develop the below code  using ABAP 7.4 syntax.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-to-develop-the-below-code-using-abap-7-4-syntax/m-p/12693681#M2017836</link>
      <description>&lt;P&gt;Please edit your question, select your code and press the button [CODE], which makes the code appear colored/indented, it will be easier for people to look at it. Thank you! &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Be careful to post code on several lines...&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 16:15:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-to-develop-the-below-code-using-abap-7-4-syntax/m-p/12693681#M2017836</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-02-17T16:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: I need to develop the below code  using ABAP 7.4 syntax.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-to-develop-the-below-code-using-abap-7-4-syntax/m-p/12693682#M2017837</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;It would be easy to read if you add your code clicking 'code' icon.&lt;/P&gt;&lt;P&gt;As for your code, you can use "Value", instead of appending structure to internal table.&lt;/P&gt;&lt;P&gt;Simultenously you can "Corresponding" to map entries of one internal table to another.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;t_cust = VALUE #( ( custno = 1001 cname = 'Jayem Ltd.' ccity = 'Bangalore' )&lt;BR /&gt;                  ( custno = 1002 cname = 'HK Ltd.'    ccity = 'Pune' ) ). &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Have a look to this blog as quick reference - &lt;A href="https://blogs.sap.com/2015/10/25/abap-740-quick-reference/"&gt;ABAP 7.40 Quick Reference&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2023 09:48:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-to-develop-the-below-code-using-abap-7-4-syntax/m-p/12693682#M2017837</guid>
      <dc:creator>akmal1216</dc:creator>
      <dc:date>2023-02-20T09:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: I need to develop the below code  using ABAP 7.4 syntax.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-to-develop-the-below-code-using-abap-7-4-syntax/m-p/12693683#M2017838</link>
      <description>&lt;P&gt;&lt;EM&gt;I need to develop the below code using ABAP 7.4 syntax. can anyone help me with the changes i need to make.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Why? If it works, just leave it as it is.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2023 10:59:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-to-develop-the-below-code-using-abap-7-4-syntax/m-p/12693683#M2017838</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2023-02-20T10:59:48Z</dc:date>
    </item>
  </channel>
</rss>

