How the implementation differs between BW and BI , Is BI takes more time fo

Hi All,
I would like to know difference between implemenation and time lines for MM as mentioned below.
How the implementation differs between BW and BI , Is BI takes more time for implementing MM module  than on BW?
Thanks in advanced. (Full points will be awarded)
With Regards,
PCR

Hi Timo,
Thanks for response!
But as i read from the following url: http://docs.oracle.com/cd/E15051_01/apirefs.1111/e10653/oracle/jbo/ViewObject.html, the setQueryTimeOut(int timeOutMills), the timeOut is mentioned in milliseconds. Please correct me if I am wrong.
and i have overriden the executeQuery() method in the View Object Impl class as shown below:
public void executeQuery() {
Map sessionScope = ADFContext.getCurrent().getSessionScope();
sessionScope.put("MyQuery", this);
try {
super.executeQuery();
} finally {
sessionScope.remove("MyQuery");
throw new JboException("Query Taking too long to respond");
and in the JAVA class i am calling the above method like this:
monitor.setQueryTimeOut(6);
monitor.executeQuery();
But the issue is:
1. The above exception message is getting carried forward to other pages as well. I mean somewhere in the session/ADFContext this message is being saved and error comes up/pops up when i click on other tabs of the page. How do i clear this?
2. The above exception message is coming for the first time but when i click the 'Submit' button second time, i am getting the results and also the message that 'Query is taking too long to respond'. This should not be the case, everytime it should show the same message as the timeout limit is less and the query should end without fetching the results.
Kindly let me know how to resolve the above issues, any pointers will be helpful.
Thanks in advance.
Edited by: user9223904 on Nov 3, 2012 4:42 AM

Similar Messages

  • How does iPad choose between wifi and 3G when both are 'on'?

    Easy peasy question.
    I have 02 and Wifi going on my iPad. I know I can use 02 out and about and I know I can use wifi at home etc.
    But when I'm at home how do I make sure I'm using my wifi for data and not my cellular connection???
    I've been turning my cellular to 'off' when at home, just in case, but I don't want to have the faff of turning it off and on, so it would be nice to know how the iPad chooses between wifi and 3G when both data access points are active.
    Also I've had no wifi troubles at home at all. so far... The acid test will be setting it up at work as they have proxyies for everything, but obviously I don't have proxies at home. I'm not sure if the settings screen can cope with different proxies dependent upon different wifi networks... * grin *

    In the status bar I have
    a signal strength indicator then 'O2-UK' then the 'fan' No mention of 3G.
    I'm guessing you're going to say that when 3G is showing then 3G is being used for data?

  • Definition of the best approach on how to do reporting between BPC and BW

    Hi,
    I need your opinion in the definition of the best approach on how to do reporting between BPC and BW.
    For example if we want to do reporting using BW on Actuals Vs Budget how should we manage this since technically BPC Model and BW InfoCube is different?
    BPC Models have the Budget and BW has the actuals, but the InfoObject that is used for Account is different. What is the best approach to do the reporting?
    Thanks in advance,
    JA

    Hi Gersh
    I already thought in that option, but the problem is the Yellow requests in the Infocube that are not used by VP.
    In the past I used Report RSAPO_CLOSE_TRANS_REQUEST_ALL3 in the virtual function module to close the requests, but now I didn't want to use VP based on function module.
    Is there any option to use data in Yellow requests in VP based on DTP?
    Best regards,
    JA

  • What is the different between statement and preparedstatement?

    hi,
    recently i have attended a telephonic interview. they asked me what is the different between statement and preparedstatement? and when u will use them? Hi! can any one say me the original difference??

    sorry dear,
    i am already shortlisted. and monday is my HR round.
    . Every 1 is not like u.
    So you have read the examples and explanations that you found when you googled, and you have read the javadoc and you still don't understand? And you are shortlisted? For what? I hope you won't do server programming.
    I will give you a few hints.
    Escaping of data
    Storing of dates
    Safer
    Faster

  • What is the different between component and component type in extract struc

    Hi All,
    What is the different between component and component type in the Extract Structure?
    I used them, but I never really know the different between them yet.
    Thanks,
    Grace

    The difference between Component and Component Type are:
    Component This is essentially the field name in the extraction structure. These can either be SAP delivered field names or custom field names (e.g. Y* or Z*).
    Component Type This defines the data definition for the field, along with associated attrributes and descriptions for anything using that Component Type, to define the corresponding Component. If you double-click on any Component Type in an extraction structure, it will show you the definitions that have been setup for that Component Type (will display as Data Element but it's essentially synonymous - Component Type refers to structures and Data Elements refer to tables).

  • How to increase the width size between PROMPT and TEXT BOX?

    Hi Gurus,
    my page having MessageTextInputs. Normally page runs displays the Prompt name and one text box will displayed.
    my requirement is
    1) how to increase the width size between PROMPT and TEXT BOX?
    2)prompt name displays like
    elephant
    xxxxxant
    xxxxRose
    here xxxxx indicates SPACE
    but my client requirement is don't displays the SPACES in left side.
    so our requirement is in page PROMPT displays like
    elephant
    ant
    rose
    How to achieve this plz help me
    its very urgent
    Thanks

    Hi,
    Create a table layout region and under that use 'messageStyledText' for displaying the prompt and use 'messageTextInput' for text field without giving any prompt to that.
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                           

  • What's the different between cc and cs6?  I'm taking a course and cs6 is recommended, but I already have cc, will that be good enough?

    What's the different between cc and cs6?  I'm taking a course and cs6 is recommended, but I already have cc, will that be good enough?

    When I'm away from the desk, I never get the exact wording
    "Find new Apps > Filters and versions > select Previous Version"
    Then where you see the Install button next to Photoshop below that, click on that and you can select 13.0 CS6 for install.
    It's a good idea. CC 2014 has eliminated and added many features, and you want to be on the same page in that course.

  • The different between Contain and equals

    I not sure about the different between contain and equals if I want to know if the string have some character or not ?
    thankyou

    HJava wrote:
    Thank you for all the reply,
    I have if (myTYpe.substring(0).contains(""u") ) work
    if if (myTYpe.substring(0).equals(""u") ) not work
    so I post this question, may be I made other mistake
    Thank youIf you wanted to see if the first character of the string was u then it is either
    myTYpe.charAt(0) == 'u'or startWith("u") or matches("^u.*$") etc, etc, etc.
    substring(0) will return the entire String, of course, which you would know if had actually looked at the API docs to find out what it did or even simply printed out the result to see what it did. Seemingly, however, you simply assumed you knew what it did and went on with that false assumption without bothering to even attempt to verify even though it was, already, not producing the results you expected. Instead, you focused on "the difference between contains and equals" which is self-evident in their names and obviously not the problem to begin with.

  • What is the different between Aperture and Photoshop

    Are these comparable programs? Can I do everything in Aperture I can do in Photoshop? I am trying to decide whether of get Aperture 3 now or await PS CS5/
    TIA,
    Bill

    Bill,
    Both previous posters to your question have more experience than I with Aperture, so I won't comment a lot on that one (although I really like Aperture because it can be a one stop shop for the casual photographer who just wants to get the best shots organized, touched-up and perhaps posted to a web site or printed in a book or to paper).
    I am not positive of how the adjustment brushes really work (but they seem to utilize 'masking' - something found and used in PS a great deal for artistic reasons). This would be a similarity, although Aperture appears to do masking on the fly while the user applies brushed in edits, where Photoshop is (in many cases) a manual mask created on a layer above the image (this takes more time but offers a bit more control).
    I can tell you a few things about Photoshop:
    1 - You would use 'Bridge' to ingest and organize your image files (this is not nearly as competent as Aperture for organization, but it will work well for someone organizing, keywording and rating up to a few hundred images per folder).
    2 - You would be using the 'Adobe Camera Raw' plug-in to veiw and edit any RAW files you plan to work with in your photography (it is also capable of working with .jpg and .tiff files). All work done inside this plug-in is 'non-destructive' and is not applied to anything but the preview until you save it out as a supported image file type (Aperture does the same).
    3 - Photoshop allows editing above and beyond the RAW edits due to layers and the ability to manipulate pixels on each layer. It also has all the tools you might need to create graphics from scratch with pen tools, brushes, text tool, etc.
    So in summation, your RAW workflow in PS would be 'Bridge > Adobe Camera Raw > Photoshop', compared to Aperture's 'all-in'one' RAW workflow design.
    I can't say a lot due to NDA, but we are now allowed to confirm PS CS5 and I can say that the beta performs at least as well as the current release of PS CS4 on my Mac Pro.
    You might use the trial of Aperture to get a feel for the program and then (assuming there will be a trial version of PS CS5 released soon after full release) - you could try that for 30 days and make a decision.
    Good luck with whatever decision you make.
    Peace.

  • CIC0 Partner determination different between crmd_order and CIC0

    Hi experts,
    We have a problem with the partner determination. We have a partner who has relations with several other partners. In the partner determination procedure, we have indicatied that the partner needs at most one occurence and a selection limitation of 1. There is also an access sequence that makes sure that the right partner is found.
    This all works fine in the CRMD_order transaction. You get a list of partner to choose from when you enter the main partner. Unfortunately, this does not work in the CIC0 transaction. In this case the system takes the top partner of the list.
    Does anyone know why partner determination in CIC0 seems to ignore the setting of selection limitation and occurences? Why is this different between crmd_order and CIC0? How can we make it the same?
    Thank you for your input,
    kind regards,
    Ragina Mahadew

    Hi Ragina, welcome to SDN.
    My opinion is that main purpose for that, was to speed up the interaction registration by the call center agents.
    But if you want to display the partner selection pop-up in CIC0 t-code, you can try to implement note 487734 for that.
    Hope that helps!
    Kind regards,
    Garcia

  • Why is different between consumption and spare part material Amount in Accounting?

    I go to mb51
    in Accounting document there is different
    l found the standard price was changed in the last . it was changing from 850,000 to 1000
    i don't know why is different between consumption and spare part material Amount Accounting??? please help me . how can I solve it?

    pay attention just first document has a different accounting amount . in others there aren't different .see these screenshot :

  • FB60 screen change layout different between DEV and PRD

    Hi,
    I'm having problem with transaction FB60. When i try to change the layout in PRD, in screen Edit System Setting, some of the field showing 0 length. For example in WBS element field, in DEV show length 24 but PRD show length 0. I try to compare the version but it is same (program & table structure - ACGL_ITEM). When I debug the program, found out that it will get the structure from sap internal c program call 'AB_GET_CX_DATA'. So, maybe this program version are different between DEV and PRD.
    Anybody knows what is the cause of this problem? Or maybe somebody can tell me how to check sap internal c program.
    Thank you very much.

    Yes. FB60 is Enter Vendor Invoice. In this screen you can see a table with column such as GL Acct, Debit/Credit, Amount in DC, Cost Center and others. You can add or remove some of the field using Table Setting and create Screen Variant. My problem is, the length of WBS Element and Profit Center field is 0. How to change the length.
    I already searched in forum but I only found how to create screen variant.
    Thanks.

  • How to place content between header and tabs?????

    i have header part which has to be constant through out the portal but below that i have 3 links
    like I AM employee,employer,broker..
    which has to be shown only in home page above tabs..
    how can i achieve this..
    how to place content between header and tabs..:(kindly help..

    Hi Samiran
    Try these approaches and see if that works.
    1. In the Header Section, you header footer shell and add a Header Portlet. This Header Portlet associated JSP file will have all static content in the top section. In the bottom section, add these 3 links say to right hand corner. Show these links only based on some request property like isHome. Now for the main book having Home and other page associate a BackingFile. Within this backing file in the lifecycle methods like preRender or handlePostBack, get instance of BookManager and all the pages and see which page is Active. For that active page check its page definition label which will be always unique. IF the page def label is like home_page_def (this is page def label you give for home page), then set the key value in the request property like isHome=true. By only doubt is after Book backingfile is triggered, the header has to be reloaded, because only then it can pick up the request attributes.
    2. Create a brand new portlet like HomePageLinks portlet. Make its Title Property Not Visible, and other user interface properties like NoBorder, NoTheme etc. The associated JSP will have the 3 links you mentioned right aligned. You can use css styles to make it right etc. Now drop this portlet in the Header Shell area. You already have HeaderPortlet in the top, below that you will have this HomePageLinks portlet. Now associate a backing file for this Portlet to show, only if the Books current active page is Home page by comparing the def label etc as mentioned above.
    In both scenarios, only concern is when we click on different Pages, the entire portal has to be rendered right from the Top Header. Only then the backing file will set the key, and the HomePageLinks portlet can show or hide accordingly.
    Try firing an Event when the Home page is clicked. This listener for this Event can be the HomePageLinks Portlet. I guess Event mechanism should work irrespective of where the portlet is placed. In the event listner, see if you can show/hide this portlet.
    The only challenge is Header section needs to reloaded everytime you click on a Tab.
    Start putting some backing files and System.out.printlns to see if the Header section gets reloaded on click on any Tabs.
    These are just my thoughts over the top of my head. Other forum users can have better alternatives or a different version of above approaches.
    Thanks
    Ravi Jegga

  • The Correct Space Between You And Your Monitors

    Something that always crossed my mind was the space between your monitors and where you are seated. How far exactly are you supposed to be positioned from your speakers in order to read and hear correctly. Most producers would comment that people produce in all types of environments, headphone close rang monitors, far range monitors. But what exactly is the ideal space between you and your speakers? To look into this issued even more closely each speaker is designed differently, there for you cannot look at them all equal as far as performance is concerned.
    How far are you away from your speakers?

    dude it depends what you want
    I got mine at about 1-meter to 1.5-meters at my home studio
    at the big studio i've got two pairs of monitors in there and they both 1.5 meters
    other people will go as far as 3-meters, in your case get abit closer as you said before that your room is not acoustically treated there for sitting too far away will give you a mix of 50% of the speakers and 50% of the room
    but you need 80% of the speakers and 20% of the room
    ps: don't just leave this topic alone and start another one, because its annoying when people don't if you've been help or not and they keep trying to help you
    and people also don't know if you are reading your post or your just using it as an amusement forum just for fun on your lunch breaks
    so please reply back and let people know if they've helped
    stash

  • How to implement dependencies between search criteria in a Search page

    Hi All,
    I am using Jdev 11.1.1.6
    Someone please let me know how to implement dependency between the search criteria in a search page.
    i have found few articles for implementing the same in forms.
    i am trying to implement dependencies between search criteria's. i will be using two serach criteria's as lov's in Search page(Using search panel) not in simple forms.
    the second criteria lov should be listing all the results based on the firstr search criteria.
    someone pls let me know how too implement this.
    Regards
    Siva

    Thanks Timo,
    I got the result. On the dependent attbute properties,i selected the parent attribute and then followed the link for further proceeding.
    Its working fine.
    Thanks alot for the reply.
    Regards
    Siva

Maybe you are looking for

  • Updates is unavailable for my ID, but i only have one ID.

    I just found a problem today that i am unable to update my apps. It told me that "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded of cancelled' ~ Both iphone and ipad. I am sure

  • Mm issue

    hiii in vendor master i want the cin details tab to be appear. Presently now that tab is not showing.Could any one suggest how to make that tab appear in the vendor master.. It is very urgent..

  • SCN Number

    Hi, When is the SCN number exactly generated. I read that it is generated when commit happens. If that is the case. How does oracle know that (when rolledback) which transaction to roll back. I mean how does it monitor all the transactions ( Both com

  • IPhoto 08 - Loosing photos, iPhoto automatically deletes from hard drive!

    Hi, I am using iPhoto 08 v 7.1.5 on Max OS X 10.6.4 We are 2 users sharing the same iPhoto library and after ongoing issues with permissions I have moved the iPhoto library (as per Apple's instructions) to a Sparse Disk Image on the Shared folder and

  • T code use of KB31N & KP46

    Dear all, Can u please let me know about the use of following T codes. KB31N KP46 Regards, Gagan