Error while using LOOP…..WHERE in SAP ABAP

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

365 Views

LOOP….WHERE condition was included recently in ABAP. Could you please verify your version?  This will work only on a version of 7.0 Ehp2 or higher.

What is the difference between /* */ and /** */ comments in Java?

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

756 Views

Multiline comments (/* */) are used to comment multiple lines in the source code. Example Live Demo public class CommentsExample { /* Following is the main method here, We create a variable named num. And, print its value * */ public static void main(String args[]) { //Declaring a variable named num int num = 1; ... Read More

Updating default value of new column in SAP system

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

428 Views

It is not good practice to update default values to a column as this will not be visible directly in the system and will not be picked by CTS. Also, there is no option in the SAP/ABAP environment of adding default values to the table column. If you choose to make the new column have NON-NULL values, you will have to manually update default values and it will take a lot of time to modify the table.  The best way is to choose your default value as spaces, zeroes and so on depending upon the type of column.

Passing data from one report to another in ABAP using SUBMIT \\\\

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

332 Views

There doesn't seem to be any error in your syntax. Please verify if you declared the variables correctly. In case they are defined correctly, try the extended syntax check to see the error. The extended check can be done by going to PROGRAM => Check => Extended Syntax Check.

What are valid identifiers in Java?

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

810 Views

A valid identifier in java – Must begin with a letter (A to Z or a to z), currency character ($) or an underscore (_). Can have any combination of characters after the first character. Cannot be a keyword. Example Following example shows various possible identifiers used to declare a variable in Java. Live Demo public class VariableTest { public static void main(String args[]) { // Declaring a variable named num int num = 1; ... Read More

Transaction Jobs with no access to SM36 in SAP system

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

269 Views

There are few modules which let you schedule jobs programmatically like ‘JOB_OPEN’ or ‘JOB_CLOSE’. You can use these modules to schedule the job and then run it.You can programmatically handle it irrespective of privilege issue.

Finding index of rows and columns in SAP

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

455 Views

To identify the index of the row, you can use the property “indexOfRow” to get the row of the clicked button.All the buttons will be in the same column, so it does not make sense to get the column index, but if you still need to get the column index then you can go ahead and use the property “indexOfColumn” or “columnIndex”.

Identify required fields for an MB01 transaction in SAP

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

302 Views

As you have mentioned that you have access to SAP system. The solution lies within. Specify the transaction SE37 and mention the BAPI call that you have identified. It will navigate you to proper documentation of the call.But in order for that documentation to be of any help, you will still require movement type for your system. You can check it out with your infrastructure team to help you identify the movement type. Once you know the movement type, you will require other details like material number and others for more details. But that can be determined with minimal efforts. ... Read More

Are identifiers hello and Hello same in Java?

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

349 Views

Identifiers in Java are case-sensitive, therefore, hello and Hello are considered as two different identifiers.

Why can’t we override static methods in Java?

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

5K+ Views

Overloading is the mechanism of binding the method call with the method body dynamically based on the parameters passed to the method call.Static methods are bonded at compile time using static binding. Therefore, we cannot override static methods in Java.

Advertisements