Rahul Sharma has Published 46 Articles

Exposing xsjs file data through web browser in SAP HANA

Rahul Sharma

Rahul Sharma

Updated on 11-Dec-2019 06:40:38

253 Views

Note that you have to ensure that Port number 80+ should be open on network. Also URL you are using should be properly built. Below is correct path:server:port/repository_path/file_nameIn your case, you should be using:host: hanacloud port: 8000 (80 + instance_number) SAP HANA Repository tree: mdo ->    sap ->   ... Read More

Using real Boolean type in SAP ABAP

Rahul Sharma

Rahul Sharma

Updated on 10-Dec-2019 06:56:15

223 Views

This way is called as a Predictive Method call. This will work if the initial value is false and false is the initial value. You can refer to below link to know about Predictive method call and also to see examples:https://help.sap.com/doc/abapdocu_750_index_htm/7.50/en-US/abenpredicative_method_calls.htmRead More

How to Validate your Website Code?

Rahul Sharma

Rahul Sharma

Updated on 04-Oct-2019 12:20:03

154 Views

Website development included writing code in HTML, CSS, JavaScript and the platform you’ve chosen. Your website may look correct, responsive and developed with website standards, but it may have some internal issues.Tools are provided by W3C, to validate your website code:Validate HTML5Validator.nu is a validator, which validates HTML5, ARIA, SVG ... Read More

How to convert a byte array to hex string in Java?

Rahul Sharma

Rahul Sharma

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

460 Views

Use Integer.toString(int, redix) where int is byte to be converted and redix is 16 for hexadecimal format.

Can a Java array be declared as a static field, local variable or a method parameter?

Rahul Sharma

Rahul Sharma

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

449 Views

We can declare an array as a local variable or method parameter but, an array cannot be static. Example public class Test{ public void sample(){ static int[] myArray = {20, 30}; System.out.println(); ... Read More

Using SAP Mobile Platform Server

Rahul Sharma

Rahul Sharma

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

142 Views

To use SAP Mobile Platform SDK for application development, you need to install SMP SDK on your local machine.Now regarding use of OData service, SAP Mobile Platform SDK contains three APIs for accessing and manipulating an OData source.OData Online Store API for Windows: this API is used to manage an ... Read More

Passing parameter with parenthesis via URL in SAP Open document

Rahul Sharma

Rahul Sharma

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

167 Views

You can enclose the parenthesis in Quotes “” and try. URL will look like below:http:///OpenDocument/opendoc/openDocument.aspx?sViewer=html&sDocName=&sType=rpt&promptex-=URI_ESCAPE("VALUE_CONTAINING_(PARENTHESIS)")

Way to check if SAP system is ABAP based, Java or Dual stack

Rahul Sharma

Rahul Sharma

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

981 Views

Using SAP GUI, you can only access ABAP or ABAP+Java based system. You can check at multiple places if it is a dual system.T-code: SMICM, you can checklist of services in transaction SMICM (Goto --> Services) - dual stack systems will have the J2EE services listed too. There will also ... Read More

Finding CUID in a SAP BO Webi report in Formula Editor

Rahul Sharma

Rahul Sharma

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

498 Views

In Business Object, a CUID is a key to identify Universe or report in the same cluster when you publish an object first time in the repository. CUID is part of metadata stored in repository and data actually exists in the report.I don’t think you can find CUID from a ... Read More

Internal Table itab declaration in SAP and difference between both the declarations

Rahul Sharma

Rahul Sharma

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

171 Views

As per my understanding, the key difference between two statements is that in first you are reserving memory space for storing 5 lines of the customer_tab table.If you consider performance, the 2nd statement should be better.

Advertisements