Quantcast
Channel: SCN : Popular Discussions - Java Development
Viewing all 518 articles
Browse latest View live

SAP NetWeaver Compostion Environment 7.3 trial version download

$
0
0

Hi

When I try to download the SAP NetWeaver Composition Environment 7.3 trial version download

 

located at SAP_NW_CE_7.3_TRIAL_VERSION_abstract

 

I get an error stating that the web page is not available.

 

Is this download still supposed to be available?

 

Thanks,

Daniel


sapjco3.dll (32bit VS 64bit)

$
0
0

Hi All,

 

I using sapjco3.dll on 64bit Windows 2008 system for JCO Connector.

i am getting the below error

java.lang.UnsatisfiedLinkError: C:\Windows\System32\sapjco3.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform

 

Could any once please suggest how can i fix this issue with 64bit system.

If need to download sapjco3.dll compatible to 64bit system where can download?

 

Regards,

Narayana.

License problem with SCN - SAP NetWeaver Composition Environment Trial

$
0
0

Hi Users,

 

I downloaded SCN - SAP NetWeaver Composition Environment. and it has an expired license to DB. I have downloaded it from  https://store.sap.com/sap/cp/ui/resources/store/html/SolutionDetails.html?pid=0000000317 . Where It is mentioned this line below

 

Please copy the attached license file after the installation into the following folder: /sybase/CES/SYSAM-2_0/licenses

 

 

But couldn't find that license anywhere. Please help me find the license experts.

 

Thanks in advance.

 

Thanks & regards,

Kiran K Grandhi.

Where to Download the SAP Memory Analyzer

$
0
0

Hi,

 

I atended into the SAP Memory Analyzer presentation on the TechDay and it seemed to be a Free Tool but When I go into the link to Download it it says that it has a 90 day License and that it can not be used in production, does somebody knows what happened?

 

Thanks in Advanced!!!

 

Kind Regards,

 

Gerardo J

Options in RFC_READ_TABLE

$
0
0

Hi all,

 

In RFC_TABLE_READ as I can put in an option like? when the field type like * XXXX *.

 

It's more if someone could tell which are the operators that exist in the where clause.

 

Thank you very much

SAP NetWeaver Compostion Environment 7.3 trial version download

$
0
0

Hi

When I try to download the SAP NetWeaver Composition Environment 7.3 trial version download

 

located at SAP_NW_CE_7.3_TRIAL_VERSION_abstract

 

I get an error stating that the web page is not available.

 

Is this download still supposed to be available?

 

Thanks,

Daniel

java.lang.UnsatisfiedLinkError: getVersion()Ljava/lang/String; Windows

$
0
0

Hi,

 

We are getting this error java.lang.UnsatisfiedLinkError when application tries to make a native call to getVersion(). From my research so far what I got that if we do not have the .dll file place correctly or if there is an issue in loading the file we get this error.

 

But in this case we see the libraries getting loaded fine but when tries to call this method we are getting the error.

 

Note: we have placed the dll's under C:\windows\system32

 

Code snippet:

-


public class SSO2Test{

      

public static String SECLIBRARY;

 

     public static String SSO2TICKETLIBRARY = "sapssoext";

 

     static {

          if (System.getProperty("os.name").startsWith("Win")) {

                    SECLIBRARY = "sapsecu.dll";

          } else {

               SECLIBRARY = "libsapsecu.so";

          }

          try {

               System.loadLibrary(SSO2TICKETLIBRARY);

               System.out.println("SAPSSOEXT loaded.");

          } catch (Throwable e) {

               System.out.println("Error during initialization of SSO2TICKET:\n"

                         + e.getMessage());

          }

               }

 

 

public static native synchronized String getVersion();

 

     public static void main(String[] args) throws Exception {

 

          try {

                

               System.out.println("Start SSO2TICKET main");

               System.out.println("****** test version*******");

               String version = SSO2Test.getVersion();

               System.out.println("Version of SAPSSOEXT: " + version);

                

               // MORE CODE

          } catch (Exception e) {

               System.out.println(e);

          } catch (Throwable te) {

               System.out.println(te);

          }

     }

}

 

Output:

 

SAPSSOEXT loaded.

Start SSO2TICKET main

            • test version*******

java.lang.UnsatisfiedLinkError: SSO2Test.getVersion()Ljava/lang/String;

 

-


 

Looking at the output its clear that loading the library part is fine. The error is getting thrown when trying to call the method.

 

Kindly provide assistance to resolve the same.

 

Thank You.

 

Edited by: abhijeet21 on Dec 29, 2009 9:56 PM

 

Edited by: abhijeet21 on Dec 29, 2009 9:57 PM

JCo: Destination ABAP_AS does not exist

$
0
0

Hi,

 

I am a Lotus Notes Developer and this is my first attempt at JCo in Notes. So, I have followed instructions from SAP Java Connector 3 help document.

I am trying to test an example code in the help document CustomDestinationDataProvider.java.

The code attempts to register DestinationDataProvider: - com.sap.conn.jco.ext.Environment.registerDestinationDataProvider(myProvider);

This statement executes fine the first time. However, the second time it throws the following error:

Exception in thread "AgentThread: JavaAgent" java.lang.Error: java.lang.IllegalStateException: DestinationDataProvider already registered [CustomDestinationDataProvider$MyDestinationDataProvider]

 

Hence, I included following condition before trying to register DestinationDataProvider:

if (!com.sap.conn.jco.ext.Environment.isDestinationDataProviderRegistered()) {

     com.sap.conn.jco.ext.Environment.registerDestinationDataProvider(myProvider);

}

And,

if (!com.sap.conn.jco.ext.Environment.isDestinationDataProviderRegistered()) {

                            myProvider.changeProperties(destName, getDestinationPropertiesFromUI());

}

 

Now, my code skips the registering part, and changing properties part (considering the fact that this has already been done once).

But, now the statement below

String destName = "ABAP_AS";

CustomDestinationDataProvider test = new CustomDestinationDataProvider();

JCoDestination dest;

dest = JCoDestinationManager.getDestination(destName);

 

throws the error that

 

com.sap.conn.jco.JCoException: (106) JCO_ERROR_RESOURCE: Destination ABAP_AS does not exist

 

This may be a very silly issue and might have even simpler solution, but I would really appreciate your time and effort in resolving it.

 

Thanks.


sapjco3.dll (32bit VS 64bit)

$
0
0

Hi All,

 

I using sapjco3.dll on 64bit Windows 2008 system for JCO Connector.

i am getting the below error

java.lang.UnsatisfiedLinkError: C:\Windows\System32\sapjco3.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform

 

Could any once please suggest how can i fix this issue with 64bit system.

If need to download sapjco3.dll compatible to 64bit system where can download?

 

Regards,

Narayana.

SAP NetWeaver Compostion Environment 7.3 trial version download

$
0
0

Hi

When I try to download the SAP NetWeaver Composition Environment 7.3 trial version download

 

located at SAP_NW_CE_7.3_TRIAL_VERSION_abstract

 

I get an error stating that the web page is not available.

 

Is this download still supposed to be available?

 

Thanks,

Daniel

License problem with SCN - SAP NetWeaver Composition Environment Trial

$
0
0

Hi Users,

 

I downloaded SCN - SAP NetWeaver Composition Environment. and it has an expired license to DB. I have downloaded it from  https://store.sap.com/sap/cp/ui/resources/store/html/SolutionDetails.html?pid=0000000317 . Where It is mentioned this line below

 

Please copy the attached license file after the installation into the following folder: /sybase/CES/SYSAM-2_0/licenses

 

 

But couldn't find that license anywhere. Please help me find the license experts.

 

Thanks in advance.

 

Thanks & regards,

Kiran K Grandhi.

When will SAP Java AS for EE 6 see the light?

$
0
0

Hi all,

As far as I know, SAP's bleeding edge AS (NW73 AS) is based on EE5.

As several java AS vendors are releasing EE6 compliant products, I would like to know whether any deadline has been set for SAP's EE6 app server release.

 

Thanks in advance

regards

 

Vincenzo

How to convert string yyyy-mm-dd to date dd/mm/yyyy

$
0
0

Hi Experts,

 

I am getting date in the form of string 2007-06-30 from R/3. How I can convert this string into a date in the form 30/06/2007. I have to use java.sql.Date.

 

Following code is not working. As for executing the following code, I have to use java.util.date. I can not use java.util.date as the Web Dynpro program uses java.sql.Date.

 

     SimpleDateFormat sdf1 = new SimpleDateFormat("dd/mm/yyyy");     Date d = null;     d = sdf1.parse(wdContext.currentContextElement().getDateClicked());

 

Regards,

Gary

Options in RFC_READ_TABLE

$
0
0

Hi all,

 

In RFC_TABLE_READ as I can put in an option like? when the field type like * XXXX *.

 

It's more if someone could tell which are the operators that exist in the where clause.

 

Thank you very much

When will SAP Java AS for EE 6 see the light?

$
0
0

Hi all,

As far as I know, SAP's bleeding edge AS (NW73 AS) is based on EE5.

As several java AS vendors are releasing EE6 compliant products, I would like to know whether any deadline has been set for SAP's EE6 app server release.

 

Thanks in advance

regards

 

Vincenzo


SAP NetWeaver Compostion Environment 7.3 trial version download

$
0
0

Hi

When I try to download the SAP NetWeaver Composition Environment 7.3 trial version download

 

located at SAP_NW_CE_7.3_TRIAL_VERSION_abstract

 

I get an error stating that the web page is not available.

 

Is this download still supposed to be available?

 

Thanks,

Daniel

DYNPRO_SEND_IN_BACKGROUND

$
0
0

Hi All,

 

I am executing a JCO Program which triggers a RFC using JCO's <b>execute(String functionName)</b> method.

 

RFC inturn calls an SAP interface which process the goods issue files.

 

After processing few files i get a connection closed error.

 

In seeing in Transaction ST22 the error was DYNPRO_SEND_IN_BACKGROUND

 

When executed in SAP GUI the error never comes and also when the abapDebug is set to true

 

and its strange that its coming after processing some few files.

 

Any Idea

 

Thomas

Java RFC Connection: Step by step

$
0
0

Hi folks,

 

my first goal is to achieve a remote function call from Java to SAP or the other way.

My first attempt is a Java application which does a RFC to a SAP ABAP function that returns me some database data, but more about that later.

The first thing where i already fail is to build up a simple connection between Java and SAP.

I tried it with JCo v2.1.x and JCo v3.x (Which version should i prefer? are there advantages, disadvantages?)

Here are the two approaches:

{JCO v2.1.x}:

 

          
JCO.Client myConnection = JCO.createClient("001",                                                               "***",                                                                "****",                                                                "DE",                                                                "***",                                                                "00");
myConnection.connect();
...
...

 

 

I get a "(103) RFC_ERROR_LOGON_FAILURE: Userid or password incorrect". I put in my normal SAP GUI account. Its not an admin account but i can create reports etc in the ABAP Editor.

I checked the spelling several time and it should be ok. Why does it say incorrect user or password?

Is this possible because of insufficient rights?

 

{JCo v3.x}:

I just tried the "StepByStepClient" example included in the sapjco3 download and i saw that every connect function begins with a "JCoDestination destination = JCoDestinationManager.getDestination(String);" line.

But what exactly does this getDestination function do? What string do i pass there? In the example is it JCoDestinationManager.getDestination("ABAP_AS_WITHOUT_POOL"); but then i get the error: ""(106) JCO_ERROR_RESOURCE: Destination ABAP_AS_WITHOUT_POOL could not be created:"..

Can anyone explain me how this works?

 

Thanks in advance!

Getting import error in jsp in creating war project of masthead for portal 7.31

$
0
0

Hi,

 

I am getting error in customize masthead war project in jsp for import statement.

<%@ page import="com.sapportals.htmlb.*"%>

<%@ page import="com.sapportals.htmlb.hovermenu.*"%>

<%@ page import="com.sap.security.api.UMFactory"%>

<%@ page import="com.sapportals.portal.prt.service.license.ILicenseService"%>

<%@ taglib uri="prt:taglib:tlhtmlb" prefix="hbj"%>

 

I have asked basis team for jar relative to these but they have not found in system.

We are using portal 7.31 version.

Kindly help me to remove this error from jsp.

 

Thanks in advance.

Options in RFC_READ_TABLE

$
0
0

Hi all,

 

In RFC_TABLE_READ as I can put in an option like? when the field type like * XXXX *.

 

It's more if someone could tell which are the operators that exist in the where clause.

 

Thank you very much

Viewing all 518 articles
Browse latest View live


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