Most voted "abap" questions
ABAP (Advanced Business Application Programming) is a proprietary programming language of the SAP R/3 ERP system. Its syntax is similar to COBOL.
Learn more…8 questions
Sort by count of
-
9
votes2
answers4388
viewsHow to create an LLL based on a dynamic structure?
I’m trying to expedite processes since several times we need generate reports in Alvs. The idea is to get the metadata of a structure ( Field Name, Domain, Descriptive ) and thus generate the…
-
3
votes1
answer531
viewsSQL select with dynamic Where in ABAP
There is the possibility to create a select with dynamic Where in the abap language?
-
3
votes3
answers777
viewsHow to read more than one record with READ TABLE?
It is possible to make a READ TABLE in ABAP to read more than one line?
-
1
votes1
answer381
viewsGet information about a data table through SAP
In SAP we have the SE11 transaction where it is possible to view and change characteristics of a data table, it would be possible to export to a txt or csv file the following information: Column…
-
1
votes1
answer142
viewsProblem with installing SAP NETWEAVER on Linux
I am experiencing problems with the installation of SAP Netweaver SP02.750, I am installing on Linux openSUSE 15.0 on a VM. After the installation command: sudo ./intall.sh he accuses the following…
-
0
votes1
answer74
viewsSelect customer cities in the bank and count how many customers there are in each city
I need to select the cities of customers registered at the bank, and count how many customers there are in each city. I wonder how do I know if the name I’m picking from the bank already exists in…
-
-2
votes1
answer424
viewsHow do I change the authorization group of a table generation screen?
I want to change the "group authorizations", but I can’t edit an already built screen.
-
-2
votes2
answers143
viewsWhat does a table with OCCURS 0 in ABAP mean?
I’m starting out in the SAP world and found an internal table declared as follows: DATA: it_buscar TYPE ty_ztabela OCCURS 0 . What is that OCCURS 0 siginifica?…