SuccessFactors CMP

Compensation & Variable Pay Blog Posts

OData no result after impleenting the method get_expanded_entityset

Hi experts,any idea about on this issue?I created a simple OData in SEGW, and it is working fine. but after changing the structure of SalesHeader from VBAK to ZAJ_VBAK and try to execute in the odata service in /iwfnd/gw_client its not returning any records -the URL is correct/sap/opu/odata/SAP/ZAJ_ODATA_SD1_SRV/SalesHeaderSet?$expand=Nav_to_VbakExt&$format=json-both custom table has records -I already tried …

OData no result after impleenting the method get_expanded_entityset Read More »

DYNPRO deletes value after user interaction

Hi, im neu in ABAP Welt and tried to write a calculator but whenever i click a button. it deletes field which i want to also see. Can You experts help me for this? here is my code: MODULE user_command_2000 INPUT.   IF sy–ucomm EQ ‘BACK’.     LEAVE TO SCREEN 0.   ELSEIF sy–ucomm EQ ‘CLEAR’.     CLEAR:           gv_numinp1 ,           gv_numinp2 ,           gv_numoutp1.   ELSEIF sy–ucomm EQ ‘EXIT’ OR sy–ucomm EQ ‘CANC’.     LEAVE PROGRAM.   ELSEIF sy–ucomm EQ ‘CALC’.     IF gv_numinp1 IS INITIAL AND gv_numinp2 IS INITIAL.       MESSAGE ‘bitte’ TYPE ‘S’ DISPLAY LIKE ‘E’.     ENDIF.     CREATE OBJECT go_main EXPORTING iv_num1 = gv_numinp1 iv_num2 = gv_numinp2.     IF gv_radplus EQ abap_true. “Summe       go_main->sum(          IMPORTING           ev_result =            gv_numoutp1  ” RESULT       ).      ELSEIF gv_radmin EQ abap_true. “Minus       go_main->subtraction(       IMPORTING           ev_result =            gv_numoutp1  ” RESULT       ).      ELSEIF gv_radmultip EQ abap_true. “multiplication       go_main->multiplication(       IMPORTING           ev_result =            gv_numoutp1  ” RESULT       ).      ELSEIF gv_raddiv EQ abap_true. “division       go_main->division(       IMPORTING           ev_result =            gv_numoutp1  ” RESULT       ).     ENDIF.    ENDIF.   WRITE gv_numoutp1. ENDMODULE.   and Photos: before: and after click: BR.    

Setting the scene for Planning Excellence 2024

Hello everyone, As we are planning our next physical on-site event for 2024; we are now setting the scene and looking into interesting topics to showcase – based on the feedback you gave us after last years event. The current main theme looks to be: Embedded Artificial Intelligence in Planning.A sub-topic will also to be Sustainability. If …

Setting the scene for Planning Excellence 2024 Read More »

How to remove spacing and underline between label and value at selection-screen of subscreen?

Hi, experts.How to remove spacing and underline between label and value at selection-screen of subscreen?   SELECTION-SCREEN : BEGIN OF SCREEN 247 as SUBSCREEN. PARAMETERS : werks type ekpo-werks, matnr type matnr, lgort type EKPO-LGORT. SELECT-OPTIONS : so_data for budat. SELECTION-SCREEN : END OF SCREEN 247.   PROCESS BEFORE OUTPUT. MODULE STATUS_0240. call SUBSCREEN sub …

How to remove spacing and underline between label and value at selection-screen of subscreen? Read More »

Passing Internal Table / Deep Structure in Submit program

In the world of ABAP development, we often encounter the need to pass data between programs. Recently, I faced a requirement to transfer an internal table from one report program to another. After extensive research, I realized there wasn’t a straightforward method available online. Therefore, I devised a solution that involves converting the table data …

Passing Internal Table / Deep Structure in Submit program Read More »