Configuration in SAP SM59

Swarali Sree
Updated on 15-Jun-2020 06:54:12

442 Views

If you are only calling a Remote Function Module in SAP system, you don’t require any configuration in SM59.Considering a scenario where your SAP system has to call a function in the C# application, then you need to configure RFC destination using SM59. You can Transaction for defining HTTP destinations- SM59.There are two types of HTTP connection:HTTP connection to an external server (connection type G)HTTP connection to an ABAP system (connection type H) Note that both the connection types differ from each other in terms of logon procedures. The technical settings are same for both connections.Read More

Create Small Font Text Using JavaScript

Anjana
Updated on 15-Jun-2020 06:52:29

735 Views

To create a small font text with JavaScript, use the small() method. This method causes a string to be displayed in a small font as if it were in a tag.ExampleYou can try to run the following code to create a small font using JavaScript −Live Demo           JavaScript String small() Method                        var str = new String("Demo Text");          document.write(str.small())          alert(str.small());          

Create Strikethrough Text Using JavaScript

Akshaya Akki
Updated on 15-Jun-2020 06:52:04

5K+ Views

To create a strikethrough text with JavaScript, use the strike() method. This method causes a string to be displayed as struck-out text as if it were in a tag.ExampleYou can try to run the following code to create a strikethrough text −Live Demo           JavaScript String strike() Method                        var str = new String("Demo Text");          document.write(str.strike());          alert(str.strike());          

Everything is Stored in Database in SAP System

Ali
Ali
Updated on 15-Jun-2020 06:51:36

1K+ Views

Note that it is easy to store data in form of SAP database tables as compared to files. You can also access files in SAP system but they are available on file system of SAP Application server and not easy to use with.With use of ABAP, you can easily raise queries against database tables and it is safe to run queries to get data. SAP has various tools that allow you to work with table entries and also to manage entire landscape easily.What databases are supported by SAP?PartnerVendorMicrosoft SQL Serverwww.microsoft.comMySQL MaxDBwww.mysql.comIBM DB2 (various versions)www.ibm.comOraclewww.oracle.comAlso SAP has its own in-memory computing ... Read More

Create Bold Text Using JavaScript

Anjana
Updated on 15-Jun-2020 06:48:12

18K+ Views

To create a bold text using JavaScript, use the bold() text. This method causes a string to be displayed as bold as if it were in a tag.ExampleYou can try to run the following code to create a bold text with JavaScript −Live Demo           JavaScript String bold() Method                        var str = new String("Demo Text");          document.write(str.bold());          alert(str.bold());          

Difference Between substr and substring in JavaScript

Alankritha Ammu
Updated on 15-Jun-2020 06:46:04

475 Views

The examples given above have the same output, but yes the method differs, with that the parameters too.The substring() method the second parameter is the index to stop the search, whereas the second parameter of substr() is the maximum length to return.ExampleLet’s see an example for substr() method in JavaScript −Live Demo           JavaScript String substr() Method                          var str = "Apples are round, and apples are juicy.";          document.write("(1, 2): " + str.substr(1, 2));          document.write("(-2, 2): ... Read More

Item Text Inside the List Group in Bootstrap

Chandu yadav
Updated on 15-Jun-2020 06:39:35

315 Views

To set item text inside the list group, use the .list-group-item-text class.You can try to run the following code to implement the .list-group-item-text class −ExampleLive Demo           Bootstrap Example                                          Cars                                      Hyundai                i10                i20                                        Volkswagen                                Vento                Polo                                

Send Table from UI5 Application to ABAP Function Module

Johar Ali
Updated on 15-Jun-2020 06:38:18

956 Views

This can be done using an OData service that accepts POST request from your UI5 application and writes data to a database table. While implementing OData service, you have to call ABAP Backend Class method.You have to remember that all application and classes are instantiated for processing and will end as soon as the request is completed. An OData service can be created using SAP Gateway Service Builder (SEGW).Following steps has to be performed for creating an OData service:Creation of Data ModelGenerate Runtime ObjectsRegistration of ServiceService ImplementationOnce you create a project in Gateway Service Builder, you have to create Entity ... Read More

Set Danger Action for List Item in Bootstrap List Group

Smita Kapse
Updated on 15-Jun-2020 06:38:08

136 Views

Use the .list-group-item-danger class in Bootstrap to set danger action for a list item in a list group −ExampleLive Demo           Bootstrap Example                                          Demo One                                      A                                        B                                

Bootstrap Progress Bar Class

George John
Updated on 15-Jun-2020 06:36:49

290 Views

Use the progress-bar class in Bootstrap to create a progress bar.You can try to run the following code to implement progress-bar class in Bootstrap −ExampleLive Demo           Bootstrap Example                                                       70% Complete                    

Advertisements