Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
SAP BEX Articles
Found 6 articles
Adding a text plus and text written from a parameter type C in ABAP
This can be achieved by using String Expressions or by using the CONCATENATE keyword. With the use of the concatenation operator && you can combine text and parameter values effectively. String Concatenation Methods in ABAP There are several ways to concatenate text with parameter values in ABAP. The most common approaches include using string expressions with the && operator and the traditional CONCATENATE statement. Using String Expressions with && Operator The modern approach uses string expressions with the concatenation operator && − ...
Read MoreDetermining values of parameters of given type on a given selection screen in SAP
The function module RS_SELSCREEN_INFO will provide you with the list of parameters and selection options once the report name is input. You can see full details about this FM by entering the name RS_SELSCREEN_INFO into the relevant SAP T-code like SE37 or SE80. Using RS_SELSCREEN_INFO Function Module You can call this FM RS_SELSCREEN_INFO as below − CALL FUNCTION 'RS_SELSCREEN_INFO' EXPORTING report = 'REPORT_NAME' ...
Read MoreOpen a Workbook require loading SAPBEX.xla file
Copy the below code in PERSONAL.XLSM module of your workbook and then refresh −Private WithEvents App As Application Private Sub Workbook_Open() Set App = Application End Sub Try adding below code, in your module: Private Sub App_WorkbookOpen(ByVal Wb As Workbook) MsgBox "New Workbook: " & Wb.Name End Sub
Read MoreHow the Table statement works in ABAP
With table statement, you are able to get a single line of data corresponding to the dictionary structure you specify. The fields of structure can be used as select options and the structure can be passed as variable in the program.
Read MoreUsing different Engine types in SAP HANA
It will use both OLAP and Join engine. The join between the FACT and DIM will be executed in the OLAP engine and joins inside the attribute views will be executed in the JOIN engine so both the engines will be used.
Read MoreCopying ALV layout from one client to another in SAP if they are not user specific
You can transport your ALV layouts to other system if they are not user specific. This can be performed in Layout Administration by raising a customizing request.Navigate to this path for Layout Administration:Main Menu -> Settings -> Layout -> Administration
Read More