ID Window locking up when trying to change the occurrence for a Data type

These are the steps I take to get the issue.
Log into XI - ID.
Create new data type.
Insert a new element.
when i change the the pop-up window that lets me select the 0..unbound does not pop up, but it puts my main XI-ID window in the background which locks up my session.  I have changed my java version on my PC and tried the following three versions (1.4.2_16, 1.4.2_18 and 1.6.0_11) none of them work.
Any help would be greatly appreciated.
Thanks
Skip Ford

Well, that trick only worked for ½ hour.
Or mayby something else triggered the intermidiate succes.
Still unsolved...
Edited by: Poul Bundgaard on Mar 18, 2009 9:22 AM

Similar Messages

  • HT4796 I keep getting a Windows Mail error when trying to run the assistant on my pc, but I don't have any email programs open.

    I keep getting a Windows Mail error when trying to run the assistant on my pc, but I don't have any email programs open.

    You could of course use Safari your default browser as a quick method of accessing gmail until you figure out the Firefox problem. (More than one browser may be used on a Mac or other computer).
    Is this the only site you have problems with ? and does Safari work ok ?
    Often this problem requires the page to be reloaded
    * try pressing the shift key as you reload the page
    Another problem is sometimes the cookies for that site need clearing
    * see [[Delete cookies to remove the information websites have stored on your computer#w_delete-cookies-for-a-single-site]]_delete-cookies-for-a-single-site
    * see also [[Firefox and other browsers can't load websites]] or[[Firefox can't load websites but other browsers can]]

  • Trying to change the labels for some UI elements

    hi,
    Problem:  I am trying to change the labels for some UI elements and transport the views from one server to another server.
    the lables show changed in the source server but the changes dont reflect in the destination server
    Kidly help me to slove this problem

    Hi Sharad
    The process is as explained:
    1.     Firstly, go to the respective view, and to the Label and then delete the Label Text as   
                    mentioned in the attribute u2018TEXTu2019 of the Label in the view.
    2.     Next, Activate the View, if it asks for a change request, please assign it to a new TR.
    3.     Finally give the Label text again and then Save it and activate it.
    4.     Further transport the request to ECP and find the difference.
    This especially happens when we frequently change the WD Component and embedd it entirely in the Transport.
    I hope this information would be of a great help to all of us.
    Ponts if helpful.
    Regards
    Roshan

  • Am i the only one who when trying to enter the code for creative cloud activation ?

    I give up,i have been trying to activate a 3 month subscription for CS6 from Staples and every time i try the code it will not work.  I have used the chat live and spent about 3 hours already going nowhere.  I do not like talking on the phone to some help desk overseas and the only thing i think left to do is to return the junk.

    I tried all that and even took a picture of the numbers and blew them up so a blind person could read them and had 3 others read them off.  A simple way to fix the problem is get someone on Adobes staff to find a font that most people can read from whatever product the stick it to.
    John McDonough
    Date: Wed, 1 Aug 2012 18:33:58 -0600
    From: [email protected]
    To: [email protected]
    Subject: Am i the only one who when trying to enter the code for creative cloud activation ?
        Re: Am i the only one who when trying to enter the code for creative cloud activation ?
        created by David__B in Adobe Creative Cloud - View the full discussion
    Hey John,
    Not sure if it helps or not, but I know sometimes with codes like that its really hard to tell certain characters apart, O - like in Oscar versus 0 - number and number 1 versus lowercase L like in Lima.
    Might test entering it both ways if you have any suspect characters?
    -Dave
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4592955#4592955
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4592955#4592955. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Creative Cloud by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Function module to change the value for pricing condition type

    Hello experts,
    I want to change the value for pricing condition type for an item in the transaction CRMD_ORDER.
    I used many function modules but none are working.
    Please kindly suggest a function module that will change the value for a condition type .
    I have used the following function module but its not working, please correct the coding if anything needs to be changed or added. Please help me .
    Thank you.
    CLEAR PRCD_COND.
         SELECT SINGLE * FROM PRCD_COND WHERE KPOSN = WA_ORDERADM_I-GUID AND
                                              KSCHL = COND_TY.
      IF SY-SUBRC = 0.
    *    MOVE-CORRESPONDING PRCD_COND TO L_COND_CHG.
    *    CLEAR L_COND_CHG-KBETR.
        L_COND_CHG-STUNR = PRCD_COND-STUNR.
        L_COND_CHG-KBETR = COND_PRC.
    *    L_COND_CHG-KSCHL = COND_TY.
        INSERT L_COND_CHG INTO TABLE T_COND_CHG.
    L_HEAD_GUID = CRMD_ORDERADM_H-GUID.
    L_ITEM_GUID = WA_ORDERADM_I-GUID.
    INSERT L_HEAD_GUID INTO TABLE HEAD_GUID.
    INSERT L_ITEM_GUID INTO TABLE ITEM_GUID.
        CALL FUNCTION 'CRM_ORDER_READ'
         EXPORTING
           IT_HEADER_GUID                    = HEAD_GUID
           IT_ITEM_GUID                      = ITEM_GUID
         IMPORTING
           ET_ORDERADM_H                     = LT_ORDERADM_H
           ET_ORDERADM_I                     = LT_ORDERADM_I
           ET_PRIDOC                         = IT_PRIDOC_RD
           ET_DOC_FLOW                       = T_DOC_FLOW
    *     CHANGING
    *       CV_LOG_HANDLE                     =
    *     EXCEPTIONS
    *       DOCUMENT_NOT_FOUND                = 1
    *       ERROR_OCCURRED                    = 2
    *       DOCUMENT_LOCKED                   = 3
    *       NO_CHANGE_AUTHORITY               = 4
    *       NO_DISPLAY_AUTHORITY              = 5
    *       NO_CHANGE_ALLOWED                 = 6
    *       OTHERS                            = 7
        IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    MOVE-CORRESPONDING LS_PRIDOC_RD TO L_PRI_COND.
    INSERT L_PRI_COND INTO TABLE PRI_COND.
    LOOP AT IT_PRIDOC_RD INTO LS_PRIDOC_RD.
    MOVE-CORRESPONDING LS_PRIDOC_RD TO L_PRIDOC_CHG.
    L_PRIDOC_CHG-PRIC_COND = PRI_COND.
    L_PRIDOC_CHG-REF_GUID = LS_PRIDOC_RD-GUID.
    L_PRIDOC_CHG-COND_CHANGE = T_COND_CHG.
    INSERT L_PRIDOC_CHG INTO TABLE PRIDOC_CHG.
    ENDLOOP.
    LOOP AT LT_ORDERADM_H INTO LS_ORDERADM_H .
    MOVE-CORRESPONDING LS_ORDERADM_H TO L_HEADER.
    INSERT L_HEADER INTO TABLE HEADER.
    ENDLOOP.
    LOOP AT LT_ORDERADM_I INTO LS_ORDERADM_I.
    MOVE-CORRESPONDING LS_ORDERADM_I TO L_ITEM.
    INSERT L_ITEM INTO TABLE ITEM.
    ENDLOOP.
    L_FIELD-FIELDNAME = 'STUNR'.
    INSERT L_FIELD INTO TABLE FIELD.
    L_FIELD-FIELDNAME = 'KBETR'.
    L_FIELD-CHANGEABLE = 'X'.
    INSERT L_FIELD INTO TABLE FIELD.
    L_INPUT-FIELD_NAMES = FIELD.
    L_INPUT-REF_KIND = 'E'.
    L_INPUT-REF_GUID = LS_PRIDOC_RD-GUID.
    L_INPUT-OBJECTNAME = 'PRIDOC'.
    INSERT L_INPUT INTO TABLE INPUT.
        CALL FUNCTION 'CRM_ORDER_MAINTAIN'
         EXPORTING
           IT_PRIDOC                     = PRIDOC_CHG
         IMPORTING
           ET_EXCEPTION                  = EXCEPT
         CHANGING
           CT_INPUT_FIELDS               = INPUT.
        IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    REFRESH EXCEPT.
    CALL FUNCTION 'CRM_ORDER_SAVE'
      EXPORTING
        IT_OBJECTS_TO_SAVE         = HEAD_GUID
    *   IV_UPDATE_TASK_LOCAL       = FALSE
    *   IV_SAVE_FRAME_LOG          = FALSE
    *   IV_NO_BDOC_SEND            = FALSE
    *   IT_ACTIVE_SWITCH           =
    IMPORTING
       ET_SAVED_OBJECTS           = SAVED
       ET_EXCEPTION               = EXCEPT
       ET_OBJECTS_NOT_SAVED       = UNSAVED
    * CHANGING
    *   CV_LOG_HANDLE              =
    * EXCEPTIONS
    *   DOCUMENT_NOT_SAVED         = 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.
    COMMIT WORK AND WAIT.

    Hi,,
    To be able to call a function module in an update work process, you must flag it in the Function Builder. When you create the function module, set the Process Type attribute to Update with immediate start
    Alternatively u can use this function module.
    CRM_STATUS_DATA_SAVE_DB
    BAPI_CUSTOMERCRM_CHANGE (If u wish to use a bapi for this).
    Also , Let me know what error you got when implementing other function module.Does the function module didnt return any error but still the value is not changed for pricing condition type?

  • Error when trying to change the Query in Bex??

    Hi Gurus,
    I have a query based on infocube. When I am trying to change the query, its giving me the error "This component was edited with a more recent version of Editor. You also have to use the more recent version to edit further. Further processing not possible. Update your front end".
    Please help with this.

    Hi, I am actually stuck here. Can you please let me know which among these is the higher version.
    1) Final Release 3.50
       Version 3500.3.016
    2) Final Release 3.50
        Version (Revision 481)
    Because it is working fine in the 1st one whereas its throwing that error pop-up in 2nd one(as soon as we select the Change query global definition option) .

  • System preferences freezes when trying to change the date

    Hey guys,
    I've got a MacBook Pro running OSX 10.4.1. I'm having a problem with trying to change the time/date settings. Either going through the system preferences window or accessing it through clicking the clock in the top right and then 'open date & time', I get the spinning wheel and System Preferences crashes. Any ideas why?
    Regards,
    Phil

    You are probably running 10.4.10 in as much as the MacBook pro's came out well after 10.4.1 was released. In any case try deleting the file com.apple.systempreferences.plist in your user/library/preferences folder.

  • I have been trying to change the generes for songs in my I tunes library but it doesn't allow me to do this. Does anyone know how.

    I have been trying to change the generes to some of my songs in my itunes library but it doesn't allow me to do this. Does anyone know how.

    Hello there, reginaairview.
    The following Knowledge Base articles offer some great information in regards to how to change the Genre information on music in iTunes:
    iTunes 11 for Windows: Edit song and CD information
    http://support.apple.com/kb/PH12360
    Edit song or CD information
    Select the song or CD you want to edit, and choose File > Get Info (or press Control-I).
    Click Info and make your changes.
    Tip:   If you’re changing the same information (for example, the genre) for multiple items, you can select all the items and change the information for them at the same time.
    Create your own genre category by clicking Info and typing the category in the Genre field.
    Additionally this article provides some good screen shots of where that is changed under "Editing and arranging content" section:
    Playing and managing content in iTunes
    http://support.apple.com/kb/ht1399
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Hi i am trying to change the settings for my mobile me calendar on my new i mac help

    Hi i am trying to change the settings from pacific to show the correct time on my i mac for the mobile me calendar.

    Go to System Prefernces>Date and Time and select the correct zone, it will carry over to Mobile Me.

  • Illustrator locks up when trying to open the preference window

    I have CS5 on windows 7. When I try to open the preference window illustrator locks up and will not open it. I can hit escape and it will go back to working fine. I have tried leaving it thinking maybe it was an odd loading issue but nothing changes. Other than this everything works perfectly fine it just refuses to open the preference window. I have tried searching but I can't find any one else with this issue, I am hoping to avoid having to reinstall it but it is starting to look like that may be my only option.

    crutchlets,
    You may consider at least two approaches.
    One is to wildly increase the monitor resolution to see whether it is hiding somewhere out there, in which case you can drag it into the area with the other things, then reduce again and clean up the mess.
    Another one is to try the relevant steps in the following list (1) - 4) and 6) as the last resort).
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • My DVD Player hangs when trying to change the regional code the first time

    Hello,
    I am new to this forum and I couldn't find one for the DVD Player specific so I chose this one. Please direct me to a different one if my eyes were misleading me.
    I have a new Macbook. Just over three month now and I attempted to watch a movie with the DVD Player last night the first time. When inserting the DVD, the DVD player comes up with a Screen asking me to change the Regional Code from 6 to 1. I don't understand this in the first place since I purchased my Mac within the US. But anyway, When I unlock it with my password and then click the "Set Regional Code" Button (Regional Code preset to one at this time), it turns blue and then the rainbow wheel for being busy shows up. Unfortunately it never leaves and going to the activity monitor it says (Not responding). That causes bad Windows Memories .
    Tried multiple ways, let it run for 10 hours and it never returns to the world. Very frustrating, since this is the first time I tried to use this feature.
    Is there any advice on how to set this to Regional Code 1. I only have to set it once, but I think there must be an option.
    And yes, I know of VLC, but I still would prefer to use this regular DVD player. I think this should work somehow.
    Computer out of the box, nothing other then iWorks and MS Office 2008 installed.
    Any help is appreciated.
    Thanks a lot
    The Dark Lord
    Bernd

    Does the account you are using have admin rights? I found this :
    http://support.apple.com/kb/HT2397
    +In Mac OS X 10.3 Panther and later, users with administrative privileges aren't prompted to change the region the very first time a DVD-Video disc of a single region is inserted. Instead, the region of the DVD drive is automatically set to the region of the DVD disc that was inserted. Accounts that don't have administrative privileges must authenticate with an administrator account name and password, because changing the drive's region code requires administrative privileges.+
    Sounds like it might be worth a try from an admin account first.

  • Reason code field in grayed out when trying to change the document via FB02

    HI
    I am trying to change a document via FB02. When I try to add a reason code to this document by giving these details in additional data segment of the document I am not able to do so as the field is grayed out.
    Kindly advise me how to proceed with it.
    Regards
    Shiresha

    Hi,
    Go to Tcode - OB32
    Click on new entries
    Input the following -
    Field name = BSEG-RSTGR
    Select Field can be changed
    Save
    This is will make the field editable in change mode.
    Regards,
    Mike

  • Ext_auth_setup_err when trying to change the password

    Hi Gurus,
    I have a portal user account called rob.o'[email protected]
    I have a custom(jsp) change password page for changing the portal password. All the other users are able to change their password without any problem. When this user tries to change his password, he gets "ext_auth_setup_err" error and it shows "ROB.O" under user name on that page. Can you post a reply if you have some idea on how to fix this.
    This is what I have to get the user name
    String str_user = request.getParameterValues("p_username")[0];
    Thanks
    Raj
    ------------

    Richard
    For some reason changing the password from Disk Utility > Images > Convert. (be sure you name the image with a different name for the duration of the process otherwise you will get a "Resource Busy" error message). When you choose convert enable the encryption option and re-save the image. When done you can rename it to its older name in the finder.

  • Error when trying to change the look of a site collection

    Hello everyone!
    I have a single-server on-premise installation of SharePoint 2013 and I noticed that you can change the way fonts, colors etc. are used on a site collection by selecting "Change the look" from the site settings. However when I browse the page I
    get an empty page with the spinner on the right just going in circles.
    The browser log displays an error from _layouts/15/designgallery.js with this message:
    SyntaxError: JSON.parse: unexpected character
    The file is minified so unfortunately it does not tell me much more. However I also noticed a call to the webservice at /_layouts/15/designdata.ashx?hashcode=-1638098219&lcid=1033. Although this call returned a http 200 response the page turned out to
    be the "Sorry, something went wrong"-page with a correlation id as well. Looking up the correlation id in the trace log I found this unexpected error
    Application error when access /_layouts/15/designdata.ashx, Error=Object reference not set to an instance of an object.
    at Microsoft.SharePoint.Utilities.ThemeFontFace.Create(XPathNavigator xpnFontNode, XmlNamespaceManager nsm)
    at Microsoft.SharePoint.Utilities.ThemeFont.Populate()
    at Microsoft.SharePoint.Utilities.SPFont.Initialize(Stream stream)
    at Microsoft.SharePoint.Utilities.SPFont.Open(SPFile file, Boolean readPublishedVersion)
    at Microsoft.SharePoint.Utilities.SPFont.GetFontSchemesFromFolder(SPWeb themesWeb, String folderUrl)
    at Microsoft.SharePoint.Utilities.SPFont.GetFontSchemesFromFolder(SPSite site, String strThemeFolder)
    at Microsoft.SharePoint.ApplicationPages.DesignDataDownloadHandler.GenerateFontSchemeData()
    at Microsoft.SharePoint.ApplicationPages.DesignDataDownloadHandler.ProcessRequest(HttpContext context)
    at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    Has anyone encountered this error before or knows what the issue might be? I suspect that this error prevents me from changing the look of the site collection.

    Hi,
    According to your post, my understanding is that the “Change the look” page displayed blank, and it still shown working on it.
    This issue is always related to system requirenment. Did your environment fit for the hardware and software requirements for SharePoint ?
    You can check with the following article:
    http://technet.microsoft.com/en-us/library/cc262485.aspx
    Did the issue occur in other site collection or web application?
    You can refresh the page or reopen the page to check whether it loading.
    Did you find any error or unexpected occurred in the ULS log or event log?
    For SharePoint 2013, by default, ULS log is at
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    Thanks & Regards,
    Jason 
    Jason Guo
    TechNet Community Support

  • Error when trying to change the communication channel

    Hi SapAll.
    under the Integration Directory ,when i try to change the  Descryption of communication channel  and save it ,it is raising the unknown error which i cont uderstand at all as it is complaining about the other operation mapping which is using this comm channel in its process Integration scenario.
    one thing i cont understand is y it is complaining about the other operation mappings which the communication channel is not at all related to ot.
    the following below is the error that iam getting while changing the descryption of communication channel and saving it
    Attempt to access the 1 requested objects on 1 failed. Detailed information:  com.sap.aii.ib.core.roa.RoaObjectAccessException: Attempt to read object Operation Mapping ECC_ApprovedOrdersQuery_ApprovedOrdersRead_to_TRADESTONE_ServiceHandlerService_ApprovedOrdersRead | urn:sap.shoprite.co.za:ecc:pa, type MAPPING from application REPOSITORY on system REPOSITORY failed. Object does not exist. Detailed informatio n: Object Operation Mapping ECC_ApprovedOrdersQuery_ApprovedOrdersRead_to_TRADESTONE_ServiceHandlerService_ApprovedOrdersRead | urn:sap.shoprite.co.za:ecc:pa not found
    Attempt to access the 1 requested objects on 1 failed.
    Detailed information:
    com.sap.aii.ib.core.roa.RoaObjectAccessException:
    Attempt to read object Operation Mapping ECC_ApprovedOrdersQuery_ApprovedOrdersRead_to_TRADESTONE_ServiceHandlerService_ApprovedOrdersRead
    | urn:sap.shoprite.co.za:ecc:pa, type MAPPING from
    application REPOSITORY on system REPOSITORY failed.
    Object does not exist. Detailed informatio n: Object
    Operation Mapping ECC_ApprovedOrdersQuery_ApprovedOrdersRead_to_TRADESTONE_ServiceHandlerService_ApprovedOrdersRead
    | urn:sap.shoprite.co.za:ecc:pa not found (ROA_MOA_NOTCOMPLETED)
    will be waiting for your response.
    regards.
    Varma

    the problem is sorted.
    my colleague has got incorrect objects in the scenario  which is using the same communication channel,so she just deleted all the objects in that scenario under configuration .
    now i can change and save,activate the communication channel after my colleague deleted the objects of the scenario.
    regards.
    Varma

Maybe you are looking for