Edit my handle

Hi!!!
Why i can't edit my handle name?
Every time when i put my new handle i get error message "handle is busy....".
I've tried to insert stupid names but i can't succeed.
what i'm doing wrong?

Hi together,
just wanted to inform you that I just successfully changed my handle (took about 1 hour to apply but is now there).
Problem seems to be fixed.
Best regards,
Robert

Similar Messages

  • Editable ALV - handling Enter key  when pressing enter on keyboard

    Hi folks.
    Now I have searched - and found a lot of threads - in this forum about my little problem.
    I'm using the <b>Function Module: REUSE_ALV_GRID_DISPLAY - NOT THE OO-version</b>!!!!!
    I have a editable list as result of finding some data. My problem is.
    When I change the value in one of the cells, and press the Enter key (not a click with the mouse on the Green button with the checkmark!) nothing happens!
    I have
        i_callback_pf_status_set  = 'SET_PF_STATUS'
        i_callback_user_command   = 'USER_COMMAND'
    And when I put a breakpoint in the USER_COMMAND form nothing happens - <b>ONLY IF I CLIKS WITH MY MOUSE ON THE Green button with the checkmark</b>!!
    Hope U have some idea!
    Best regards
    Carsten :o)

    Hi,
    Following the sample program for EDITABLE BLOCK ALV report.
    REPORT  YMS_EDITBLOCKALV.
    TABLES : rmmg1,MCHB, mkpf.
    DATA: BEGIN OF t_mseg OCCURS 0,
            zeile LIKE mseg-zeile,
            menge LIKE mseg-menge,
            meins LIKE mseg-meins,
            matnr LIKE mseg-matnr,
            werks LIKE mseg-werks,
            charg LIKE mseg-charg,
            bwart LIKE mseg-bwart,
    END OF t_mseg.
    DATA:BEGIN OF t_mchb OCCURS 0.
    INCLUDE STRUCTURE mchb.
    data flag type c.
    matnr LIKE mchb-matnr,
    charg LIKE mchb-charg,
    werks LIKE mchb-werks,
    clabs LIKE mchb-clabs,
    DATA END OF t_mchb.
    TYPE-POOLS slis.
    data: progname like sy-repid,
    fieldcattab TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    data tabindex type i.
    data wa_matnr LIKE mchb-matnr.
    progname = sy-repid.
    SELECTION-SCREEN BEGIN OF BLOCK b_b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS s_docno FOR mkpf-mblnr OBLIGATORY.
    PARAMETERS p_docyr LIKE mkpf-mjahr OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK b_b1.
    START-OF-SELECTION.
    SELECT zeile
    menge
    meins
    matnr
    werks
    charg
    bwart
    FROM mseg
    INTO TABLE t_mseg
    WHERE mblnr IN s_docno AND mjahr = p_docyr.
    CLEAR fieldcattab.
    fieldcattab-col_pos = 1.
    fieldcattab-fieldname = 'ZEILE'.
    fieldcattab-tabname = 'T_MSEG'.
    fieldcattab-fix_column = 'X'.
    fieldcattab-seltext_l = 'Item'.
    APPEND fieldcattab.
    CLEAR fieldcattab.
    fieldcattab-col_pos = 2.
    fieldcattab-fieldname = 'MENGE'.
    fieldcattab-tabname = 'T_MSEG'.
    fieldcattab-seltext_l = 'Quantity'.
    APPEND fieldcattab.
    CLEAR fieldcattab.
    fieldcattab-col_pos = 3.
    fieldcattab-fieldname = 'MEINS'.
    fieldcattab-tabname = 'T_MSEG'.
    fieldcattab-seltext_l = 'Unit'.
    APPEND fieldcattab.
    CLEAR fieldcattab.
    fieldcattab-col_pos = 4.
    fieldcattab-fieldname = 'MATNR'.
    fieldcattab-tabname = 'T_MSEG'.
    fieldcattab-seltext_l = 'Material'.
    APPEND fieldcattab.
    CLEAR fieldcattab.
    fieldcattab-col_pos = 5.
    fieldcattab-fieldname = 'WERKS'.
    fieldcattab-tabname = 'T_MSEG'.
    fieldcattab-seltext_l = 'Plant'.
    APPEND fieldcattab.
    CLEAR fieldcattab.
    fieldcattab-col_pos = 6.
    fieldcattab-fieldname = 'CHARG'.
    fieldcattab-tabname = 'T_MSEG'.
    fieldcattab-seltext_l = 'Batch No'.
    APPEND fieldcattab.
    CLEAR fieldcattab.
    fieldcattab-col_pos = 7.
    fieldcattab-fieldname = 'BWART'.
    fieldcattab-tabname = 'T_MSEG'.
    fieldcattab-seltext_l = 'Inventory'.
    fieldcattab-hotspot = 'X'.
    APPEND fieldcattab.
    end-of-selection.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    I_INTERFACE_CHECK = ' '
    I_BYPASSING_BUFFER =
    I_BUFFER_ACTIVE = ' '
    I_CALLBACK_PROGRAM = PROGNAME
    I_CALLBACK_PF_STATUS_SET = ' '
    I_CALLBACK_USER_COMMAND = 'USERCOMMAND1'
    I_CALLBACK_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_END_OF_LIST = ' '
    I_STRUCTURE_NAME =
    I_BACKGROUND_ID = ' '
    I_GRID_TITLE =
    I_GRID_SETTINGS =
    IS_LAYOUT =
    IT_FIELDCAT = fieldcattab[]
    IT_EXCLUDING =
    IT_SPECIAL_GROUPS =
    IT_SORT =
    IT_FILTER =
    IS_SEL_HIDE =
    I_DEFAULT = 'X'
    I_SAVE = ' '
    IS_VARIANT =
    IT_EVENTS =
    IT_EVENT_EXIT =
    IS_PRINT =
    IS_REPREP_ID =
    I_SCREEN_START_COLUMN = 0
    I_SCREEN_START_LINE = 0
    I_SCREEN_END_COLUMN = 0
    I_SCREEN_END_LINE = 0
    IT_ALV_GRAPHICS =
    IT_ADD_FIELDCAT = fieldcattab
    IT_HYPERLINK =
    IMPORTING
    E_EXIT_CAUSED_BY_CALLER =
    ES_EXIT_CAUSED_BY_USER =
    TABLES
    t_outtab = t_mseg
    EXCEPTIONS
    PROGRAM_ERROR = 1
    OTHERS = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    FORM usercommand1 USING r_ucomm LIKE sy-ucomm rs_selfield TYPE
    slis_selfield.
    CASE r_ucomm.
    WHEN '&IC1'.
    tabindex = rs_selfield-tabindex.
    read table t_mseg INDEX tabindex.
    select * from mchb into table t_mchb where matnr = t_mseg-matnr.
    clear fieldcattab.
    CLEAR fieldcattab[].
    fieldcattab-col_pos = 1.
    fieldcattab-fieldname = 'FLAG'.
    fieldcattab-tabname = 'T_MCHB'.
    fieldcattab-fix_column = 'X'.
    fieldcattab-seltext_l = 'Check Box'.
    fieldcattab-input = 'X'.
    fieldcattab-edit = 'X'.
    fieldcattab-checkbox = 'X'.
    APPEND fieldcattab.
    clear fieldcattab.
    fieldcattab-col_pos = 2.
    fieldcattab-fieldname = 'MATNR'.
    fieldcattab-tabname = 'T_MCHB'.
    fieldcattab-fix_column = 'X'.
    fieldcattab-seltext_l = 'Material'.
    fieldcattab-emphasize = 'C1'.
    fieldcattab-input = 'X'.
    fieldcattab-edit = 'X'.
    fieldcattab-checkbox = 'X'.
    APPEND fieldcattab.
    clear fieldcattab.
    fieldcattab-col_pos = 3.
    fieldcattab-fieldname = 'CHARG'.
    fieldcattab-tabname = 'T_MCHB'.
    fieldcattab-seltext_l = 'Batch No'.
    fieldcattab-emphasize = 'C2'.
    fieldcattab-input = 'X'.
    fieldcattab-edit = 'X'.
    APPEND fieldcattab.
    clear fieldcattab.
    fieldcattab-col_pos = 4.
    fieldcattab-fieldname = 'WERKS'.
    fieldcattab-tabname = 'T_MCHB'.
    fieldcattab-seltext_l = 'Plant'.
    fieldcattab-emphasize = 'C30'.
    fieldcattab-input = 'X'.
    fieldcattab-edit = 'X'.
    APPEND fieldcattab.
    clear fieldcattab.
    fieldcattab-col_pos = 5.
    fieldcattab-fieldname = 'CLABS'.
    fieldcattab-tabname = 'T_MCHB'.
    fieldcattab-seltext_l = 'Stock'.
    fieldcattab-emphasize = 'C601'.
    fieldcattab-input = 'X'.
    fieldcattab-edit = 'X'.
    APPEND fieldcattab.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_INTERFACE_CHECK = ' '
    I_BYPASSING_BUFFER =
    I_BUFFER_ACTIVE = ' '
    I_CALLBACK_PROGRAM = PROGNAME
    I_CALLBACK_PF_STATUS_SET = ' '
    I_CALLBACK_USER_COMMAND = 'USERCOMMAND2'
    I_CALLBACK_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_END_OF_LIST = ' '
    I_STRUCTURE_NAME =
    I_BACKGROUND_ID = ' '
    I_GRID_TITLE =
    I_GRID_SETTINGS =
    IS_LAYOUT =
    IT_FIELDCAT = FIELDCATTAB[]
    IT_EXCLUDING =
    IT_SPECIAL_GROUPS =
    IT_SORT =
    IT_FILTER =
    IS_SEL_HIDE =
    I_DEFAULT = 'X'
    I_SAVE = ' '
    IS_VARIANT =
    IT_EVENTS =
    IT_EVENT_EXIT =
    IS_PRINT =
    IS_REPREP_ID =
    I_SCREEN_START_COLUMN = 0
    I_SCREEN_START_LINE = 0
    I_SCREEN_END_COLUMN = 0
    I_SCREEN_END_LINE = 0
    IT_ALV_GRAPHICS =
    IT_ADD_FIELDCAT =
    IT_HYPERLINK =
    IMPORTING
    E_EXIT_CAUSED_BY_CALLER =
    ES_EXIT_CAUSED_BY_USER =
    TABLES
    t_outtab = t_mchb
    EXCEPTIONS
    PROGRAM_ERROR = 1
    OTHERS = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endcase.
    endform.
    FORM usercommand2 USING r_ucomm LIKE sy-ucomm rs_selfield TYPE
    slis_selfield.
    CASE r_ucomm.
    WHEN '&IC1'.
    IF rs_selfield-sel_tab_field = 'T_MCHB-MATNR'.
    CALL FUNCTION 'ZALV2'
    EXPORTING
    CTU = 'X'
    MODE = 'E'
    UPDATE = 'A'
    GROUP =
    USER =
    KEEP =
    HOLDDATE =
    NODATA = '/'
    MATNR_001 = '200-200'
    KZSEL_01_002 = 'X'
    IMPORTING
    SUBRC =
    TABLES
    MESSTAB =
    SET PARAMETER ID 'RID' FIELD RMMG1-MATNR.
    CALL TRANSACTION 'MM03' and skip first screen.
    ENDIF.
    ENDCASE.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = progname
    i_callback_user_command = 'USERCOMMAND3'
    it_fieldcat = fieldcattab[]
    TABLES
    t_outtab = t_mchb
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    endcase.
    ENDFORM.
    Thanks,
    Sankar M

  • Editing for handles to add a transition

    Do two clips in Premiere need to have enough handles in order to add transitions? If there are no handles is there a way to apply a transition between two clips?

    This explains in detail how transitions work.
    http://help.adobe.com/en_US/premierepro/cs/using/WSE2A9B838-1422-4d8a-9A03-CFDF4332533B.ht ml
    Yes clips do need handles.
    If there are no handles you can still add a transiton but Premiere will use freeze frames.

  • Unable to Edit the View in Custom Component

    Hi Experts,
    Please help me to resolve this issue !
    I am unable to lock the BOL Entity in my custom component using BTAdminH. I have written the below code in the Edit event Handler for Edit Button. The lr_entity->lock( ) condition statement is getting false and it is skipping the "set_view_editable( me )." code statement. Why??
    This is code excerpt that I have taken from edit button of the BP_HEAD/AccountViewSet and altered to my component/View
    DATA: lr_entity     TYPE REF TO cl_crm_bol_entity,
            lr_controller TYPE REF TO cl_ZVKH8_bspwdcomponent_impl.
      TRY.
          lr_controller ?= me->comp_controller.
          lr_entity ?= lr_controller->typed_context->btadminh->collection_wrapper->get_current( ).
    IF lr_entity IS BOUND.
      IF lr_entity->IS_LOCKED EQ abap_false.
        IF le_entity->IS_CHANGEABLE EQ abap_true.
           IF lr_entity->lock( ) EQ abap_true.
            me->view_group_context->set_view_editable( me ).
           ENDIF.
        ENDIF.
      ENDIF.
    ENDIF.
    and when I directly executed the below code in the Edit event Handler for Edit Button I am receiving the dereferencing NULL value exception. Why in my custom component in many places this happening??
      me->view_group_context->set_view_editable( me ).
    Exception Details
    CX_SY_REF_IS_INITIAL - Dereferencing of the NULL reference
    Method: ZL_ZVKH8_DETAILSEF_IMPL=>EH_ONBACK
    Thanks,
    Bujji

    Hi Summit & NishaNC,
    Thanks for your responses !
    As suggested, I have debugged the code for ->lock( ) method and there are exceptions raised from some methods.
    Method GET_LOCK () -> Method GET_ROOT () ->Method GET_PARENT ()
    At GET_ROOT( ) method i have received an exception
    "Root entity BTAdminH could not be determined" and one more "Entity BTAdminH could not be locked"
    Later when I have checked in MODEL Browser, I found that the BOL object "BTAdminH" for my view is an Access object and not the Root Object.
    Hence, I have a question? Does the locking can be done only for ROOT Objects?
    If this is TRUE then I think this is the major problem with my custom component where even the cross component navigation is also not happening and in many places I am receiving "Dereferencing NULL Value" information.
    Also I have gone through some of the Threads and one information that I found from Sumit Mittal
    1. An access object is an independent entity, has primary keys of its own.
    2. A root object is a special access object that is at the top of the hierarchy based on business rules.
    3. A dependent object's primary keys are supplied by access objects and it's lifetime is bound to them. If the parent object is destroyed, the dependent object is also destroyed.
    4. Search objects are query objects useful for querying root objects
    5. Search result objects - Search objects return the results in the form of a result object together with a relation pointing to the root object.
    6. View objects - ?
    7. Dynamic search objects - Used in advanced search, supports ranges and operators
    Could you please specify in which scenarios we have to go for Access Objects and Root Objects
    Thanks,
    Bujji

  • Forum "Handle" problem

    Hello,
    I have a problem with my forum handle. It was Joel_C this morning but appears to have reverted to a numeric equivalent. When you attempt to edit your handle in the profile editor, the handle appears as it ought to.
    Is anyone else having this trouble?

    It's a known problem that happens occasionally.
    The loss is not permanent, your handle will return once the necessary server/service is back to normal.
    hsawwan is being 494875.BluShadow is being 452534. is about that problem, for example.

  • Can the Organizer in version 9 handle RAW files?

    Before I teach the Organizer to new people, I am wondering what frustrations people will encounter if they have high megapixel cameras and are using RAW?
    Thanks for your help.
    Mary Lou

    Before I teach the Organizer to new people, I am wondering what frustrations people will encounter if they have high megapixel cameras and are using RAW?
    The frustration in using RAW by new people (if indeed your students do get frustrated) will not come from the fact that they are using high megapixel cameras, but because the editing of RAW files is very different than the editing of JPG files. Are you going to teach editing and handling of RAWs to people, or just teach Organizer?
    The other frustration comes because PSE9 only works with RAW photos from cameras that existed when PSE9 was released. It will not work with RAWs from newer cameras unless you update the ACR software. This should happen automatically in PSE9, but sometimes it doesn't. And for the newest cameras on the market, there may not be an update of ACR that will allow PSE to work with the RAWs from that newly released camera.

  • Export SD from iMovie for editing in CS3

    I'm surprised I haven't found more about this here, on videohelp, and on the apple forums.
    SD DV captured in iMovie and edited. The person finishing the DVD is on PC. (I'm neither of the two people.)
    My advice to the client is to finish the project on the system it is started on. But I would like to have a better idea of the options.
    What is the recommendation as to format from iMovie? If quicktime what settings?
    I don't know yet, but let's assume iMovie 06. (iMovie 08 apparently kills SD.)

    Stanley,
    Just a guess, but unless the Mac is also running Windows, I would suspect that they will not have any .AVI output options - only flavors of .MOV.
    I've had pretty good luck Importing .MOV files into PP. Do not know all of the variations, so some .MOV's might work fine, and others not so well.
    If the PC has QT-Pro installed, about any real .MOV (not some tricked up special CODEC version), should be able to be converted (Export) to DV-AVI with MS DV CODEC.
    Sorry that I cannot give you hard-fast rules, as I do not have a Mac, and have not directly Imported anything that I know came from iMovie. Maybe I have, but just did not know it.
    Still, my advice would be to finish in iMovie on Mac. However, some clients want to do things the hard way. If they are headed in that direction, I'd suggest not doing too much trimming in iMovie and adding no Transitions. This would allow for tighter editing and Handles, when on the PC. Just Exporting the raw Capture footage would probably be best, then use QT-Pro to convert to DV-AVI Type II for editing on the PC.
    Let us know how it goes and any pitfalls that occur. I, for one, can always learn about X-platform exchange of Assets and what works best.
    Good luck,
    Hunt

  • Linux clustering for 8i standard edition

    Does Linux do clustering or fail-over for Oracle 8i STANDARD edition ?
    I know for 8i ENTERPRISE edition, Oracle handles the clustering with the Parallel option. As well, for 8i Standard Edition, Oracle offers 'fail-safe' for the NT platform but not for LINUX.
    If anyone knows, please advise. TIA.

    There is no Paraller Server for Linux now.
    But there is possibilities for HA
    cluster :)
    For instance, http://oss.sgi.com/failsafe
    (or be somethig like this), www.missioncriticallinux.com
    Then, there is several non open source
    software. www.steeleye.com,
    if I rememember.
    As I know Oracle plan Parallel server for Linux.

  • Event Structure Edit Window

    I am using LabVIEW 2013. When I place an event structure on the BD and right clikc and 'Add Event Case' or 'Edit Events Handled by This Case' the Edit Events window does not pop up.  An animation happens like it has opened up but the window is no where to be seen.  If I try to click anywhere else in labview my computer just beeps at me like the window is open and I'm clicking outside of it. If I press Esc I can get back to my BD and continue as normal. Unfortunately I can't edit my events.  Any ideas? Is there some option I may have changed that is making this happen? 
    Thank you for any help
    Jesse Zamora
    P.S. This is happening in a VI I started this morning and it also happens in a new VI.
    Solved!
    Go to Solution.

    Close LabVIEW
    Look in LabVIEW.ini for "EditEventsDlgSize="
    delete the line.
    you should have much joy.  (this appears to be a known issue)
    Jeff

  • System handler annoucement

    Hi,
    I wonder how to make an user to able access the system handler to record an annoucement by phone ?
    We are using unity connection 7. Thanks

    Hi Alan,
    You can set up the user(s) to use the Greetings Administrator;
    Setting Up the Cisco Unity Greetings Administrator
    To set up the Cisco Unity Greetings Administrator, do the following tasks:
    1. Set up a phone number so that you or another user can call the Cisco Unity Greetings Administrator. For information on how to set up the phone number, see the documentation for your phone system.
    Alternatively, you can set a one-key dialing option from the Opening Greeting that takes callers to the Cisco Unity Greetings Administrator. Do the "To Set Up a One-Key Dialing Option From the Opening Greeting for Accessing the Cisco Unity Greetings Administrator" procedure. (If you choose this option, skip Task 2.)
    2. If applicable, add a routing rule to forward calls to the Cisco Unity Greetings Administrator from the phone number that you set up in Task 1. Do the "To Add a Routing Rule to Forward Calls to the Cisco Unity Greetings Administrator" procedure.
    3. Assign a unique extension to each call handler that you want to access by using the Cisco Unity Greetings Administrator. Do the "To Assign a Unique Extension to a Call Handler" procedure.
    4. As needed, tell call handler owners how to use the Cisco Unity Greetings Administrator. For an overview and procedure, see the "Using the Cisco Unity Greetings Administrator to Record or Rerecord Call Handler Greetings" section.
    To Set Up a One-Key Dialing Option From the Opening Greeting for Accessing the Cisco Unity Greetings Administrator
    Step 1 In Cisco Unity Connection Administration, expand Call Management, then click System Call Handlers.
    Step 2 On the Search Call Handler page, in the Search Results table, click the Opening Greeting call handler.
    Step 3 On the Edit Call Handler Basics page, on the Edit menu, click Caller Input.
    Step 4 On the Caller Input page, in the Caller Input Keys table, click the applicable phone keypad key.
    Step 5 On the Edit Caller Input page for the key that you selected, check the Ignore Additional Input (Locked) check box, if applicable.
    Make sure that you did not choose a phone keypad key in Step 4 that represents the first digit of the extensions on your phone system. If you lock that key, callers are not able to dial a user extension from the opening greeting.
    Step 6 Click Conversation, and then click Greetings Administrator in the list.
    Step 7 Click Save.
    To Add a Routing Rule to Forward Calls to the Cisco Unity Greetings Administrator
    Step 1 In Cisco Unity Connection Administration, expand Call Management > Call Routing, then click Direct Routing Rules.
    Step 2 On the Direct Routing Rules page, click Add New.
    Step 3 On the New Direct Routing Rule page, enter a display name for the new routing rule, and click Save.
    Step 4 On the Edit Direct Routing Rule page, confirm that the Status is set to Active.
    Step 5 In the Routing Rule Conditions table, click Add New.
    Step 6 On the New Direct Routing Rule Condition page, click Dialed Number, set a parameter in the list, and enter the phone number that has been set up for access to the Cisco Unity Greetings Administrator.
    Step 7 Click Save.
    Step 8 On the Edit menu, click Edit Direct Routing Rule.
    Step 9 On the Edit Direct Routing Rule page, in the Send Call To field, click Conversation, then click Greetings Administrator.
    Step 10 Click Save.
    Step 11 On the Direct Routing Rule menu, click Direct Routing Rules. Verify that the new routing rule is in an appropriate position with the other routing rules in the table. If you want to change the rule order, continue with Step 12.
    Step 12 Click Change Order.
    Step 13 On the Edit Direct Routing Rule Order page, click the name of the rule that you want to reorder, and click the Up or Down arrow until the rules appear in the correct order.
    Step 14 Click Save.
    To Assign a Unique Extension to a Call Handler
    Step 1 In Cisco Unity Connection Administration, expand Call Management, then click System Call Handlers.
    Step 2 On the Search Call Handlers page, in the System Call Handlers table, click the display name of the call handler that you want to access with the Cisco Unity Greetings Administrator.
    Step 3 On the Edit Call Handler Basics page, in the Extension field, enter a unique extension for the call handler.
    Step 4 Click Save.
    http://www.cisco.com/en/US/docs/voice_ip_comm/connection/7x/administration/guide/7xcucsag150.html#wp1049924
    I have attached an example of what we send might send to a user who is responsible for changing Call Handler Greetings
    Cheers!
    Rob
    Please remember to tag your threads and help support "Teachers without Borders"
    https://supportforums.cisco.com/community/netpro/idea-center/communityhelpingcommunity

  • Importing Edited and master file as ONE - is this possible?

    Up to now, i was using photoshop to edit and handle my photos. So I kept:
    - original file (jpg)
    - PSD file
    - edited file (jpg)
    Is there a way to merge the edited jpg with the original file to match the filing system in aperture?

    I'm afraid to Aperture these three files will always be just that, three separate files.
    After you import them you could stack them together. This will at least give some sense of association to the three files and keep them together if you move them within Aperture.

  • VL02N creation of handling units

    Hello,
    Is it posible to create handling units manually in the delivery? If yes, what is the procedure?
    Also, if handling units were done by clicking automatic packing, is it possible to edit the handling unit created? If yes, how?
    Thanks

    Hi
    I just want to add my input...hope this may fullfill ur query...
    steps:
    1. crate Material Packaging type
    2. Create Material Packaging group
    3. AllowPackaging type into  packaging group
    4. assign Material Packaging group into MM02
    then go to VL02N there you have handling unit icon..there u can play as much as u can depand on wt, vol.. of Materail
    correct me if went wrong..
    Thanks
    Mahesh

  • HELP using AMD 1800+ (Thoroughbred) in K7T Turbo Ltd Ed

    Sigh. I correctly remembered that the XP1800 was the fastest that the K7T Turbo Limited Edition could handle, so I picked one up.
    Got it home, and determined that I got a Thoroughbred (model 8) rather than a Palomino (model 6) and the compatibility chart say "No"
    I have been looking at the specs for the two models, and can't see why it shouldn't work. Has anyone got any further information?
    Thanks so much!
    Paul Birnbaum

    But I had seen that page previously, and except for the 1.75/1.60 Core Voltage values (and the K7T Ltd Ed supports both those values) there seems to be no difference.
    So there's still no definitive answer as to why the board would support the Palomino and not the T-Bred (which looks way like a typo for the old T-Bird!)
    I did note that the BIOS values available for CPU Vio are 3.3v and 3.45v...so possibly that's it. I can't find a CPU Vio spec for either chip. Or possibly, it's just that the board doesn't recognize the CPUID.
    Anyway, thanks...

  • Calendar & File Upload Components - Threadinar6

    Hi All,
    This is the sixth in the "Threadinar" series , please see Threadinar5 at
    http://swforum.sun.com/jive/thread.jspa?threadID=99473 for details
    In this Threadinar we will focus on the
    "Calendar" and "File Upload" Components
    Let us begin our discussion with the Calendar Component.
    Calendar Component
    You can drag the Calendar component "calendar component icon" from the Palette's Basic category to a page open in the Visual Designer to create an entry field with an integrated calendar pop-up to help the user pick dates for the field.
    You can also drop the calendar on a container component, like a table cell or group box.
    After dragging the component to the Visual Designer, you can work with the following useful properties of the Calendar Component:-
    General
    * id. Type: String
    The name of the Calendar component in the page bean and the JSP file.
    Appearance
    * columns. Type: int
    The number of character columns used to render the component. The default value is 20.
    * dateFormatPattern. Type: String
    The format of the date to be entered by the user. It is not usually necessary to set this property because a pattern is chosen automatically based on the locale.
    If you prefer to specify a date format, click the ellipsis button (...) to the right of the property and select a predefined date format from the property editor's list. You can also add your own formats. If you add a format, the values you can enter are limited to some combination of yyyy for the year, MM for the month, and dd for the day separated by separator characters. Typical separator characters are / (slash), . (period), and - (dash). For example, the following date formats are acceptable:
    o MM/dd/yyyy
    o yyyy.MM.dd
    o MM-dd-yyyy
    * dateFormatPatternHelp. Type: text
    Text that appears below the date entry field and shows the format pattern that the date entry field accepts. If you have not set the dateFormatPattern property, the help text is chosen automatically for you. If you have set the dateFormatPattern property, you should bind the dateFormatPatternHelp property to a localized string that matches the setting for each locale you want to support.
    * label. Type: String
    A label that appears next to the text entry field, typically describing what the user is supposed to enter.
    o Note: The label property is not as flexible as the Label component. You can use the Label component if you want more control over the label's appearance, such as positioning of the label relative to the component.
    * labelLevel. Type: int
    A number that affects the appearance of the label. 1 (Strong) is larger and bold. 2 (Medium), the default, is smaller and bold. 3 (Weak) is smaller and normal (not bold). This property takes effect only if the label property is set.
    * style. Type: String
    Cascading Style Sheet rules (CSS level 2) to be applied to the component. For example:
    position: absolute; left: 288px; top: 312px
    You can enter values directly or click the ellipsis (...) button to use the Style Editor.
    o Note: This property overrides any settings in the theme or the project CSS file for this component. If a style specified in this property does not appear to take effect, it is because an area of the component is obscured by a child component that has different style settings.
    For a list of CSS2 style attributes, see the web page at
    http://www.w3.org/TR/REC-CSS2/propidx.html
    * styleClass. Type: String
    A space-separated list of CSS2 style classes to be applied when the component is rendered. The style classes must be defined in the project's style sheet or in the theme's CSS file. If you click the ellipsis button (...), you see a list of all styles you can add to this property. For information on adding CSS classes and rules to the project's cascading style sheet, see CSS Editor.
    o Note: See the note above under the style property description for an explanation of why a class added to this property might appear to have no effect on the component.
    o Note: If you add a CSS style class from the current theme to your project CSS file and you redefine the style class, the change affects all components that use this style class. However, you can add your own style classes to the project CSS file that redefine the default style classes, and then when you add them to this property, the changes affect only this instance of this component.
    For the defaulttheme.jar CSS style classes for this component, see Calendar Component CSS Classes.
    Data
    * maxDate. Type: java.util.Date
    The last date that the user can select. The default value is four years from the date set in the minDate property, for a total span of five years.
    * minDate. Type: java.util.Date
    The earliest date that the user can select. The default value is the value of the selectedDate property, which defaults to the current date if that property is not set.
    * required. Type: boolean
    If selected, the user must enter a value for the calendar before the page can be submitted. If you add a Message component to the page and link its for property to this component, an error message will be displayed if the user tries to submit the page without entering a value.
    * selectedDate. Type: Date
    A java.util.Date object representing the calendar date selected by the user. If you right-click the component and choose Bind to Data, you can bind this property to a data provider or object that can process the user entered value on the server.
    When the component displays initially, if this property is not set, its value defaults to the current date. If you provide values for minDate and maxDate, you can also provide a value for this property that initially displays a date in that range.
    * validator. Type: MethodBinding
    Indicates the JavaServer Faces validator that is called when the value is submitted. A validator ensures that the correct value is entered by a user. Choose a validator from the drop-down list. If you choose (null), no validator is called. If you choose a validator, also select the required property to ensure that the validator is used. For descriptions of JavaServer Faces validators, see the list of topics at List of Validators.
    o Note: If you define your own validate method, for example, by right-clicking the component and choosing Edit Event Handler > validate, any value you might have set in this property is overridden.
    File Upload Component
    You can drag the File Upload component "file upload component icon" from the Palette's Basic category to the Visual Designer to create an entry field and a browse button that opens a file chooser dialog on the local system, enabling the user either to select a file or to type a file name into the entry field. When the page is submitted, a copy of the file's contents is sent to the web application.
    The component is similar to an HTML <input type="file"> element.
    * Note: This component is neither supported by nor available in portlet projects due to security reasons.
    * Note: The size of the component in the Visual Designer might not match the size of the component when it is rendered in a web browser, making the component appear to line up correctly in the Visual Designer, but not when the page is rendered in the user's web browser. Also, the rendering of this component can differ depending on the web browser. Be sure to test the component in the web browsers that you expect your users to use. For example, if you add a width setting to the style property that is smaller than the setting in the columns property, Internet Explorer observes only the width setting, while the Mozilla browser ignores it and sets the width according to the number of characters in the columns property.
    The File upload component uses a filter, a com.sun.rave.web.ui.util.UploadFilter object that is configured for you in the web application's deployment descriptor. The UploadFilter uses the Apache commons fileupload package. You might need to change these settings in the following two cases:
    * The server holds the uploaded file in memory unless it exceeds 4096 bytes; otherwise, the server holds the file contents in a temporary file. You can change this threshold by modifying the sizeThreshold parameter for the UploadFilter filter entry in the web application's web.xml file.
    * By default, the File Upload component can handle files up to one megabyte in size. You can change the maximum file size by modifying the maxSize parameter for the UploadFilter filter entry in the application's web.xml file.
    o
    A negative value for the maxSize parameter indicates that there is no file size limit. Setting the parameter to a negative value is not recommended for security reasons. For example, if you allow unlimited file sizes, a malicious user could mount a denial of service attack on your site by using extremely large files
    * To change the settings for the UploadFilter object in the web.xml file:
    1. In the Files window, expand project-name > web > WEB-INF.
    2. Double-click the web.xml node to open the file in the XML editor.
    3. Click the Filters toolbar button.
    4. In the UploadFilter section under Initialization Parameters, you can change the values for the maxSize and sizeThreshold parameters.
    The contents of the uploaded file, together with some information about it, are stored in an instance of com.sun.rave.web.ui.model.UploadedFile. By using this object, you can get the content of the file as a String or write the contents to disk, as well as get properties such as the name and the size of the file. In the interest of conserving memory, the contents and file data are only available during the HTTP request in which the file was uploaded. To access the contents of the uploaded file, bind the uploadedFile property to a bean property of type com.sun.rave.web.ui.model.UploadedFile. Have the setter or an action method process the file.
    The UploadedFile interface has methods for getting the name and size of the file, determining the file's MIME type (such as text/plain or image/jpeg), getting the file's contents as bytes or as a String, and writing the contents to disk. To learn more, in the Java editor, right-click on UploadedFile in a declaration statement and choose Show JavaDoc from the pop-up menu.
    * To set the component's properties, select the component and edit its properties in the File Upload Properties Window.
    * Right-click the component and choose one of the following pop-up menu items:
    o Edit validate Event Handler. Opens the Java Editor with the cursor positioned in the component's validate method so you can insert code to validate the value of the component.
    o Set Initial Focus. Gives this component focus when the user opens the page.
    o Auto-submit on Change. Causes the form to be automatically submitted if the value of the component changes. Sets the component's JavaScript onclick property to common_timeoutSubmitForm(this.form, 'component-id');. At runtime, this code causes the form to be automatically submitted if the user changes the component value. Once the form is submitted, conversion and validation occur on the server and any value change listener methods execute, and then the page is redisplayed.
    A component configured to Auto-submit on Change can use virtual forms to limit the input fields that are processed when the form is submitted. If the auto-submit component is defined to submit a virtual form, only the participants in that virtual form will be processed when the auto-submit occurs.
    o Bind to Data. Bind the component's text property to an object or to a data provider. For more information, see Bind to Data Dialog Box.
    o Property Bindings. Bind any of the component's properties to an object or data provider, such as the uploadedFile property to a bean property of type com.sun.rave.web.ui.model.UploadedFile.
    o Configure Virtual Forms. Enables you to add the component to a virtual form.
    For more details on using the "File Upload Component" Please see this tutorial
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/file_upload.html
    Please share your comments, experiences, additional information, questions, feedback, etc. on these components.
    ------------------------------------------------------------------------------- --------------------

    Of interest relating to file upload component to users : "Saving Uploaded Files Uploaded by the File Upload Component " Check the blog:
    http://blogs.sun.com/roller/page/divas

  • Thinkpad X40 Hotkeys not work on update

    Hi all,
    I had finally sorted out my hotkeys using acpid, as in this post:
    https://bbs.archlinux.org/viewtopic.php?id=130121
    However, on updating with pacman, my acpi_listen events are now
    button/fnf1 FNF1 00000080 00000000
    button/battery BAT 00000080 00000000
    button/screenlock SCRNLCK 00000080 00000000
    button/sleep SBTN 00000080 00000000
    for Fn+(F1-F4) respectively. So I tried to edit my handler.sh file to
    #!/bin/bash
    set $*
    event="$1"\ "$2"\ "$3"\ "$4"
    case "$event" in
    button/power*)
    logger "power button pressed; starting shutdown"
    `sudo shutdown -h now`
    button/lid*)
    logger "acpid: Display lid action, suspending"
    /usr/sbin/pm-suspend ;;
    ac*0)
    logger "acpid: running on bat, activating powersave"
    /usr/bin/cpufreq-set -g powersave # load the powersave governor
    echo 0 > /sys/class/backlight/thinkpad_screen/brightness ;; # set brightness to the lowest level
    ac*1)
    logger "acpid: running on ac, activating ondemand"
    /usr/bin/cpufreq-set -g ondemand # load the ondemand governor
    echo 7 > /sys/class/backlight/thinkpad_screen/brightness ;; # set brighness to the highest level
    button/fnf1*) # Fn+F1
    logger "acpid: Fn+F1 pressed: set cpu_freq to ondemand"
    cpufreq-set -g ondemand ;; ###need to make user have this privelege
    button/battery*) # Fn+F2
    logger "acpid: Fn+F2 pressed: set cpu_freq to powersave"
    cpufreq-set -g powersave ;; ###need to make user have this privelege
    button/screenlock*) # Fn+F3
    logger "acpid: blank screen (Fn+F3) pressed; switching display off"
    sleep 1 && xset dpms force off ;;
    button/sleep*) # Fn+F4
    logger "acpid: sleep button (Fn+F4) pressed; initiating pm-suspend"
    /usr/sbin/pm-suspend ;;
    button/wlan*) # Fn+F5; toggle wireless on/off. This is built into hardware, so customization not needed
    logger "acpid: Fn+F5 pressed: toggle wireless"
    button/fnf6*) # Fn+F6;
    logger "acpid: Fn+F6 pressed: no action"
    button/switchmode*) # Fn+F7
    logger "acpid: Fn+F7 pressed, toggling screen"
    case "$(/usr/bin/xrandr -q | grep VGA1)" in
    *"1024x768"*) # external monitor is in use
    case "$(/usr/bin/xrandr -q | grep LVDS1)" in
    *"1024x768"*) # LVDS1 is in use, so turn it off, and make VGA primary
    /usr/bin/xrandr --output LVDS1 --off ;;
    "LVDS1 connected (normal"*) # in other case (LVDS1 not connected)
    /usr/bin/xrandr --output VGA1 --off
    /usr/bin/xrandr --output LVDS1 --preferred ;;
    esac
    "VGA1 connected (normal"*) # external monitor is connected but not in use, switch on
    /usr/bin/xrandr --output VGA1 --mode "1024x768" --above LVDS1 ;;
    *) # any other case
    logger "acpid: external screen not found" ;;
    esac
    button/zoom*) # Fn+F8
    logger "acpid: zoom button (Fn+F8) pressed - no action"
    echo 3 > $beep ;;
    button/f24*) # Fn+F9;
    logger "acpid: Fn+F9 pressed: no action"
    button/fnf10*) # Fn+F10;
    logger "acpid: Fn+F10 pressed: no action"
    button/fnf11*) # Fn+F11;
    logger "acpid: Fn+F11 pressed: no action"
    button/suspend*) # Fn+F12
    logger "acpid: hibernate button (Fn+F12) pressed: initiating hibernate"
    /usr/sbin/pm-hibernate ;;
    button/zoom*) # Fn+Space
    logger "acpid: zoom button (Fn+Space) pressed: no action"
    button/prog1) # Access IBM
    logger "acpid: Access IBM button pressed: no action"
    *) # Everything else
    logger "acpid: $event is not defined" ;;
    esac
    However, now none of these keys are working. It is somewhat annoying, as I only just got them working!
    Any thoughts would be appreciated,
    Ianhoolihan

    ianhoolihan wrote:
    However, on updating with pacman, my acpi_listen events are now
    button/fnf1 FNF1 00000080 00000000
    button/battery BAT 00000080 00000000
    button/screenlock SCRNLCK 00000080 00000000
    button/sleep SBTN 00000080 00000000
    I can't get mine working in Arch XFCE either.  In Fedora 15 Gnome, I get the same acpi events as in Arch, but I can actually use them. 
    In Arch If I call an action file in XFCE from: Applications Menu > Settings > Keyboard > Application Shortcuts, and use Fn + F3 (for instance) as the shortcut, XF86Battery is what is displayed as the shortcut.  Pressing Fn + F3 doesn't call the action file though.  If I do not assign Fn + F3 to this action file, pressing Fn + F3 does nothing except generate an acpi event.  BTW, I tried running the action file [root@myhost actions]# ./blank.sh and the file works (also works by running as a regular user), so the problem is not the action file.
    Here is my action file: /etc/acpi/actions/blank.sh
    #! /bin/sh
    /usr/bin/xset dpms force off
    In Fedora 15 Gnome, if I call the same action file in a similar way with the keyboard shortcut Fn + F3, Battery is what is displayed as the shortcut.  Pressing Fn + F3 runs the action file in Fedora.  If I do not assign Fn + F3 to this action file, Fn + F3 brings up a battery info dialog box (not unexpected).
    Something is broken.  I don't think anyone has thinkpad_acpi working in an up-to-date Arch install.  Someone should file a bug report, but it won't be me.
    EDIT:  I am using a Lenovo ThinkPad X220.
    Last edited by David Batson (2011-11-26 14:56:09)

Maybe you are looking for