Resolve 'Not Assigned' Error in SAP ABAP Program

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

851 Views

The error is in field symbol. In future if you encounter such issue you can go through the logs created by ST22. It will help you in detail to understand the issue and its root cause. The reason of your error is that the field symbol is not initialized and you are trying to use it. You should have a habit of checking the content before using.check is ASSIGNED

Integrate SAP Learning Solution with LMS Platform

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

123 Views

The list of supported products can be viewed on the IMS website.  IMS has listed a set in the listed directory. SAP is not present in that list so it makes it clear that IMS does not support SAP.You can check the link too, in case if SAP is included in future:Link

Write Constructor Names in Java

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

1K+ Views

Declaring a constructor is in Java is similar to methods. While naming the constructor of a class in Java you need to keep the following points in mind. The name of the constructor should be the same (same case) as the class name (along with the access specifier). A constructor should not have any return type. Constructor cannot be static, final, abstract and, synchronized. Example Following Java program is an example of a constructor. Live Demo public class Sample { Sample() { System.out.println("This is an example of ... Read More

Index a Table in SAP

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

1K+ Views

You need to use the transaction SE11. This transaction is used to create indexes on the tables.One main thing to keep in mind over here the way these indexes are moved to production. You need to use the transaction to create indexes in development environment. Once they are created, you need to transport them to the production environment.Once you have made the change, activate the table.

Write Interface Names in Java

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

661 Views

While writing an interface/class names you need to keep the following points in mind. First letter of the interface/class name should be capital and remaining letters should be small (mixed case). interface Sample Likewise, first letter of each word in the name should be capital an remaining letters should be small. interface MYInterface Keeping interface names simple and descriptive is suggestable. Better not to use acronyms while writing interface/class names. Example Live Demo interface MyInterface { void sample(); void demo(); } ... Read More

Communicate from SAP to Message Queue

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

252 Views

Yes, you can do what you are aspiring for. But it depends upon your actual requirement. Let’s say you need to execute the some custom application or program in SAP, then you can opt for any available connector which reads a file or else. This connector then later establishes a connection to the queue and then sends a message.Let’s say you cannot keep polling for files availability, and then you need to use the remote function call methodology. RFC has a SDK available and its online support is tremendous. You can use it too for sending a message. Read More

Using SSIS 2014 with Visual Studio 2012 to Integrate with SAP

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

236 Views

You made a small mistake but a mistake having a big impact. SSIS 2014 does not support VS 2012 in your case. Just switch to VS 2013, your problem will be resolved.

Write Package Names in Java

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

1K+ Views

While choosing a package name you need to keep the following points in mind. The name of the package should be in small letters. It is suggested to start the name of the package with the top level domain level followed by sub domains, ex: com.example.tutorialspoint. Example You can declare a package as in. package com.mypackage.tutorialspoint; Public class Sample { Public static void main(String args[]) { System.out.println("Welcome to Tutorialspoint"); } } Executing a package You need to compile the file with packages using –d ... Read More

Insert Data into SAP Business One using EF

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

211 Views

You are absolutely correct. You cannot use anything other than DI to perform data manipulation.Because if you violate this, the warranty is void and SAP would stop any kind of support it.Coming to your point of using EF in your project, I will issue a simple warning to you just because a basic operation also results in updating many tables. In simple words, a lot of data manipulation happens. So in case you still stick to using EF, then you will need to take care of doing that on your own.

Is Final Method Inherited in Java?

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

3K+ Views

No, we cannot override a final method in Java. The final modifier for finalizing the implementations of classes, methods, and variables. We can declare a method as final, once you declare a method final it cannot be overridden. So, you cannot modify a final method from a sub class. The main intention of making a method final would be that the content of the method should not be changed by any outsider. Example class Demo{ public final void demoMethod(){ System.out.println("Hello"); } } public class Sample extends Demo{ ... Read More

Advertisements