Problem with SOAorderbooking demo

hi
i have problem when i m trying to invoke customerservice through invoke activity i m not getting anything in my operartion filed.
what could be the reason

hi shanthi,
u refer to these blogs
<b>User Mapping-based Single Sign On,
SAP Logon Ticket-based Single Sign-On>
hope its useful
regards
bhargava

Similar Messages

  • Problems with FileUpload Demo

    Hi!, i have a problem with the File Upload Demo when it calls this line:
    hDirectoryObject := JFile.new(directory);
    and the error is: error 6508 "PL/SQL: could not find program unit being called"
    That's ok, but anybody knows why should the program couldnt find the routine ?
    And just one more thing...where can i look for JFile method description ??
    Thanks a lot :) !!
    Cristian.

    Hi!, i have a problem with the File Upload Demo when it calls this line:
    hDirectoryObject := JFile.new(directory);
    and the error is: error 6508 "PL/SQL: could not find program unit being called"
    That's ok, but anybody knows why should the program couldnt find the routine ?
    And just one more thing...where can i look for JFile method description ??
    Thanks a lot :) !!
    Cristian.

  • Problems with XDBBasic Demo

    Hello
    i have a big problem with the XDBBasic Demo. After downloading the 1999 purchaseOrders into the Repository i can't query them. If i perform select count(*) from purchaseorder i get a 0 result.
    I don't understand, where is the link that oracle knows that all files from the purchaseorders Repository should be linked to the purchaseorder object table.
    Thank you very much
    Bastian

    Sorry about my silly question. Next Time I read the docu i little bit more exact. I have'nd perform the install script. So schema was not incl. into the purchaseOrder xml files.
    Sorry

  • Any problems with RH10 demo on the same machine as RH9?

    I need to install the RH10 demo with captivate on a machine with RH9. Will that create any problems?

    Both will run OK but Rh10 will become the version that opens when you double click an XPJ file. If you later uninstall Rh10 it may not revert to Rh## but a quick reinstall should fix that.
    If you try to open an earlier version project, you will get a warning and the option to back out without upgrading the project. There are some hacks for reverting to an earlier version but they are not recommended.
    Use copies of your Rh## projects to work in 10 while you experiment.
    Ideally, use another machine.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Problem with long demos

    I've produced a longer software demo (about 400 slides,
    runtime about 17 min, playing in a loop) as an exe file. After it
    runs a while some parts of the screen became red (mostly in full
    motion parts of the demo).
    Can someone help me to solve this problem otherwise than
    restart the demo every 30 minutes?

    Welcome to our community, Matthias
    Basically this means the computer playing back the video is
    running out of resources. You really need to seriously consider
    breaking the project into smaller chunks. Then configure it to
    Daisy Chain. At 400 slides, I'm surprised it even works in the
    editor. Normally we recommend no more than 50-65 slides with
    occasional "really large" projects having as many as 100 or so
    slides.
    For information on Daisy Chaining,
    click
    here
    Cheers... Rick

  • Problem with JTableSorter demo from OTN sample

    I've downloaded TableSorter from JDeveloper Sample and try to execute it now.
    I've done all the step ( following the guide: How to Sort a JTable Using the TableSorter Model from JDeveloper).
    When I connect to database with hr8/hr8@mymachine with SQL+, I can select, insert, update... all of the tables for example: employees, departments...It seems that they do correct.
    My problem:
    By Run FrameDepartmentsViewEmployeesView2.java with JDeveloper, I can only see the DepartmentView but not any row of employeesview2-table and so I can't sort the table. When I try to insert new record ( both departmentsview and employeesview ), it fails. The errors are:
    oracle.jbo.SQLStmtException) JBO-27122: SQL error during statement preparation.
    Statement: SELECT Employees.EMPLOYEE_ID,
    Employees.FIRST_NAME, Employees.LAST_NAME,
    Employees.EMAIL, Employees.PHONE_NUMBER,
    Employees.HIRE_DATE, Employees.JOB_ID,
    Employees.SALARY, Employees.COMMISSION_PCT,
    Employees.MANAGER_ID, Employees.DEPARTMENT_ID,
    Employees.DN FROM EMPLOYEES Employees WHERE Employees.DEPARTMENT_ID = :1
    Details:
    (----- LEVEL 1: DETAIL 0 -----
    (java.sql.SQLException) ORA-00904: Ung|ltiger Spaltenname (== illegal column name )
    I've still have this prolem until now. Can somebody help me to correct it?
    Thanks in advance.

    I have to go to meet my Professor for my exam now, so I have no time more to test BC4J tester today. I'll do it in monday and answer you later.
    Yes, I'm much intersted in client side sorting. Many thanks for your offer. Could you please tell me where I can find it, or send me under <[email protected]>.
    Regards,
    VKW

  • Problem with WSA demo license

    When a do this:
    https://tools.cisco.com/SWIFT/LicensingUI/Quickstart#. -> Get Other License-> Demo and Evaluation->
    Security Products-> Cisco Virtual Appliance Demo License->Cisco Web Security Appliance (WSA) Virtual Appliance 45 Days Demo License
    I see the massage attached in pic.
    How can a get 45 days demo lisence for WSA?
    tnx

    Your Cisco a/c didn't have permission to get demo license.
    You need to ask your local Cisco Sales representative

  • Problems with Dashboard Demo App in Flash Builder 4

    I imported the Adobe Flex Dashboard app into Flash Builder 4 using SD 4.1 and selected "Use Flex 3 compatibility mode", but there are still some issues after import.
    I'm not talking about having to create the "libs" folder and re-generate the HTML templates. I know why that needs to be done. I'm also not talking about the IStroke and IFill errors you get for the number of arguments to the apply() and begin() methods, as those interfaces changed in Flex 3.5.
    But when I get the app launched, the chart datatips are just a black rectangle (no text) and the combobox entry text is invisible.
    I'm going to try and fix these, but I thought selecting "Use Flex 3 compatibility mode" meant no changed required?

    Here is a simple example. Create a new project in Flash Builder 4 and in the project properties  compiler section, select "Use Flex 3 compatibility mode". Then launch the app, hover over a column in the chart and you see black rectangles, not data tips. Why is this and how to fix?
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application
      xmlns:mx="http://www.adobe.com/2006/mxml"
      creationComplete="srv.send()"
      height="600">
      <mx:HTTPService id="srv"
        url="http://aspexamples.adobe.com/chart_examples/expenses-xml.aspx"/>
      <mx:ComboBox dataProvider="{srv.lastResult.data.result}" labelField="month"/>
      <mx:Panel title="Column Chart">
        <mx:ColumnChart id="myChart" showDataTips="true"
          dataProvider="{srv.lastResult.data.result}">     
          <mx:horizontalAxis>
            <mx:CategoryAxis categoryField="month"/>
          </mx:horizontalAxis>
          <mx:series>
            <mx:ColumnSeries xField="month" yField="profit"
              displayName="Profit"/>
            <mx:ColumnSeries xField="month" yField="expenses"
              displayName="Expenses"/>
          </mx:series>
        </mx:ColumnChart>
        <mx:Legend dataProvider="{myChart}"/>
      </mx:Panel>
    </mx:Application>

  • Problem/Error with 'Document' demo!

    the "document" demo does not seem to work correct (in my case: Oracle 8.1.6, xsql servlet version 1.0.0.0 (Production) and MSIE 5.5).
    The demo lets you insert a XML-document in a table and retrieve it afterwards.
    The retreiving part does not work. The frame at the right remains empty, unless I remove the line:
    <?xml-stylesheet type="text/xsl" href="clob.xsl"?>
    from doc.xsql. Then I see the XML document as a tree structure in IE.
    What is wrong with the demo, or my setup?
    Thanks.
    P.s. I am only interested in the working of the omit-xml-declaration="yes" parameter, like in the clob.xsl stylesheet, because I have a problem with my own application.
    I need to display data obtained from the following query:
    xsql:query tag-case="upper">
    <![CDATA[
    select v.vak_code -- code (VCHAR2)
    , v.vak_naam -- name (VCHAR2)
    , v.omschrijving -- description (CLOB)
    from xpa_vakoverzichten v
    where v.von_id = '{@VONID}'
    ]]>
    </xsql:query>
    The column description contains an XML document with header and doctype which I would like to get rid of (I need them because i use Xmetal to edit the content of the column description so i can enforce rules).

    XSQL 1.0.1.0 (now available on OTN) fixed a bug related to the document demo, so it likely would fix the problem you're seeing. The omit-xml-declaration will only be done if you leave the <?xml-stylesheet?> reference in there.

  • PI Demo Examples problems with executing CTC template for client setup

    Dear SAP community,
    I use PI 7.30 SP 4 and get the following exception if I use the CTC template to set up the PI demo examples in client 105
    and 106
    Web Services Configuration
    Description
    Exception in step "SRT_TECHNICAL_SETUP"
    Exception details : java.lang.Exception: BAPIRET2 SRT_ADMIN 050 Could not create service destination
    State
    Step was skipped
    In client 107, the template works after I delete the SAP_WSRT user. In clients 105 and 106, this leads to the exception above,
    If the  SAP_WSRT user exists, I get the exception that this user alreadz exists if I run the template.
    What should I do to fix this problem and properly implement the template on all clients?
    PS: I use admin users with SAP_ALL  rights. Maybe I use the wrong master password, because I use the one of my SAP_ALL user. This works at least for using the template within client107.
    Andreas

    Hi Mark,
    in my case the workaround of deleting the service user works only in Client 107.
    The additional problem with a missing service destination occurs already after deleting the service user in Clients 105 and 106. Will this additional problem also be treated in the new note?
    Joerg-Joachim Klossika already added the workaround to this note for the existing service user I proposed to him.
    I still cannot resolve the problem with the missing service destination.
    regards
    Andreas

  • Problems with Demo Apps

    I have been having some problems with the Downloadable Demo. When I try to run the XDBConfiguration script, all goes well until I get to:
    SQL> create or replace package body XDB_CONFIGURATION as
    2 --
    3 FTP_XPATH varchar2(256) := '/xdbconfig/sysconfig/protocolconfig/ftpconfig
    /ftp-port';
    90 procedure setFTPport(PORT_NUMBER number)
    91 as
    92 begin
    93 setXDBport(FTP_XPATH || '/text()', PORT_NUMBER);
    94 end;
    95 --
    96 end XDB_CONFIGURATION;
    97 /
    Warning: Package Body created with compilation errors.
    All then continues and seems to be OK until:
    SQL> alter package XDB_CONFIGURATION compile
    2 /
    Warning: Package altered with compilation errors.
    and then:
    SQL> call xdb_configuration.folderDatabaseSummary()
    2 /
    call xdb_configuration.folderDatabaseSummary()
    ERROR at line 1:
    ORA-04063: package body "XDB.XDB_CONFIGURATION" has errors
    Lastly:
    SQL> set echo on
    SQL> set long 10000
    SQL> --
    SQL> select xdburitype('/sys/databaseSummary.xml').getXML() from dual
    2 /
    ERROR:
    ORA-31001: Invalid resource handle or path name "/sys/databaseSummary.xml"
    ORA-06512: at "SYS.XDBURITYPE", line 45
    ORA-06512: at line 1
    no rows selected
    SQL> --
    I have redownloaded the demo, removed and reinstalled Oracle 9i, all to no avail. If anyone has seen this and solved it or has any help to offer, I would very much appreciate the help.
    Rick Price

    Database version ?. I suspect 9.2.0.1.0 in which case you need to upgrade to 9.2.0.3.0 or later.

  • Problem with Demo License

    Hi,
    I install the version 6 update 2 on my Solaris 7 sparc, with the demo license. But when I try to use cc I got this error
    License Error : Licensing product (Sun WorkShop Compiler C SPARC).
    License File:
    /opt/SUNWspro/bin/../WS6U2/bin/../../license_dir/sunpro.lic,node
    License file does not support this version
    Feature:workshop.c.sparc
    Application version > License version:6.000000 > 5.000
    FLEXlm error:-21,126.
    Any idea?
    Thanks

    HI,
    Please check and make sure your license file
    "sunpro.lic,node" is indeed having the demo
    license Forte 6 Update 2.
    It appears from these errors that this may not be
    the case.
    Hope this helps.
    Thanks,
    Gopinath.

  • SOAOrderBooking demo - no data on dashboards

    Hi,
    I'm trying to make the SOAOrderBooking demo works with BAM. I followed all the instructions in the readme files. But when I order an item and place the order, I get a bunch of exceptions in the OPMN log file.
    07/08/03 17:56:07 calling http://localhost:8888/CustomerService/CustomerService
    07/08/03 17:57:55 calling http://localhost:8888/event/OrderBooking/OrderBookingService
    07/08/03 17:57:56 Order submitted...
    <2007-08-03 17:57:56,122> <ERROR> <default.collaxa.cube.sensor> <DataRouter::send> error
    ORABPEL-20301
    Data Publisher failed.
    The Reporting Data Publisher 1.OrderReceived failed.
    Please examine the log file for more details.
         at com.collaxa.cube.engine.sensor.sa.DataRouter.send(DataRouter.java:101)
         at com.collaxa.cube.engine.sensor.sa.DataRouter.send(DataRouter.java:133)
         at com.collaxa.cube.engine.sensor.dca.DataCaptureAgency.send(DataCaptureAgency.java:181)
         at com.collaxa.cube.engine.sensor.dca.DataCaptureAgency.sendActivityData(DataCaptureAgency.java:153)
         at com.collaxa.cube.engine.sensor.dca.DataCaptureAgency.onActivityComplete(DataCaptureAgency.java:227)
         at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:201)
         at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3672)
         at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1650)
         at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:75)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:184)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:276)
         at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5658)
         at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1082)
         at com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke(DeliveryService.java:535)
         at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.handleInvoke(CubeDeliveryBean.java:342)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAs(Subject.java:396)
         at com.evermind.server.ThreadState.runAs(ThreadState.java:648)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
         at CubeDeliveryBean_LocalProxy_4bin6i8.handleInvoke(Unknown Source)
         at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(InvokeInstanceMessageHandler.java:37)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:138)
         at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:70)
         at com.collaxa.cube.engine.ejb.impl.WorkerBean.onMessage(WorkerBean.java:86)
         at sun.reflect.GeneratedMethodAccessor65.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at oracle.j2ee.connector.messageinflow.MessageEndpointImpl.OC4J_invokeMethod(MessageEndpointImpl.java:297)
         at WorkerBean_EndPointProxy_4bin6i8.onMessage(Unknown Source)
         at oracle.j2ee.ra.jms.generic.WorkConsumer.run(WorkConsumer.java:266)
         at oracle.j2ee.connector.work.WorkWrapper.runTargetWork(WorkWrapper.java:242)
         at oracle.j2ee.connector.work.WorkWrapper.doWork(WorkWrapper.java:215)
         at oracle.j2ee.connector.work.WorkWrapper.run(WorkWrapper.java:190)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: ORABPEL-20301
    Data Publisher failed.
    The Reporting Data Publisher 1.OrderReceived failed.
    Please examine the log file for more details.
         at com.collaxa.cube.engine.sensor.sa.BpelPublisher.publish(BpelPublisher.java:137)
         at com.collaxa.cube.engine.sensor.registry.BpelSensorActionInfo.publish(BpelSensorActionInfo.java:148)
         at com.collaxa.cube.engine.sensor.sa.DataRouter.send(DataRouter.java:93)
         ... 57 more
    Caused by: java.lang.NullPointerException
         at com.collaxa.cube.engine.sensor.dca.BpelVariableAgent.capture(BpelVariableAgent.java:89)
         at com.collaxa.cube.engine.sensor.dca.data.BpelCapturedActivityData.getSensorData(BpelCapturedActivityData.java:135)
         at com.collaxa.cube.engine.sensor.dca.data.BpelCapturedData.getFacade(BpelCapturedData.java:128)
         at com.collaxa.cube.engine.sensor.sa.FilteredDataPublisher.publish(FilteredDataPublisher.java:86)
         at com.collaxa.cube.engine.sensor.sa.BpelPublisher.publish(BpelPublisher.java:129)
         ... 59 more
    <2007-08-03 17:57:58,150> <INFO> <default.collaxa.cube.sensor> Flushed 1 rows in BAM batch
    <2007-08-03 17:57:58,220> <ERROR> <default.collaxa.cube.sensor> <DataRouter::send> error
    ORABPEL-20301
    Each sensors failed to get some data. And the dashboard in the Active Viewer does not update. I also get the following errors in the ActiveDataCache.log
    2007-08-03 17:57:58,160 [ActiveDataQueueThread (static 0)] ERROR - ActiveDataCache Value cannot be null.
    2007-08-03 17:57:58,170 [ActiveDataQueueThread (static 0)] WARN - ActiveDataCache Exception occurred in method ActiveViewset.ActiveDataHandler
    Stack trace:
    at Oracle.BAM.ActiveDataCache.Kernel.Viewsets.Features.ActiveNow.EvaluateFilter(DataSetChangedEventArgs e)
    at Oracle.BAM.ActiveDataCache.Kernel.Viewsets.ActiveViewset.ActiveDataHandler(Object sender, DataSetChangedEventArgs oEventArgs)
    2007-08-03 17:57:59,169 [ActiveDataQueueThread (static 1)] ERROR - ActiveDataCache Value cannot be null.
    2007-08-03 17:57:59,169 [ActiveDataQueueThread (static 1)] WARN - ActiveDataCache Exception occurred in method ActiveViewset.ActiveDataHandler
    Stack trace:
    at Oracle.BAM.ActiveDataCache.Kernel.Viewsets.Features.ActiveNow.EvaluateFilter(DataSetChangedEventArgs e)
    at Oracle.BAM.ActiveDataCache.Kernel.Viewsets.ActiveViewset.ActiveDataHandler(Object sender, DataSetChangedEventArgs oEventArgs)
    It seems that the OrderBooking service can't communicate with the BAM Server, but I don't know where is the problem since I put in the bpel.xml file the same parameters as the ones that I put on the JDeveloper BAM server connection and this connection works.
    Any help would be greatly appreciated.
    Amir

    Hi Amir,
    Yesterday I installed BAM 10.1.3.3 and implemented the orderbooking Demo. It's working fine.
    I use a VM with Win XP with te following Oracle software:
    Oracle XE database 10.2.0 (for SOA suite schema's and BAM schema's)
    SOA Suite 10.1.3.3
    BAM 10.1.3.3
    I downloaded the demo form :
    http://www.oracle.com/technology/products/integration/bam/10.1.3/samplefiles/Samples/Zip_Files/BPEL-BAM-sensor.zip
    This is the one I got working.
    Good luck

  • Spry menu problems with Internet explorer

    Hi everyone
    I'm having ongoing problems with my horizontal menus and
    internet explorer. They work fine in other browsers and with the
    generous help of others at these forums I've managed to sort out
    most of the problems. But I've hit a real wall with this one. The
    menus drop down showing the links OK but you cannot highlight or
    click on the options that drop down, they just appear as text. Any
    help would be appretiated. My appologies for posting in other
    threads also but just hoping for a response.
    I am very new to this side of design so simple answers would
    be very helpful. Thanks
    Bob

    I have 2 similar problems to the prior posts:
    1) I run IE7 and FF and the positioning of my submenus are
    skewed in IE only.
    2) I am not sure, but I believe I have a problem with my
    iframe appearing in my IE7 browser behind all of my submenus. Well,
    I know I have a problem with something, but whether or not it's the
    iframe I don't know. What I do know is that the box shows up like a
    border around my submenus and I can't get rid of it. I suspect that
    it may be caused by the fact that my menu buttons are imported
    gif's in the shape of rounded rectangles which allows for the
    corners to be visible. I actually just thought about it and my
    gif's are set to have a white index transparency, but maybe If I
    export the gifs without transparency, then that issue will be
    resolved. Well I will try that part and see, but any and all
    suggestions are welcome. Oh and I just remembered, that problem
    with the border around my submenus also has another problem with
    the word "false" inside of that border behind my submenus. This
    problem again is only in my IE browser, and it is hard to see it,
    but I have no idea why that is there or what it's from. I ran a
    search in my SpryMenuHorizontal.css page and in my html page for
    the word 'false' but nothing turned up. The only document related
    to this issue that contains the word 'false' is the
    'SpryMenuBar.js' document.
    CSS
    Layout file
    HTML Demo
    link
    Thank you,
    Danny

  • Problem with inheritance and outputting values in toString.

    Hey guys, i'm having a major problem with inheritances.
    What i'm trying to do with my program is to create objects in my demo class. Values are passed to several other objects that each do their own calculations of grades and results and then outputs the result in my toString. I followed step by step the instructions in my book on how to setup the inheritance and such. I can only output everything that was created in my superclass, any other thing that was created in an object that belongs to a subclass does not display in the output at all.
    Even if I change or create new instance variables, I can't figure out for the life of myself how to output the other values.
    Because there's so much code to be splitting on the forums, I zipped my whole project in a RAR. I'll link it here
    http://www.4shared.com/file/ZleBitzP/Assign7.html
    The file to run the program is CourseGradesDemo class, everything else is either a subclass or superclass to some part of the program. After you run CourseGradesDemo, you will see the output, and understand what displays and what stays at 0.0 value. If anyone can help me out with this it would be greatly appreciated
    Thanks in advance.

    Basshunter36 wrote:
    Hey guys, i'm having a major problem with inheritances.
    What i'm trying to do with my program is to create objects in my demo class. Values are passed to several other objects that each do their own calculations of grades and results and then outputs the result in my toString. I followed step by step the instructions in my book on how to setup the inheritance and such. I can only output everything that was created in my superclass, any other thing that was created in an object that belongs to a subclass does not display in the output at all.
    Even if I change or create new instance variables, I can't figure out for the life of myself how to output the other values.No idea what you're talking about. Provide an [url http://sscce.org]SSCCE.
    Because there's so much code to be splitting on the forums, I zipped my whole project in a RAR. I'll link it here
    http://www.4shared.com/file/ZleBitzP/Assign7.html
    Not gonna happen. Provide an [url http://sscce.org]SSCCE. And don't say you can't. You definitely can. You may have to spend an hour building a new program from scratch and getting it to reproduce the problem, but if you can't or won't do that, you'll find few people here willing to bother with it.

Maybe you are looking for