2020 Feb 27 3:46 PM
Hello
I can't create any ABAP program in created package in ABAB Development Tools (ADT) on eclipse.
In the toolbar I choose File -> New -> ... and there are no 'ABAP Program', only ABAP Class, ABAP Interface, ABAP Package
If I use 'Click to perform' in eclipse tutorials, I got an error 'No authorization to create objects of this object type in the selected project.'
Please help me to create ABAP program
P.S.: I do step 1 at https://developers.sap.com/tutorials/abap-create-basic-app.html
2020 Feb 27 3:57 PM
Toolbar or context menu of created package?
don't you have the menu item "other abap repository object"?
2020 Feb 27 3:59 PM
Choose Other Repository Object and type 'Program' in the filter
2020 Feb 27 4:20 PM
I had try to use Other Repository Object but there no object Program too 😞
2020 Feb 27 5:33 PM
Which eclipse & development version or you using ? I see it in my menu. Since, you say you see the ABAP interface and package I'm sure you are in the ABAP perspective.
2020 Mar 06 9:24 PM
You are on the steampunk environment. There are no programs here. No SAP GUI either. The code is written in classes.
The class should implement interface if_oo_adt_classrun.
Here is a sample 'Hello World' program for reference.
CLASS zcl_code_challenge_01 DEFINITION
PUBLIC
FINAL
CREATE PUBLIC .
PUBLIC SECTION.
INTERFACES if_oo_adt_classrun.
PROTECTED SECTION.
PRIVATE SECTION.
ENDCLASS.
CLASS zcl_code_challenge_01 IMPLEMENTATION.
METHOD if_oo_adt_classrun~main.
out->write('Hello World').
ENDMETHOD.
ENDCLASS.
To run press F9.
2020 Dec 07 4:03 AM
Hi Sai,
Do you have any idea how can we create Program Report or use SAP GUI in ADT when used on Trial system (id: TRL client : 800).
Thanks
Ishita
2020 Dec 07 2:55 AM
Hi vladimir.ezopov,
When ADT is connected to trial account using system TRL_EN, there is no SAP GUI or creating programs provision in ADT.How did you go ahead with this then? Please help as i too am stuck up here, following the same tutorial you mentioned.
Thanks
Ishita
2020 Dec 09 6:24 AM
Hi,
vladimir
click on sap gui as shown in below image and you can create abap program in eclipse (using tcode se38)
2021 Feb 19 10:10 AM