Skip to main content
Filter by
Sorted by
Tagged with
-2 votes
1 answer
81 views

I see in many existing ABAP programs that standard internal tables are declared without key fields, for instance: TYPES type_itab TYPE STANDARD TABLE OF sflight WITH DEFAULT KEY. DATA itab_0 TYPE ...
Sandra Rossi's user avatar
1 vote
1 answer
120 views

I'm trying to bind several SALV tables to the same container to let the user switch between the displayed SALV table. Only one SALV table should be visible at a time. I've tried doing this by binding ...
Cutter's user avatar
  • 1,852
0 votes
0 answers
119 views

I am working on a SAP Fiori Elements application using ABAP CDS views and want to limit the number of characters that can be entered in a particular field that is part of a grid table. In the frontend,...
k34l's user avatar
  • 103
0 votes
2 answers
128 views

Let me have SALV1 and SALV2. Both of them display completely different tables, custom buttons etc. SALV1 is created with cl_gui_container=>screen0 and SALV2 with cl_gui_container=>screen1. Now I ...
Schesam's user avatar
  • 772
0 votes
0 answers
117 views

My customer has the request, that a spool with for example 10 Pages need to be downloaded by separated pages. Let´s say, that the Spool has 10 pages and at every two pages I need to split the Spool ...
Mogera's user avatar
  • 37
-1 votes
1 answer
81 views

While using the Geocoding API, I noticed that there are differences in determining the country, which do not exist in the Google Maps web interface. Example: Input address: city code 300000 + CN ...
Hugo Kern's user avatar
0 votes
1 answer
199 views

I'm currently trying to find a Standard-FM or Class or inbuilt-Function, that can perform a "simple" numeric check. Currently i just do IF val CO '0123456789.,+-'. But thats not really nice. ...
Schesam's user avatar
  • 772
0 votes
2 answers
284 views

I have the below CDS view. I need to do 1 more thing that the business has requested. Column Name1 has value 'STARBUCKS' in the db table and when user tries to search with 'Starbucks' it does not ...
Sandip Barnwal's user avatar
0 votes
1 answer
262 views

I get the following error in the following sentence in SAP ABAP SQL: "SELECT" is not defined in the ABAP dictionary as a table, projection view, or database view." select * from ( ...
En TPZ's user avatar
  • 11
0 votes
0 answers
84 views

I have a question in regard to the standard Mass Edit functionality available for ODATA V4 RAP. The standard currently does not seem to support the grouping of fields into particular sections; with ...
Piotr SAPKot's user avatar
0 votes
1 answer
179 views

We are researching older programs and other objects in our SAP ECC6 system and have encountered many programs that end in ======FT (e.g. ZTEST=======FT). It appears that the subroutines in these ...
david tenney's user avatar
0 votes
0 answers
78 views

I am starting off on learning ABAP and require to make small code snippets and run them, often with Breakpoints. In the learning program at https://learning.sap.com/learning-journeys/acquire-core-abap-...
Divyansh Goenka's user avatar
0 votes
0 answers
199 views

I have a requirement where different documents are saved as a xstring on a database table. These documents should now be displayed. For this I use the SAP Document Viewer. I got it to work with PDFs, ...
SBECK1's user avatar
  • 266
0 votes
1 answer
239 views

I have a task to replace the second column, which data is stored in STXH and STHL tables (currently 40 characters long) with a new column that displays longer text. The new column should be generated ...
krumpirko8888's user avatar
0 votes
0 answers
105 views

Im using BAPI_PRODORDCONF_CREATE_TT to create a Prod-Order. I set postg_date in the Structure for the Timetickets to our budat, but that also changes everytime the bldat in the mkpf. How to avoid that?...
Schesam's user avatar
  • 772
1 vote
1 answer
104 views

We have a standard Fiori Application that is calling a pretty complex standard oDataService. We have an enhancement implementation (ZCL_MYENHANCEMENT) that is called as part of the backend call from ...
Cruncher's user avatar
  • 197
1 vote
2 answers
626 views

I have table column ZZPATTN which stores patterns like 01-001\*, 01-002\*, etc. and I have the variable IM_NAME which contains values like 01-001-ABC, 01-002-DEF, etc. In SELECT statement WHERE clause,...
user29774157's user avatar
0 votes
2 answers
191 views

Currently I set the dropdowns of an INT4 id field as follows: TYPES: BEGIN OF dropdown_column_ty, columnname_handle TYPE lvc_fname, columnname TYPE lvc_fname, ...
Schesam's user avatar
  • 772
0 votes
0 answers
418 views

I've got code like @Consumption.filter: { default value: '2025' }. Instead of this constant value, I want to have a dynamic value approach like: last day of the current month current year = !blank ...
sankar babu's user avatar
0 votes
2 answers
257 views

Is there any way we can clear for loop structure fields in sap abap and return it back to new internal table. LOOP AT lt_a INTO DATA(ls_a). CLEAR: ls_a-f1, ls_a-f2. APPEND ls_a TO lt_n. ...
divScorp's user avatar
  • 502
1 vote
1 answer
268 views

There is a Dynpro screen with a GUI Status containing buttons that I want to extend with custom buttons. How to know the names of the program and the GUI Status used? How to find the ABAP place where ...
Sandra Rossi's user avatar
0 votes
2 answers
531 views

I'm working on an SAP ABAP program where I have an ALV report with two custom buttons. When a user clicks one of the buttons, a popup window appears with two fields where the user needs to enter data. ...
Kelvin Huynh's user avatar
0 votes
1 answer
329 views

I am working on an SAP Dynpro screen with a tabbed layout, and I want to include the standard selection TABLES PERNR. in one of the tabs. Specifically, my goal is to have: Tab 1: Contains the ...
Youssef Benslimane's user avatar
0 votes
1 answer
629 views

So I tried EPS2_GET_DIRECTORY_LISTING and EPS_GET_DIRECTORY_LISTING. But the issue is, that inside the function, there is a check to verify whether the user has the necessary permssions for transports....
Frontmaniaac's user avatar
1 vote
1 answer
1k views

Here is an outline of my code that submits a background job: CALL FUNCTION 'JOB_OPEN' EXPORTING jobname = v_jobname sdlstrtdt = sy-datum sdlstrttm = sy-...
mmgro27's user avatar
  • 515

1
2 3 4 5
70