List of All Program Screens in SAP ABAP

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

818 Views

If you want to check all Dynpros belongs to one program, you can use table D020S. D020S is known as SAP Table to store screen sources information. This is available within R/3 SAP systems depending on the version and release level. To display or maintain this table, use T-code SM30 You can use T-code SE11 to view the fields in table D020S: It is text table D020T with the key program = sy-repid

Error While Using LOOP WHERE in SAP ABAP

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

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

Difference Between // and /* Comments in Java

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

751 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

Update Default Value of New Column in SAP System

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

420 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

327 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

805 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

262 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

452 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

297 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

344 Views

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

Advertisements