Sai Subramanyam has Published 80 Articles

Upgrading SAP.NET Connector 1.0 to .NET Connector 3.0

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:22

332 Views

In .NET connector 3.0.2, it has many bugs and one of the common is connection pooling. There is .NET 3.0.6.0 or higher available. You can go to SAP Marketplace and get the latest version.

How do we connect SAP Business One with Ubercart?

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:22

250 Views

This can be done using SAP DI server as it is using XML based format for importing data and more suitable for external data exchange. You can refer to below documentation for more details on SAP BI DI Server. https://archive.sap.com/documents/docs/DOC-7699 The DI Server enables business partners to develop SOAP-based solutions ... Read More

How to change the look of Python operators?

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:22

199 Views

Python and most mainstream languages do not allow changing how operators look. If you're trying to replace something like a == b with a equals b, you can't do that. In Python the restriction is quite intentional — an expression such as a equals b would look ungrammatical to any ... Read More

How to use week input type in HTML?

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:21

505 Views

The week input type is used in HTML using the . Using this, allow users to select a week and year. A date picker popup is visible whenever you will give a user input to the week input type. Note − The input type week is not supported in Firefox ... Read More

How to set the width of an element's border with JavaScript?

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:21

1K+ Views

To set the width of an element’s border in JavaScript, use the borderWidth property. Set the width using this property. You can try to run the following code to learn how to set the width of an element’s border − Example Live Demo ... Read More

What would be the effect on MySQL output if we have the combination of NULL and other values in the list of strings, provided as arguments in FIELD() function?

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:21

126 Views

There will be a significant change in the output if we have the combination of NULL and other values in the list of strings, provided as arguments in FIELD() function. Following example will demonstrate it Example mysql> Select FIELD('good', 'Ram', 'is', 'good', 'boy'); +---------------------------------------+ | FIELD('good', 'Ram', 'is', 'good', ... Read More

How to show a while loop using a flow chart in JavaScript?

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:21

324 Views

The purpose of a while loop is to execute a statement or code block repeatedly as long as an expression is true. Once the expression becomes false, the loop terminates. Let’s see how to show while loop using flowchart in JavaScript −

How to set outline color with JavaScript?

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:21

558 Views

To set outline color, use the outlineColor property in JavaScript. You can try to run the following code to learn how to implement outlineColor property − Example Live Demo #box ... Read More

How can we create a MySQL view with GROUP BY clause?

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:21

2K+ Views

We can use GROUP BY to group values from a column, and, if we want, we can perform calculations on that column. You can use COUNT, SUM, AVG, etc., functions on the grouped column. To understand GROUP BY clause with views we are creating a view named ‘Info’ using the ... Read More

What are the drawbacks of using test database?

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:21

245 Views

There is a database named test in the list of databases displayed by the statement SHOW DATABASES. We can use test database but the main disadvantage is that anything created in this database can be removed/changed by anyone else with access to it. To avoid this we should take permission ... Read More

Advertisements