Form a Dynamic Query in SAP ABAP

SAP ABAP Expert
Updated on 12-Jun-2020 09:15:33

893 Views

You can indeed achieve it. You just follow the below steps:Step 1 − Define the input parametersDATA:   table_name  TYPE string VALUE  ‘TABLE’, column_name TYPE string VALUE  'COLBNAME', name_value  TYPE string VALUE  'COLVALUE'Step 2 − Create a table type to hold the output results.DATA:   results TYPE REF TO data, TableType TYPE string FIELD-SYMBOLS TYPE STANDARD TABLEStep3 − Create a dynamic query to fill the table 

Bootstrap Grid Structure

Chandu yadav
Updated on 12-Jun-2020 09:15:29

356 Views

A Grid Structure in Bootstrap looks like this −Example                                    ... ....

Use of JavaScript eval Function

Vrundesha Joshi
Updated on 12-Jun-2020 09:14:50

369 Views

The JavaScript eval() is used to execute an argument. The code gets execute slower when the eval() method is used. It also has security implementations since it has a different scope of execution. In addition, use it to evaluate a string as a JavaScript expression.The eval() method is not suggested to use in JavaScript since it executes slower and improper usage opens your website to injection attacks.ExampleHere’s how you can implement eval() functionLive Demo                    var a = 30;          var b = 12;          var res1 = eval("a * b") + "";          var res2 = eval("5 + 10") + "";          document.write(res1);          document.write(res2);          

Stacked to Horizontal Bootstrap Grid

Ankith Reddy
Updated on 12-Jun-2020 09:12:31

420 Views

The following is an example showing stacked-to-horizontal Bootstrap Grid −Example Live Demo           Bootstrap Example                                          Heading One                                      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do                eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut                enim ad ... Read More

Bootstrap Grid for Medium and Large Devices

Arjun Thakur
Updated on 12-Jun-2020 09:08:27

205 Views

A Bootstrap Grid for medium and large devices is shown in the following example −Example Live Demo           Bootstrap Example                                          Hello, world!                                      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do                   eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut     ... Read More

Usage of Bootstrap Previous Class to Left Align Links

Ankith Reddy
Updated on 12-Jun-2020 09:05:46

113 Views

Use the .previous class in Bootstrap to left align the links. You can try to run the following code to implement the .previous class −Example Live Demo           Bootstrap Example                                 Answers                             ← Older             Newer →              

Filter Output Columns in Table in SAP Application

SAP ABAP Expert
Updated on 12-Jun-2020 09:04:29

258 Views

I think there can be a better option to do this. What you can try is fetch only the fields of the table which match the fields present in the table. Do not fetch all the fields of the table but the selected fields.// Here Table refers to the JCo.Table for (int j = 0; j < Table.getNumRows(); j++) {    Table.setRow(j);    Iterator iter = displayField.iterator();    // fetch columns present in the current record    while(iter.hasNext()){       String column = (String) iter.next();       String value = Table.getString(column);       // perform your logic here    } }

Export Data from a SAP System

SAP ABAP Expert
Updated on 12-Jun-2020 09:03:49

870 Views

Your question seems to be uncertain. SAP stores data in database and SAP database structure is not conventional and quite complex.  You need to code separately on top of SAP to support export data to outside world and you are free to choose format of your choice.Identify the user specific SQVI queries in ABAP/BAPI. With use of QucikViewer (SQVI), it is a tool for generating reports. SAP Query offers the user a whole range of options for defining reports.Transaction Code: SQVI (Quick Viewer)You can check out this link to know more how to generate report:Create Report by usingsqviRead More

Differentiate Dynamic Parameter from Others in SAP

SAP ABAP Expert
Updated on 12-Jun-2020 09:02:48

910 Views

It’s a straight forward way to do the same.You have to go to the transaction RZ11 for the parameter, if the dynamic field checkbox is checked it means that the parameter is a dynamic parameter otherwise it is not a dynamic parameter meaning it is a static parameter.

What is Function in JavaScript

Smita Kapse
Updated on 12-Jun-2020 09:02:44

301 Views

The function* declaration is used to define a generator function. It returns a Generator object. Generator Functions allows execution of code in between when a function is exited and resumed later. So, generators can be used to manage flow control in a code.SyntaxHere’s the syntax −function *myFunction() {} // or function* myFunction() {} // or function*myFunction() {}Let’s see how to use generator functionExampleLive Demo                    function* display() {             var num = 1;             while (num < 5)       ... Read More

Advertisements