Integrate SAP System with ISV Company Product for Client Deployment

Sravani S
Updated on 14-Feb-2020 11:07:30

155 Views

SAP NetWeaver is just a term used for SAP system. All SAP systems are mostly running on NetWeaver. SAP PI is one of common integration tool like Biztalk and it is not necessary that all clients has SAP PI system for integration.You should use Remote Function Call RFC in SAP system for integration. RFC is an interface provided by ABAP server and can be used for both synchronous and asynchronous data transfer. Remote Function Call (RFC Connection) between two systems. By creating a trusted RFC connection between two systems, it allows you to create trusted-trusting relationship between systems wherein, you ... Read More

Prevent jQuery Events from Bubbling Up to Parent Elements

Amit D
Updated on 14-Feb-2020 11:05:15

2K+ Views

To prevent jQuery events from bubbling up to parent elements, use the stopPropogation() method. The stopPropagation() method stops the bubbling of an event to parent elements, preventing any parent handlers from being notified of the event.ExampleYou can try to run the following code to prevent jQuery events from bubbling up to parent elements −Live Demo           jQuery stopProagation() method                              $(document).ready(function() {             $("div").click(function(event){                alert("This is : " + $(this).text());                event.stopPropagation();             });          });                              div {             margin:20px;             padding:20px;             border:2px solid #666;             width:160px;          }                             Click on any box to see the effect:                        OUTER BOX                       INNER BOX                            

Stop Event Bubbling to Parent Elements in jQuery

Amit D
Updated on 14-Feb-2020 11:04:20

317 Views

To stop the bubbling of an event to parent elements, use the stopPropagation() method. You can try to run the following code to learn how to stop the bubbling of an event to parent elements −ExampleLive Demo           jQuery stopPropagation() method                              $(document).ready(function() {             $("div").click(function(event){                alert("This is : " + $(this).text());                event.stopPropagation();             });          });                              div {              margin:10px;              padding:12px;              border:2px solid #666;              width:160px;          }                             Click on any box to see the effect:                        OUTER BOX                       INNER BOX                                

Event Methods in jQuery

Ricky Barnes
Updated on 14-Feb-2020 10:44:08

235 Views

Commonly used event methods include $(document).ready(), click(), dblclick() etc. There is a list of methods which can be called on an Event Object, The following are some of the methods which can be called on an Event Object, S.NoMethod and Description1preventDefault() Prevents the browser from executing the default action.2isDefaultPrevented() Returns whether event.preventDefault() was ever called on this event object.3isPropagationStopped() Returns whether event.stopPropagation() was ever called on this event object.4stopImmediatePropagation() Stops the rest of the handlers from being executed.Let us see an example of stopPropagation() method. The stopPropagation() method stops the bubbling of an event to parent elements, preventing any parent handlers from being notified ... Read More

SAP Fiori: Suitable for Mobile Application Development

Ankitha Reddy
Updated on 14-Feb-2020 10:42:37

238 Views

Note that sap.ui.commons is an old desktop library and sap.m is old mobile library.There are various JavaScript and CSS libraries that you can use in combination for the application development. SAPUI5 can use these libraries in combination and they are called SAPUI5 control libraries.Sap.m is the most common control library and is used for mobile devices and desktop.Note that with new release, few of the controls in sap.ui.commons.layout have been replaced by the new dedicated layout library called sap.ui.layout, and it runs on same platform “sap.m”.Few of the old controls have been made available again through the non-deprecated sap.ui.unified library, which ... Read More

Prevent Browser Default Action in jQuery

Amit D
Updated on 14-Feb-2020 10:41:19

851 Views

To prevent the browser from executing the default action in  jQuery, use the preventDefault() method. The preventDefault() method  prevents the browser from executing the default action.ExampleYou can use the method isDefaultPrevented() to know whether this method was ever called (on that event object).Live Demo           jQuery preventDefault() method                              $(document).ready(function() {             $("a").click(function(event){                event.preventDefault();                alert( "Default behavior is disabled!" );             });          });                         Click the following link and it won't work:       GOOGLE Inc.        

Get Attribute of Element Using Click Event in jQuery

Ricky Barnes
Updated on 14-Feb-2020 10:40:25

3K+ Views

To get attribute of an element, use the attr() method in jQuery. You can try to run the following code to get attribute of an element using the ‘click’ event −ExampleLive Demo $(document).ready(function(){     $("button").click(function(){         alert("Width of image: " + $("img").attr("width"));     }); }); Get Width

Remove Event Handlers Using jQuery

Ricky Barnes
Updated on 14-Feb-2020 10:37:08

1K+ Views

Once an event handler is established, it remains in effect for the remainder of the life of the page. There may be a need when you would like to remove event handler.jQuery provides the unbind() command to remove an exiting event handler. The syntax of unbind() is as follows.The following is the description of the parameters −eventType − A string containing a JavaScript event type, such as click or submit. Refer to the next section for a complete list of event types.handler − If provided, identifies the specific listener that's to be removed.ExampleYou can try to run the following code to learn ... Read More

Using Fast Mode in Sybase BCP

Rahul Sharma
Updated on 14-Feb-2020 10:30:55

743 Views

In Sybase, when you have indexes on tables it affects transfer speed. When bcp is used on such tables, it automatically uses its slow mode and logs data is inserted in the transaction log. These logged inserts can cause the transaction log to become very large.To control this data excess and ensure that the database is fully recoverable in the event of a failure, you can back up the log with dump transaction.Note that bcp does not fire any trigger that exists on the target table. Fast bcp logs only the page allocations. For copying data in, bcp is fastest ... Read More

Open a Workbook Requiring Loading SAPBEX.xla File

Amit Sharma
Updated on 14-Feb-2020 10:28:54

194 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

Advertisements