Copy ALV Layout Between SAP Clients

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

779 Views

You can transport your ALV layouts to other system if they are not user specific. This can be performed in Layout Administration by raising a customizing request.Navigate to this path for Layout Administration:Main Menu -> Settings -> Layout -> Administration

Modify or Execute SAP Jobs Using .NET Connector

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

258 Views

In SAP system, you have an external BAPI that can be called to manage SAP jobs, check this FM: "BAPI_XBP_JOB". You can use BAPI_XBP_JOB* function modules to create/schedule a job to run the query. For more details, you can refer below link − BAPI_XBP_JOB There are various FM’s that can be used to start or stop a job immediately: BAPI_XBP_JOB_START_IMMEDIATELY BAPI_XBP_JOB_START_ASAP And many more.

Error while Calling Web Service Using SRT UTIL Transaction

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

501 Views

This error can come due to multiple reasons. One of possible cause could be that your structure name is 30 characters and it is translated to 26 chars in WSDL.I would suggest changing structure name to 10 characters and it may resolve your issue. Below shows Web Service Utilities:

Java as an Architecture Neutral Language

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

5K+ Views

Unlike many other programming languages including C and C++, when Java is compiled, it is not compiled into platform specific machine, rather into platform-independent byte code. This byte code is distributed over the web and interpreted by the Virtual Machine (JVM) on whichever platform it is being run on. Thus when you write a piece of Java code in a particular platform and generated an executable code .class file. You can execute/run this .class file on any system the only condition is that the target system should have JVM (JRE) installed in it. In short, Java compiler generates an architecture-neutral ... Read More

Purpose of System Class in Java

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

2K+ Views

System class belongs to the package java.lang. It cannot be instantiated. A System class provides − standard output. error output streams. standard input and access to externally defined properties and environment variables. A utility method for quickly copying a portion of an array. a means of loading files and libraries. Following are the fields for java.lang.System class − static PrintStream err − This is the "standard" error output stream. static InputStream in − This is the "standard" input stream. static PrintStream out − This is the "standard" output stream.

Find a File Using Java

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

174 Views

Following example shows the way to look for a particular file in a directory by creating a File filter. Following example displays all the files having file names beginning with 'b'.ExampleLive Demoimport java.io.*; public class Main {    public static void main(String[] args) {       File dir = new File("C:");             FilenameFilter filter = new FilenameFilter() {          public boolean accept (File dir, String name) {             return name.startsWith("b");          }       };       String[] children = ... Read More

Integrating SAP with Android

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

511 Views

SMP 3/HCPMS (SAP Cloud-based Mobile services) is the new SAP product to create enterprise mobile apps. This can be used to integrate SAP with different mobile platforms. SAP recently launched the SAP Cloud Platform mobile services- a full-featured mobile app platform in the cloud, partners gain the flexibility to build and run native and hybrid apps that integrate securely with on-premise or cloud-based systems.

Read Image Using SAP OData v2 in UI5 Application

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

551 Views

You have to use below code:img.setSrc("/path/to/my/service/UserPhotoSet('someone@gmail.com')/$value");Here you need to replace part with original path.

What is a Locale Class in Java

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

214 Views

The java.util.Locale class object represents a specific geographical, political, or cultural region. An operation that requires a Locale to perform its task is called locale-sensitive and uses the Locale to form information for the user. The locale is a mechanism for identifying objects, not a container for the objects themselves.

Connection to SAP HANA and Exposing Data in Design Studio

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

239 Views

There are different scenarios you can use to connect Design Studio to HANA database. It primarily depends on Design Studio installation. If you are using Design Studio locally on the system, you can connect to HANA database using an ODBC connection. When Design Studio is available via BI platform, you need to create an ODBC connection in CMC and that can be used to connect to HANA.To use ODBC connection in Design Studio, you have to create a User/System DSN.If you are using the 64-bit version of Design Studio, navigate to the following folder on your local system: C:\Windows\System32. Open ... Read More

Advertisements