I am trying to find how to access the Values from Enum in ABAP using the following example.I have declared the following Enum@EndUserText.label: 'Enum Value'
define type ze_testenum : abap.char(8) enum
{
UNKNOWN = initial;
Sun = '7';
Mon ...
Hello All,Here, I am discussing specifically about the use-case of employing a RPA/Bot to read from a file and populate data into S/4, because a released API for that functionality isn't available.Are they upgrade safe? I don't think so. SAP can chan...
Hi All,On S/4HANA Public Cloud: Has anyone successfully created a Custom Situation Object via ADT and completely integrated it to a scenario, to receive an alert based on a situation?I had written to SAP in Dec 2022 & in Jun 2023 via OSS messages to ...
As of today (Apr 10, 2024), SAP has not provided a method to debug application job on S/4HANA Public Cloud (related Question by @rammel ) or provided a method to pass parameters to the class via IF_OO_ADT_CLASSRUN (related Question by @fabianlupa ans...
Pre-read 1: Influence RequestPre-read 2: Community Question Brief description from the Influence ticket mentioned above:Suppose a new Custom Business Object is created using the Fiori App "Custom Business Objects" via InApp methodology. Since this n...
For future readers: The base type must match with Enum definitionThis works: types ty_c type c length 8.
out->write( conv string( ze_testenum-mon ) ).
out->write( conv ty_c( ze_testenum-mon ) ). Output is:MON <-- Base type doesn't match
1 ...
Hello, Not sure if it is too late for you or not, but here is the un-documented reason for this misbehavior that I was able to figure out by debugging the logic in standard classes.The foreign entity you have used is I_PurchaseRequisitionTP. This is ...