Companies Home Search Profile

SAP New ABAP syntax (ABAP 7.4/ 7.5 syntax)

Focused View

Zafar karnalkar

2:45:06

145 View
  • 1 - Introduction.mp4
    03:25
  • 1 - New-ABAP-syntax-example-source-codes.pdf
  • 2 - Inline declaration.mp4
    11:05
  • 3 - Inline declaration continue.mp4
    11:52
  • 4 - Read and Loop at internal table.mp4
    16:41
  • 5 - Read and Loop at internal table continue.mp4
    05:56
  • 6 - Concatenate.mp4
    07:40
  • 7 - Conversion operator.mp4
    07:35
  • 8 - Value operator.mp4
    06:19
  • 9 - Filter operator.mp4
    14:02
  • 10 - Corresponding operator.mp4
    07:27
  • 11 - Reduce operator and Select query with case statement.mp4
    14:00
  • 12 - Select query with union and union all.mp4
    12:31
  • 13 - Loop at group by.mp4
    13:37
  • 14 - Select query with other sql features.mp4
    15:14
  • 15 - Select query with aggregate function group by and order by.mp4
    08:36
  • 16 - Arithmetic function Ceil floor along with literals and system variables.mp4
    09:06
  • Description


    SAP New ABAP syntax (ABAP 7.4 / 7.5 )

    What You'll Learn?


    • Learn new ABAP syntax ( ABAP Release 7.4 / 7.5 )
    • Inline decalaration
    • String operations
    • Table expressions
    • New loop at group by syntax
    • Aggregate functions and group by, order by function
    • Other new features introduce by SAP in new abap syntax
    • Window expression - Partition by concept

    Who is this for?


  • SAP ABAP consultant
  • More details


    Description

    What is New ABAP / Modern ABAP syntax ?

    SAP has introduce new ABAP syntax from ABAP 7.4 onwards. Often referred as New ABAP syntax / Modern ABAP. Which increases the efficiency of the code and also makes it easy for the developers.

    The new language features have been added without taking away the old syntax, we can use the new syntax in both ECC and S/4 HANA system as it is based on ABAP release 7.4 onwards.


    New features :

    •Inline declaration,  Table expressions,  Read table syntax,  Check particular value in internal table with line_exists,  Get index number, Value keyword, Corresponding #, Case in select query, Union / Union all

    •Conversion operator CONV, Casting operator CAST , Value operator, For operator , Reduce operator

    •Concatenate,  String functions, Loop at group by, Literals


    Declaration of a variable and work area for a simple assignment :


    Before 7.40

    DATA text TYPE string.
    text = `…`.

    With 7.40

    DATA(text) = `…`.


    Declaration of table work areas

    Before 7.40

    DATA wa like LINE OF itab.
    LOOP AT itab INTO wa.
    ...
    ENDLOOP.

    With 7.40

    LOOP AT itab INTO DATA(wa).
    ...
    ENDLOOP.


    Concatenate old and new syntax :

    data : gv_string type char100.
    data : gv_string1 type char100.

    select SINGLE bukrs, belnr, gjahr from bkpf into @data(gs_bkpf).

    CONCATENATE 'Accounting key' gs_bkpf-bukrs gs_bkpf-belnr gs_bkpf-gjahr into gv_string.
    write : / gv_string.

    Accounting key100020000599662017


    CONCATENATE 'Accounting key' gs_bkpf-bukrs gs_bkpf-belnr gs_bkpf-gjahr into gv_string1 SEPARATED BY space.
    write : / gv_string1.

    Accounting key 1000 2000059966 2017


    New syntax :

    data(gv_stringn) = | Accountigng Key { gs_bkpf-bukrs } { gs_bkpf-belnr } { gs_bkpf-gjahr } |.
    write : / gv_stringn.


    Accountigng Key 1000 2000059966 2017


    data(gv_stringn1) = | Accountigng Key | && gs_bkpf-bukrs && gs_bkpf-belnr && gs_bkpf-gjahr && | Created Successfully |.
    write : / gv_stringn1.

    Accountigng Key 100020000599662017 Created Successfully


    data(gv_stringn2) = | Accountigng Document { gs_bkpf-belnr } Created sucesfully |.
    write : / gv_stringn2.


    Accountigng Document 2000059966 Created sucesfully



    Who this course is for:

    • SAP ABAP consultant

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    Category

    SAP

    Zafar karnalkar
    Zafar karnalkar
    Instructor's Courses
    I am zafar karnalkar, sap techno functional consultant abap/sd/mm.Teaching is my passion.In sap I work for different industries like manufacturing, service, trading and real estate.I have done many sap project and abap development for sd,mm,fi,pp,dms modules.My core competency in the area of custom application development using module pool, complete technical designing of project.sap integration with non sap software like, crm, c4c, IBM web sphere, cordys, mobile application, php based web portal etc.
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 16
    • duration 2:45:06
    • Release Date 2023/04/19