2 - SAP ABAP New Syntax - Inline Data Declarations

Поділитися
Вставка
  • Опубліковано 19 вер 2024
  • -Explanation of Explicit Data Declarations and Inline Data Declarations.
    -Practical Demonstration of Explicit Data Declarations and Inline Data Declarations.

КОМЕНТАРІ • 24

  • @gowthamit4531
    @gowthamit4531 4 місяці тому +2

    Thank you sir for starting this series ❤

  • @bhushangayake2840
    @bhushangayake2840 4 місяці тому +2

    First of Thank you so much sir for starting this series. For the new learner it was always difficult to understand this topic.
    But the way you taught this topic like 9 or 10 std candidate will also understand this topic.
    Thanks a lot again

  • @Rajasekharabap
    @Rajasekharabap Місяць тому +1

    Excellent sir tq

  • @BeChoosy
    @BeChoosy 4 місяці тому +2

    Thank you ❤

  • @Words-With-Emotions
    @Words-With-Emotions 4 місяці тому +1

    Thank you Sir❤

  • @JosephKurivila-ob2kg
    @JosephKurivila-ob2kg 4 місяці тому +1

    When will you start odata service ? Eagerly waiting for sir

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  4 місяці тому +1

      Hello Joseph - I don't have setup/SAP Gateway Client/necessary configurations which are needed for ODATA, so I will not be able to take this topic currently.

    • @JosephKurivila-ob2kg
      @JosephKurivila-ob2kg 4 місяці тому

      @@sapabapbyrahulmehta thank you sir for your reply, As a fresher it's very helpful to learn apab from your tutorial ..

  • @bharathreddyk30
    @bharathreddyk30 4 місяці тому

    THANK YOU

  • @Gathering_wisdom
    @Gathering_wisdom 4 місяці тому +1

    At what date this new syntax came? just to know for interview because I fear if I write this in my resume that i am updated about new syntax and list in line data declaration and he might respond that it is one year old and there are new syntax as of today as the interviewer might be more updated and think that I wrote this just for sake of resume so can u please share how someone can stay updated about what's new in the ABAP how do u get to know ?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  4 місяці тому +1

      You need to go to HELP.SAP.COM . whatever is new in SAP in every release we can find here itself. Suppose you want to check what is new in SAP ERP or what is new in S/4 HANA, you will find the links under Enterprise Resource Planning. You can search based upon keywords, you will find the release notes also.

  • @bhushangayake2840
    @bhushangayake2840 4 місяці тому +1

    I've question that
    So is it a smart intelligence that it automatically take data type (CHAR or N or INT) as we are not declaring data type.
    Can we check what data type it is taking inside?

  • @Gathering_wisdom
    @Gathering_wisdom 4 місяці тому +1

    but what about the type of that data? numeric? char? etc.....?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  4 місяці тому

      It will take the datatype automatically, you can check in the debugging mode.

  • @adityagupta914
    @adityagupta914 4 місяці тому

    Please start ABAP ON HANA Topics like CDS , AMDP , Table function

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  4 місяці тому +1

      Hello Aditya - ABAP on HANA will take time from my end to start as currently I am targeting those topics which can be covered in less span of time.

  • @Keeplearning83
    @Keeplearning83 2 місяці тому

    If we use inline declaration in one perform routine, let say we define an internal table with inline declaration, can we use that in another subroutine?
    I tried system is giving error object not declared
    Perform get.
    Perform show.
    My internal table with inline declaration is in perform get.

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  2 місяці тому

      That is not possible. Declaration in one subroutine is dedicated to that subroutine only. We can not use in another subroutine.

    • @Keeplearning83
      @Keeplearning83 2 місяці тому +1

      Thanks for your reply,. So we cannot use modularisation techniques with new ABAP syntax

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  2 місяці тому

      @@Keeplearning83 We can. Suppose you are writing logic in a FM or subroutine, we can write by using inline declarations. We can write SQL queries by using new syntax.