SAP BEX Articles

Found 6 articles

Adding a text plus and text written from a parameter type C in ABAP

varun
varun
Updated on 13-Mar-2026 321 Views

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 More

Determining values of parameters of given type on a given selection screen in SAP

varma
varma
Updated on 13-Mar-2026 1K+ Views

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 More

Open a Workbook require loading SAPBEX.xla file

Amit Sharma
Amit Sharma
Updated on 14-Feb-2020 211 Views

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 More

How the Table statement works in ABAP

Syed Javed
Syed Javed
Updated on 30-Jul-2019 423 Views

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 More

Using different Engine types in SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 30-Jul-2019 307 Views

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 More

Copying ALV layout from one client to another in SAP if they are not user specific

Ramu Prasad
Ramu Prasad
Updated on 30-Jul-2019 916 Views

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
Showing 1–6 of 6 articles
« Prev 1 Next »
Advertisements