Quantcast
Channel: SCN : Popular Discussions - ABAP in Eclipse
Viewing all 1215 articles
Browse latest View live

ABAP in Eclipse Installation Error

$
0
0

I am trying to install ABAP in Eclipse  and getting below error.

does any one any idea how to resolve it.

 

Cannot complete the install because one or more required items could not be found.

  Software being installed: ABAP Development Tools - Core 1.0.2 (com.sap.adt.tools.feature.group 1.0.2)

  Missing requirement: ABAP Development Tools Communication Framework 1.0.2 (com.sap.adt.fwk.ci.feature.group 1.0.2) requires 'org.eclipse.mylyn.commons.feature.group [3.4.3,4.0.0)' but it could not be found

  Cannot satisfy dependency:

    From: ABAP Development Tools - Core 1.0.2 (com.sap.adt.tools.feature.group 1.0.2)

    To: com.sap.adt.fwk.ci.feature.group [1.0.0,2.0.0)


(Lab preview) Data Preview Tools - We need your feedback

$
0
0

At ABAP Development Tools in Eclipse, we are developing simple and elegant data preview tools which offers functionality similar to SE16, and also an advanced free-styled open SQL editor to execute and preview results.

 

Here is a “lab preview” of the Modeled Data Preview editor that we are building, where the users can preview data in any Dictionary Tables, views. The video is 4 minute in length.

http://scn.sap.com/docs/DOC-44175

 

Here is a “lab preview” of the freestyle open-SQL Data Preview editor that we are building, where the users can write complex open-SQL queries and preview its results rapidly. The video is 2 minute in length.

http://scn.sap.com/docs/DOC-44324

__________________

 

 

Modeled Data Preview

Modeled-DP.png

Some highlights of the modeled data preview would be

  • Users can specify the size of the previewed result-set.
  • Users can add any number of filters. (Internally it would simply mean an AND condition in the WHERE clause)
  • Specify any comparators, e.g. EQUALS, LIKE and also IN (as in the above snapshot)
  • Sorting (results are fetched from backend up sorting)
  • Local filter can be used to further filter in the previewed result set
  • Graphically view all the distinct values. Table chart, bar chart and pie chart would be supported
  • View the logs of all the queries executed

__________________

 

 

Open SQL Data Preview

openSQL-DP.png

Some highlights of the open SQL data preview editor would be

  • Users need not create any report programs to execute the open SQL query
  • Users need not create the ABAP types to hold the result set of the SELECT query(The tool will take care of it internally)
  • Users can progressively build and test the open SQL query. Once ready, simply paste the query into your ABAP program

__________________

 

 

Could you please give us your feedback on these tools

  • How often do you see yourself using these tools?
  • Do you think it will help increase your productivity?
  • What features do you think are currently missing?

 

  • Overall, how do you like these tools? How would you rate these tools on a scale of 10? (10 = "excellent value")

 

You can be very honest about your feedback :-)

Todos in Task View?

$
0
0

Hi,

 

is it possible to show lines with the comment "TODO in the Task View?

 

Kind regards,

Florian

ABAP in Eclipse in HANA Studio

$
0
0

Hello,

I have seen several blogs about ABAP in Eclipse. The prerequisites always mention Eclipse release 3.6 or 3.7.

I have noticed that the HANA Studion is based on  Eclipse 3.8.

Can I install the ABAP for Eclipse Plugin in the HANA Studio or do I have to install a second IDE with the version 3.6 or 3.7?

 

Thanks,

Michael

Remote-enable function in native ADT tool?

$
0
0

Hi,

Is it possible make a function remote-enabled in native ADT tool only (without use of SE37 in Eclipse nor GUI)? I couldn't see such option in Properties view of a function.

Thanks!

KR,

Igor

Errors in Eclipse - while installing new software.

$
0
0

Hi,

 

I get following error while trying to install new software. I tried both Kepeler Service Release 2 and Luna versions and always get similar errors. Any idea what is missing?

 

 

Operation details

  Cannot complete the install because one or more required items could not be found.

    Software currently installed: ABAP Development Tools for SAP HANA (Developer Edition) 2.36.1 (com.sap.adt.tools.hana.devedition.feature.group 2.36.1)

    Missing requirement: ABAP Development Tools Foundation 2.36.2 (com.sap.adt.tools.feature.group 2.36.2) requires 'org.eclipse.mylyn.context_feature.feature.group [3.9.0,4.0.0)' but it could not be found

    Cannot satisfy dependency:

      From: ABAP Development Tools for SAP HANA (Developer Edition) 2.36.1 (com.sap.adt.tools.hana.devedition.feature.group 2.36.1)

      To: com.sap.adt.tools.hana.feature.group [2.36.1]

    Cannot satisfy dependency:

      From: ABAP Development Tools for SAP HANA 2.36.1 (com.sap.adt.tools.hana.feature.group 2.36.1)

      To: com.sap.adt.tools.feature.group 1.5.0

 

Thanks

Vj

ABAP communication layer is not configured properly.

$
0
0

Hello Developers,

 

I`m an ABAP developer and would like to use ABAP in Eclipse. I have installed Eclipse Kepler 4.3 in Windows 7 64 bit along with the component from the website  https://tools.hana.ondemand.com/#abap

 

after installed the ADT component and UI5 I got the issue with communication Layer attached.

 

I have installed the JCO from SAP website and followed the configuration.

 

I have gone through all the procedures below.

1. Microsoft VC runtime is missing: as per information ontools.hana.ondemand.com/#abapyou have to download and install it from:x86orx64

 

2. Not proper JAVA is installed: JAVA JRE 1.6 or higher is needed, download it from http://java.com/en/download/manual.jsp. I choose to install JAVA Platform SE 7 U67 version 7.0.670.1.


3. As per Note “2041195 - Eclipse does not identify operating system correctly” I set settings in Eclipse’s eclipse.ini file. Add following line:

-Dorg.osgi.framework.os.name=win32

Into -vmargs section of file.


does anyone knows what else should be done?


Kind Regards

ABAC doc

$
0
0

Hello,

 

 

if I want to add the parameters of a method with STRG+1 (quick assist), it would be nice to add also the type automatically:

 

Situation with method appendno. ABAP doc added:

      "! Append without separator.     

      appendno

        IMPORTING iw_value TYPE clike,

 

After pressing STRG+1:

      "! Append without separator.

      "! @parameter iw_value |

      appendno

        IMPORTING iw_value TYPE clike,

 

Better:

      "! Append without separator.     

      "! @parameter iw_value TYPE clike |

      appendno

        IMPORTING iw_value TYPE clike,

 

Is this somehow possible?

 

If I want to do that manually, can I put a link inside, so I can navigate to the object?

 

Thank you.


Missing authorization for new project

$
0
0

Hey folks,

 

I have a problem getting started with abap in eclipse.

When I want to start a new project I receive the following message, when trying to connect to the system:

User <user> is not authorized to access system <sid> via ABAP in Eclipse (No authorization to access the resource  /sap/bc/adt/compatibility/graph.)

 

I have the done all the things described in the following blog:

Enabling ABAP in Eclipse

 

Can someone help me?

 

Transaction SU53 was not helpfull.

Feature request: Add separate objects (e.g. programs, classes...) to favorite package

$
0
0

Hello all,

 

I want to start a discussion about the possibility to add separate objects to the list of favorite packages in Eclipse.

 

Right now it is possible to add favorite packages to the list and this is very handy, you can access all your coding more easily. However, it happens to me lot of times, that I have only a few programs in a bigger package and the other programs do not interest me.

 

It would be great if it would be possible to add any object to this "favorite" node. I could be called "favorite objects" and you could be able to add separate programs or classes or webdynpro components. (In SE80 it is similar, you can insert any program or function group or package to the favorite menu).

 

How would you like it?

Is it possible to implement?

 

Have a nice day!

Error while creating new ABAP project in Eclipse

$
0
0


Hi,

 

I have installed the eclipse for ABAP development.Now while creating the new ABAP project I have given the system logon details but it is giving me following error message:

"Logon to system failed (System doesnt support Eclipse based development tools)".

Please provide me a solution.

 

Thanks.

ABAP in eclipse GUI integration with Virtual install of GUI

$
0
0

Hi Experts,

 

In my organization, SAP GUI 7.3 Patch 9 is virtually installed (APPV installation) on a remote server accessible to all client machines. Configuration files etc. are all on the remote server.

 

When I invoke SAP GUI from Eclipse (Luna 4.4), I get an error "Failed to create the part's controls". When I further drill down, I find that it's looking for GUI installation at path " C:\Program Files (x86)\SAP\FrontEnd\sapgui\\SapGuiServer".

 

I explored Eclipse preferences to find a place where this path is maintained, but I was not able to find one. Could you tell me how can I point Eclipse to the server path? or otherwise how can I resolve this error altogether? Do I need a physical installation of SAP GUI 7.3 on my PC?

 

Amiya

What are valid reasons not to use eclipse for ABAP development?

$
0
0

I understand there are always two significant reasons for not changing aspects development methodology within a company;

     1: From a company perspective; change has an up front cost in time and complexity

     2: From an employee perspective; some people like to stick with what they know and are comfortable/productive with.

Conversely there are the two often touted reasons for adopting change:

     1: It will save time (money) in the future.

     2: Some people always want the latest thing/want to make everyone use the thing they had at their last place because they are productive/comfortable with it.

 

Disregarding those reasons for the purpose of this discussion, I'd like to get a balanced view on where eclipse is worth adopting and where it (currently) brings no benefit. As well as whether it can be used in parallel, e.g. can different members of a development team chose to work predominantly in Eclipse and others stick solely to the workbench.

 

Just to give you my initial position on this subject; I am brand new to SAP/ABAP (2 months in) and come from a Java background. Understandably I start as an 'I want to stick to what I know because I'm very productive/comfortable with it' proponent. Having broached this topic with the Lead Dev, I'm not satisfied with the reasons given for not allowing me to trial Eclipse - not that I don't believe them, just my lack of familiarity with ABAP and SAP means I don't understand them fully.

 

For example, one of the reasons I'm being dissuaded from Eclipse is "it's actually going to cause other issues, like the way SAP handles their lock objects." At the moment this all Greek to me, but I'd expect this either to be a known issue with well understood workarounds/good practices to mitigate it or that this is a fundamental issue dissuading all but the most bleeding edge technologists from adopting Eclipse.

 

Secondly I've been told that the Eclipse for ABAP platform was developed primarily for SAP Business One development, not ERP development - again this is a point that I can't argue with due to lack of domain knowledge, but the foolishly optimistic side of me wants it to be not true; surely ABAP is ABAP whatever you are developing with it.

 

So, first off, if these questions have already been answered simply point me to the right place, otherwise can you guys give me some food for thought if not a definitive answer?

 

Thank you.

ADT + SAP GUI JAVA 7.40 with missing connections

$
0
0

Hello,

 

I installed from scratch Eclipse Luna and SAP GUI Java 7.4 (have 7.30 also installed) in Mac OS X Yosemite. ADT is update to latest version.

Now in Eclipse when I create a new ABAP project the connections are missing, although they exist in SAP GUI Java. It used to work with Kepler + 7.30, any clues about about is happening?

 

Thanks

SAP trial downloads

$
0
0

Good afternoon, I’m trying to download the following trial versions:

    

  • SAP NetWeaver AS ABAP 7.03 SP04 64-bit Trial,
    3.912 GB (3.912.392.119 bytes)
  • ABAP Development Tools for SAP NetWeaver Trial
    (IDE), 23.839 MB (23.839.048 bytes)

 

The download page keeps returning this message:

  Unfortunately we have trouble completing your download request. Please contact sdn@sap.com for further support.

 

Does anyone have any suggestions?

 

Thanks - John Stirling.


ABAC doc

$
0
0

Hello,

 

 

if I want to add the parameters of a method with STRG+1 (quick assist), it would be nice to add also the type automatically:

 

Situation with method appendno. ABAP doc added:

      "! Append without separator.     

      appendno

        IMPORTING iw_value TYPE clike,

 

After pressing STRG+1:

      "! Append without separator.

      "! @parameter iw_value |

      appendno

        IMPORTING iw_value TYPE clike,

 

Better:

      "! Append without separator.     

      "! @parameter iw_value TYPE clike |

      appendno

        IMPORTING iw_value TYPE clike,

 

Is this somehow possible?

 

If I want to do that manually, can I put a link inside, so I can navigate to the object?

 

Thank you.

Handling issue with quick fixes.

$
0
0

Hello,

 

while going throught the REST tutorial, I noticed a small difference in the handling between the JDT Java editor and the ADT ABAP editor. It's not much of a difference, but it's one of the small grains of sand in the gearbox

 

When you use a quick fix in the JDT Java editor to create a missing local variable, you can do so anywhere in the line. I prefer to complete the method call first and then immediately press Ctrl+1 while the cursor is still at the end of the line:

-- Ctrl+1 -->

 

As you can see, the cursor jumps to the beginning of the item to be fixed, which makes sense - I explicitly asked for a fix, so find something to fix in the vincinity.

 

In the ADT editor, things are a bit different at the moment:

 

 

The cursor does not move when I press Ctrl+1. Even if there is something to be fixed in the current line, I first need to navigate to the statement in question manually in order to use the quick fix.

 

Would it be possible to adapt the behaviour of the ADT ABAP editor in a future version so that this additional navigation step is no longer necessary?

 

Thanks

  Volker

Unable to connect SAP systems from Eclipse

$
0
0

I am just trying to move from SE80 to Eclipse for ABAP developments.

 

I installed Eclipse followed by installtion of ABAP development tools using https://tools.hana.ondemand.com/juno as source of software tools.

 

I am unable to connect SAP

 

systems which are already available in SAP logon pad. I can see systems while creating new project but when I am trying to login into system using correct credentials eclipse is throwing error.

 

I am putting all details below.

 

Please help me in getting a solution of this problem.

 

Thanks.

 

Error which is occuring -

scn2.JPG

 

Eclipse Version - 4.2 Juno

 

System Details:  Please note there is some warining regarding SNC but I am not sure that is this creating some problem.

scn1.png

 

Network connection preferences in Eclipse

scn3.JPG

 

Below is Trace of Eclipse -

 

**** Error file opened at 20131220 090633 India Standard Time Rel 3.1.0
Embedded (2013-01-25) [721.44]

Error:  >Fri Dec 20 09:06:33,457<   
RfcException: [null]
   
message: Connect from SAP gateway to RFC server failed

Connection parameters:
TYPE=A DEST=ED1_110_rbagaria_en
ASHOST=170.167.250.16
YSNR=00
PCS=1
LOCATION    SAP-Gateway on host sap-ed1ci.np.XXXXX.com / sapgw00

ERROR       timeout during allocate

TIME        Fri Dec 20 03:37:27 2013

RELEASE     721

COMPONENT   SAP-Gateway

VERSION     2
RC          242

MODULE      gwr3cpic.c

LINE        2164

DETAIL      no connect of TP sapdp00 from host 170.167.250.16 after 20 sec

COUNTER     3

   
Return code: RFC_FAILURE(1)
   
error group: 102
   
key: RFC_ERROR_COMMUNICATION

 

 

Below entries are in host file

sapmsED1 3600/tcp

sapmsES1 3602/tcp

 

Message was edited by: Florian Henninger Question was marked as assumed answered. Please close the solved questions to help yourself and everybody other.

Missing authorization for new project

$
0
0

Hey folks,

 

I have a problem getting started with abap in eclipse.

When I want to start a new project I receive the following message, when trying to connect to the system:

User <user> is not authorized to access system <sid> via ABAP in Eclipse (No authorization to access the resource  /sap/bc/adt/compatibility/graph.)

 

I have the done all the things described in the following blog:

Enabling ABAP in Eclipse

 

Can someone help me?

 

Transaction SU53 was not helpfull.

Todos in Task View?

$
0
0

Hi,

 

is it possible to show lines with the comment "TODO in the Task View?

 

Kind regards,

Florian

Viewing all 1215 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>