ABAP Articles

Page 9 of 9

Usage of subqueries in internal table as condition in SAP ABAP source code.

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

Note that if you specify an OPTIONS parameter with parenthesis, it will show an error. When you use Where (itab)In this case, itab has only one field with type C and shouldn’t be longer than 72 characters. “Itab” must be specified in parenthesis without any space between parenthesis and table name.You should use the same condition in the internal table as a condition in ABAP source code.

Read More

In SAP Class Builder, I am trying to test ABAP classes. When I press F8, it doesn't show "Create Instance" menu item.

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

You can access Class Builder by using T-code: SE24 or via Repository Browser SE80 and navigate to class you want to edit. You have to ensure that you set the below parameter to the public. It is also possible that your class implements an interface. It is also possible that class implements an interface. You have to click on magnifying glass icon and you can execute both static and instance methods.

Read More

Seeing list of all program screens in SAP ABAP

Sai Subramanyam
Sai Subramanyam
Updated on 30-Jul-2019 952 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

Read More

Difference between using - "standard table of", "Hashed table of", or simply "table of" in SAP ABAP

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

“TYPE STANDARD TABLE OF “refers to the standard table. It refers to a normal internal table which can be accessed via table index or by key in case if you have a key defined over a table while sorting.“TYPE HASHED TABLE OF” refers to the generic hashed internal table. The table is created and data is stored using the hashing algorithm. The main advantage of the hashing algorithm is that accessing any part of the table is independent of the size of the table and hence an increase in the size of the table does not result in any delay ...

Read More
Showing 81–84 of 84 articles
« Prev 1 5 6 7 8 9 Next »
Advertisements