SAP ABAP [2020] - ABAP 7.40 - VALUE Operator

preview_player
Показать описание
SAP ABAP [2020] - ABAP 7.40 - Value Operator

SAP ABAP value operator is used mostly to construct internal tables with values.

What is SAP ABAP?
ABAP is a high-level programming language created by the German software company SAP SE.
ABAP is one of the many application-specific 4th generation languages first developed in the 1980s.
It was originally the report language for SAP R/2, a platform that enabled large corporations to build mainframe business applications for materials management and financial and management accounting.

In ABAP we have basically 2 types of programs:
1)Reports
2)Module pools

The module pool program defines more complex patterns of user interaction using a collection of screens.
The term “screen” refers to the actual, physical image that the user sees.
Each screen also has a "flow logic", which refers to the ABAP code implicitly invoked by the screens, which is divided into a "PBO" (Process Before Output) and "PAI" (Process After Input) section.

Dynpro - Dynamic program - refers to the combination of the screen and its flow logic.
Introduction to ABAP module pool programming.

Module pool programs are also called dialog programs.

The module Pool programs are basically reports that are prepared for different screens and to manage the sequence of events of these screens.

In the transaction SE80, you can see all the dynpros that you have for this kind of report, add new ones, add all types of elements to the report.

In this program, we will discuss new syntaxes in ABAP 7.40
Рекомендации по теме
Комментарии
Автор

Very useful video for 7.4 syntax👍..please make a series on 7.4 syntax.

madhurisingh
Автор

Thank you for sharing the use of Value operator video. Very Helpful

manishparihar
Автор

5:00
TYPES: BEGIN OF ty_1,
name TYPE string,
role TYPE string,
END OF ty_1.
DATA(wa1) = VALUE ty_1( name = 'Mika' role = 'java' ).
cl_demo_output=>display( wa1 ).

starmika
Автор

Dude you're a really master keep going like this. Regards from Colombia

christianarmandorivasroble
Автор

Very Useful...Waiting for next video on ABAP 7.4...

Jai_Programmer
Автор

hey suraj !just want to say thank you for this awesome content and keep posting and spreading your knowledge

shivdansingh
Автор

Its a fantastic video...very very useful.... Pls keep upthe good
work sir thanks

venkateshks
Автор

6:35
TYPES: BEGIN OF ty_1,
name TYPE string,
role TYPE string,
END OF ty_1.
Data: wa1 TYPE ty_1.


wa1 = VALUE #( name = 'Mika'
role = 'java' ).
cl_demo_output=>display( wa1 ).

starmika
Автор

Thank you for sharing your time & knowledge 🙏

ramakullaipapannagari
Автор

Thanks a lot, it was much needed video. Keep it up. (y)

shubhamjaiswal
Автор

Thank you so much it is very Good Explanation

prathapkumar
Автор

Very Informative..need more videos on this about reading in Loop and also Please make BOPF video

rahulranjan
Автор

21:00
TYPES: BEGIN OF ty_1,
name TYPE string,
role TYPE string,
END OF ty_1.
DATA: itab1 TYPE TABLE OF ty_1.
itab1 = VALUE #( ( name = 'Mika' role = 'abap1')
( name = 'Mika' role = 'abap2')
( name = 'Mika' role = 'abap3')
( name = 'Mika' role = 'abap4')
).
itab1 = VALUE #( base itab1 ( name = 'Mika' role = 'abap5') ).
DATA(wa_read) = VALUE #( itab1[ role = 'abap6' ] OPTIONAL ).
cl_demo_output=>display( wa_read ).

starmika
Автор

please more videos with the for operator:)

gordanaspicer
Автор

Hi sir i like u r explanation
Plz if possible to increase the font size of display
It will be too good for everone.
Thanks and regards
Mohammed..

mmmohammed
Автор

12:40
TYPES: BEGIN OF ty_1,
name TYPE string,
role TYPE string,
END OF ty_1.
TYPES: tt_st1 TYPE TABLE OF ty_1 WITH DEFAULT KEY.


DATA(itab1) = VALUE tt_st1( ( name = 'Mika' role = 'abap')
( name = 'Mika' role = 'abap')
( name = 'Mika' role = 'abap')
( name = 'Mika' role = 'abap')
).
cl_demo_output=>display( itab1 ).

starmika
Автор

Hi apart from the syntax being new, are there any advantages from performance point of view ? Will sap make old syntax obsolete ?

austinblues
Автор

Informative. Can you please create a video tutorial covering the READ Table (Table Operator) in ABAP 7.4?

abhishekkhanna
Автор

Good one.. Please make a video on line exists keyword Instead of read

saivamsi
Автор

Hey Sooraj...Thats a great learning video....just wanted to know how we can use binary search in read with value operator...Can you please add the syntax here pls...

sarojmeher