Cell specific rendering with default renderers?

I searched but I can't find the answer to my (hopefully) simply question.
I know that I have to overwrite the getCellRenderer method in my own JTable class to specify cell specific renderers. Now my problem:
I want to use the same renderers as the default one does like rendering a boolean value as a checkmark. How can I do this? What instance do I have to return to accomplish this?
Thanks in advance!
Chris M.

How about creating your own TableCellRenderer for the column? In it you have a check, and if that check is met, return a custom component, otherwise, just return the default component by calling DefaultTableCellRenderer's version of getTableCellRendererComponent.
public class MyTableCellRenderer extends DefaultTableCellRenderer {
    public Component getTableCellRendererComponent(JTable table,
                                                   Object value,
                                                   boolean isSelected,
                                                   boolean hasFocus,
                                                   int row,
                                                   int column) {
        if (<your condition>) {
            return <special component>;
        } else {
            return super.getTableCellRendererComponent(table, value, isSelected, hasFocus,
                row, column);
}Then set that renderer for your table column:
MyTableCellRenderer myCellRenderer = new MyTableCellRenderer();
TableColumn myColumn = myTable.getColumn("myColumnName");
myColumn.setCellRenderer(myCellRenderer);Hope this helps!
Barb

Similar Messages

  • Rendering issue on Samsung S4 (specific models) with AIR app

    We have an Android/IOS app compiled with AIR 3.9. It works fine for all devices but some specific models of Samsung S4. First let me describe the device models & compilation details, as below:
    > Issue found on devices (given models only, on other S4(s) works fine):
         - Samsung Galaxy S4 (Model No. SGH-M919)
         - Samsung Galaxy S4 (Model No. SCH-I545)
    > Compilation:
         - AIR 3.9 (also with 3.8)
         - Render Mode GPU
         - Bitmap graphcis
    > Problem:
    There problem is with redering of grpahics speically which are masked. Either those masked graphcis doesn't display at all OR display in wrong layer (also distracted) when Display List realted to that object is manipaulated i.e. A child object is added to the parent of masked object & the masked object appears above it which was previously not visible. Some masked obejcts are not displayed at all.
    > Observation:
    It was same with CPU mode rendering however when the render mode is changed to AUTO the issue is resovled. But then app is preforming too slow as it uses all bitmap graphcis.
    It seems the specfic S4 models are using different type of GPU, though it should not create such weird issue. Can anybody suggest possible solution for this? OR have faced sismilar behavior on said devices ?

    Hi  Omi,
    Thanks for your reply for issue “Rendering issue on Samsung S4 (specific models) with AIR app”. My adobe account is [email protected]<mailto:[email protected]>, you can send your simple app to me by this account, now we are working on it.
    Thanks
    -Bo
    发件人: grosssmutttr [email protected]
    发送时间: 2013年12月28日 18:52
    收件人: Bo Tang
    主题: Rendering issue on Samsung S4 (specific models) with AIR app
    Re: Rendering issue on Samsung S4 (specific models) with AIR app
    created by grosssmutttr<http://forums.adobe.com/people/grosssmutttr> in AIR Development - View the full discussion<http://forums.adobe.com/message/5961441#5961441

  • No using wiggle effect when rendering with Media Encoder

    Hey!
    I wanted to render my project (by "add AE project") to CS4 media encoder. After the render process
    my wiggle effects which I applied to my footage was not considered and did not appear at all. When I
    just render with AE4 it work.
    Do I need to  change any settings or pick a special format in the media encoder?
    I'd be glad for an answer!
    best,
    Alex

    Unfortunately that is a bug in Adobe Media Encoder - it does not correctly handle expressions, if they were created in the non-default language. If your AE runs in English, but AME in German, AME will run the background instance of AE it uses to handle AE projects also in German and your expressions break, because they are language specific. Nothing you can change. As a workaround, consider using the Convert Expressions to Keyframes keyframe assistant before rendering with AME. For a few layers with simple stuff that should be acceptable, but of course it will be a nightmare with lots of expressions.
    Mylenium

  • How to assign project specific task with the newly created projects ?

    Hi All,
    I need help. I need to assign project specific tasks (which i will be taking from staging table) other than the default task which are assigned during project creation. How do I proceed with this within same package. I am attaching the code of my package below...
    CREATE OR REPLACE PACKAGE body xxpa_proj_conv_pkg as
    PROCEDURE xxpa_create_project_proc(O_ERRBUF OUT VARCHAR2,O_RETCODE OUT VARCHAR2)
    is
    variables need to derive global parameters
    v_responsibility_id NUMBER; --- PA Supervisor responsibility id
    v_user_id NUMBER;
    deriving global parameters-
    -- Variables needed for API standard parameters
    v_api_version_number NUMBER := 1.0;
    v_commit VARCHAR2(1) := 'F';
    v_return_status VARCHAR2(1);
    v_init_msg_list VARCHAR2(1) := 'F';
    v_msg_count NUMBER;
    v_msg_index_out NUMBER;
    v_msg_data VARCHAR2(2000);
    v_data VARCHAR2(2000);
    v_workflow_started VARCHAR2(1) := 'Y';
    v_pm_product_code VARCHAR2(10);
    ---variables for catching errors---
    v_error_flag number:=0;
    -- Predefined Composite data types
    v_project_in PA_PROJECT_PUB.PROJECT_IN_REC_TYPE;
    v_project_out PA_PROJECT_PUB.PROJECT_OUT_REC_TYPE;
    v_key_members PA_PROJECT_PUB.PROJECT_ROLE_TBL_TYPE;
    v_class_categories PA_PROJECT_PUB.CLASS_CATEGORY_TBL_TYPE;
    v_tasks_in_rec PA_PROJECT_PUB.TASK_IN_REC_TYPE;
    v_tasks_in PA_PROJECT_PUB.TASK_IN_TBL_TYPE;
    v_tasks_out_rec PA_PROJECT_PUB.TASK_OUT_REC_TYPE;
    v_tasks_out PA_PROJECT_PUB.TASK_OUT_TBL_TYPE;
    v_CREATED_FROM_PROJECT_ID varchar2(20);
    v_CARRYING_OUT_ORGANIZATION_ID varchar2(20);
    v_person_id NUMBER;
    v_project_role_type VARCHAR2(20);
    API_ERROR EXCEPTION;
    v_a NUMBER;
    cursor for project in data
    CURSOR cur_project_in_data IS SELECT * FROM XXPA_PROJECT_IN_STG;
    cursor for task data
    CURSOR cur_task_in_data IS SELECT * FROM XXPA_TASK_IN_STG;
    ------------------------Cursors used for validations----------------------------------
    cursor for product code used for validation
    cursor cprc is select distinct PROJECT_RELATIONSHIP_CODE from PA_PROJECT_CUSTOMERS;
    cursor for distribution rule-
    cursor cdr is select DISTRIBUTION_RULE from PA_DISTRIBUTION_RULES;
    cursor for project status code
    cursor cpsc is SELECT PROJECT_STATUS_CODE, PROJECT_STATUS_NAME FROM PA_PROJECT_STATUSES WHERE STATUS_TYPE = 'PROJECT';
    cursor for template/created from project id
    cursor ccpid is select project_id from pa_projects where template_flag='Y';
    BEGIN
    select user_id, responsibility_id into v_user_id, v_responsibility_id
    from PA_USER_RESP_V
    where user_name like 'amit_kumar%'
    and responsibility_name like'PA SupervisorS';
    -- --Fnd_global.apps_initialize(user_id,resp_id, resp_appl_id);
    -- Fnd_global.apps_initialize(v_user_id,v_responsibility_id,275);
    -- -------calling global parameters---
    pa_interface_utils_pub.set_global_info
    p_api_version_number =>v_api_version_number,
    p_responsibility_id =>v_responsibility_id,
    p_user_id =>v_user_id,
    p_msg_count =>v_msg_count,
    p_msg_data =>v_msg_data,
    p_return_status =>v_return_status
    dbms_output.put_line ('Set Global status ->' || v_return_status);
    ----Cursor for PRODUCT RELATED DATA-----------
    FOR REC IN cur_project_in_data LOOP
    -----PASSING VALUES TO THE COMPOSITE DATA TYPE(PROJECT_IN_REC_TYPE)-------
    ----retrieving product code-----
    select lookup_code into v_pm_product_code
    from pa_lookups
    where lookup_type = 'PM_PRODUCT_CODE'
    and meaning = 'Oracle Project Manufacturing';
    -----retrieving and validating created from project id----
    BEGIN
    select project_id
    into v_CREATED_FROM_PROJECT_ID
    from pa_projects_all
    where name=rec.created_from_project_name;
    EXCEPTION
    when others then
    O_Retcode := '1';
    O_Errbuf :='Incorrent CREATED_FROM_PROJECT_NAME';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET ERROR_FLAG ='1' ,last_updation_date='sysdate' where created_from_project_name = rec.CREATED_FROM_PROJECT_NAME;
    END;
    -----retrieving & validating carrying out organization id-----
    BEGIN
    select distinct(CARRYING_OUT_ORGANIZATION_ID)
    into v_CARRYING_OUT_ORGANIZATION_ID
    from pa_projects_prm_v
    where CARRYING_OUT_ORGANIZATION_NAME=rec.carrying_out_organization_name;
    EXCEPTION
    when others then
    O_Retcode := '1';
    O_Errbuf :='Incorrent Carrying Out Organization name';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET ERROR_FLAG ='1' ,last_updation_date='sysdate' where carrying_out_organization_name = rec.carrying_out_organization_name;
    END ;
    v_project_in.pm_project_reference := rec.segment1;
    v_project_in.project_name := rec.PROJECT_NAME;
    v_project_in.created_from_project_id := v_CREATED_FROM_PROJECT_ID;
    v_project_in.carrying_out_organization_id := v_CARRYING_OUT_ORGANIZATION_ID;
    v_project_in.project_status_code := rec.PROJECT_STATUS_CODE;
    v_project_in.description := rec.PROJECT_DESCRIPTION;
    v_project_in.start_date := rec.PROJECT_START_DATE;
    v_project_in.completion_date := rec.PROJECT_COMPLETION_DATE;
    v_project_in.distribution_rule := rec.DISTRIBUTION_RULE;
    v_project_in.project_relationship_code := rec.PROJECT_RELATIONSHIP_CODE;
    -------------------------Validation of incoming project data--------------------------------
    v_error_flag := 1;
    project relationship code validation
    BEGIN
    for prc in cprc
    loop
    if (rec.PROJECT_RELATIONSHIP_CODE=prc.PROJECT_RELATIONSHIP_CODE) or (rec.PROJECT_RELATIONSHIP_CODE is null)--can be overridden from template
    then
    v_error_flag :=0;
    else null;
    end if;
    end loop;
    END;
    project distribution rule validation
    BEGIN
    for dr in cdr
    loop
    if (rec.DISTRIBUTION_RULE=dr.DISTRIBUTION_RULE) or (rec.DISTRIBUTION_RULE is null) null since the value can be taken from template too
    then
    v_error_flag :=0;
    else null;
    end if;
    end loop;
    END;
    project status code validation
    BEGIN
    for sc in cpsc
    loop
    if (rec.PROJECT_STATUS_CODE=sc.PROJECT_STATUS_CODE) or (rec.PROJECT_STATUS_CODE is null) null since the value can be taken from template too
    then
    v_error_flag :=0;
    else null;
    end if;
    end loop;
    END;
    dbms_output.put_line ('Error at PROJECT_STATUS_CODE>' ||v_error_flag);
    validation logic for project start date
    BEGIN
    if TRUNC(rec.PROJECT_START_DATE) >= TRUNC(rec.PROJECT_COMPLETION_DATE)
    THEN
    v_error_flag := 1;
    O_Retcode := '1';
    O_Errbuf :='Project start date cannnot be greater than completion date';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    END IF;
    END;
    validation logic for project completion date
    BEGIN
    if (TRUNC(rec.PROJECT_COMPLETION_DATE)<=TRUNC(rec.PROJECT_START_DATE))
    then
    if ( rec.PROJECT_STATUS_CODE='CLOSED' and rec.PROJECT_COMPLETION_DATE>sysdate)
    THEN
    v_error_flag := 1;
    O_Retcode := '1';
    O_Errbuf :='completion date cannot be greater than sysdate for closed projects';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    END IF;
    v_error_flag := 1;
    O_Retcode := '1';
    O_Errbuf :='Project closed date cannot be less than start date';
    end if;
    END;
    --------Update staging table for the error records--------
    BEGIN
    if v_error_flag =1
    then
    O_Retcode := '1';
    O_Errbuf :='Incorrect project relationship code';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET ERROR_FLAG ='1' ,last_updation_date='sysdate' where PROJECT_RELATIONSHIP_CODE = rec.PROJECT_RELATIONSHIP_CODE;
    end if;
    END;
    -----------------------End of validation of incoming project data----------------------------------
    ---------------Project Task DATA-----------------
    v_a:=0;
    FOR tsk IN cur_task_in_data LOOP
    v_tasks_in_rec.pm_task_reference :=tsk.task_reference ;
    v_tasks_in_rec.task_name :=tsk.task_name;
    v_tasks_in_rec.pm_parent_task_reference :=tsk.parent_task_reference ;
    v_tasks_in_rec.task_start_date :=tsk.task_start_date ;
    v_tasks_in_rec.task_completion_date :=tsk.task_completion_date ;
    v_tasks_in(v_a) := v_tasks_in_rec;
    v_a:=v_a+1;
    end loop;
    ---------------end of task details------------------
    --INIT_CREATE_PROJECT
    pa_project_pub.init_project;
    ---------------------CREATE_PROJECT--------------------------
    pa_project_pub.create_project(
    p_api_version_number=> v_api_version_number,
    p_commit => v_commit,
    p_init_msg_list => v_init_msg_list,
    p_msg_count => v_msg_count,
    p_msg_data => v_msg_data,
    p_return_status => v_return_status,
    p_workflow_started => v_workflow_started,
    p_pm_product_code => v_pm_product_code,
    p_project_in => v_project_in,
    p_project_out => v_project_out,
    p_key_members => v_key_members,
    p_class_categories => v_class_categories,
    p_tasks_in => v_tasks_in,
    p_tasks_out => v_tasks_out);
    if v_return_status = 'S'
    then
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET INTERFACE_STATUS ='Success' where segment1 = v_project_out.pa_project_number; ---P->pending & S-> Success
    dbms_output.put_line('New Project Id: ' || v_project_out.pa_project_id);
    dbms_output.put_line('New Project Number: ' || v_project_out.pa_project_number);
    else
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET INTERFACE_STATUS ='Pending' where segment1 = v_project_out.pa_project_number;
    raise API_ERROR;
    end if;
    END LOOP;
    Commit;
    ------Handling Exception--------
    EXCEPTION
    WHEN api_error THEN
    dbms_output.put_line('An error occured during project creation');
    IF (v_msg_count > 0 ) THEN
    FOR i IN 1..v_msg_count LOOP
    apps.PA_INTERFACE_UTILS_PUB.get_messages(
    p_msg_count => v_msg_count,
    p_encoded => 'F',
    p_msg_index => i,
    p_msg_data => v_msg_data,
    p_data => v_data,
    p_msg_index_out => v_msg_index_out);
    dbms_output.put_line('Error message v_data ->'||v_data);
    dbms_output.put_line('Error message v_msg_data ->'||v_msg_data);
    dbms_output.put_line('Error message v_msg_index_out ->'||v_msg_index_out);
    dbms_output.put_line('Error message p_msg_index ->'||i);
    APPS.fnd_file.put_line(APPS.FND_FILE.LOG,v_data);
    END LOOP;
    END IF;
    WHEN OTHERS THEN
    dbms_output.put_line('An error occured during conversion, SQLCODE ->'|| SQLERRM);
    IF (v_msg_count >=1 ) THEN
    FOR i IN 1..v_msg_count LOOP
    PA_INTERFACE_UTILS_PUB.get_messages(
    p_msg_count => v_msg_count,
    p_msg_index => i,
    p_encoded => 'F',
    p_msg_data => v_msg_data,
    p_data => v_data,
    p_msg_index_out => v_msg_index_out);
    dbms_output.put_line('Error message ->'||v_data);
    APPS.fnd_file.put_line(APPS.FND_FILE.LOG,v_data);
    END LOOP;
    END IF;
    end; --end procedure
    END xxpa_proj_conv_pkg;
    * Please tell me how to assign project specific task with the newly created projects??? *
    Also please tell me how to assign multiple * Project_Relationship_Code * (ex: END CLIENT, GENERAL CONTRACTOR, PRIMARY) for a particular project during project creation?

    Are you not storing the project number in the staging table designed for storing the task data? You can use create_project API to create the project and tasks at the same time with one single call. You may want to try that option

  • How to  Place the Cursor at Specific Position with-in a Char Field ?

    Forms 4.5 ver.
    Sun Solaris / Citrix env.
    Char Field - Length 65434
    How Can I Place the Cursor at "Specific Location"
    with in a Field ?
    with GO_ITEM('field Name') I can place the Cursor at Specific Field.
    But, How Can I achieve to Place the Cursor at Specific
    Position within that Field ?
    I know, the starting position, length of string I want to hightlight with the Cursor.
    tried using :
    go_item('substr(field_name,position,length)') ;
    but didn't work !
    Is it possible ?
    Thanks, Peri

    The only cursor postion behavior that can be controled is the item property "Keep Position".
    The following is the text from the on-line help for item property "Keep Position"
    KEEP_POSITION Specifies whether the Keep Position property should be True or False. When Keep Position is True, the cursor returns to the same position it was in when it left the text item. When Keep Position is False, the cursor returns to the default position in the text item. Valid values are PROPERTY_TRUE and PROPERTY_FALSE.

  • Problem with default file access permission

    Hi,
    I am accessing a common area '/NFS_DATA' by both my java and oracle codes by the users 'javaUsr' and 'oraUsr' respectively.
    As per the requirement, the oracle code (oraUsr) needs to create some file in the specified location and then the java code (javaUsr) needs to update those files (created by oraUsr) with some new data.
    At present scenario the 'oraUsr' creates files with default access permission 644, which does not permit 'javaUsr' to update them.
    Constraints : I am not supposed to set umask at the .profile of 'oraUsr'.
         Execution of any shell script from oracle procedure is not permitted.
    Is it possible to specify file-system specific default file access permissions??
    Any idea to overcome this issue??

    Hi,
    I am accessing a common area '/NFS_DATA' by both my
    java and oracle codes by the users 'javaUsr'
    and 'oraUsr' respectively.
    As per the requirement, the oracle code
    (oraUsr) needs to create some file in the
    specified location and then the java code
    (javaUsr) needs to update those files (created
    by oraUsr) with some new data.
    At present scenario the 'oraUsr' creates files
    with default access permission 644, which does
    not permit 'javaUsr' to update them.
    Constraints : I am not supposed to set
    umask at the .profile of 'oraUsr'.
    Execution of any shell script from oracle
    oracle procedure is not permitted.
    Is it possible to specify file-system specific
    default file access permissions??
    Any idea to overcome this issue??You might like to try using File ACLs
    man setfacl(1)
    as oraUsr
    setfacl -s user:oraUsr:rw-,user:javaUsr:rwx,group::r--,other:---,mask:rwx file
    This way the oraUsr can not execute file
    but javausr can
    getfacl will show the ACL
    user::rw-
    user:javaUsr:rwx #effective:rwx
    group::rw- #effective:rw-
    mask:rwx
    other:---
    hope this helps a bit

  • F:selectItems with default boolean value

    Hi!
    I have problem with using tag f:selectItems. I wrote converter in order to connect my items from the ManyChecbox list directly with my objects instead of strings. Now i would like to connect boolean values with my backing bean, so that when the page is rendered the default choice is marked. How can i do this?
    <h:selectManyCheckbox value="#{myBean.selectedItems}"  converter="MyConverter" >
                               <f:selectItems value="#{myBean.allItems}"/>
    </h:selectManyCheckbox>

    well the component is linked to your backing bean property 'myBean.selectedItems', which is probably a list or something. Whatever value in this list is true will be checked, so make the 'default' one true when you initially create the list (for example, in a @PostConstruct annotated method).

  • Created zone with defaults won't boot completely (Solaris 10, Update 1)

    If I create a zone with defaults, i.e. allowing the zone to inherit the typical package dirs, the resulting zone does not boot completely. When I attach to the zone via zlogin, the zone looks to be in an administrative state. It never boots to a point where one would typically enter in the initial configuration info, e.g. timezone and root password.
    However if I create the zone after first removing the inherited dirs, the zone boots to a state where it subsequently can be confiured and fully booted.
    Looks as if the SMF facilities are not fully initialized when the zone is configured to inherit its packages. This could be a red herring as I'm a newbie who's moved over from Linux and starting to understand SMF specifically and Solaris in general.
    I did not have this problem with Solaris 10. I've just installed Solaris 10 Update 1; the problem seems specific to that installation. I reinstalled and the problem persists.

    I snipped the output because there were some errors, which on retrospect seems to have been a silly decision. I repeated the process and captured the missing output:
    # zoneadm -z foo install
    Preparing to install zone <foo>.
    Creating list of files to copy from the global zone.
    Copying <5913> files to the zone.
    Initializing zone product registry.
    Determining zone package initialization order.
    Preparing to initialize <942> packages on the zone.
    Initialized <942> packages on zone.
    Zone <foo> is initialized.
    Installation of <1> packages was skipped.
    Installation of these packages generated warnings: <SUNWxwfnt
    SUNWxwplt SUNWxwcft SUNWjxmft SUNWxwpls SUNWpmowu
    SUNWxilrl SUNWolrte SUNWi13rf SUNWi15rf SUNWi2rf SUNWi5rf
    SUNWi7rf SUNWi9rf SUNWtxfnt SUNWdoc SUNWi1of SUNWi4rf
    SUNWi8rf SUNW1251f SUNWarrf SUNWxwoft SUNWxwxst
    SUNWkoi8f SUNWasu SUNWxrpcrt SUNWasac SUNWasdb
    SUNWasut>
    The file </zone/foo/root/var/sadm/system/logs/install_log> contains a log of the zone installation.The packages are related to App development and X11. I don't see any that might be related to SMF.
    The logfile is too large to post at over 37K lines. However there seemed to be a pattern to the package failures. Hopefully these greps highlight the important messages:
    # grep "partially failed" /zone/foo/root/var/sadm/system/logs/install_log
    Installation of <SUNWxwfnt> on zone <foo> partially failed.
    Installation of <SUNWxwplt> on zone <foo> partially failed.
    Installation of <SUNWxwcft> on zone <foo> partially failed.
    Installation of <SUNWjxmft> on zone <foo> partially failed.
    Installation of <SUNWxwpls> on zone <foo> partially failed.
    Installation of <SUNWpmowu> on zone <foo> partially failed.
    Installation of <SUNWxilrl> on zone <foo> partially failed.
    Installation of <SUNWolrte> on zone <foo> partially failed.
    Installation of <SUNWi13rf> on zone <foo> partially failed.
    Installation of <SUNWi15rf> on zone <foo> partially failed.
    Installation of <SUNWi2rf> on zone <foo> partially failed.
    Installation of <SUNWi5rf> on zone <foo> partially failed.
    Installation of <SUNWi7rf> on zone <foo> partially failed.
    Installation of <SUNWi9rf> on zone <foo> partially failed.
    Installation of <SUNWtxfnt> on zone <foo> partially failed.
    Installation of <SUNWdoc> on zone <foo> partially failed.
    Installation of <SUNWi1of> on zone <foo> partially failed.
    Installation of <SUNWi4rf> on zone <foo> partially failed.
    Installation of <SUNWi8rf> on zone <foo> partially failed.
    Installation of <SUNW1251f> on zone <foo> partially failed.
    Installation of <SUNWarrf> on zone <foo> partially failed.
    Installation of <SUNWxwoft> on zone <foo> partially failed.
    Installation of <SUNWxwxst> on zone <foo> partially failed.
    Installation of <SUNWkoi8f> on zone <foo> partially failed.
    Installation of <SUNWasu> on zone <foo> partially failed.
    Installation of <SUNWxrpcrt> on zone <foo> partially failed.
    Installation of <SUNWasac> on zone <foo> partially failed.
    Installation of <SUNWasdb> on zone <foo> partially failed.
    Installation of <SUNWasut> on zone <foo> partially failed.and# grep "not installed" /zone/foo/root/var/sadm/system/logs/install_log
    *** package <SPROmrdwf> was not installed:
    *** package <SPROdwrfb> was not installed:
    *** package <SPROlang> was not installed:
    *** package <SPROlangx> was not installed:
    *** package <SPROdwrfx> was not installed:
    *** package <SPROsbld> was not installed:
    *** package <SPROsbldx> was not installed:
    *** package <SPROrdbkb> was not installed:
    *** package <SPROrdbkx> was not installed:
    *** package <SPROcc> was not installed:
    *** package <SPROutool> was not installed:
    *** package <SPROmrcc> was not installed:
    *** package <SPROmrcom> was not installed:
    *** package <SPROmr3m> was not installed:
    *** package <SPROmrtcv> was not installed:
    *** package <SPROm9xs> was not installed:
    *** package <SPROsunms> was not installed:
    *** package <SPROsmsx> was not installed:
    *** package <SPROsmpx> was not installed:
    *** package <SPROmrsbe> was not installed:
    *** package <SPROsbe> was not installed:
    *** package <SPROpnsn> was not installed:
    *** package <SPROfd> was not installed:
    *** package <SPROupdck> was not installed:
    *** package <SPROcpl> was not installed:
    *** package <SPROcplx> was not installed:
    *** package <SPROcmpl> was not installed:
    *** package <SPROtlbn7> was not installed:
    *** package <SPROtll7> was not installed:
    *** package <SPROtl7x> was not installed:
    *** package <SPROtll7x> was not installed:
    *** package <SPROscl> was not installed:
    *** package <SPROsclx> was not installed:
    *** package <SPROmrstd> was not installed:
    *** package <SPROmrcpl> was not installed:
    *** package <SPROstl4h> was not installed:
    *** package <SPROstl4a> was not installed:
    *** package <SPROstl4o> was not installed:
    *** package <SPROstl4x> was not installed:
    *** package <SPROstl4y> was not installed:
    *** package <SPROftool> was not installed:
    *** package <SPROl90> was not installed:
    *** package <SPROl90x> was not installed:
    *** package <SPROl90s> was not installed:
    *** package <SPROl90sx> was not installed:
    *** package <SPROf90> was not installed:
    *** package <SPROmrftn> was not installed:
    *** package <SPROgc> was not installed:
    *** package <SPROlgc> was not installed:
    *** package <SPROgcx> was not installed:
    *** package <SPROlgcx> was not installed:
    *** package <SPROdbx> was not installed:
    *** package <SPROdbxx> was not installed:
    *** package <SPROjdbx> was not installed:
    *** package <SPROjdbxx> was not installed:
    *** package <SPROmrdbx> was not installed:
    *** package <SPROdemo> was not installed:
    *** package <SPROdmake> was not installed:
    *** package <SPROmrdmk> was not installed:
    *** package <SPROtdemo> was not installed:
    *** package <SPROmride> was not installed:
    *** package <SPROdbxui> was not installed:
    *** package <SPROsvc> was not installed:
    *** package <SPROxdplg> was not installed:
    *** package <SPROidext> was not installed:
    *** package <SPROjnsnb> was not installed:
    *** package <SPROjnsrt> was not installed:
    *** package <SPROjnsup> was not installed:
    *** package <SPROctags> was not installed:
    *** package <SUNWnbide> was not installed:
    *** package <SUNWnbcpp> was not installed:
    *** package <SUJAnbcpp> was not installed:
    *** package <SUZHnbcpp> was not installed:
    *** package <SUNWexted> was not installed:
    *** package <SUJAexted> was not installed:
    *** package <SUZHexted> was not installed:
    *** package <SPROnbreg> was not installed:
    *** package <SPROfdxd> was not installed:
    *** package <SPROmrxd> was not installed:
    *** package <SPROgvim> was not installed:
    *** package <SPROxmbin> was not installed:
    *** package <SPROxmshr> was not installed:
    *** package <SPROxmsrc> was not installed:
    *** package <SPROmrxm> was not installed:
    *** package <SPROprfan> was not installed:
    *** package <SPROmrpan> was not installed:
    *** package <SPROprfax> was not installed:
    *** package <SPROprflb> was not installed:
    *** package <SPROprflx> was not installed:
    *** package <SPROprfgn> was not installed:
    *** package <SPROmrpgn> was not installed:
    *** package <SPROhtbas> was not installed:
    *** package <SPROhttl7> was not installed:
    *** package <SPROhtstd> was not installed:
    *** package <SPROhtxd> was not installed:
    *** package <SPROdwrfs> was not installed:
    *** package <SPROrdbks> was not installed:
    *** package <SPROctsrc> was not installed:
    *** package <SPROplg> was not installed:
    *** package <SPROpl> was not installed:
    *** package <SPROplx> was not installed:
    *** package <SPROpls> was not installed:
    *** package <SPROplsx> was not installed:
    *** package <SPROmrpl> was not installed:These messages seem to be inline with the general output captured from the zone install itself.
    > What does "svcadm list -vc" give you when you started the zone ?
    I took that as a typo, instead using "zoneadm?"
    # zoneadm list -vc
      ID NAME             STATUS         PATH
       0 global           running        /
       7 foo              running        /zone/fooThe zone is not on its own slice, however "/zone" is mounted as a loopback from /export/zone. I don't think that's a problem since the zone install seems to work if I don't inherit packages. Unless perhaps its a nesting level of lofs's.
    FWIW,
    # mount |grep zone
    /zone on /export/zone read/write/setuid/devices/dev=1540000 on Fri Feb 24 16:10:55 2006
    /zone/foo/root/dev on /zone/foo/dev read/write/setuid/devices/zonedevfs/dev=4640007 on Tue Feb 28 13:13:03 2006
    /zone/foo/root/lib on /lib read only/setuid/nodevices/nosub/dev=dc0440 on Tue Feb 28 13:13:03 2006
    /zone/foo/root/platform on /platform read only/setuid/nodevices/nosub/dev=dc0440 on Tue Feb 28 13:13:03 2006
    /zone/foo/root/sbin on /sbin read only/setuid/nodevices/nosub/dev=dc0440 on Tue Feb 28 13:13:03 2006
    /zone/foo/root/usr on /usr read only/setuid/nodevices/nosub/dev=dc0440 on Tue Feb 28 13:13:03 2006
    /zone/foo/root/proc on proc read/write/setuid/nodevices/zone=foo/dev=4400007 on Tue Feb 28 13:13:06 2006
    /zone/foo/root/system/contract on ctfs read/write/setuid/nodevices/zone=foo/dev=43c0008 on Tue Feb 28 13:13:06 2006
    /zone/foo/root/etc/svc/volatile on swap read/write/setuid/nodevices/xattr/zone=foo/dev=448000e on Tue Feb 28 13:13:06 2006
    /zone/foo/root/etc/mnttab on mnttab read/write/setuid/nodevices/zone=foo/dev=4440008 on Tue Feb 28 13:13:06 2006

  • 3 Specific Issues With 10.7 Lion (Safari, iCal, Mail)

    I have 3 specific issues with Lion that I seem unable to fix. Note that these issues did not exist before my upgrade to Lion.
    1. Safari 5.1.5 & "White Screen":
    If I open more than 3 or 4 Safari windows at a time, suddenly the winsows switch to "white screen", and try and reload (even windows that are sitting on the dock). About 50% of the time, they don't reload and I am stuck with white screens. So I have to quit Safari and then re-open.
    Safari then tries to reload the pages all at once (which slows down my MacBook). I have de-slected "Restore Windows" in System Prefs/General, but Safari tries to do so anyway.
    2. Mail 5.2 & having to delete e-mails twice:
    When I delete an e-mail sent to my .Me address, it deletes and then comes back again (when I switch to a different mail box). Then I have to delete it a second time. This onl;y happens with the .Me e-mails. I have tried deleteing that account and then setting it up again, but the same thing happends evey time.
    3. iCal 5.0.2:
    When I launch iCal either manually or automatically (on start-up), it takes a good 60 seconds to actually open (lots of bouncing around on the dock & that's about it), even though I have "Restore Windows" de-selected in System Prefs/General.
    Any help in solving these issues would be greatly appreciated, especially as they effecty the 3 applications I use the most and therefore effect my MacBook's performance greatly.

    Solved!
    A Workaround:
    Get the Webkit Nightly Build , download and add to your App Folder, make it the Default browser, follow the instructions to show your homepage, after this you almost done, than download
    RCDefaultApp, open System Preferences launch RCDefaultApp, go under Apps, search for Webkit and mark all all associations, Safari is no more dfeault for something, after this, go to Extensions Pane and search for the safariextz Extension, now set it to Webkit as well, now you are most up to date and Webkit updates more often than Safari ever did ^^
    Enjoy

  • Table editor problem with default value for column

    Hi there,
    I'm trying to use SQL Developer 1.2.1 on Ubuntu 7.10 (though I don't think the OS is relevant) and I'm running into a snag when trying to update table structures. If you go to edit the table to say modify a column name, and that column has a default value set, SQL Developer is encapsulating the value with brackets and quotes. When trying to save the changes, it complains about the default value being 4 chars too many for the column width. An example of this would be a currency code column of varchar2 (3) set with EUR as the default. SQL Developer changes the value to ('EUR') hence the error.
    Is there anyway to prevent this from happening?
    Cheers,
    Chris

    Could you please be more specific? In 1.2.1.32.40 I
    added the column COL1 VARCHAR2(3) with default value
    'EUR'. The data display field refreshed to show the
    default value, so I edited it in a couple of entries
    and comitted the change without problem. Then I
    renamed the column from the "Edit table" popup menu.
    Finally, I renamed the column from the "Rename
    column" popup menu, no problem either.Ah, you are correct. That does work. What I was trying is select tablename in the object browser, then right click on it and select "Edit" from the contextual menu. You are then presented with edit table dialog box. If you then select a column in that box you will see a column properties box. In that section you can change the name, default value, datatype et cetera. Note that your default column value which should just be EUR (or 'EUR' to denote that it's a string) is now ('EUR'). Once you try changing the name to of the column to something else and then click OK, you should then get an error complaining of "Invalid varchar2 default value" with a more specific message of "Default values size 7 is greater than the allowed 3"
    You have provided a work around, and thanks for that, but it would be nice to edit everything in the Edit table dialog box if you're modifying more than one column name. I'm tasked with cleaning up a bit of a messy database, and there are a good deal of columns to be renamed.
    Cheers,
    Chris

  • How can I assign a ringtone to a specific contact with the iphone4 ios7

    How can I assign a ringtone to a specific contact with the iphone4 ios7?

    From the home screen, tap on Contacts, tap on the contact you'd like to edit.
    In the top right, tap the , scroll down, for Ringtone, tap on Default, select the desired ringtone.

  • Error: Resource cannnot rendered with XML Resource Renderer?

    Hi, KMC fellows,
    When I tried to display/edit news with NewsExplorer, it throw me this error from times to times:
    "Resource cannnot rendered with XML Resource Renderer"
    But I am using the default NewsExplorer without making any custom change, how do I solve this problem?
    Thanks for any constructive inputs.
    Kent

    Hi Kent,
    > But when the server restart, it become fine for while,
    > then it will repeats from times to times.
    If you can reproduce it (I know, really "reproducing" is probably not possible) - so if this behaviour occurs while you know / can see from monitoring that no KMC restart has happened - please open an OSS message!
    Best regards
    Detlev

  • How do I use cell number associated with iPad 2 3G

    How do I use cell number associated with iPad 2 3G

    For Messages you can can use your email address, the iPad doesn't have a phone number that you can use.

  • Associate specific account with specific address

    Is there a way to associate specific recipients with specific email accounts? So, every time I send a colleague from work an email, my work-account is automatically associated with the recipient's email?

    I wish someone had answered this question but I imagine that what bartpop was inquiring about is not an Apple Mail option. Would love it if it were.You ever find out differently bartpop?

  • HT4890 Can I share a specific event with friends on iCloud via Photostream?

    Can I share a specific event with friends on iCloud via Photostream?

    No, not until iOS 6 comes out.

Maybe you are looking for

  • How do I uninstall Firefox 4.0 Beta 12 and go back to the older vers

    I made a mistake by downloading Firefox 4.0 Beta 12 and I can't work with this version. How do I go back to the older version. I need help quickly as I am unable to print my work. This is bad.

  • Late 2008 Macbook Pro: Which power adapter?

    Hello all. I have a Late 2008 Macbook Pro 15", MacPro5,1. A few months back my dog ate the power adapter (unplugged, thankfully.) I thought I did the proper amount of research to order the correct adapter from a third party on Amazon, because I'm pre

  • Currency issue in bex

    hi all, i have a field int eh cube with two currencies --USD & EUR. when i execute a query on the cube  its showing only one currency of teh field ..........the other currency is displayed as  ' * '.can anyone give the solution how to make available

  • Place word table as image

    Hi, back in the day if you created a text box and pasted a table from word, it would format to text, if you did not have a text box it would paste as an image. I really just want to paste a word table straight into indesign, is this still doable?

  • How do I turn off the now playing window?

    latest OSX 12.2.1.27 itunes i REALLY want to make the "now playing" tile that pops up when you are in other windows go away for good. Can anyone please suggest a fix? thank you