How many homeobjects will be created when we deploy a ejb

when we deploy ejb(session) in the server how many home objects the server will create and if multiple clients request the same beanhome object how the server will maintain plz anybody help me out

One String object is created when the class is loaded.
No objects are created when that line is executed.

Similar Messages

  • How many objects will be created due to constructor chaining

    Consider this case
    ChildClass obj = new ParentClass();
    I would like to know how many objects will be created in this process.

    Consider this case
    ChildClass obj = new ParentClass();
    I would like to know how many objects will be created
    in this processThe simple answer is one.
    The complex answer is many.
    In terms only of the classes that your code represents conceptually there will be one.
    The reality is that the the object itself might create objects. And loading the classes, if it has not already occurred will also create objects.

  • How many partitions will be created for range 1998-2000

    hi experts,
    i have created partition on a infocube with range as 1998 to 2000 im able to see 37 partitions only in DB02 transaction.
    i read  in saphelp document that 38 partitions will be created.
    i.e <1998 and >2000
        3 x 12 = 36 +2 = 38
    but for me all records < 1998 are placed in partition 199801 and max value partition is created i.e >2000.
    so please can anyone explain why this is happening.
    Regards,
    Venu Gopak.K

    Hi Venu,
    Found note 385163 - Partitioning on ORACLE since BW 2.0.
    This has the following logic for creation of partitions. You can see that the first partition "/BIC/EPART_BSP200001" is created to take in the values of Jan 2000 and below (less than Feb 2000).
    The table "/BIC/EPART_BSP" is created as follows:
    CREATE TABLE "/BIC/EPART_BSP" ( ..... , SID_0CALMONTH , .... )
                  storage ( INIT , ...., ....... )
                  partition by range ( SID_0CALMONTH )
           PARTITION "/BIC/EPART_BSP200001" VALUES LESS THAN (200002),
           PARTITION "/BIC/EPART_BSP200002" VALUES LESS THAN (200003),
            PARTITION "/BIC/EPART_BSP200211" VALUES LESS THAN (200212),
    PARTITION "/BIC/EPART_BSP200212" VALUES LESS THAN (200213), PARTITION "/BIC/EPART_BSPMAXVALUE" VALUES LESS THAN (MAXVALUE)
    Interesting...the help docu says there will be 2 additional partitions. The note suggests there will only be 1 additional partition.

  • How Many WebSItes can I create

    I already created a web site but I´d like to create a new one. Is this possible without erasing the first one? How many sites can I create?

    Welcome to the Apple Discussions. Yes. Create a new site in iWeb and rename it to whatever works best. When you publish the URL will be: http://web.me.com/YourMMe_Account_Name/SiteName/
    You can have as many sites as you have room form. I have over 85 individual sites in my MMe account.
    OT

  • How many pushbuttons u can create in application toolbar in selection scree

    Hi
    How many pushbuttons u can create in application toolbar in selection screen? 
    Thank You

    Hi,
    Use SET PF-STATUS 'ZABC'.
    Double click on it.
    It will display Application toolbar. Create the buttons.
    I think the limitation is bcz of the LABEL of button, if you create buttons with a Single TEXT, then you would be able to create many buttons, including toggle button. The Toggle button would switch the buttons.
    i.e say initially 10 buttons are displayed along with toggle button. You click the toggle button , then remaining 10 buttons are displayed.
    Best regards,
    Prashant

  • How many tables ll be created by default

    Hi,
    I would like to know how many tables ll be created by default in RDBMS, when a classic planning application is created.
    Thank you.

    9.3.1 - 83 tables
    11.1.2 - 106 tables
    HTH-
    Jasmine.

  • How many heirachies can be created using one dimensional table

    Hi,
    I have one dimension table and one fact table, how many heirachies can be created, is it only one?
    Thank you.

    Hi,
    One dimension can have only one hierrarchy for sure.But create dimension in a such a way(columns should be included in one dimension,example: Year and FYear in Time Dimension) that we can create two branches on Total level.
    Refer this blog..Will solve your doubt....http://gerardnico.com/wiki/dat/obiee/hierarchy#defining_multiple_hierarchies_for_the_same_dimension_logical_table
    Regards,
    Srikanth
    http://bintelligencegroup.wordpress.com

  • How many gb do you use when renting a movie on itune store

    When renting or buying a movie on the itune store, how many GB will you normally use?

    You will see the size under information; you will need about twice the amount of space to download movie (tap to enlarge image).

  • How many SECONDARY INDEXES are created for CLUSTER TABLES?

    how many SECONDARY INDEXES are created for CLUSTER TABLES?
    please explain.

    There seems to be some kind of misunderstanding here. You cannot create a secondary index on a cluster table. A cluster table does not exist as a separate physical table in the database; it is part of a "physical cluster". In the case of BSEG for instance, the physical cluster is RFBLG. The only fields of the cluster table that also exist as fields of the physical cluster are the leading fields of the primary key. Taking again BSEG as the example, the primary key includes the fields MANDT, BUKRS, BELNR, GJAHR, BUZEI. If you look at the structure of the RFBLG table, you will see that it has primary key fields MANDT, BUKRS, BELNR, GJAHR, PAGENO. The first four fields are those that all cluster tables inside BSEG have in common. The fifth field, PAGENO, is a "technical" field giving the sequence number of the current record in the series of cluster records sharing the same primary key.
    All the "functional" fields of the cluster table (for BSEG this is field BUZEI and everything beyond that) exist only inside a raw binary object. The database does not know about these fields, it only sees the raw object (the field VARDATA of the physical cluster). Since the field does not exist in the database, it is impossible to create a secondary index on it. If you try to create a secondary index on a cluster table in transaction SE11, you will therefore rightly get the error "Index maintenance only possible for transparent tables".
    Theoretically you could get around this by converting the cluster table to a transparent table. You can do this in the SAP dictionary. However, in practice this is almost never a good solution. The table becomes much larger (clusters are compressed) and you lose the advantage that related records are stored close to each other (the main reason for having cluster tables in the first place). Apart from the performance and disk space hit, converting a big cluster table like BSEG to transparent would take extremely long.
    In cases where "indexing" of fields of a cluster table is worthwhile, SAP has constructed "indexing tables" around the cluster. For example, around BSEG there are transparent tables like BSIS, BSAS, etc. Other clusters normally do not have this, but that simply means there is no reason for having it. I have worked with the SAP dictionary for over 12 years and I have never met a single case where it was necessary to convert a cluster to transparent.
    If you try to select on specific values of a non-transparent field in a cluster without also specifying selections for the primary key, then the database will have to do a serial read of the whole physical cluster (and the ABAP DB interface will have to decompress every single record to extract the fields). The performance of that is monstrous -- maybe that was the reason of your question. However, the solution then is (in the case of BSEG) to query via one of the index tables (where you are free to create secondary indexes since those tables are transparent).

  • How many vlan can be created on single port of HWIC-2FE

    Hi Guys,
    I have a router 1921 with a HWIC-2FE.
    How many VLAN can I create in each port of HWIC-2FE.  
    Thank you
    Salvo

    I'm not sure what you are referring to. How many VLANs can be untagged while the port is in access? Or how many VLANs can you pass on a trunk?

  • How many rules will Mail allow???

    That's the question... How many rules will Mail allow??? I can't find any documentation indicating a quantity. I can not save more that six. Am I missing something?

    What was occuring. I was able to save and apply a rule once. If I closed mail, the rule just dissapeared. I was able to replicate this time and time again. I post4ed this question once before on 5/10/13. https://discussions.apple.com/message/21985327#21985327 . Because I received no response to that querry, I posted this again. Thank you for your repsone. I'm not sure what has occurred but I am able to make additional rules, save apply them; quit the application and upon re launch they are there. I have no explination as to what facillitated the change. Thank you for your response and querry.

  • Report execute time nd how many records will be returned before hitting the "run" option?

    Post Author: Prasad15
    CA Forum: WebIntelligence Reporting
    Is there any way to know how long the report executes and how many records will be returned before hitting the "run" option?
    Regards
    Prasad

    To know if the report is going to return more than 10,000 records, you first have to run the query with a 'select count(1) from ... where ...' (with the same from and where clauses as you normal query). Since this takes about the same time as runnng your report, I wonder if you really gain anything (although formatting may take some time too).
    You may simplify the select count(1) query by omitting all the lookup tables that are only needed for formatting. That way your query may run a lot faster. You can put this in your after parameter form trigger.

  • How many hours will it take me to download adobe acrobat XI Pro (English) free trial?

    how many hours will it take me to download adobe acrobat XI Pro (English) free trial?

    Hi tanadmin1,
    Acrobat XI Trial is of Appox. 500 MB and download depends on the speed of network.
    You can use the below link to download Acrobat XI.
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=acrobat_pro&loc=us

  • How many items will overflow in FI-SL Deltaqueue?

    Hi,experts:
        As to SAP note
       "If the Delta method has been initialized for a source system, a Delta upload must be scheduled regularly so that the Deltaqueue will not overflow. If you want to stop the Delta method, you should also delete initialization."
        Then I have a question that how many items will overflow or how to calculate the maximum records?
    Best Regards
    Martin Xie

    Hi,
    In case of FI-SL the delta queue is not used so its not possible to count the number of records.
    an SAP program-internal limit ensures that no more than 1 million LUWs are ever read and fetched from the database per delta request.
    But even the LUW's can be a one document or many documnets bundled together.
    So its defentely a multiple of million but its defenately not possible to count the number of records but you can make an assumption based on memory.
    Thanks
    Ajeet

  • How many licenses do you get when you purchase the Adobe Creative suite?

    How many licenses do you get when you purchase the Adobe Creative suite? I'd like to install it on one more computer but do not know if this is allowed.forumnotifierAmy_WongDebbieWoojin

    A single user license (one license) purchase allows for you to install and activate on two machines. 

Maybe you are looking for

  • Idoc Scenario from SAP to SAP  via PI 7.1o

    Q: Two idocs will process from SAP to SAP via SAP-PI 7.1o and generated together. Requirement : Sync 2 IDOCs – as we explained our design will require two IDOCs. The first IDOC will be developed by a Z code and the second IDOC is generated by 100% St

  • Adobe TV says I need Flash 10.1 after I installed 10.2

    WTF, which means ... Where's the Flash? iMac 20" dual-core Intel with OS 10.6.7 and Safari 5.0.4 I've installed the new Flash 10.2 twice this morning. Each time, it went quickly and then slowed up at the 95% mark for about 1-2 minutes, then finished.

  • JAVA_HOME Error

    Hi Friends, I am trying to install SAP Sol Mgr 4.0 SR2 on Win 2003 Enterprise Edition. Prerequisites check error - Condition - JAVA_HOME RESULT CODE - COuld not Check Severity - HIGH Message - It is not recommendedto use JDK version 1.4.2_10. Current

  • Lost CR files after exporting to jpg

    I seem to have lost many original CR files after import > developing > export as jpg.  I had made selects to develop and then output images as lower rez jpgs.  When I went back to the original folders (on an external hd) those CR select files were mi

  • How much hard disk space remains?

    Sorry, the Missing Manuel for Lion isn't available until the end of the month, but I have a lot of basic questions. With Snow Leopard when i opened a Finder window at the very bottom of the window pain was information on how much memmory was being us