Exercise 6 - Error: Cannot resolve attribute 'selectedOptions' for component type components.ReservationForm.     AdobeODT/src     AdobeODT.mxml     line 71

Hi,
I'm getting this error when I'm trying to save AdobeODT.mxml file.  I've declared the "selectedOptions" variable as public. Can you please tell me where I went wrong? Please find my code below. I'm getting error on the line marked in red.
Thanks in advance
AdobeODT.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical" backgroundColor="#FFFFFF"
creationComplete="init()"
horizontalAlign="left"
paddingTop="5"
xmlns:comp="components.*">
<mx:Script>
<![CDATA[
import mx.rpc.events.ResultEvent;
import mx.events.ListEvent;
import mx.collections.ArrayCollection;
import mx.rpc.events.FaultEvent;
import mx.controls.Alert;
import mx.rpc.events.ResultEvent;
import events.OptionSelectEvent;
[Bindable] private var roomList:ArrayCollection;
[Bindable]
public var selectedOptions:ArrayCollection = new ArrayCollection();
private function changeHandler(event:ListEvent):void{
private function init():void{
rooms.send();
private function httpFaultHandler(event:FaultEvent):void{
Alert.show("There is an error","Error");
private function httpResultHandler(event:ResultEvent):void{
roomList=event.result.rooms.room;
private function optionHandler(event:OptionSelectEvent):void{
var index:int=selectedOptions.getItemIndex(event.option);
if(index == -1){
selectedOptions.addItem(event.option);
else{
selectedOptions.removeItemAt(index);
]]>
</mx:Script>
<mx:HTTPService id="rooms" url="assets/roomList.xml"
fault="httpFaultHandler(event)"
result="httpResultHandler(event)"/>
<mx:Label text="XYZ Convention Center"
x="10" y="10"
fontSize="21" fontWeight="bold"/>
<mx:HBox>
<mx:Text x="10" y="41"
text="111 49th Ave, Denver, CO 80634"/>
<mx:Text text="Phone: 303-555-1212" x="208" y="41"/>
<mx:Text text="Fax: 303-555-1234" x="345" y="41"/>
</mx:HBox>
<mx:Label text="Room Reservation System"
fontWeight="bold" fontSize="14"
x="10" y="72" />
<mx:Canvas height="100%">
<mx:Label x="0" text="Please select any additional amenities needed for your room. Our staff will contact you to finalize your reservation" />
<comp:Options x="0" y="26"
optionSelected="optionHandler(event)"/>
<mx:Label text="Room Available:" x="0" y="116"/>
<mx:List id="dg" x="0" y="142" width="250"
dataProvider="{roomList}"
itemClick="changeHandler(event)"
labelField="name"/>
<comp:ReservationForm x="439" y="114" width="318" height="529" selectedOptions="{selectedOptions}"/>
</mx:Canvas>
</mx:Application>

Hi,
We tested the student files to the latest FB4.6 version and followed the steps according to the exercise and everything worked.  Are you running the latest version of FB4.6?
Hope this helps,
FiaW

Similar Messages

  • Cannot resolve attribute 'treeDataDescriptor' for component type mx.controls.Tree.

    Hi,
    I'm trying to compile an example from the documentation:
    I have two files :
    treeEx1.mxml
    <?xml version="1.0" encoding="iso-8859-1"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="initCollections()">
    <mx:Script>
    <![CDATA[
    import mx.collections.*;
    import mx.controls.treeClasses.*;
    import customComp.MyCustomTreeDataDescriptor;
    //Variables used to construct the ArrayCollection data
    provider
    //First top-level node and its children.
    public var nestArray1:Object = [
    {label:"item1", children: [
    {label:"item1 child", children: [
    {label:"item 1 child child", data:"child data"}
    //Second top-level node and its children.
    public var nestArray2:Object = [
    {label:"item2", children: [
    {label:"item2 child", children: [
    {label:"item 2 child child", data:"child data"}
    //Second top-level node and its children.
    public var nestArray3:Object = [
    {label:"item3", children: [
    {label:"item3 child", children: [
    {label:"item 3 child child", data:"child data"}
    //Variable for the tree array.
    public var treeArray:Object
    //Variables for the three Array collections that correspond
    to the
    //top-level nodes.
    public var col1:ArrayCollection;
    public var col2:ArrayCollection;
    public var col3:ArrayCollection;
    //Variable for the ArrayCollection used as the Tree data
    provider.
    [Bindable]
    public var ac:ArrayCollection;
    //build the ac ArrayCollection from its parts.
    public function initCollections():void{
    // Wrap each top-level node in an ArrayCollection.
    col1 = new ArrayCollection(nestArray1);
    col2 = new ArrayCollection(nestArray2);
    col3 = new ArrayCollection(nestArray3);
    // Put the three top-level node ArrayCollections in the
    treeArray.
    treeArray = [
    {label:"first thing", children: col1},
    {label:"second thing", children: col2},
    {label:"third thing", children: col3},
    //Wrap the treeArray in an ArrayCollection.
    ac = new ArrayCollection(treeArray);
    // Adds a child node as the first child of the selected
    node,
    // if any. The default selectedNode is null, which causes
    the
    // data descriptor addChild method to add it as the first
    child
    // of the ac ArrayCollection.
    public function clickAddChildren():void {
    var newChild:Object = new Object();
    newChild.label = "New Child";
    newChild.children = new ArrayCollection();
    tree.treeDataDescriptor.addChildAt(tree.selectedNode,
    newChild, 0, ac);
    ]]>
    </mx:Script>
    <mx:Tree width="200" id="tree" dataProvider="{ac}"
    treeDataDescriptor="{new MyCustomTreeDataDescriptor()}"/>
    <mx:Button label="add children"
    click="clickAddChildren()"/>
    </mx:Application>
    and
    and MyCustomTreeDataDescriptor.as :
    package customComp.MyCustomTreeDataDescriptor
    import mx.collections.ICollectionView;
    import mx.collections.IViewCursor;
    import mx.events.TreeModelChangedEvent;
    import mx.events.TreeModelChangedEventDetail;
    import mx.controls.treeClasses.*;
    public class MyCustomTreeDataDescriptor implements
    ITreeDataDescriptor
    // The getChildren method requires the node to be an Object
    // with a children field.
    // If the field contains an ArrayCollection, it returns the
    field
    // Otherwise, it wraps the field in an ArrayCollection.
    public function getChildren(node:Object,
    model:Object=null):ICollectionView
    try
    if (node is Object)
    if(node.children is ArrayCollection){
    return node.children;
    }else{
    return new ArrayCollection(node.children);
    catch (e:Error)
    trace("[Descriptor] exception checking for getChildren");
    return null;
    // The isBranch method simply returns true if the node is an
    // Object with a children field.
    // It does not support empty branches, but does support null
    children
    // fields.
    public function isBranch(node:Object,
    model:Object=null):Boolean
    try
    if (node is Object)
    if (node.children != null)
    return true;
    catch (e:Error)
    trace("[Descriptor] exception checking for isBranch");
    return false;
    // The getData method simply returns the node as an Object.
    public function getData(node:Object,
    model:Object=null):Object
    try
    return Object(node);
    catch (e:Error)
    return null;
    // The addChildAt method does the following:
    // If the node parameter is null or undefined, inserts
    // the child parameter as the first child of the model
    parameter.
    // If the node parameter is an Object and has a children
    field,
    // adds the child parameter to it at the index parameter
    location.
    // It does not add a child to a terminal node if it does not
    have
    // a children field.
    public function addChildAt(node:Object, child:Object,
    index:int, model:Object=null):Boolean
    var event:TreeModelChangedEvent = new
    TreeModelChangedEvent("modelChanged", false, false,
    TreeModelChangedEventDetail.ADD_NODE, child, node, index);
    if (!node)
    var iterator:IViewCursor = model.createCursor();
    iterator.seek(CursorBookmark.FIRST, index);
    iterator.insert(child);
    else if (node is Object)
    if (node.children != null)
    if(node.children is ArrayCollection) {
    node.children.addItemAt(child, index);
    if (model){
    model.dispatchEvent(event);
    model.itemUpdated(node);
    return true;
    else {
    node.children.splice(index, 0, child);
    if (model)
    model.dispatchEvent(event);
    return true;
    return false;
    I have read the docs and looked through some example on this
    form but I still can't figure it out .
    Thanks
    The code above is from:
    http://127.0.0.1:56812/help/topic/com.adobe.flexbuilder.help/html/Part2_DevApps.html
    Using hierarchical data providers

    I hav echnaged it and now I get :
    A file found in an source-path must have the same package
    structure 'customComp', as the definition's package,
    'customComp.MyCustomTreeDataDescriptor'.
    I tried different variations but nothing seems to work. I
    have the following folder structure:
    \Lessons
    \customComp
    .MyCustomTreeDataDescriptor.as
    treeEx1.mxml
    Thanks

  • Getting error when opening project created in FC/FB CS5.5  - cannot resolve attribute 'clear'

    I have a project I created earlier this year in panini/burrito, but when I upgraded to CS5.5 I get 18 of the the following errors:
    "Cannot resolve attribute 'clear' for component type flashx.textLayout.elements.SpanElement. Main.mxml /imagine/src line 406 Flex Problem"
    I'm not very kbowleadgeable in flaex, so I'm trying to muddle through this.
    Here's the active site by the way.
    www.imaginenewmedia.com
    It seems to be related to lines of code which lay out text on the "packages" page.
    thanks!

    fixed! removed offending parameters from code.

  • Error: cannot resolve dependencies for "codecs"

    I receive this error when I'm trying to upgrade codecs 20060501-2 package. It tries to find libstdc++5 which is in Testing repository, and I'm not using Testing.
    error: cannot resolve dependencies for "codecs":
    "libstdc++5" is not in the package set
    I think libstdc++5 should be moved to Current or something like that (You know what to do )...
    Best regards

    Skyscraper wrote:
    I receive this error when I'm trying to upgrade codecs 20060501-2 package. It tries to find libstdc++5 which is in Testing repository, and I'm not using Testing.
    error: cannot resolve dependencies for "codecs":
    "libstdc++5" is not in the package set
    I think libstdc++5 should be moved to Current or something like that (You know what to do )...
    Best regards
    They are in testing repository:
    http://archlinux.org/packages.php?s_rep … ate=&pp=50

  • Error: cannot resolve dependencies for "avahi"

    Greetings:
    I get the following message when I run paman -Syu
    :: Replace mkinitrd with mkinitcpio from "current"? [Y/n]
    error: cannot resolve dependencies for "avahi":
    "dbus" is not in the package set
    So, I thougth I'd get rid of avahi, but pacman -R avahi returns:
    error: this will break the following dependencies:
    avahi: is required by gnome-vfs
    I've tried removing dbus from the daemons in rc.conf. I've tired restating dbus folloing instrcutions from another thread here.
    Pacman -Ss dbus returns:
    community/perl-net-dbus 0.33.3-1
    Perl extension for the DBUS message system
    So I am thinking, and am probably completely wrong, that pacman is searching for a repo with dbus in it?
    Color me stumped.

    Yes, I have the default install one uncommented:
    [extra]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/extra
    Should I add a different one?

  • Error: cannot resolve dependencies for "font..

    what could be that?
    [root@myhost root]# pacman -S -u --sysupgrade
    error: cannot resolve dependencies for "fontconfig":
    fontconfig conflicts with xfree86
    thxs
    (if u can put it in spanish, better )

    but before u post me, updated pacman, and then, not send me that error

  • solved error: cannot resolve dependencies for "hal"

    Hello all,
    I tried doing a pacman -Syu today and recieved the following: error: cannot resolve dependencies for "hal"
    Then I did a pacman -S dbus-glib and got : dbus-glib: not found in sync db
    then I did pacman -S dbus and recieved the same message.
    Then I did pacman -S hal and got:
    error: cannot resolve dependencies for "hal":
    "dbus-glib" is not in the package set
    Am I missing something? Any help would be greatly appreciated.
    Oh man, in my fleeting moment of panic I didn't think things through and posted right away.
    I commented the following lines in pacman.conf and now it works
    #XferCommand = /usr/bin/aria2c -s 2 -m 2 -o %o %u
    #XferCommand = /usr/bin/pacget %u %o
    Not too sure why, but I am happy all is working.
    Last edited by Cancel (2007-02-17 08:15:54)

    I followed this wiki and it did make a difference. It is still very fast downloading packages.
    http://wiki.archlinux.org/index.php/Imp … erformance
    I haven't had a chance to uncomment those lines again to see if it still gives me errors, but you might have luck trying what the wiki suggests.
    After following the wiki, pacman tries a bunch of servers to give you the best speed possible (if I remember correctly). I hope this helps you.

  • Error:cannot resolve Symbol class"name"

    when I have compiled Bean class named SlBean which has primary class named pk, I recevied following error message(I compiled pk class without error) :
    cannot resolve symbol
    symbol : class pk
    location: class SlBean
    public pk ejbCreate(

    Sorry , its not classpath problem. You have to simply import the pk class if its in any package. I am assuming you have packaged your pk class with ejb jar file.
    for eg. if your class is
    package abc.xyz
    public class pk
    then in your bean class import
    import abc.xyz.pk;
    --Ashwani                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Compiling error - cannot resolve symbol

    Hi,
    I am working on writing out this basic code for a project. When I compile, I get an error "Cannot resolve symbol" for the gpa variable. Please help!
    My intention is to use the hours and points from the crHours and nbrPoints methods, and use them to calculate GPA in the grPtAvg method:
    public class Student
         public static void main(String[]args)
    idNum();
    crHours();
    nbrpoints();
    gpa = grPtAvg(hours, points);
    System.out.println("Student's GPA is " + gpa);
    public static void idNum()
    int id = 2520;
    System.out.println("Student's ID is " + id);
    public static float crHours()
    float hours = 5;
    System.out.println("Student's credit hours are " + hours);
    return hours;
    public static float nbrpoints()
    float points = 22;
    System.out.println("Student's earned points are " + points);
    return points;
    public static float grPtAvg(float hours, float points)
    float gpa;
    gpa = points / hours;
    System.out.println("Student's computed GPA is " + gpa);
    return gpa;

    That's because you're doing the same thing (in a somewhat different way) with those.
    The variables: hours and points have already been returned to main methd, right?Yes, but then the main method ignores them.
    So, they should be available at this point in the code, is that right?Available in the sense that you can read them, but not in the sense that there are hours and points variables within scope in the main method.
    You want to do this:
    public static void main(String[] args) {
       idNum();
       float hours = crHours();
       float points = nbrpoints();
       //create a new float
       float myComputetdGpa = grPtAvg(hours, points);
       System.out.println("Student's GPA is " + myComputedGpa);
    }

  • Compiler error cannot resolve symbol

    Hi people,
    i'm having this compile time error that, when i create a class and calling that class in another class gives the error cannot resolve symbol classname and it also happened when i created a bean and referencing the bean class in another bean when i'm using Jsp. thanks in advance.

    It would be helpful if you post the exact error message. If you use a system Classpath, then it must contain the root directory for the package directory(s).
    For example, if the source code for a file starts with
    package my.package;
    and you have a directory structure c:\myjava\classes\my\package then the Classpath must contain c:\myjava\classes.

  • [stupid]error: cannot resolve "libusb1", a dependency of "libdc1394"

    Hi!
    :: Starting full system upgrade...
    resolving dependencies...
    error: cannot resolve "libusb1", a dependency of "libdc1394"
    error: failed to prepare transaction (could not satisfy dependencies)
    :: libdc1394: requires libusb1
    I needed libdc1394 only for gstreamer-plugins-bad, so I removed those. Wanted to try out if I need them anyway. But... What if? Is this a bug, did I do something wrong or did I just update while the required version isn't up yet and should unset testing again?
    EDIT: Uh, sorry, yes, I guess that's just me not waiting for the files to be distributed to the servers I guess.
    EDIT2: At least looks like it, should wait & think instead of type and type. Me drinking to much coffee. Marking thread as "stupid" instead of "solved" now.
    Last edited by whoops (2009-05-03 23:18:02)

    I do not thing archbang is officially  archlinux distributions (you are on an archlinux forum). This error does not appear on the current archlinux distribution. My guess is that here is a confusion between python / python2 / python3. Just run pacman -Si to know (or the equivalent of pacman for archbang).
    I would suggest you to use the official archlinux instead of this fork, archlinux has much more support and users and I do not quite understand what archbang has to offer: Their homepage said that it is archlinux combined with openbox, but you can just do
    pacman -S openbox
    on arch; it does not seems to justify a fork (but please correct me if I am wrong).
    Last edited by olive (2012-06-17 22:00:23)

  • When i try to use max() & pow() in jdbc i get error "cannot resolve symbol"

    hi,
    when i tried to use pow() & max() in my jdbc programme i got compilation error "cannot resolve symbol".
    even i have imorted java.math
    this is the sample.
    pr1= (fy/(L*B*pow(10.0,-6.0))+((6*mx)/(L*B*B*pow(10.0,-6.0)))+((6*mz)/(B*L*L*pow(10.0,-6.0))));
    all of above are double.
    and with max();
    pr=max(pr1,pr2);
    all of above are double.
    please help.
    thanks in advance.
    satish

    hi
    Hartmut
    thanks hartmut;
    i am new in java so i have some problems, but thanks for helping me.
    please help me again.
    as i have already posted another probleme which i have with selecting 1000 rows 1 by 1 from a table & manipulate 1 by 1 on that and then store all manipulated row to another table.
    when i tried to do so i am able to select only 600 rows and manipulate them & store them.
    i did not get any exception or any error.
    can this possible that microsoft access driver has not that much capacity to provide 1000 rows or it is problem with jdbc.
    please help.
    satish
    thanks again.

  • WebHelp Template Error: cannot resolve macro

    RoboHelp HTML 5.0.2 Build 801
    Word 2003 SP3
    I have been working fine until this afternoon. I tried to
    generate webhelp in two different projects. In the output window I
    see messages through Updating files, and then a message flashes and
    it goes to done, but nothign is there to view.
    The message is something like Template Error: cannot resolve
    macro WHH#78 or something like that. I really cannot read it.
    I have look for the answer on this forum and in the Help
    system, to no avail. I will be leaving soon but will come in the
    morning and try to start troubleshooting again. Any ideas that
    might help would be greatly appreciated
    sandy

    Thanks for your time.
    I am using RoboHelp HTML 5.0.2 Build 801
    I have created 5 or 6 help files. I always open them with
    RoboHelp HTML because the primary layout is web help to be
    published to the web.
    I always use the Single Source Layouts in the Project tab to
    generate Printed Documents. I usually use the generate primary
    layout for the web help.
    This is the exact error I get, no matter which of my projects
    I try to generate web help for:
    Template Error: can not resolve macro: WH_CSH2_HTM
    Finished compiling WebHelp in 6 sec(s)
    Should I reinstall WebHelp to fix the corrupted template? If
    so will I have to restore my default.css?
    I am a really plain bread and butter user. I have not
    imported any templates or customized any templates. I have always
    just opened my projects with ROBOhelp HTML and generated.
    (Successfully, I might add, up until now).
    Thanks again for any help you can give me.
    Sandy

  • Need help - method call error cannot resolve symbol

    My code compiles fine but I continue to receive a method call error "cannot resolve symbol - variable superman" - can't figure out why. Here is my code:
    public static String caesar(String message, int shift)
    {   [b]String result = "";
    for(int i = 0; i < message.length(); ++i)
    {   [b]char newChar = message.charAt(i + shift);
    result += newChar;
    return result.toUpperCase();
    I entered "superman" for message and "3" for the shift. Can someone please help? Thanks!

    Your post worked great - especially since it made me realize I was going about it all wrong! I was attempting to convert "superman" to "vxshupdq" - basically a cipher shift starting at index 0 and shifting it 3 character values which would result in s changing to v. I restructured my code:
    public static String caesar(String message, int shift)
    {   [b]String result = "";
    for(int i = 0; i < message.length(); ++i)
    {   [b]char newChar = message.charAt(i);
    result += (newChar + shift) % message.length();
    return result.toUpperCase();
    But it's displaying the result as a "60305041". How can I get it to display the actual characters?

  • ERROR: Cannot perform action deploy on component library

    Hi all,
    Some Background on what i did:
    First I created two DCs:
    1)External library DC
    2)J2EE server component library DC
    and followed the procedure given as in
    /people/valery.silaev/blog/2005/09/14/a-bit-of-impractical-scripting-for-web-dynpro
    Then i created a third DC of type Web Module in order to hold all the classes as given in: Using External JARs in a Web Dynpro Project
    But when I deploy the J2EE server library component DC, I am getting the following error:
    Oct 16, 2006 8:38:39 AM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [001]Deployment aborted
    Settings
    SDM host : teak
    SDM port : 50018
    URL to deploy : file:/C:/DOCUME1/krunalra/LOCALS1/Temp/temp19352pcbp.com~lib_comp.sda
    Result
    => deployment aborted : file:/C:/DOCUME1/krunalra/LOCALS1/Temp/temp19352pcbp.com~lib_comp.sda
    Aborted: development component 'lib_comp'/'pcbp.com'/'NWX_LIBS_C'/'20061016083638':
    Caught exception during library deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library E:\usr\sap\NWX\DVEBMGS00\SDM\root\origin\pcbp.com\lib_comp\NWX_LIBS_C\20061016083638\temp19352pcbp.comlib_comp.sda. Reason: java.rmi.RemoteException: Error during deployLib of server component ./temp/deploy/work/deploying/temp19352pcbp.comlib_comp.sda.. Reason: com.sap.engine.core.service630.container.ContainerException: java.lang.NullPointerException; nested exception is: com.sap.engine.frame.container.deploy.ComponentDeploymentException: com.sap.engine.core.service630.container.ContainerException: java.lang.NullPointerException
    at com.sap.engine.services.deploy.server.DeployServiceImpl.deployServerComponent(DeployServiceImpl.java:1576)
    at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1434)
    at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
    at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
    at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
    at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.engine.frame.container.deploy.ComponentDeploymentException: com.sap.engine.core.service630.container.ContainerException: java.lang.NullPointerException
    at com.sap.engine.core.service630.context.container.deploy.DeployContextImpl.deployLibrary(DeployContextImpl.java:36)
    at com.sap.engine.services.deploy.server.library.DeployLibTransaction.begin(DeployLibTransaction.java:68)
    at com.sap.engine.services.deploy.server.library.LibraryTransaction.makeAllPhases(LibraryTransaction.java:81)
    at com.sap.engine.services.deploy.server.DeployServiceImpl.deployServerComponent(DeployServiceImpl.java:1566)
    ... 11 more
    Exception is: ; nested exception is: com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library E:\usr\sap\NWX\DVEBMGS00\SDM\root\origin\pcbp.com\lib_comp\NWX_LIBS_C\20061016083638\temp19352pcbp.comlib_comp.sda. Reason: java.rmi.RemoteException: Error during deployLib of server component ./temp/deploy/work/deploying/temp19352pcbp.comlib_comp.sda.. Reason: com.sap.engine.core.service630.container.ContainerException: java.lang.NullPointerException; nested exception is: com.sap.engine.frame.container.deploy.ComponentDeploymentException: com.sap.engine.core.service630.container.ContainerException: java.lang.NullPointerException
    at com.sap.engine.services.deploy.server.DeployServiceImpl.deployServerComponent(DeployServiceImpl.java:1576)
    at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1434)
    at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
    at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
    at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
    at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.engine.frame.container.deploy.ComponentDeploymentException: com.sap.engine.core.service630.container.ContainerException: java.lang.NullPointerException
    at com.sap.engine.core.service630.context.container.deploy.DeployContextImpl.deployLibrary(DeployContextImpl.java:36)
    at com.sap.engine.services.deploy.server.library.DeployLibTransaction.begin(DeployLibTransaction.java:68)
    at com.sap.engine.services.deploy.server.library.LibraryTransaction.makeAllPhases(LibraryTransaction.java:81)
    at com.sap.engine.services.deploy.server.DeployServiceImpl.deployServerComponent(DeployServiceImpl.java:1566)
    ... 11 more
    Exception is:
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineCompOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment exception : The deployment of at least one item aborted
    I have being stuck up on this erorr for past few days,
    If anybody can please help me out in this,then it would be highly appreciated.
    Thank You,
    With regards,
    Krunal.

    Do you have permissions to write to the Database/RDMBS?
    James

Maybe you are looking for

  • Redirect to custom url after successful authentication by OAM

    Hello, I need to redirect the user to some custom url instead of original requested url after successful authentication in OAM 11.1.2 (11g release2). The requirement in my case is depending upon the user type and the region(one of the user's ldap att

  • Optimizing After Effects Performance/ Rendering Speed for large projects

    Problem: My after effects is extremely slow and i want to use an external harddrive  to increase the speed temporarily until i can afford to change the internal hard drive. i also have other video production software like Cinema 4D, Final Cut Pro, Pr

  • How to hide REASSIGN Button for PO Requisition Approval Notification only

    Hello, I have a requirement in which I have to HIDE the REASSIGN button from the PO Requisition Approval Notification page. I realized that this page(NotifDetailsPG.xml) is being used by Sourcing Module too for sending the Approval Notifications. So

  • Federated Searches from the Basic Search Box

    Is there a way to have the portal's basic search facility perform a federated search without having to visit the federated search page? We would like our users to be able to search any location from the simple search box.

  • Reactivating CS 2

    I am trying to activate an old version of Creative Suites... I have currently changed my OS from WP to Windows 7.   I have been refused.  I paid for this and believe I should be able to use it without term limits.  Why???????