In earlier post Working With Eclipse [7] : Create your own IDE Actions, you learned about creating own IDE actions with Text output as the demo. In this post, you will learn how to create your own IDE actions for Eclipse with result type HTML and Code Change. The IDE action framework allows you to extend the ABAP development […]
In this post, you will learn how to create your own IDE actions for Eclipse. The IDE action framework allows you to extend the ABAP development tools for Eclipse (ADT) with additional features called IDE actions. The IDE action framework offers you a toolset to build custom functionalities that are completely server-driven using ABAP. You can also use these […]
A CDS table entity defines a database table as an ABAP-managed database object. These are similar to DDIC based transparent tables. Table entities support relationship modeling with CDS associations, semantic metadata with CDS annotations, and typing with both CDS Simple Types and Enumerated Types. CDS Table Entity : Usage CDS Table Entity : Syntax // optional […]
In the earlier post Exploring ABAP on HANA: CDS Simple Types, one of the unexplored and newer features within Core Data Services – CDS Simple Types was discussed. This post talks about a similar concept of defining a data type within CDS – Enumerated Types. CDS enumerated types are the successor of DDIC domains with fixed values. Enumerated Types […]
This post talks about some of the unexplored and newer features within Core Data Services – CDS Simple Types. This is available from ABAP version 7.58 CDS Simple Type CDS simple type is like a data element in the CDS world that refers to ABAP built-in types. Let us create one to understand more. Provide […]
This post talks about an interesting addition to the way structures are declared. Indicator Structures The new addition INDICATORS is available while a type is defined using the statement TYPES. The indicator structure is a substructure of a given type. The indicator structure has the same components as the original structure but all of the fields have type x of length […]
This code sample explains how to create a PDF xstring from internal table. The rv_bin is xstring binary content and can be displayed as pdf. To test this code, SEGW based OData service or RAP OData service can be used. Example output is as below.
In this post, you will learn to use SQL Script in AMDP with flow control. This will cover below statements. Commenting the SQL Script Code The comments can be added using * or — Using IF and ELSE If syntax is similar to ABAP but uses additional THEN keyword. Condition can have following The conditions […]
In earlier post, Important Learning Resources for SAP Developers, the learning resources are summarized. This post talks about important links that can be useful while working on a S/4 HANA project. SAP Business Accelerator Hub : Explore Categories The Explore Categories page contains information about SAP Standard APIs, Events, Integrations, Process Automation, BAdIs, CDS Views which […]