Articles on Trending Technologies

Technical articles with clear explanations and examples

Fetching data from transparent tables in SAP system

SAP
Anil SAP Gupta
Anil SAP Gupta
Updated on 30-Jul-2019 611 Views

Try checking length of variable if it is meeting minimum variable length required, if not append zeroes in end.

Read More

Do local variables in Java have default values?

Ali
Ali
Updated on 30-Jul-2019 1K+ Views

No, local variables do not have default values. Once we create a local variable we must initialize it before using it. Since the local variables in Java are stored in stack in JVM there is a chance of getting the previous value as default value. Therefore, In Java default values for local variables are not allowed. Example public class Sample { public static void main(String args[] ){ int data; System.out.println(data); } } Error C:\Sample>javac Sample.java Sample.java:4: error: variable data might not have been initialized System.out.println(data); ^ 1 error

Read More

Values are not readable while calling RFC method in .net via SAP.NET Connector 2.0

John SAP
John SAP
Updated on 30-Jul-2019 274 Views

Please check if you have same Unicode encoding in SAP and .NET Connector.

Read More
Showing 61301–61303 of 61,303 articles
« Prev 1 6127 6128 6129 6130 6131 Next »
Advertisements