Posts by Igor Bittencourt • 19 points
5 posts
-
-1
votes1
answer142
viewsA: Problem with installing SAP NETWEAVER on Linux
Guy as far as I know sap and work with it, and that it doesn’t work on other operating systems. for example many applications are made for internet explorer.
-
0
votes1
answer21
viewsA: Unity Firebase - Problem logging in
Firebase is an application development platform for mobile devices, not computers. It can only be tested by a mobile phone.
-
1
votes1
answer381
viewsA: Get information about a data table through SAP
You can use the DDIF_FIELDINFO_GET function to take all data from a table.…
-
0
votes3
answers777
viewsA: How to read more than one record with READ TABLE?
Read Table is made to select only 1 row from a transparent table. You need to use a loop to select the desired content from one table to another.…
-
1
votes1
answer531
viewsA: SQL select with dynamic Where in ABAP
There’s a way, but follow the example: CONCATENATE sy-sysid '%' sy-mandt INTO DATA(logsys_aux). CONCATENATE ' logsys like ''%' logsys_aux '%''' INTO DATA(logsys). SELECT SINGLE logsys FROM tbdls…