Error at executing RFC in a dynpro project but not at executing in R3

Hi experts,
I have a problem whit my RFC. When I execute it from the R3 there's no problem, I got the result that I expected. But I conect the RFC in a dynpro project and when I executed it I got an error.
Supose that my RFC receives a USER as parameter and returns me a table of type RPM_TT_ORG_UNIT.
The structure of my RFC is something like this
* First I obtain the position of the user
CALL FUNCTION 'HRHAP_SEL_POSITION_OF_PERSON'
* If error
IF SY-SUBRC = 1.
    MOVE: 'E' TO error-msgty,
          '1' TO error-msgno,
          'Postion not found for the user in the UO' TO error-msgv1,
          SY-MSGV1 TO error-msgv2,
          SY-MSGV2 TO error-msgv3,
          SY-MSGV3 TO error-msgv4.
    APPEND error.
  ELSE.
    IF Sy-SUBRC = 2.
      MOVE: 'E' TO error-msgty,
          '2' TO error-msgno,
          'An error not expected has ocurred' TO error-msgv1,
          SY-MSGV1 TO error-msgv2,
          SY-MSGV2 TO error-msgv3,
          SY-MSGV3 TO error-msgv4.
      APPEND error.
  ELSE.
When I executing it from my dynpro project I got the first error 'Postion not found for the user in the UO'. I tought that maybe the USER parameter was not sending correctly, but then I returned the parameter in one of the 4 error messages and turns out that it was sended correctly.
I hope that someone can help me.
P.S Sorry for my english.

Hi Hanif,
Can you explain me a litle more because I put the external breackpoint in my abap function but when I try to execute my dynpro project, ir executes like it was no breakpoint at all.
I was trying with something else ...
First, I create a web service from my function module from the R/3. When I try the web service it works fine and I though "OK, this is the solution" but when I import the module in my dynpro project it turns out that the destination and metadata is incorrect. I put one that its like the "default" when all the webservices are, but this web service is not located at this destination. Then I try to put another destination where the RFC is located to, but it didn't work.
My second option was to execute it directly from a simple Java Class using the libraries of sap com.sap.mw.jco and it works fine, but we thing that this is no the correct way of executing it. My code is something like this:
mConnection = JCO.createClient (<parameters>);
mConnection.connect();
repository = JCO.createRepository("MiRepository", mConnection);
ftemplate = repository.getFunctionTemplate("Z_RFC_FM".toUpperCase());
myFunction = ftemplate.getFunction();
// Here I pass the parameters hardcoded
myFunction.getImportParameterList().setValue("HCURA841", "USUARIO");
myFunction.getImportParameterList().setValue("50001129","ORGUNITID");
mConnection.execute(myFunction);
// Here I get the result
JCO.Table table = myFunction.getTableParameterList().getTable("SUP_JERARQUICO");
int rows = tabla.getNumRows();
System.out.println("Rows:" + rows);
for(int i=0; i<rows; i++){
      // Get the result on the column ONAME
      System.out.println(tabla.getValue("ONAME"));
      tabla.nextRow();
I don't know if it could be also a proble o permission of the user.

Similar Messages

  • Blocks - to have on the block diagram, but not to execute

    Hello,
    In standard programm languages there are possibilities to mark some lines in code not to execute them (for example, if we have written some code and want to use keep it in programm, but don't need to execute it right now)
    e. g.
    Does LabView allow to mark several blocks on block diagram, to have them on it, but not to execute?
    Thank you in advance.
    Anna

    Hi Anna,
    in newer LabView versions you can disable parts of a block diagram by using the "Disable" structure. This will work even with unfinished, buggy code.
    In older versions (pre-8) you can use a case structure to put the "not to be executed"-code in the not-executed case - but here the code has to be executable...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Error when importing an old web dynpro project

    Hi all,
    I've have upgraded my Sap Netweaver Developer Studio from 2.0.13 to 7.0 .
    Now when i try to compile my old WD project it returs the seguent errors:
    1)The project was not built since its classpath is incomplete. Cannot find the class file for java.lang.Object. Fix the classpath then try rebuilding this project     
    2)This compilation unit indirectly references the missing type java.lang.Object (typically some required class file is referencing a type outside the classpath)     PackagePointer.java     Project/gen_ddic/datatypes/com/sap/function/model/types     line 1
    Where can i find the java.lang.Object?
    thanks, Daniele

    Hi all,
    maybe is too late.. but I wish to share my humble experience with you.
    I encounter in a similar problem...
    When I'm working with Web Dynpro (Messagge Pool) suddenly the NWDS seems to be crazy and give me the error "this compilation unit indirectly references the missing type java.lang.Object "
    I read many post, this one too, but still got the problem.
    Compare the current WD project with another one I found that my project didn't have rt.jar ibrary in its library list.
    So I add in WD project - properties - Java build Path - Libraries  the rt.jar library.
    In my case it was in C:\j2sdk_dir\jre\lib\rt.jar.
    So I build project and the problem desappear.
    I hope this experience will be usefull.
    Cristian

  • Project compile as project but not as DC

    Hello,
    I have created new DC of type Portal Application Module.
    At the code I am using I need to use these jar files located locally at the com.sap.km.rfwizard/lib plugin:
    bc.util.public_api.jar
    bc.rf.framework_api.jar
    com.sap.security.api.ep5.jar
    I have added these jars locally.
    When I build the project it builds with no errors but as soon as I build it as a DC all these jars disappear from from the build path and again I receive errors on all the lines which are using these jars as they can't find them.
    Can someone please sujjest what am I doing wrong here? Perhaps there is a KM SC that I need to add as dependency?
    Thank you in advance,
    Roy

    Hello again Pascal,
    One more thing that bothers me and I don't think I understood completely: When I created Local dynpro projects I imported the relevant km jar files for local work and compile and under SharingReference (Dynpro has SharingReference as well) I gave a reference to: PORTAL: sap.com/com.sap.km.application for server runtime reference. Everything worked great.
    Why when I create new DC I can't continue using the same SharingReference for runtime and I need to manually create J2EE library DC which wraps these same jar files in an external library DC? After all, these jars are already on the server, why uploading them again as J2EE library?
    Regards,
    Roy
    Message was edited by: Roy Cohen

  • Vi works in LabVIEW, but not when executed by TestStand.

    Hi everybody.  I'm using LabVIEW 8 with the Sound and Vibration
    Toolkit, and TestStand2.  I am planning on using TestStand to
    execute a series of performance tests on an audio processing
    board.  When run independently, the vi (which I have attached
    here) runs correctly, and returns a value for the parameter being
    tested.  In this case it is SNR.
    However, when executed by TestStand, the vi seems to run correctly, but
    returns a value of "NaN".  This causes TestStand to fail the test.
    Does anybody know what is going on here?  I've checked FAQs and
    help files, etc...  Why would the vi work on its own but not in
    TestStand?
    Thanks.
    Brett Gildersleeve
    Attachments:
    SingleChannelSNR.vi ‏173 KB
    Test Sequence.seq ‏15 KB

    Hi Ray,  Thanks for the reply.
    Basically, when I run the VI on its own, I see the SNR value appearing
    both in the SNR indicator and in the Test Data Out cluster under
    Numeric Measurement.  The rest of the indicators are empty
    (string, report text, status, code, source).  My waveform graph
    shows an FFT of the signal.
    However, when running the exact same VI through TestStand, I get NaN as
    the output.  The FFT of the signal is NOT displayed in the
    waveform graph...  strange.  No errors are received.
    In order to make it easier to debug, I replaced all of the analysis functions
    with functions included in LabVIEW 8.  Now everybody should be
    able to run it.  I do a simple THD test this time around.  With the VI running
    on its own, I get a value of 1.8 as the THD and the Numeric Measurement of Test Data
    Out.  However, whenever running the test with TestStand, I get a
    value of NaN.
    Same problem.
    Any suggestions?
    By the way, what exactly do you mean by "wiring
    up the Error cluster and feed in to the Error Out."?  I'd
    like to try it out, but I'm not sure exactly what you mean.  I
    already have the Error out cluster wired up, I think.
    Message Edited by TheSleeve on 05-22-2006 12:12 PM
    Attachments:
    SingleChannelTHD.vi ‏159 KB
    Test Sequence2.seq ‏15 KB

  • Issue while calling the RFC in SAP quality system but not in SAP Dev sys

    Hi,
    Our scenario is FIle-RFC-File.
    We are calling the RFC from XI system in Development environment. This is working fine in Development environment, but not in Quality environment.
    This changes are moved/transported to Quality environment in both XI and SAP side. But we are getting the following error in Quality system:
    <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIAdapterFramework</SAP:Category>
      <SAP:Code area="MESSAGE">GENERAL</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText><b>com.sap.aii.af.ra.ms.api.DeliveryException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null></b></SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack />
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Please provide the inputs, what we can check at SAP side and XI side.
    We have tried to test from XI Development to SAP quality environment, but we are getting the same error message.
    Waiting for the precious inputs.
    Thanks,
    Ramesh.

    Hi Ramesh,
    This might be because your RFC adapter would not have been configured properly. Just do a check on it,in RWB(adapter monitoring) and activate it once more in ID.
    Also check RFC comm. parameters such as host name/user id/password etc..
    Also check whether your XML document is having a mismatch with your RFC XML.
    Check with your payload ( from SXMB_MONI) and test it in your message mapping.
    All the best!
    cheers,
    prashanth
    P.S Please mark helpful answers

  • Error Message when using menu buttons in IE but not chrome

    Hi.
    My recently uploaded site has an issue when using the menu buttons anywhere on the site in Internet Explorer but not on my mac using chrome? I get this error message come up on screen which takes three clicks to go away  MuseJSAssert: Error calling selector function:TypeError: Object doesn't support property or method . Then if I click anything else it pop ups again. Any ideas how to get rid of this? I have tried re-uploading the muse files but the same happens. I even tried uploading the files from a different exported frm muse folder as I saw had worked for someone else on here but no difference? Any help much appreciated.
    Website : vanletteringco.com
    You may get an error that iPage are sorting when opening too, just delete the /root1 in the address bar to see the site?
    Thanks
    Gav

    Hello,
    I am only getting the MuseJSAssert error on the contact page of your site when viewed in Internet Explorer.
    And as I can see you have used a webform from Jotforms which I suspect might be creating issues here.
    I would suggest you to remove the form  once and then upload your website again. if it starts working fine then get the Embed code of your form again from Jotforms and insert it again to check if it works fine or not.
    Please let us know the results of the testing.
    Regards,
    Sachin

  • Error:  Namespace prefix 'split-by-page-break' used but not declared.

    I have my machine reimaged, now when I try to preview an rtf template I get the below error. Nothing has changed in my template and I am using 1.0.0 Build 9 as before my reimage as well. This is an uregent problem that I am not able to find the solution for on my own. Please advise with any help.
    Caused by: oracle.xdo.parser.v2.XPathException: Namespace prefix 'split-by-page-break' used but not declared.
         at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:782)
         at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:564)
         ... 14 more
    Thanks

    I'm just new to XMLP and am receiving the same error.. My error is occuring when trying to use sub-templates in my master template.
    I believe I have the syntax correct:
    To import template file:
    <?import:file:h:///CN_LTR_TEMPLATES.rtf?>
    to call the sub-template:
    <?call-template: signature:?>
    Its the call-template to signature thats generating my error message.. My only thought is that its not calling my import properly..
    Anyway.. Hope this might help you a bit.. you never mentioned anything about using a sub-templates. Perhaps since you formated your computer, your template may be in a different location or gone all together (that is if you are using sub-templates).
    If i figure anything out in the mean time, i'll let you know..
    Edited by: user8682333 on Aug 16, 2009 6:51 AM

  • Receiving error 5002 when trying to purchase one item but not when purchasing anything else

         So I am able to purchase other things fine but am stuck with one particular item.  I have submitted the itunes help form twice and no response thus far.  I see that some people say that the error is something to do with billing which makes little sense to me as most everything else purchases fine.  I even purchased some things after i first got the 5002 error and have already recieved the bill for it.
    Anyone know of any way to fix this issue?

    I'm having the same problem trying to buy a CD, I was able to buy a song but not a CD ?????

  • Time charged is showing up in project but not in timesheet?

    The task which the time was charged was set to unpunished after
    resource charged time to it, Now its showing up in project actual but not in  resource timesheet and the same hours are showing up in next line of timesheet
    IS it possible that system automatically shifted hours to next task of other project?

    As soon as the task update is approved and published by the status manager, then it is pushed in the project plan. Evenif you unpublish the task AFTER the timesheet is submitted, the actuals if approved and published will remain on the assignment in the
    project plan, but it will disappear from the timesheet, this is the normal behavior.
    In other words, unpublishing an assignment does not remove the actuals on this assignment, it just removes the assignment from the resource's timesheet so the resource does not see it anymore and cannot update it anymore.
    In case you do need to remove actual, the process is to ask the resource to recall his timesheet (thus the assignment must not be unpublished so the resource can see it), delete the actuals on the given assignment and submit the timesheet. Then the status
    manager has to approve the timesheet and publish the project.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • SAP Conversion Agent: HL7 library project could not be executed

    Hi experts
    I'm using SAP Conversion Agent version 4.3.0 on a PI 7.0. I'm trying to use a HL7 library project. On the Conversion Agent Studio side everythings works fine: the library project is created and a test of the service with a local HL7 file was successful. After that I make the project on the Conversion Agent Studio available and copy the project from the local \SAP\ConversionAgent\ServiceDB directory to the PI Conversion Agent ServiceDB directory.
    So far so good... but when I try to execute the CA project via File Sender Adapter the following error is thrown:
    "Invalid service 'TEST'. Check service name and service database"
    Module Exception 'com.sap.aii.af.mp.module.ModuleException: <Status><severity>4</severity><description>Invalid service 'TEST'. Check service name and service database.- for more information see file:///usr/sap/DXI/ConversionAgent/CMReports/Tmp/2009-12-23/nonexistent_U-_-63-4b17e36f-5e83/Events.cme</description><log_file>file:///usr/sap/DXI/ConversionAgent/CMReports/Tmp/2009-12-23/nonexistent_U-_-63-4b17e36f-5e83/Events.cme</log_file><Event error_code="401024" severity="error_fatal">
    <description>Invalid service 'TEST'. Check service name and service database.- for more information see file:///usr/sap/DXI/ConversionAgent/CMReports/Tmp/2009-12-23/nonexistent_U-_-63-4b17e36f-5e83/Events.cme</description>
    <time>N/A</time>
    </Event>
    </Status> caused by: com.itemfield.contentmaster.CMException' found, cause: com.itemfield.contentmaster.CMException
    I also created another parser project, without HL7 libraries, this works also on Conversion Agent Studio and on PI side without any problems.
    Do you have any ideas?
    Thx,
    manuku

    Hi Conversion Agent experts,
    Do you have any ideas?
    Thx
    manuku

  • Why does Build Application vi work in development environment but not in executable; error 1025

    Hello,
    I have an application ("A") that I am trying to build using another application ("BuildA").
    I can create an application for A manually from its project using the Build Specification, and it works fine (A.exe).
    Also, when I run BuildA.vi in the development environment it calls the "Build.vi" correctly and again builds application A.exe just fine.
    Then, when I make BuildA an application (manually) and run BuildA.exe, I would expect it to also create A.exe just like BuildA.vi did in the development environment.
    However, it fails with the error:
    Code: 1025
    Open VI Reference in NI_App_Builder_API.lvlib:Build (path).vi->BuildA.vi<APPEND>
    VI Path: <b>C:\TEMP\AppBuild\BuildA\vi.lib\AppBuilder\BuildTarget.vi</b>
    I noticed this thread , which looks like a similar problem, but no conclusion was reached.
    Why does BuildA.vi work fine in the LabVIEW environment, but the application BuildA.exe does not work?  All paths are hard-coded, so it shouldn't be a path issue.
    Thanks,
    -john
    Solved!
    Go to Solution.
    Attachments:
    AppBuild.zip ‏175 KB

    Interesting code.  I'm curious how you came to decide 324ms in your while loop, and 58 in the other, and then 5136ms at the end.  In any case I suspect this has to do with this line of text in the help of the Build.vi.
    If you plan to run a build specification on the LabVIEW Run-Time Engine, do not include the Build VI in any of the VIs for the build specification.
    I don't fully know what this means but it might be why it isn't working.
    The Build.vi opens all Context (application instances) and then looks for the one named "NI.LV.MxLvProvider".  This I assume is a application instance NI uses to build applications.  It then uses this and opens some other VIs in this instance for the building.  The error you are getting is "Application Reference is invalid" meaning it couldn't find the NI.LV.MxLvProvider instance it needs to build.  Again I believe this maybe because you are in a run-time environment and that instance doesn't exist there.
    At the end of the day I'm guessing since Application Builder is not free, NI probably doesn't include it in the Run-Time engine, which is free.  So you can't build the way you want.  You could have and EXE running in the run-time open an instance in the development, then run your VI from there if you must make this an EXE.  It maybe easier to just edit the BuildA.vi to have a "Run When Opened" so that you double click the VI and it runs which behaves like an EXE sorta.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Excel Import Fails in SQL Server Agent Job but not when executed in BIDS

    We have a SQL Server agent job that has ran successfully for the past 6 months.  It started failing about a week ago.  I don't believe anyone installed anything on the server.  The proxy account used to run the job is an admin on the server.   
    I've tried everything I can think of or that I found on searches.  I even changed the connection manager from an Excel source to using an Microsoft office 12.0 Access Database Engine OLEDB connection and it still runs in BIDs and not as an agent job. 
    I also setup my LANID as a proxy account to see if the job would run (checking security) -- and it fails with the same error.   I also made sure the path is
    \\server\share rather than a drive letter.   Any ideas?
    The package is executed in 32 bit mode.  The package still runs fine in BIDS (where BIDs is opened on the server) but fails in the SQL Agent job with:
    Executed as user: xxxxxx\xxxxxx. Microsoft (R) SQL Server Execute Package Utility  Version 11.0.2100.60 for 32-bit  Copyright (C) Microsoft Corporation. All rights reserved.    Started:  9:00:00 AM  Error: 2014-12-01 09:00:02.46    
    Code: 0xC0202009     Source: xxxxxx Connection manager "Excel Connection Manager"     Description: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.  An OLE
    DB record is available.  Source: "Microsoft Access Database Engine"  Hresult: 0x80004005  Description: "External table is not in the expected format.".  End Error  Error: 2014-12-01 09:00:02.65    
    Code: 0xC020801C     Source: Load File to Staging Excel Source [43]     Description: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager
    "Excel Connection Manager" failed with error code 0xC0202009.  There may be error messages posted before this with more information on why the AcquireConnection method call failed.  End Error  Error: 2014-12-01 09:00:02.77    
    Code: 0xC0047017     Source: Load File to Staging SSIS.Pipeline     Description: Excel Source failed validation and returned error code 0xC020801C.  End Error  Error: 2014-12-01 09:00:02.90    
    Code: 0xC004700C     Source: Load File to Staging SSIS.Pipeline     Description: One or more component failed validation.  End Error  Error: 2014-12-01 09:00:03.02     Code: 0xC0024107    
    Source: Load File to Staging      Description: There were errors during task validation.  End Error  DTExec: The package execution returned DTSER_FAILURE (1).  Started:  9:00:00 AM  Finished: 9:00:03 AM 
    Elapsed:  2.761 seconds.  The package execution failed.  The step failed.

    I logged on to the server with the account that the SQL Agent runs under and ran the following from a command
    line to execute the package:
    "D:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\DTEXEC.exe" /FILE
    "\"K:\SSIS\xxxxxx\xxxxx.dtsx\"" /CHECKPOINTING OFF 
    /REPORTING EWCDI  /X86
    I wanted to see if it was a security issue with the agent account account - but
    this ran fine.
    I then updated the SQL Agent job to use an operating system command instead
    of a SSIS package on the job step.  This fails...
    The issue is definately with the SQL Server Agent

  • DAX error "Formula is invalid" when updating underlying data, but not changing the formula?

    Hello,
    first of all: I use the 64-bit versions of Excel 2010 and PowerPivot on Windows Server 2008 R2.
    I use this formula to calculate the median of my data:
    MINX( FILTER( VALUES( TableName[ColumnName] ),
                  CALCULATE( COUNTROWS( TableName ),
                             TableName[ColumnName] <= EARLIER( TableName[ColumnName]
                  > COUNTROWS( TableName ) * 0.5 ),
          TableName[ColumnName] )
    The data comes from a view on an MS SQL Server and has about 3.5 million rows. With one dataset ("dataset 1"), everything is working out fine and VERY fast ;-). When I change the view on the SQL server to filter for different data ("dataset 2", the result
    set still containing about 3.5 million rows) and update the PowerPivot data and then the pivot table, the status bar reads "Executing OLAP query..." and excel.exe utilizes one CPU core at 100% for a long time and its memory usage increases significantly, but
    nothing happens. If I interrupt that process by pressing Esc, I get the following error (original German text included):
    ============================
    Fehlermeldung: (Error message:)
    ============================
    Ausnahme von HRESULT: 0x800A03EC (Exception from HRESULT: ...)
    Das Median-Feld konnte der PivotTable nicht hinzugefügt werden, weil die Formel ungültig ist. (Could not add the field "Median" to the PivotTable because the formula is invalid.)
    ============================
    Aufrufliste: (Stack trace:)
    ============================
    Server stack trace:
    Exception rethrown at [0]:
       bei System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       bei System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       bei Microsoft.Office.Interop.Excel.PivotTable.AddDataField(Object Field, Object Caption, Object Function)
       bei Microsoft.AnalysisServices.Modeler.FieldList.ExcelInterOpUtil.AddToDataFields(ICalculatedMember calculatedMember, Int32 positionIndex, Boolean isSpecialColumnBasedNamedSetPresent)
       bei Microsoft.AnalysisServices.Modeler.FieldList.ExcelInterOpUtil.AddToDataFields(ICalculatedMember calculatedMember, Int32 positionIndex, Boolean isSpecialColumnBasedNamedSetPresent)
       bei Microsoft.AnalysisServices.Modeler.FieldList.GeminiPivot.SetFieldOrientation(FieldLocation location, IGeminiColumn column, Int32 positionIndex)
       bei Microsoft.AnalysisServices.Modeler.FieldList.GeminiPivot.SetFieldOrientation(FieldLocation location, IGeminiColumn column, Int32 positionIndex)
       bei Microsoft.AnalysisServices.Modeler.FieldList.GeminiPivot.AddField(IGeminiColumn column, Int32 index)
       bei Microsoft.AnalysisServices.Modeler.FieldList.FieldListControl.fieldsTreeView_AfterCheck(Object sender, TreeViewEventArgs e)
    ============================
    I have analyzed the two datasets for differences and found the following ones:
    Dataset 2 has also negative values in its ColumnName column, dataset 1 does not. Filtering dataset 2 (by changing the view on the SQL server) so that the column contains only positive values does not help.
    A displayed column contains text with square brackets in it in dataset 2. Changing the SQL view to replace them with an empty string (replace(column2, '[', '')) does not help.
    I do not know what else to try. Can anybody help me? The two datasets are very large, but if anyone can give a recommendation how to export them in a reasonable size, I can make them available.
    Best regards
    Michael

    Hello Javier,
    I use a new measure (button "New Measure" in the toolbar or option in the context menu of the table). Here are the data samples:
    Dataset 1:
    Probability    RThreshold    SThreshold    vector    value
    0    -1    -1    DHTTestApp: Total GET Success Ratio    0.98
    0    -1    -1    DHTTestApp: Total GET Success Ratio    1
    0    -1    -1    DHTTestApp: Total GET Success Ratio    1
    0    -1    -1    DHTTestApp: Total GET Success Ratio    1
    0    -1    -1    DHTTestApp: Total GET Success Ratio    1
    0    -1    -1    DHTTestApp: Total GET Success Ratio    0.98
    0    -1    -1    DHTTestApp: Total GET Success Ratio    1
    0    -1    -1    DHTTestApp: Total GET Success Ratio    1
    0    -1    -1    DHTTestApp: Total GET Success Ratio    1
    0    -1    -1    DHTTestApp: Total GET Success Ratio    1
    Dataset 2:
    Probability    RThreshold    SThreshold    vector    value
    0    -1    -1    [MKTBR] BaseOverlay: All nodes: Own routing trust value    0.011353711790393
    0    -1    -1    [MKTBR] BaseOverlay: All nodes: Own routing trust value    0.20522161505768
    0    -1    -1    [MKTBR] BaseOverlay: All nodes: Own routing trust value    0.12309191295875
    0    -1    -1    [MKTBR] BaseOverlay: All nodes: Own routing trust value    0.26926457661881
    0    -1    -1    [MKTBR] BaseOverlay: All nodes: Own routing trust value    0.1911946574326
    0    -1    -1    [MKTBR] BaseOverlay: All nodes: Own routing trust value    0.066699727250186
    0    -1    -1    [MKTBR] BaseOverlay: All nodes: Own routing trust value    0.32597014925373
    0    -1    -1    [MKTBR] BaseOverlay: All nodes: Own routing trust value    0.11977454203852
    0    -1    -1    [MKTBR] BaseOverlay: All nodes: Own routing trust value    0.24751410911045
    0    -1    -1    [MKTBR] BaseOverlay: All nodes: Own routing trust value    0.076218041485769
    In both datasets, probability has a range from 0 to 1, both thresholds from -1 to 1. In dataset 1, value has a range from 0 to 1, in dataset 2, it's -1 to 1.
    Thanks for your help!

  • Error of TooManyObjectsException caught in 9.0.2 but not in 9.0.3

    After I know the JDeveloper version 9.0.3 is available, I download it and tried to run my application which was developed with version 9.0.2. However, I encountered several problems, one of which is stated as below:
    In class Entity1 source code, I place the following codes as validation:
    protected void createDef() {
    super.createDef();
    addUniquePKValidation();
    and In the implementation interface of Entity1, I have the following codes:
    protected void doInsertEntity1Row() {
    try{
    r.setObject1Id(strObject1Id); // Suppose Object1Id is the primary key
    } catch (TooManyObjectsException) {
    With release 9.0.2, it works fine that the TooManyObjectsException can be caught when a row with the same primary key. However, in 9.0.3, the error is skipped and is caught only when the commit statement is executed and posting error is generated.
    Please reply what's going on with 9.0.3 about my mentioned scenario and advice me for corresponding solution.
    Thank you!

    Thank you for your reply.
    I have checked corresponding xml file and found the following differences for a sample entity:
    1) Encoding
    902> <?xml version="1.0" encoding='ISO-8859-1'?>
    903> <?xml version="1.0" encoding='windows-1252'?>
    2) Version attribute
    902> <Attr Name="_version" Value="9.0.2.7.94" />
    903> <Attr Name="_version" Value="9.0.3.10.7" />
    3) Timestamp
    902> TimeStamp="1028878016109"
    903> (N/A)
    4) Precision of all columns have been added for all columns.
    Sample xml files difference for the same view:
    1) Encoding
    902> <?xml version="1.0" encoding='ISO-8859-1'?>
    903> <?xml version="1.0" encoding='windows-1252'?>
    2) Version attribute
    902> <Attr Name="_version" Value="9.0.2.7.94" />
    903> <Attr Name="_version" Value="9.0.3.10.7" />
    3) Timestamp
    902> TimeStamp="1028878016109"
    903> (N/A)
    4) Message bundle class definition
    902> (N/A)
    903> MsgBundleClass="oracle.jbo.common.JboResourceBundle"
    5) Column type definition
    902> (N/A)
    903> ColumnType="$none$"
    By the way, I would like to specify that my first set of source code fragment of Entity1 is extracted from the definition file.
    Thanks for your attention and replies!

Maybe you are looking for

  • Meta Chain Issue

    Hi All, I have some meta chains in the process chain and all of the meta chains are triggered using- "Start using Meta Chain or API" Its evident that, once we triggerr the start varinat in the main chain the rest of meta chains get triggered. In our

  • I just sent a text message to someone else with an iPhone and it came through from my email address instead of my phone number.

    I just sent a test message to someone I just met from my iPhone to her iPhone and it came through from my email address instead of my phone number. This seems very strange. Anyone know why this might happen? It seems like a potentially big privacy pr

  • New problem with numbers

    when I open it up on my ipad the screen is blank, just the grey thatched background, anyone else have this?? I tried re-installing, no luck.

  • DW uses 50% cpu

    I get frequent (and maddening) timeouts when using Dreamweaver CS3. This happens on 2 different computers, one running XP and one Vista. This is not a resource issue. The screen grays out and the cpu usage goes to 50%. This recurs every few minutes a

  • Photo file numbers - duplicates

    Hi, My digital camera can take 9999 photos. I have just this week taken more than that this year and the camera started over with numbering the files (0001, 0002 etc.) When I put these into iphoto will it over write the photo files I took earlier in