Articles on Trending Technologies

Technical articles with clear explanations and examples

Edit an ABAP Program using Transaction SE93, SE80

George John
George John
Updated on 30-Jul-2019 1K+ Views

You need to go to SE93 and input your Transaction code. It will display program name behind your transaction code. You can edit the programs using SE80 and SE38.  Below shows Transaction code: SE93 Following shows Transaction Code SE80 to edit an ABAP program by opening ABAP Development workbench: Following shows Transaction Code SE38 to edit an ABAP program by opening ABAP Editor Initial screen and to enter the name of Program −

Read More

Integrating Magneto with SAP ECC system

V Jyothi
V Jyothi
Updated on 30-Jul-2019 240 Views

With the integration of SAP ERP with Magneto, you can perform bidirectional communication of orders, sales, and other business data. To check if there is an existing connector, you can reach to SAP support. There are various other vendors in the market who provides ERP-Magneto integration.Integration of ERP-Magneto provides benefit like flexibility, data synchronization, reliability, and security.You can try this link- https://ecommerce.aheadworks.com/magento-extensions/erp-integration.htmlThis says that with some customization, you can integrate your ERP solution with Magneto. For integration, your ERP provider has to implement the option to read/write the required files/data to/from the ERP system. For any ERP software integration, it ...

Read More

Inserting an Array to a table in SAP HANA database

Arushi
Arushi
Updated on 30-Jul-2019 811 Views

As far as I know, there is no direct way of inserting an Array using SQL query. You will first have to combine the columns (EMPL_Id + Skill Id) using the code and then do a bulk insert to the database.

Read More

Use existing authentication along with SAP BO

usharani
usharani
Updated on 30-Jul-2019 203 Views

It is one of the most common extension points in an existing ecosystem. With the latest release of BO, you can use active directory based logins mapped under windows server.

Read More

Difference between Java SE, Java EE, and Java ME?

mkotla
mkotla
Updated on 30-Jul-2019 2K+ Views

Java provides three editions JSE, JEE, JME. JSE − Java Standard Edition using this, you can develop stand-alone applications. This provides the following packages − java.lang − This package provides the language basics. java.util − This package provides classes and interfaces (API’s) related to collection framework, events, data structure and other utility classes such as date. java.io − This package provides classes and interfaces for file operations, and other input and output operations. java.math − This package provides classes and interfaces for multiprecision arithmetics. java.nio − This package provides classes and interfaces the Non-blocking I/O framework for Java java.net ...

Read More

What are annotations in Java?

karthikeya Boyini
karthikeya Boyini
Updated on 30-Jul-2019 966 Views

Annotations are a tag (metadata) which provides info about a program. Annotations in Java Start with the symbol ‘@’. They are used by the compiler to detect errors. Software tools to generate code. They are used to show attributes of an element: e.g. @Deprecated, @Override. Annotation are used to describe the purpose of an element of the framework, e.g. @Entity, @TestCase, @WebService Annotations describe the behaviour of an element: @Statefull, @Transaction. Example Live Demo class Sample{ public void display(){ System.out.println(" "); } } public ...

Read More

How to build JCo server without using a Properties file in SAP?

varun
varun
Updated on 30-Jul-2019 236 Views

You can create your own implementation of DDP and then register using Environment.registerDestinationDataProvider().

Read More

How to set the first day of the week in sap.m.DatePicker's calendar?

mkotla
mkotla
Updated on 30-Jul-2019 184 Views

I don’t think there is any recommended way to access internal calendar in Datepicker. I would suggest you raise a function request in Openui5 using GitHub.

Read More

What is meant by Java being platform-independent?

vanithasree
vanithasree
Updated on 30-Jul-2019 441 Views

When you compile Java programs using javac compiler it generates bytecode. We need to execute this bytecode using JVM (Java Virtual machine) Then, JVM translates the Java bytecode to machine understandable code.You can download JVM’s (comes along with JDK or JRE) suitable to your operating system and, once you write a Java program you can run it on any system using JVM.

Read More

What is the difference between compile time errors and run time errors in Java?

Sai Subramanyam
Sai Subramanyam
Updated on 30-Jul-2019 608 Views

Compile time errors are syntactical errors in the code which hinders it from being compiled. Example public class Test{ public static void main(String args[]){ System.out.println("Hello") } } Output C:\Sample>Javac Test.java Test.java:3: error: ';' expected System.out.println("Hello") An exception (or exceptional event) is a problem that arises during the execution of a program. When an Exception occurs the normal flow of the program is disrupted and the program/Application terminates abnormally, which is not recommended, therefore, these exceptions are to be handled. Example ...

Read More
Showing 60931–60940 of 61,248 articles
Advertisements