Explaination needed

Hey,
Just wondered if someone could explain to me why i am getting the following error,
Java.rmi.UnmarshalException: error unmarshalling return: nested exception is java.lang.ClassNotFoundException access to class loader denied
thanks in advance ! XD

That is why system is also showing the nested
exception ClassNotFoundExceptionThis would throw an InvalidClassException, not a
ClassNotFoundException. There is nothing that
indicates the OP's problem is related to
serialization.Exactly. Enough with the bad guesses already!
The OP's problem is that the class required is not being found. There's not enough information to decide whether it's the server, the registry, or the client that can't find it but that should be clear from the stack trace: if it comes from exportObject() it's the server, if it comes from bind() or rebind() it's the Registry, if it comes from lookup() or another remote method it's the client.

Similar Messages

  • Inittools update explaination needed [SOLVED]

    I did'nt understand the message thouroughly given on this page:
    http://www.archlinux.org/news/initscrip … -required/
    For whom will be the problem and is it safe for normal users to upgrade their system?
    Also, can anyone explain in detail the meassage.
    Last edited by PranavG (2011-10-24 03:39:19)

    Read tha first line
    Please manually delete /etc/profile.d/locale.sh before updating. If . /etc/rc.conf fails in your login shell, please read the full announcement.
    and act accordingly.
    There shouldn't be any problems unless you ignore the announcement.
    Different people use different shells so some folks may need to do some extra steps mentioned in the announcement.

  • Statement explaination needed please

    I'm trying to track down a variable bug using traces (AS2.0).  Could someone please explain to me what the statement in red below means and where I should look for it ? there seems to be another addressing concept that I'm missing.
    scrolledMC is a MC container that holds the dynamic text field (auto sized) that is the text that is being scrolled.
    scrollContent1 = _parent.scrolledMC  // this statement does "_parent" refer to the original Lib item or the MC in which
    trace("scrollContent1 ="+ scrollContent1)
    //trace result
    // scrollContent1 = _level0.instance703.instance709.scrolledMC // what does this mean? "instance" of what ? what relevance to the numbers have ?
    1. how do I display the contents of "_level0.instance703.instance709.scrolledMC"  in a text contents form I can read??
    2. Everytime this trace runs the "instance" numbers are different. never the same numbers. so if I try to trace (_level0.instance703.instance709.scrolledMC) it comes back undefined.  these numbers can get vary large the longer the swf runs and i keep coming back to the page with all the traces. Whats up with that ??
    3. How is _level0 different from _root ?
    4 if I trace scrolledMC I get "undefined"
    Thanks
    Joel

    Ned,
    "It could be easier to explain if you explain what you have created that involves scrolledMC."
    I will try to explain but I might make it worse . I'm a noob to flash, and Unfortunately, I'm not the originator of the fla code I'm working with and it is very poorly documented and I'm trying to figure out how somebody else did something so I can make it do what I want it to.
    I am converting from dynamic content loaded from a html text file to dynamic content loaded from an XML file. the reason being I'm adding content that is much easier to deal with in an XML file than &MyVar=myContent&  text file. In order to be able to do this conversion I have to track down all the var assignments to text fields. 80% of this is not a problem and is straight forward. But then there are these scrolling text boxes which are a mystery. There is a single Lib item called Text_scrollerMC that is used for each instance of these scrolling text boxes on different pages. I can't switch this content over to the xml file until I figure out how it is being assigned to the different instances of the Text_scrollerMC.
    So I'm trying to deterime how the content contained in the variables loaded at runtime from the html text file, are being assigned to any given instance of Text_scroller. "scrolledMC" is the part of Text_scroller that contains the actual dynamic text field that is being loaded with the var content. Each time it is filled with unique content used on the page on which it's used. The loaded content var names use the nav button name of the page in the content var name, for example on page1or "Home" page, the content in the scroller box is from var "home_txt5", on page2 it's from var "services_txt3", on page4 it's from var "members_txt7" and so on.  Each var starts with the name of that page followed by "_txt" then a number. Again a direct search of the fla does NOT find ANY use of these vars by name, yet somehow these vars are being assigned to the Text_scroller when it is used on a page. I can only assume that the proper var name to use for any given instance of the scroller box is being dynamicaly "built" some how based on the scrollers location or something.
    So back to "scrolledMC". As mentioned scrolledMC is the text field component of the scrolling text box (Text_ScrollerMC). Inside "scrolledMC" is the dynamic text field named "tola" that the variable content gets assigned to. The var listed in the text box properties for it's content is "home_txt1" (this is NOT a var coming from the loaded text file of vars/content). As I mentioned, Text_scrollerMC is used 6 times on different pages on the site. I'm trying to figure at what point the differnt content variables are being assigned to a particualr instance of Text_scrollerMC. besides seaching with all the actual var names I searched using "home_txt1", and using "tola" and can't find any reference to how the content is finding it's way to the text box "tola" inside scrolledMC. There is no reference to any of the var names or "home_txt1" anywhere in the fla. The only refernece to "tola" is a line telling it to "autosize". Even though "home_txt1" is listed as the var in each instance of the text box "tola" in scrolledMC, nowhere is "home_txt1" listed in the fla. I don't know why it can't be as simple as home_txt1="var for the content I want". that would make too much sense.
    anyway the only way i can figure to try to track this down is to try and follow "scrolledMC" since that is where the content has to end up. soooo...  in the code from the Text_scrollerMC....
    scrollContent1 = _parent.scrolledMC 
    from what i can determined at this point _parent.scrolledMC has the var content in it cause scrollContent1 is use in the computation of the scroller movement as being the "size" of the content so _parent.scrolledMC must have "auto resized" to fit the var content cause that is the size being used in the scroller math. so I placed a trace after that line to look for clues and what i got was....
    _level0.instance703.instance709.scrolledMC
    I was hoping for the holy grail but instead I had no idea of what that ment which is why I was asking.  I know that someplace there has to be a refence to the loaded content var in some way at some point so I'm just trying to track that down. In the above, what is "instance703" in reference to?  instance of what ??
    So other than trying figure out how the hell the vars are being assigned if I can't figure it out i will have to go to plan "B" which is to make each use of the Text_scrollerMC it's own complete unit and just hard code the var in each seperate use. Which will add more weight to the file which I'm trying to avoid.
    Maybe I'm going about this in the wrong way? is there a way to follow the content some way to see how it's being asigned.?
    the only refence to scrolledMC is in the scroller code and in a gotoAndStop statement.
    onClipEvent (load)
        oldY = 1;
        Y = 1;
        vY = 0;
        newY = 0;
        mouseWheelHitTest = true;
        contentHeight = _parent.scrolledMC._height;
        scrollSpeed = _parent.speed_content;
        scrollStep = _parent.step_content;
        viewHeight = _parent.line._height;
        buttonSize = _parent.dragMC._height;
        buttonY = buttonMC._y;
        scrollHeight = _parent.scrolledMC._height;
        scrollContent = _parent.scrolledMC._y;
        scrollContent1 = _parent.scrolledMC;
        newY = _parent.scrolledMC._height;
        var mouseListener = new Object();
        mouseListener.onMouseWheel = function (delta)
            if (!mouseWheelHitTest || scrollContent1.hitTest(_root._xmouse, _root._ymouse, false) || hitTest(_root._xmouse, _root._ymouse, false))
                if (buttonMC._y >= 0 && buttonMC._y <= scrollHeight - buttonSize + 1)
                    buttonMC._y = buttonMC._y - delta * _parent.mouse_speed;
                } // end if
            } // end if
        Mouse.addListener(mouseListener);
        hiScroll = _parent.line._height - _parent.dragMC._height;
        step = (scrollHeight - buttonSize - hiScroll) / hiScroll;
        y = _parent.scrolledMC._y;
    onClipEvent (enterFrame)
        if (_parent.drag_but)
            if (buttonMC._y >= 0)
                buttonMC._y = buttonMC._y - scrollStep;
            } // end if
        } // end if
        if (_parent.down_but)
            if (buttonMC._y <= scrollHeight + buttonSize)
                buttonMC._y = buttonMC._y + scrollStep;
            } // end if
        } // end if
        if (buttonMC._y <= 0)
            buttonMC._y = 0;
        } // end if
        if (buttonMC._y >= viewHeight - buttonSize)
            buttonMC._y = viewHeight - buttonSize;
        } // end if
        level = buttonMC._y - buttonY;
        lev = int(y - level * step);
        newY = oldY + (lev - oldY) / scrollSpeed;
        _parent.scrolledMC._y = newY;
        oldY = newY;
    I didn't see anything here to assign content but it looks like content has been assigned before it gets here. If so I can't fine it.
    Thanks
    Joel
    BTW  Did something change about the forum ?  I can seem to get to the advanced editor, there is no button for it ???

  • Trace ST05 Explaination needed

    Hi All ,
    Please help to analyse the below details from ST05 , EXPLAIN option :
    This is for KBED table select statement.
    SELECT STATEMENT ( Estimated Costs = 1 , Estimated #Rows = 1 )
            3 INLIST ITERATOR
                2 TABLE ACCESS BY INDEX ROWID KBED
                  ( Estim. Costs = 1 , Estim. #Rows = 1 )
                  Estim. CPU-Costs = 5,563 Estim. IO-Costs = 1
                  Filter Predicates
                    1 INDEX RANGE SCAN KBED~0
                      Search Columns: 3
                      Estim. CPU-Costs = 1,624 Estim. IO-Costs = 0
                      Access Predicates
    Thanks in Advance

    Hi Harsh,
    Please have a look on below help
    http://help.sap.com/saphelp_erp60_sp/helpdata/EN/d1/801ff1454211d189710000e8322d00/content.htm
    http://help.sap.com/saphelp_erp60_sp/helpdata/EN/d1/801f7c454211d189710000e8322d00/frameset.htm
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7
    ilesh Nandaniya

  • More explaination needed about EJB issues published

    when I read the part of "EJB issues" of the page
    http://otn.oracle.com/products/jdev/htdocs/readme_903Preview.html#viadcm
    I have several questions:
    first one:
    Invalid column name when the primary key in one table is different from the foreign key name. (2514361)
    does that mean that the foreign key in table 2 should have the same name as the primary key in the table 1?
    second one:
    Null pointer exception when an EJBSelect() method is called. (2428884)
    does that mean you can not call EJBSelect in your code?
    third:
    Pure MDB cannot run in an embedded OC4J server but can be deployed to a standalone OC4J server.
    "can be deployed" means MDB can run on standalone OC4J, right?
    last one:
    If a CMR exists between two CMP entity beans with the same Primary Key names than the association table generated is incorrect - Workaround is to make sure that primary key names don't match
    All my entity beans use uniqueId as the primary key. In the association table we are using other name as the foreign key. can I use orion-ejb-jar.xml to explicit mapping to overcome this problem?

    Hi Han -
    I had a further look through the bug database for the numbers you specified:
    Invalid column name when the primary key in one table is different from the foreign key name. (2514361) :
    - the base OC4J bug for this has been fixed in the 904 code line and will be in 904. If this is causing you problems with 903, then I recommend you call Oracle support and log a TAR. They may be able to have the base bug for this backported to 903 as a patch.
    You may also want to try deploying this using the non-association table operation mode. You can start OC4J with a system property of "-DassociateUsingThirdTable=false" which will force the container to use pk/fk columns in the direct tables for 1-M relationships rather than the association table. I don't know if this will resolve the specific problem you have, but it is worth trying.
    Null pointer exception when an EJBSelect() method is called. (2428884) : the base OC4J bug for this was fixed in the production release.
    If a CMR exists between two CMP entity beans with the same Primary Key names than the association table generated is incorrect - try using the non association table operation mode.
    Pure MDB cannot run in an embedded OC4J server but can be deployed to a standalone OC4J server. - I pointed out the area of the JDeveloper documentation where this problem and solution is discussed in an earlier post in this thread.
    Hope that helps you somewhat. You mentioned that you were still having a problem - can you post a new thread which has more details of the nature of the problem, stack traces, etc. so we can look at that separately.
    cheers
    -steve-

  • Experts, why there is a Decompiler for java???  explainations needed...

    hi guys,
    I don't understand why the java class files can be decompiled into original source code. What is the benefit of that? This is against intellectual property. Nobody wants their source code to be view by other people, especially if your project is critial and vital to your business!!!!!!!
    I tried the "DJ- Java Decompiler", the source code it produce is almost identical to the original. Sun has always claim java to be a secure language, but the java class file itself is not secure at all in the first place!!!

    Decompilers also help people better understand code in an advanced way to use it better. I know I use the sun Java files for common java.lang and java.util classes to make sure I'm doing it the best way possible.
    If you have the software are want to violate Intellectual Property, you could just copy the executable and sell that. Decompiling and recompiling a program to steal it seems like a long road to no-where.
    Decompilers are about understanding the code.
    IP is what you do with a document when you have it. If your respectful and use it as it was intended to be used, then the more you know about it, the more legal benefit you will gain from it. Violating IP is about wrongfully transferring information, not about understanding things you legally have in your possession.
    However, what courts may consider fair use is always declining. Soon you'll only be able to listen to the first half of the songs on a CD and after that they'll probably declare that you're stealing if you pay some special 'second-half' royalty fee.
    If you understand how to do things, then you can just write it yourself, and better, without resorting to stealing.

  • Shortcut keys explaination needed

    Hi,
    I've read up in Captivate help about shortcut keys, but am
    unclear as to whether they are to help me develop more productively
    or if they are used by the learner who is taking the course to do
    some action.
    Any clarification is appreciated.
    lisa

    Hi Lisa
    Maybe this will help. Let's say you have a project where you
    expect the user to select the File menu. Now in Windows, you may
    certainly click the word "File", but an equally valid action would
    be to use the keyboard and press Alt+F to make the menu appear. So
    using a shortcut, you could assign Alt+F to be considered the same
    action as clicking "File". This way you wouldn't penalize the user
    that prefers the keyboard when using your Captivate movie.
    Make sense? I hope so... Rick

  • How to connect Macbook to HDTV

    Hello Mac community,
    When i first bought my macbook back in late 2011 it came with OSX Lion already installed. I bought an hdmi cord and a thunderbolt attachment cord (idk what its actually called but the hdmi cord goes into the smaller one which in turn plugs into my macbook) and would connect it to my HDTV and run movies and music etc through my computer onto the tv. I had no problems with it until i upgraded to OSX Mavericks and yeah no more explaining needed. After that it switched to this new 'airplay' thing which requires an apple tv i assume? anyway i saved all my important info and restored to factory settings and installed lion back to it. however, for some reason i am still unable to stream ANYTHING to the hdtv. It still displays airplay (airplay devices not detected) or something to that nature and will not register my hdtv as even being connected. its alittle frustrating to say the least. is there anyway to fix this because it used to work perfectly fine until the upgrade.
    thanks for your help and for reading this long post.
    p.s. i do have osx mountain lion now installed which i used to also stream from. if that helps at all?

    Your postscript prompts me to ask: When you boot from that Mountain Lion installation instead of Mavericks, does the connection still work there? If it now fails on Mountain Lion, suspect a hardware problem instead of a Mavericks problem.
    I think Mavericks should still support a display through the MDP/TB-to-HDMI adapter/cable alongside any AirPlay options. What brand is the adapter?

  • RXRESETDONE is not asserted successfully

    I have question about RXRESETDONE is not asserted successfully .
    Actually, it is never get asserted.
    I am trying to use GTP tranciever on Artix-7 and I am using core from artix_gig_eth_pcs_pma_v11_5 to control GTP to use with 1G ethernet over fiber 1000baseX. I am running the last ISE 14.7, not Vivado
    I found application notes which somewhat unspecific in addressing issue, also somehow it looks similar.
    http://www.xilinx.com/support/answers/60488.html
    Is it possible to get more info about it.
    Also, there are production version of Artix-7which  needs special DRP sequence to fix issue at reset of GTP.
    http://www.xilinx.com/support/answers/53561.html
    and in data sheets.
    http://www.xilinx.com/support/documentation/user_guides/ug482_7Series_GTP_Transceivers.pdf
    However, sequence described in data sheets:
    When I use Chipscope to observe this sequence it is not behave as expected.
    In this sequence RXPMARESETDONE going down two time. First time it is going after GTRXRESET asserted
    But in my case it never go down the second times and from description it is not clear what will bring this signal done for proper implementation of core sequence of restoring bit 11 througn DRP write.
    In summary I see two things which are wrong: RXRESETDONE is never asserted, and it could be related but RXPMARESETDONE never go down the second time and as result correct sequence never get execurted.
    In reality 2ms timeout reissue reset every 2ms and tranciver never comeout in proper state.
    Does anybody has good suggestion on how to deal with issue or at least to have the better understanding of what is going on. Alsois it possible to explain needs for DRP correction at startup/reset. Some other people I talked did not implement DRP correction and have GTP working also for different application (not 1G ethernet)
    Any information will be helpful
    Thank you, Leonid
     

    In the first try I used the RXCDR_CFG from ug484 Table 4-14:
    //    assign cdr_cfg_gen1 = 83'h0_0000_47FE_1060_2450_1010;
    //    assign cdr_cfg_gen2 = 83'h0_0000_47FE_2060_2450_1010;
    //    assign cdr_cfg_gen3 = 83'h0_0000_87FE_2060_2448_1010;
    I also did try the new settings from AR# 51369
    // from Xilinx AR# 51369:
        assign cdr_cfg_gen1 = 83'h0_0000_47FE_1060_2448_1010;
        assign cdr_cfg_gen2 = 83'h0_0000_47FE_2060_2448_1010;
        assign cdr_cfg_gen3 = 83'h0_0000_87FE_2060_2444_1010;
    None of them work with SSDs / HDDs which use SSC. (SATA Gen1 and Gen2, I dont use Gen3 yet.)
    Is there any other parameter which influences the CDR with SSC? What about the CDR_HOLD pin?
    Thanks for your reply.

  • Pros & Cons of a All In One Computer Vs a Desktop

    My current system is a HP Pavilion a1616n  running Xp.
    I will be up grading this year either to another desktop, but afer looking at the All-In-One computers I am thinking about going that way plus I am tight on space.
    What are some of the pros and cons of the All-In-One computers if any
    Thanks
    Solved!
    Go to Solution.

    Good Question! I shall try to answer as best as I can.
    Pros:
    1. Lightweight and simple. An all in one desktop can be pretty easily moved from one room to another and has a minimum amount of wiring. (often just a power plug and wireless keyboard and mouse)
    2. Touchscreen options. Many models now have a touch screen, which is just plain convient and cool.
    3. Space saving. No explaination needed here, it takes less room!
    4. Style. Let's face it, they look cool.
    Cons:
    1. Upgradability. What you see is what you get. Upgrades are limited to memory and hard drive. You generally cannot upgrade the motherboard/proccessor, etc.
    2. Heat. Running something high powered? There is little airspace inside the case. It's designed for people running daily tasks, not high end games or server applications, and cannot be upgraded to handle those.
    3. All-In-One issues: If something breaks, you can't just use a temporary solution while that part is fixed (borrowing someone's monitor, etc). The whole unit has to go back.
    Conclusion: An all-in-one unit has the same pros and cons of a laptop, essentially, with the exeption of being less less portable and not requiring a battery. It's a laptop on a stand with a (typically) larger monitor, so a laptop might be a good alternative to an all-in-one if you don't mind the drawbacks. However, it feels more solid in your hands then a laptop and is perfect for an (only occasionally portable) enviornment, and since it's not likely to be moved you have to worry less about dropping it or replacing batteries overtime. Versus a desktop, a desktop unit is a perfect solution for the upgrader or one who wishes to customize which monitor they use, or wishes higher end (including server) applications. This is a generalization: Of course, there are higher end all-in-ones which can handle such applications, simply you cannot change/configure/upgrade an all-in-one to do so over time.
    I hope this helps, and I'd be glad to clarify any points as needed. 
    I am a Bestbuy employee who volunteers on these boards on my own time. I am not paid for posting here, and you should understand that my opinions are exactly that - opinions. I do not represent Bestbuy in any way.
    : Open Mailbox

  • Data Guard in oracle 11G

    Hi Friends,
    I am new in orcle & my boss told me to configur a dataguard in oracle 11g.we have two server with same configuration. First server is primary server & second server is standby. I have created two database name as PIDB & PIHIST for RTGS system. I have gave a database name to primary server is PIHIST,PIDB & for standby PIDBSTDBY,PIHISTSTDBY, Is it right ? is it right then how i configure a dataguard?
    Thanks,
    XYZ

    Hi ,
    Check Below Links
    http://www.oracle.com/global/uk/education/downloads/uwe_data_guard.pdf (Pdf File)
    http://wiki.oracle.com/page/DataGuard+%3A+Step-by-Step+Instructions+for+Creating+a+Physical+Standby+Database
    You can go to Oracle Library and also get the pdf file which explains you Step-By-Step Process to creating Physical Or Logical Standby Database.
    And also explain need and configuration of each and every parameter of Standby or Primary database.
    Thanks & Regards
    Rahul Sharma

  • How to acheive this scnerio in PL/SQl using collections

    Hi All,
    In my apllication we are handling two types of procedures which runs based on the jobs.
    Due to some problem few records where got missed in prouduction.
    We have tried to run this jobs manaually one by one and it is taking time to execute..
    I have got a suggetsion from my senior to do in a collection and run this packages at a time..
    Here is my exact scenerio, can you please help me out to implemnet in collections..
    Steps:
    Populate the missing records namely ordered, event sequence, Start date, end date, region in to plsql table/collection. ( Hard-coded since this will run the code
    for a date which will take less time and take less record).
    looping the plsqltable/collection for missing records
    Running the procedure p_Daily with startdate and end date parameter
    -- if the above executed successfully we need to execute second procedure i.e p_Region procedure by checking records in f_daily_report exist/relevant table
    (Id and sequence).
    Running the procedure p_region with start date and region id ( checking whether id and sequece is exist f_daily_report table).
    end loop
    The above steps which i have explained needs to achievd thru collections, can anybody helps me out on this.
    Note:
    1. All the missing jobs wil fal under differnt date rane groups.
    2. For second job i.e p_region i have mentioned that it will run based on start date and region id..This job will run on three differnt region id's..We can find the
    region id based on by joining f_region and d_region table. It seems that these misisng records belongs to all three regions
    Hope u all understand my scenrio. can you please help me out..
    Thanks in advance,
    Anoo..

    Anoo wrote:
    Hi,
    Hope you have not clear my question..The reason is i want to know how we can achieve my problem in collection
    rather than select statement.. Even though if we can get in simple statement is not advisible in my case..That is the reason why i was looking collections...
    Rather than providing data is it possible to how we can proceed in collections.That's like saying you want to write poor code that performs slowly rather than fast and performant code.
    Without clear explanations and examples of data and output, there doesn't appear to be a valid reason for using collections. The reason you're not getting many responses on your thread is because you're not explaining clearly what is required with examples. Please read {message:id=9360002} for an idea of what people need from you in order to help you.

  • RemovingContext only for One level(Message Mapping)

    Hi,
    Is it possible to remove context only for one level?
    For Eg:If I apply [RemoveContext] function to <Item>
    I will get {A1,A2,B1,B2,C1,C2,C3,C4}
    <SourceRoot>
    <A>
    <Item r="a">A1</Item>
    <Item r="b">A2</Item>
    </A>
    <A>
    <Item r="a">B1</Item>
    <Item r="b">B2</Item>
    </A>
    <A>
    <Item r="a">c1</Item>
    <Item r="b">c2</Item>
    <Item r="c">c3</Item>
    <Item r="d">c4</Item>
    </A>
    </SourceRoot>
    But I need only those coming under a particluar <A> .
    Like {B1,B2}.
    Any way to do this?
    Can anyone help.
    Thanks in Advance
    Message was edited by: Chemmanz

    Hi,
    I was just trying to give an example. In my real case
    SOURCE - INVOIC01 IDoc
    TARGET - cXML Structure for Invoice.
    When it goes to Line item level the complexity comes.
    A similar situation as i explained needs to be solved.
    [REMOVECONTEXT] helped me a lot.
    But I this situation I want to restrict it to a single level.
    For Ex:
    <INVOIC02>
    <IDOC>
    <EIEDP01>
    <EIEDP02 QUALF="001">.. </EIEDP02>
    <EIEDP02 QUALF="002">.. </EIEDP02>
    <EIEDP02 QUALF="0xx">.. </EIEDP02>
    </EIEDP01>
    <EIEDP01>
    <EIEDP02 QUALF="001">.. </EIEDP02>
    <EIEDP02 QUALF="002">.. </EIEDP02>
    <EIEDP02 QUALF="0xx">.. </EIEDP02>
    </EIEDP01>
    </IDOC>
    </INVOIC02>
    1.<EIEDP01>
    <=== mapped directly to ==> <InvoiceDetailOrder>
    Then internal things are organized differently in
    <InvoiceDetailOrder> compared to IDoc element<EIEDP01>
    Ex:
    I want to take all the <EIEDP02>s coming under one line Item <EIEDP01>
    <EIEDP02> cannot be mapped diectly to cXML element. It can be done only after checking it's own attribute QUALF.
    For this I applied [REMOVECONTEXT], but i am getting all the QALF values.
    I need to restrict it to <EIEDP01> level.
    Regards
    Chemmam

  • Using collections how to acheive this?

    Hi All,
    In my apllication we are handling two types of procedures which runs based on the jobs.
    Due to some problem few records where got missed in prouduction.
    We have tried to run this jobs manaually one by one and it is taking time to execute..
    I have got a suggetsion from my senior to do in a collection and run this packages at a time..
    Here is my exact scenerio, can you please help me out to implemnet in collections..
    Steps:
    Populate the missing records namely ordered, event sequence, Start date, end date, region in to plsql table/collection. ( Hard-coded since this will run the code
    for a date which will take less time and take less record).
    looping the plsqltable/collection for missing records
    Running the procedure p_Daily with startdate and end date parameter
    -- if the above executed successfully we need to execute second procedure i.e p_Region procedure by checking records in f_daily_report exist/relevant table
    (Id and sequence).
    Running the procedure p_region with start date and region id ( checking whether id and sequece is exist f_daily_report table).
    end loop
    The above steps which i have explained needs to achievd thru collections, can anybody helps me out on this.
    Note:
    1. All the missing jobs wil fal under differnt date rane groups.
    2. For second job i.e p_region i have mentioned that it will run based on start date and region id..This job will run on three differnt region id's..We can find the
    region id based on by joining f_region and d_region table. It seems that these misisng records belongs to all three regions
    Hope u all understand my scenrio. can you please help me out..
    Thanks in advance,
    Anoo..

    Joel_C wrote:
    There seems to have been a spate of Off-topic postings - is it possible this might be related to the forum software acting up or is it just coincidental user error in each case?Possibly.
    My hypothesis is that the unfortunate name "Application Express", the width of the APEX domain, and the excellent service provided here leads some to the belief that this is a fast-track clearing house for general Oracle/Applications/eBS questions.
    (For a number of others of course it's simply a free lunch...)

  • Plz help, my account was hacked

    My account was hacked. afternoon 25.01.2014
    Please help to return. account [Redacted for privacy]
    the last correspondence was with ([All account names redacted for privacy])
    If you want to, then I will say register email Skype.
    For your safety and protection, please never, ever include any personally identifiable information such as your real name, Skype account name, e-mail address, or a telephone number in a post on a public Community or forum such as this. Thanks!

    Hi, Zelensky1992,
    I arranged to transfer your second post to join your first post, of which apparently you may not have seen Primemover's correct recommendation to contact Skype Customer Service for assistance.
    We here in the Community are not authorized to access Skype accountholder data; you will, as Primemover explained, need to contact Customer Service yourself.  Furthermore, this Community is not a branch of Skype Customer Service, so customer service staff and agents will not see posts here. 
    Here is a link to the instruction on how to contact Skype Customer Service via their secure portal: Contact Customer Service
    You will need to proceed through each step, one at a time. Sign on to the Skype website as requested. Choose the subject and topic which most closely matches the item you need assistance with. Then, continue past Step 2 of the instruction where several articles from the FAQ library will appear for you to review, and proceed to Step 3, Continue Support Request (the blue "button" appears at the lower right corner of the website page). You may also skip through Step 4 where you will be referred back here to the Community; no need to do this as the Community is where you started. When you complete the webform and click Submit, your information is relayed to Skype and you will receive a reply via e-mail.
    If you are a Skype Premium or other eligible customer, you will be routed to start an instant message chat session with a Customer Service agent.
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

Maybe you are looking for

  • How to hide member Account dimension from BPC Administrator for Reporting

    Hi experts, i need to hide some members of the Account dimension for reporting, because those members dont use it anymore, but i dont want delete them. The question is: Does it exist any propierties for this dimension type that allows hiding members

  • Having Wi-Fi issues

    We have Wi-Fi at my house since my Sprint service is so bad but it went out a while ago but now it's back up & running. Now that I've tried to connect it says that the password is incorrect when I'm getting it off of the router itself. Everyone else

  • Producer consumer waveform x axis

    I've run into a problem and I'm not sure of the source.  I'm developing a program that reads, displays, and writes thermocouple readings at different rates.  I'm using the producer-consumer architecture and while the sample rate will not be an option

  • New to OBIEE need help with Formula

    Is it possible to use a prompt in a column formula filter for e.g. FILTER("Defect Facts"."Detected on Date" USING "Defect Facts"."Detected on Date" = '@{11/20/2009 12:00:00 AM}')) this formula does not works for the column. What i need to do is creat

  • Photoshop CC Vector Shape Fill Defaults issue

    For some reason whenever I create a vector shape the default Fill is always Pattern instead of flat color.  It used to default to whatever the last style I used in CS6, but for some reason in CC no matter what all shapes I make are default ugly bubbl