Table Maintenance Generator for event Number 01 and 05

Source Table Maintenance Generator for event Number 01  and 05. Create Maintenance view for the database table and write the following code in Include. *&--------------------------------------------------------------* *&      Form  create_entry *&--------------------------------------------------------------* FORM create_entry. zvmaint-zcreatedate     = sy-datum.       " Creation Date zvmaint-zcreatetime     = sy-uzeit.       " Creation Time zvmaint-zcreateuser     = sy-uname.       " Created By zvmaint-zupdateuser     = sy-uname.       " Last Update user zvmaint-zupdatedate     = sy-datum .      " Last Update date zvmaint-zupdatetime     = sy-uzeit.       " Last Update time ENDFORM.                    " _CREATE_ENTRY *&---------------------------------------------------------------------* *&      Form  modify_entry *&---------------------------------------------------------------------* FORM  modify_entry. DATA: lv_index TYPE sy-tabix.                   " Number of lines found CONSTANTS : lc_action_update TYPE c VALUE 'U',    "Updating current record lc_action_create TYPE c VALUE 'N'.    "Creating new  record * Clearing data objects. CLEAR : lv_index. *-- Check the all entries of records in table by looping each record. LOOP AT zvmaint_total. *-- Check record updated. IF <action> = lc_action_update . *         Read the EXTRACT table with current record. READ TABLE extract WITH KEY zvmaint_total. IF sy-subrc EQ 0. lv_index = sy-tabix. ELSE. [...]

Display DDL Source Codes in SAP GUI using ABAP Program

Source: http://www.kodyaz.com/sap-abap/display-d...views-in-sapgui.aspx Capture Date: 15.04.2018 23:39:00 To display DDL source codes of SAP CDS objects like CDS Views in SAP GUI ABAP developer can run DEMO_SHOW_DDL_SOURCE program. CDS objects like CDS views or CDS table functions are created and maintained in ADT Tools like SAP HANA Studio with SQL Console. When you are in SAP … Continue reading Display DDL Source Codes in SAP GUI using ABAP Program

Smartform Version Comparison | SAP Blogs

Source: https://blogs.sap.com/2016/04/08/smartfo...-version-comparison/ Capture Date: 25.03.2018 23:46:09 There has long been a requirement, where we need to compare 2 Smartform versions. In SAP there is no feature for this, there are no past versions maintained and also certainly no remote comparison. This makes comparison and version management of smartforms a tedious task. I was faced with … Continue reading Smartform Version Comparison | SAP Blogs

IDoc Basics For Functional Consultants | SAP Blogs

Source: https://blogs.sap.com/2012/12/31/idoc-ba...ctional-consultants/ Capture Date: 11.03.2018 19:40:11 Today IDocs are used in most SAP applications for transfer of message(information) from SAP system to other systems and vice versa. Though lot of documentation is available on IDocs it is difficult for a functional consultant to understand such documents due to their technical nature. While a functional consultant … Continue reading IDoc Basics For Functional Consultants | SAP Blogs

SAP Fiori 2.0 – Bildirim Merkezi

Source: https://www.linkedin.com/pulse/sap-fiori...erkezi-mehmet-canca/ Capture Date: 11.03.2018 19:40:50 Kullanıcı Deneyimi (User Experience) ve Dijital Dönüşüm (Digital Transformation) kavramlarının ortaya çıkmasıyla birlikte, kullanıcıların kendi görevlerini takip ettiği uygulamalardan ilgili kişileri ihtiyaç anında bilgilendiren teknolojilere geçiş sürecindeyiz. SAP, uygulamalara erişmek için Grafiksel Kullanıcı Arayüzü (Graphical User Interface) yerine SAP Fiori ürününü geliştirmiş ve müşterilerinin kullanımına sunmuştur. İlerleyen dönemlerde anlık … Continue reading SAP Fiori 2.0 – Bildirim Merkezi

What should an ABAPer continue to learn as an application developer | SAP Blogs

Source: https://blogs.sap.com/2017/01/19/what-sh...plication-developer/ Capture Date: 11.03.2018 19:41:33 1. Functional Programming 2. Spring 3. JavaScript 4. A kind of NoSQL Database for example MongoDB 5. Learn how to work on a kind of Cloud Platform – updated in 2018/01/02 Further reading There is an excellent blog written by Marco Hernandez <<And now for something completely different>> which … Continue reading What should an ABAPer continue to learn as an application developer | SAP Blogs

Functional Programming – Try Reduce in JavaScript and in ABAP | SAP Blogs

Source: https://blogs.sap.com/2017/02/27/functio...ascript-and-in-abap/ Capture Date: 11.03.2018 19:42:51   In my previous blog Functional programming – Simulate Curry in ABAP I simulate a very important concept “Curry” in functional programming world using ABAP. In that blog I use the curry idea in the example below: output: jerry-java In this blog, as blog title, I will show another approach by … Continue reading Functional Programming – Try Reduce in JavaScript and in ABAP | SAP Blogs

Creating Offline Application based on SAP Web IDE CRUD Master-Detail Template using Hybrid App Toolkit | SAP Blogs

Source: https://blogs.sap.com/2017/06/12/creatin...-hybrid-app-toolkit/ Capture Date: 11.03.2018 15:08:33 Introduction In this blog, I am going to walk through the steps of creating an offline application based on CRUD Master-Detail template from SAP Web IDE using Hybrid App Toolkit To follow the steps mentioned in this blog post, the following prerequisites needs to be met You need a … Continue reading Creating Offline Application based on SAP Web IDE CRUD Master-Detail Template using Hybrid App Toolkit | SAP Blogs