Update Default Value of New Column in SAP System

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

447 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

353 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.

Valid Identifiers in Java

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

850 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

287 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

474 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

323 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

367 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.

Invoke a Web Service from AJAX in SAP Application

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

303 Views

It does not change much in SAP. How you have been doing in other projects like .NET or other, you need to incorporate the same.You need to send a POST or GET request to the intended service with the help of URL.In order to get the URL, you need to seek help from the ABAP person who would be exposing the service to fetch the WSDL file for all the details about the service.Once you have the WSDL, you can frame the request object with all required input parameters to make an AJAX call.

Keyboard Shortcut for Double Clicking in SAP

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

702 Views

You can use F2 for this.

Advertisements