Change CUCM PIM in Package CCE and JTAPI Client

Hi All,
I have PCCE 10.5 here. In PCCE there is 1 CUCM PIM in PG A and 1 in side B. I want to change CUCM PIM in side B to another CUCM. What's impact if I change ip address of CUCM PIM and then re install JTAPI client? Do I need restarted some services or anything else? Thank you.
BR,
Roy

then you can just change the IP address in pim configuration while installing PG.
if the CUCM version subscriber running is different then previous one, re install the JTAPI and restart PG side B service. that should be enough.
Regards
Chintan

Similar Messages

  • "package" ARD and VNC client settings?

    Hi-
    I work in a school, and manage @ 1,100 student iBooks. I'm trying to figure out how to create a package that performs the same functions as the "Change Client Settings" feature under the "Manage" Menu. We use external HD's to reimage the computers, and add packages to this HD that are installed post flight. Right now I have to do the reimaging, then use the "Change Client Settings Feature" seperately, then finally run a package that pushes out the VNC password, (com.apple.VNCSettings.txt) that is in the /Library/Preferences folder.
    We set up the computers so VNC is enabled, and the teacher account on the machine can use ARD.
    Any thoughts, ideas, or it can't be done's would be great.
    Thanks!
    Jim
    Mostly iBook G4's and G'3's Mac OS X (10.4.7) I use a MacMini w/ ARD 3.1 Admin

    I have found that reverse DNS entries, especially when they are wrong, can really mess things up. If you haven't already, in your ARD scanner windows, right-click and add the "DNS Name" column, and adjust the columns so you can see it. Whenever you have problems connecting in ARD, that's always a quick thing you can check. If the DNS name does not match your computer name, you'll have problems.
    I don't think you gave enough detail of what is and isn't working, but in general, you can try connecting both with dns names and IP addresses, and connecting to Macs sometimes works better by putting their name as macname.local instead of macname.yourdomain.com.
    If you try to connect with VNC via IP address, and the IP addresses on your servers are static (should be), and it doesn't work, it very likely could be a firewall setting. Even if you have the firewall off or ports open, you'll want to run a port scan against the server in question to test what truly is open.
    This is all general stuff. Post something more specific if none of this helps (detail of OS versions, programs used, ports set open, any error messages, etc).
    Good luck

  • Changes to data verification between 10g and 11g Clients

    The 10g and 11.1.0.7 Databases are currently set to AL32UTF8.
    In each database there is a VARCHAR2 field used to store data, but not specifically AL32UTF8 data but encrypted data.
    Using the 10g Client to connect to either the 10g database or 11g database it works fine.
    Using the 11.1.0.7 Client to go against either the 10g or 11g database and it produces the error: ORA-29275: partial multibyte character
    What has changed?
    Was it considered a Bug in 10g because it allowed this behavior and now 11g is operating correctly?

    jfedynic wrote:
    The 10g and 11.1.0.7 Databases are currently set to AL32UTF8.
    In each database there is a VARCHAR2 field used to store data, but not specifically AL32UTF8 data but encrypted data.
    Using the 10g Client to connect to either the 10g database or 11g database it works fine.
    Using the 11.1.0.7 Client to go against either the 10g or 11g database and it produces the error: ORA-29275: partial multibyte character
    What has changed?
    Was it considered a Bug in 10g because it allowed this behavior and now 11g is operating correctly?
    29275, 00000, "partial multibyte character"
    // *Cause:  The requested read operation could not complete because a partial
    //          multibyte character was found at the end of the input.
    // *Action: Ensure that the complete multibyte character is sent from the
    //          remote server and retry the operation. Or read the partial
    //          multibyte character as RAW.It appears to me a bug got fixed.

  • Error when Compiling package header and body - how change pkb file associat

    Hi everyone,
    it has already been noticed elsewhere (in the thread "Compiling package header and body" of Jan 12, 2010) that the compilation of package scripts sometimes fails (apparently because of a sqldeveloper bug) when the script contains the terminating slash /.
    Is this bug still open?
    Next question: In the above mentioned thread it is recommended as workaround to change the corresponding file type association from pl/sql to sql. I would like to do that; I know the place in the preferences dialog, but most of the associations there seem to be hard coded and cannot be changed.
    I would appreciate any ideas!
    Thanks in advance,
    user8632123.

    For the workaround: you'd have to change the file's extension, not the association (to e.g. .sql).
    Have fun,
    K.

  • Is any difference in the CDR output format of CUCM version 6.1.5 and 7.1.5?

    Hello,
    Customer has a CUCM 6.1.5 cluster which is getting upgraded to 7.1.5. currently the CUCM CDR is sent to a external system (performix) which generates required reports. I would like to know if there is any difference in the CDR output format of CUCM version 6.1.5 and 7.1.5/ its vital to confirm this prior to upgrade as the performix is managed by a different vendor.
    Please advise !
    Shahid

    You can review the CDR documentation here to find that out, most likely there might be some changes
    Maintain and Operate Guides
    http://www.cisco.com/en/US/products/sw/voicesw/ps556/prod_maintenance_guides_list.html
    CDR admin guides have the field definitions.
    HTH
    java
    If this helps, please rate
    www.cisco.com/go/pdihelpdesk

  • How to show PL/SQL package  output and fix below error(please help)

    --PACKAGE SPECIFICATION AND BODY complied successfully but I can not see output some error are also there..  please help ;how to fix this problem
    -- with code
    CREATE OR REPLACE PACKAGE package_variables IS
    -- Declare package components.
    PROCEDURE set(value VARCHAR2);
    FUNCTION get RETURN VARCHAR2;
    END package_variables;
    CREATE OR REPLACE PACKAGE BODY package_variables IS
    -- Declare package scope variable.
    variable VARCHAR2(20) := 'Initial Value';
    -- Define function
    FUNCTION get RETURN VARCHAR2 IS
    BEGIN
    RETURN variable;
    END get;
    -- Define procedure.
    PROCEDURE set(value VARCHAR2) IS
    BEGIN
    variable := value;
    END set;
    END package_variables;
    VARIABLE outcome VARCHAR2(20)
    CALL package_variables.get() INTO :outcome;
    SELECT :outcome AS outcome FROM dual;
    EXECUTE package_variables.set('New Value');
    CALL package_variables.get() INTO :outcome;
    SELECT :outcome AS outcome FROM dual;
    OUTPUT
    PACKAGE package_variables Compiled.
    PACKAGE BODY package_variables Compiled.
    Error starting at line 2 in command:
    CALL package_variables.get() INTO :outcome
    Error report:
    SQL Error: ORA-01008: not all variables bound
    01008. 00000 - "not all variables bound"
    *Cause:   
    *Action:
    OUTCOME
    1 rows selected
    anonymous block completed
    Error starting at line 2 in command:
    CALL package_variables.get() INTO :outcome
    Error report:
    SQL Error: ORA-01008: not all variables bound
    01008. 00000 - "not all variables bound"
    *Cause:   
    *Action:
    OUTCOME
    1 rows selected
    */

    EXECUTE package_variables.set('New Value');
    CALL package_variables.get INTO :outcome;
    SELECT :outcome AS outcome FROM dual;
    OUTPUT
    anonymous block completed
    Error starting at line 2 in command:
    CALL package_variables.get INTO :outcome
    Error report:
    SQL Error: ORA-06576: not a valid function or procedure name
    06576. 00000 - "not a valid function or procedure name"
    *Cause:    Could not find a function (if an INTO clause was present) or
    a procedure (if the statement did not have an INTO clause) to
    call.
    *Action:   Change the statement to invoke a function or procedure
    OUTCOME
    1 rows selected

  • ORA-06508 WHEN ALL PACKAGES EXISTS AND ARE "VALID" !!!

    Oracle 8i
    In a production release, I must change a central package (spec and body), which is used by some other packages.
    As a result, after the compile, the concerned packages are all marked as invalid.
    Now, we need to recompile all the invalid packages.
    As a final result:
    - all objects (packages, packages body, views, ...) exist
    - all objects are VALID
    BUT the application doesn't work !!!
    In some process, we receive an ORA-06508 error messages.
    Can someone tell me if he has the same problem ?
    Is it a Oracle bug ?
    I was thinking that when all objects are VALID and existing and compatible then an ORA-06508 should not be ?
    Note: as workaround, to solve the problem, I need to recompile the VALID incriminated package...
    That means doing the work two times !!
    Thank you for your help...
    Regards
    Thierry

    Sorry, but it's not the same problem...
    It's not about ORA-04068 "existing state of packages has
    been discarded".
    I know that you just need to re-execute the package in this case.
    But here I have a ORA-06508:
    ORA-06508 PL/SQL: could not find program unit being called
    Cause: An attempt was made to call a stored program that could not be found. The program may have been dropped or incompatibly modified, or have compiled with errors.
    Action: Check that all referenced programs, including their package bodies, exist and are compatible.
    I repeat, all objects are valid.
    I can re-execute the application, that means the packages too, but the error remain ...
    The only way the solve that is to re-compile the VALID package !!!! and i don't like that...
    Regards
    Thierry

  • AIR package size & and why Adobe AIR rules..

    Here is one for all the flash dooms-dayers:
    I just published my app Gig Ink to Amazon App store. My app is now on iTunes for iPad/iPhone/iPod, Android Market for over 460 phones and tablets, and soon for Blackberry and desktop for mac/pc/linux with no runtime needed as I use captive runtime to package. And soon I will have access to Stage3D using the GPU to render full 3D content AND with Native Extensions I can do In-App billing, native notifications etc..
    Every one of them is the same 1 project in Flash Builder, same code, works landscape/portrait/phone/tablet etc. etc. etc.
    If I tried to do that with native code I would have to employ 5 separate developers and pay them heaps and anytime a change or update occurs... no way.
    Honestly are people thick? Doesn't anyone get how awesome this is, considering the massive and constant changes to web development recently?
    I hope Adobe know how important Flash Builder/AIR/AS3 is to a lot of developers now focusing on apps and keep making it better. My No 1 request? Reduce the file size of packaged AIR for captive runtime, possible allow us to select only dependant classes? Any suggestions? Is this an issue others think important?
    Cheers
    Blackmarketbear Mobile

    I totally agree with blackmarketbear !!
    Developing for mobile devices using Adobe AIR, Flex and Flash Builder brings exceptionnal productivity, and reduces a lot development cost !! =D
    However, the only drawback to this is the final packaged file size which won't let users download the app via 3G on Apple Store...
    This is such a big issue i think since our last client wanted his app to be downloadable via 3G ... =(
    I hope Adobe is working on this point, it is really important and if no improvment is made, i might fall into another development solution (native development with Java and Objective-C ...)

  • Saving package spec and body

    In previous versions of SQL Developer, there was always an All Files option in the dropdown when saving package spec and body. Now we're using the latest version 3.1.07.42 and the only option available is to save as a .pls extension. We do not use .pls files in our system, and it's annoying to have to save as .pls and then copy the code into another file. Does anyone know a way around this, and also why Oracle has put such a restriction on the save function?

    Hi,
    Welcome to the forum. This behavior of the chooser UI for Save Package Spec and Body changed between 3.0 and 3.1, mostly for the better, I assume, except perhaps for the issue on which you comment. In general, I believe there was an effort to make the user experience more consistent across the product when opening or saving files.
    Checking this area in the code line up next for release, I see that pls and sql are the file extension choices, but not all files. Will that help?
    Regards,
    Gary
    SQL Developer Team

  • Save package spec and body in lower case ?

    I'm using sqldeveloper 3.1.07. We have the convention to save all source files in lower case. However, when I do "Save package spec and body" the filename that is suggested is always upper case. Is there a setting for this that I missed or any way I can change this ?

    Buntoro,
    thank you very much - that worked just fine (if I start from the Tools menu and then can select only the packages and package body options - and then in the next step do the name filtering for the selected objects).
    I was trying to use shift key and select multiple packages from the browser and then unload - that does not give you the "package body" selection option. In that particular case, the related package bodies for the selected packages should be automatically included - but I don't know if that can be classified as a bug or even an improvement, given that this can be achieved from the Tools menu (then unload).
    I understand what you mean by
    ========================================================
    "Note that the Package Spec displays only the choosen ones.
    But, why on earth unloading all of package body instead of the ones which we chose before?
    Simply forward, the output of this caused all of the package body to be exported.
    So please be aware before using this."
    ========================================================
    I also believe this is a bug and needs to be fixed.
    Buntoro, thanx again.
    R/ Zaf
    Edited by: zaferaktan on Jan 12, 2011 10:57 AM

  • Undoing changes made by support package application

    Hi
    Is there a way to undo changes made to repository objects and dictionay objects after you have imported a support package.
    Let us consider this with an example. Let us assume that there is a standard SAP report called S1 v1. Which after a support package application and after confirming the queue it becomes S1 v2. Now if for some reason after say 2-3 days we are not comfortable with S1 v2 and want S1 v1 again can we get back the old standard SAP report. If so then how?
    Also if there is a change made in a Dictionary object, is there a way to revert these changes on a similar line? Id so then how.
    Thanks
    Rohan

    Hi Lokesh,
    If you have maintained versions for perticular report then you can revert it back to the previous version.
    Ask your ABAPer for the same.
    You can always retrieve the previous version if you have maintained the version.
    It is applicable for the dictionary objects too, but you may loose data in case of changing version for database tables.
    Regards,
    Payal

  • Remote workflowhow to keep sending packages back and forth multiple times?

    I'm a designer and I've gotten one of my clients to purchase InCopy to make their own edits to a project. My question is what to tell my client about how to save the incp package on the second round... We've successfully gone through one round of edit, I've made changes, and I've sent the package back to her. But, now she's run into trouble with my changes not showing on her document. Can someone describe how she should be opening the second package? And she wants to keep an archive of the older files, of course. I think that's where the problem lies.
    thanks!

    Actually I think he's (the OP) is encountering a more subtle problem.
    After updating your ID file with the editor's changes (the returned .indp), you're saying you edit the ID file, save changes (updating the assignment as necessary), then select his assignment and package it again for InCopy, right?
    When the editor opens the new .incp you send, InCopy unpackages it into an InCopy Assignments folder on his hard drive. On Windows the folder in in My Documents; on Macs it's in the user's Documents folder.
    The InCopy Assignments folder contains subfolders, one for each .incp the editor has ever unpacked. Each subfolder carries the same name as *the assignment as shown in the Assignments panel* (not the same name as the .incp, and not the same name as the actual .inca file, which could be different).
    If you didn't change the name of the assignment in InDesign (by clicking its name in the Assignments panel) when you packaged it up the second time, then when your editor unpacks it, InCopy sees that the unpacked folder already exists in his InCopy Assignments folder. So it opens *that* assignment. And so your editor doesn't see your changes.
    I think it's a bug.
    The fix is for you as the designer to change the name of the Assignment in the Assignments panel before you re-package it. Do this each time you send out the same assignment as a package. You could just add "v2" or "v3" after the name if you want.
    Note that this does not change the name of the actual .inca file. The new name is carried in one of the supporting xml files that are created when entries in the Assignments panel are renamed.
    I've found that if you do this, when the editor receives the new .incp file and unpacks it, InCopy creates a *new* subfolder in the editor's InCopy Assignments folder, and the new folder has the same name as the renamed assignment. When the assignment opens in InCopy the editor will see your changes.
    See if that helps or not.
    AM

  • [svn:fx-4.0.0] 13527: changed how the mpl package is created for easier maintainability.

    Revision: 13527
    Revision: 13527
    Author:   [email protected]
    Date:     2010-01-15 10:59:08 -0800 (Fri, 15 Jan 2010)
    Log Message:
    changed how the mpl package is created for easier maintainability.  Previously I had been duplicating what the main pkg target was doing and just omitting the files that were not intended to be in the mpl pkg.  After the main pkg is bundled up the files not needed will be removed from the stage directory and then bundled up as the mpl package. fixes SDK-25039
    Straighten out the confusing packaging targets. 
    -sdk-packages is now packages -> calling this will package the flex_sdk_4 and mpl zips
    QE notes: the mpl + add-on package should give us the flex_sdk_4 pkg
    Doc notes:
    Bugs: SDK-25039
    Reviewer:
    Tests run: packaging targets
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-25039
        http://bugs.adobe.com/jira/browse/SDK-25039
    Modified Paths:
        flex/sdk/branches/4.0.0/build.xml

    Hi Harshall,
    You have to enter the value as 1 in Installed base field and then press enter.
    You will be taken inside and then you will be able to see the Goto - Partner screen.
    Hope this will help.
    Please reward points suitably.
    Regards,
    Naresh.

  • Change the SAP Script Package

    Hi,
    How to change the SAP Script Package..when i use option copy from client option, it ask for a package but after copied it shows in the $TMP package...
    how can i change it.
    Regards,

    Hi,
    Goto SE80 --> select LOCAL OBJECTS from the drop down and hit enter.
    You will be displayed a list of all local objects.
    Locate your SAP SCRIPT --> right click on this script name --> click More Functions --> click Change Package Assignment and you will be prompted for a package name.
    Give new package name and click done.
    Your script is now assigned into the specified package.
    Regards,
    Tarun

  • CUCM pim is active with some warnings

    Hi ,
         In sprawler the CUCM pim is showing as ACTIVE with 21 config warnings. It sowing as Bad Device type (check log)  on status bar.
    Here im attaching logs. Please solve this issue.
    Thanks&Regards,
    MB Reddy.

    It's a little hard to tell, but I have a feeling you have some device targets which aren't configured properly, check this part out these are the first errors which come up in your log:
    04:15:28 pg1A-pim1 ADDED\UPDATED 1 AgentDeskSettings on Peripheral 5000.
    04:15:28 pg1A-pim1 Trace: [  1444]DeskLinkDeviceTarget::DeskLinkDeviceTarget: Unknown device type specified. NetTrgID=5002 Type=
    04:15:28 pg1A-pim1 Trace: [  1444]DeskLinkPeripheral::SetAlert - (DeskLinkDeviceTarget::DeskLinkDeviceTarget) Setting CONFIG Alert #1 - 4 :15:28 Bad Device Type 
    04:15:28 pg1A-pim1 Trace: [  1444]DeskLinkDeviceTarget::Constructor: NetworkTargetID=5002, Type=, Ext=, Dialed#=
    04:15:28 pg1A-pim1 Trace: [  1444]DeskLinkDeviceTarget::DeskLinkDeviceTarget: Error Device Target Glob Addr=1004/Net TgID=5003 with duplicate ext=  not configured
    04:15:28 pg1A-pim1 Trace: [  1444]DeskLinkPeripheral::SetAlert - () Setting CONFIG Alert #2 - 4 :15:28 Duplicate Extension 
    04:15:28 pg1A-pim1 Trace: [  1444]DeskLinkDeviceTarget::DeskLinkDeviceTarget: Unknown device type specified. NetTrgID=5003 Type=
    04:15:28 pg1A-pim1 Trace: [  1444]DeskLinkPeripheral::SetAlert - (DeskLinkDeviceTarget::DeskLinkDeviceTarget) Setting CONFIG Alert #3 - 4 :15:28 Bad Device Type 
    04:15:28 pg1A-pim1 Trace: [  1444]DeskLinkDeviceTarget::Constructor: NetworkTargetID=5003, Type=, Ext=, Dialed#=
    See if you can find NetworkTargetID 5002 and 5003 and figure out what they refere to.
    david

Maybe you are looking for

  • PO number from EKBE Table

    Hi Experts, I want to prepare a new custom report in which the PO number should appear. I was advised to use EKBE table. On checking I found that I can pass only Material doc# and Fiscal Year and No company code field is found. Is it reliable to use

  • How to Delete photos to free up space

    Hi, I have been taking photos on my iphone 4 since I inherited it from my daughter. It has 16Gb memory, and I have just 1.64Gb left from 14.8 Gb. There are 5 folders, with 8digit names housing photos numbered from 0-999, 1000-1999, 2000-2999, 3000-39

  • Windows 7 RC installation on MacBook Pro: 'DVD drive device driver missing'

    I'm trying to install the Windows 7 RC on my unibody MacBook Pro (purchased november 2008). I create the partition in Boot Camp, insert the install DVD, and restart the system. Then the Windows setup starts as it's supposed to (Windows is loading fil

  • Trouble importing swf files

    I would like to embed a .swf file into my catalyst project, but everytime I import a file catalyst crashes if I try to modify or reposition the file. I have tried runing the project just to see if the swf is visable, but get a message saying that the

  • How do I email a pdf from my iBooks Library after upgrading to iOS8? There is no Share button.

    I Have upgraded my iPad Air to iOS 8 this morning. I cannot share or email a pdf document in my iBooks Library. Any suggestions on how it works? Thanks.