Sai Subramanyam has Published 99 Articles

DecimalFormat("000000E0") in Java

Sai Subramanyam

Sai Subramanyam

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

164 Views

DecimalFormat is a concrete subclass of NumberFormat that formats decimal numbers. Let us set DecimalFormat("000000E0") and use the format() method as well.new DecimalFormat("000000E0").format(199) new DecimalFormat("000000E0").format(29089)Since we have used DecimalFormat class in Java, therefore importing the following package is a must −import java.text.DecimalFormat;The following is the complete example −Example Live Demoimport java.text.DecimalFormat; ... Read More

Python Vs Ruby, which one to choose?

Sai Subramanyam

Sai Subramanyam

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

144 Views

First thing comes in my mind, why to compare these two language only? This may be because both are interpreted, agile languages with an object oriented philosophy and very huge communities support. However, though both languages share some ideas, syntax elements and have almost the same features the two communities ... Read More

Creating orders in SAP system using .Net

Sai Subramanyam

Sai Subramanyam

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

295 Views

You can handle it by creating an array and insert an object into Array. Bapisdhd1 order_header_in = new Bapisdhd1(); order_header_in.DocType = "OR"; order_header_in.CollectNo = "111022"; order_header_in.SalesOrg = "11011"; order_header_in.DistrChan = "100"; order_header_in.Division = "000"; order_header_in.DlvBlock = "010"; order_header_in.PurchNoC = "TEST ORDER"; newOrder.OrderHeaderIn = order_header_in; Read More

Using ABAP, changing a value in itab by getting data from database table

Sai Subramanyam

Sai Subramanyam

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

1K+ Views

You should do this using a Modify statement as in below − LOOP AT itab. SELECT SINGLE matnr INTO itab-matnr FROM zlldet WHERE palet = itab-palet. MODIFY itab. ENDLOOP. Also note that when you have an ... Read More

How to show if...else statement using a flowchart in JavaScript?

Sai Subramanyam

Sai Subramanyam

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

283 Views

The if statement is the fundamental control statement that allows JavaScript to make decisions and execute statements conditionally. Let’s see how to show if…else statement using flowchart in JavaScript.

What does language attribute do in