Modify parameters due to note

Hi everybody,
I ran across something odd today.
I tried to implement note 795523 in our system (4.7 FX 2.0)
It asks to
manually change parameters of a method. 1. SE24: change parameter of method GET_ADJM_RECORD_STATUS in interface IF_REAJ_METHOD  
-  Parameter (old):RD_ADJMDRECSTATUS                                                                               
-  Parameter (new)   : ED_ADJMDRECSTATUS                                                                               
-  Art (old)      : Returning                                                                               
-  Art (new)         : Exporting                                
So far so good, I´ve registered the objekt with oss and tried to implement the changes in transaction se24. There I ran across a problem as it´s possible to add a new parameter, however I´m unable to delete an existing parameter, as the parameter name itself cannot be changed, I cannot use overwrite.
Anyone ever encountered such behavior? How shall I proceed?
Hope to hear from you soon, will give Reward Points!
Message was edited by: Ute Schroeder

Hi,
Sometimes after implementing the note, you need to log off the existing session & login again.
This might solve the problem.
Best regards,
Prashant

Similar Messages

  • OB52 :- Open and Close Posting periods Due to not modifiable of  PRD system

    Dear All,
    Due to not modifiable status two transaction could't be done in the PRD  System.
    This is IMG activity under the following.
    1. OB52 :- Open and Close Posting periods (FA -> FA Global Setting -> Document ->Posting -> Open and Close Postinfg periods
    2. OB08 :- Enter Foriegn exchange rate. (Gen Settings) Enter foriegn exchange rate
    These transaction are to be executed regularly and directly in the ECC6.0 Production system is not possible due to non modifiable status.
    Please help me regarding this issue

    Check Note 77430 - Customizing: Current settings
    Markus

  • How to modify a part of task parameters via worklist (not all paramenters)?

    I am making a demo of showing the functions of human workflow / worklist using Oracle SOA Suite. The following process is not a real project. But I have some questions about how to modify parameters in worklist and jdeveloper. Please help me.
    I create a BPEL with human workflow. It has 2 human tasks.
    The first human task is a single approver type and the parameters contents can be modified via worklist. The user is oc4jadmin.
    If oc4jadmin rejects it, the process will go to the second human task.
    The second human task is a sequential lists of approvers type and the parameters contents can be modified via worklist. 3 users (the order is : jcooper -> jlondon-> tolstoy) can access it. The process is able to abrupt completion if anyone rejects it.
    After the process is invoked in BPEL control,
    1, oc4jadmin login worklist and modified the data, than reject it.
    2, jcooper can login worklist and changed the data, save it, and approve.
    3, jlondon login, view data, change data, and save it. However, if jlondon modified the
    My questions are as follow:
    1, If oc4jadmin rejects the task in worklist, how can I set the parameter cannot be modified and saved.
    2, schema:
    <schema attributeFormDefault="unqualified"
         elementFormDefault="qualified"
         targetNamespace="http://xmlns.oracle.com/BPEL_single_sequential"
         xmlns="http://www.w3.org/2001/XMLSchema"
    xmlns:vv="http://xmlns.oracle.com/BPEL_single_sequential">
         <element name="BPEL_single_sequentialProcessRequest">
              <complexType>
                   <sequence>
                        <element name="input" type="vv:complexType1" maxOccurs="unbounded"/>
                   </sequence>
              </complexType>
         </element>
         <element name="BPEL_single_sequentialProcessResponse">
              <complexType>
                   <sequence>
                        <element name="result" type="string"/>
                   </sequence>
              </complexType>
         </element>
    <complexType name="complexType1">
    <sequence>
    <element name="pid" type="string"/>
    <element name="ptitle" type="string" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    </schema>
    In the worklist, the user can add another pid and leave the ptitle empty. In the schema, the ptitle (minOccurs=1) should appear at least once. How can I set that, if the user add another pid and must add at least one ptitle before saving it?
    3, One element likes gender=male/female. In the worklist form, the default graphic component is an input field. How can I set the component to a dropdown list and it highlight value.
    4, The default form is jsp file and it is beautiful. Could I make a jspx page and replace the jsp page? How to replace the jsp to jspx?
    5, If I use sequencial approver type for the human task, how can I set various page layout? For example, user 1 can view and modified all parameters. User 2 can view some part of the parameters and changes it. User 3 can view all paramters but can just modified some of them?
    Thanks a lot!
    Edited by: [email protected] on 2009-3-10 上午12:39
    Edited by: [email protected] on 2009-3-10 上午12:44
    Edited by: YE

    Hi,
    all what you asked about can be done through java script.

  • Modify the Due Date in a GP Process

    Hello everybody,
    I need to modify the Due Date on a given Process. All I have is the Process ID, that i get from a Parameter in my function... I got some code form several pages in the SAP Library, but i get an error in the line:
              IGPProcessInstance procesInst = rtm.getProcessInstance(proc, userContext);
    In this line a GPEngineException is raised, Any help will be greatly appreciated!!!
    This is the Code I have:
         IUser user = null;
         IGPStructure params = null;
    //        Get current user
         try {
                   IWDClientUser wdUser = WDClientUser.getCurrentUser();
                   user = UMFactory.getUserFactory().getUserByLogonID(wdUser.getSAPUser().getName());
              //        obtain the Process template
                   IGPProcess process =
                   GPProcessFactory.getDesigntimeManager().getActiveTemplate(
              //        by specifying its ID
                   processId,
              //        and the user accessing it
                   user);
              //        obtain the Run Time Manager
                   IGPRuntimeManager rtm = GPProcessFactory.getRuntimeManager();
              //        create a new, empty role assignment list
                   IGPProcessRoleInstanceList roles = rtm.createProcesRoleInstanceList();
              //        get the number of roles required
                   int rolenum = process.getRoleInfoCount();
              //        iterate over the required roles
                   for (int i = 0; i < rolenum; i++) {
              //          add a new role assignment to the list
                    roles.createProcessRoleInstance(
              //          by specifying the role's unique name
                    process.getRoleInfo(i).getRoleName()).addUser(
              //          add the current user to every process role
                    user);
              //          Here you see how to populate parameters with data.
              //          This example only works, if you initiate the "Time-Off process"
              //          that is delivered per default with the GP Framework.
              //          You find it in the gallery below "Examples".
              //          Otherwise no parameters are initialized.
              String proc = processId;  // Got it as a Parameter
              IGPUserContext userContext =  GPContextFactory.getContextManager().createUserContext(user);
                               /* En Exception is Raised in this line: */
              IGPProcessInstance procesInst = rtm.getProcessInstance(proc, userContext);
              Iterator notifs = (Iterator) procesInst.getNotificationInstanceEnumeration();
              IGPNotificationManager notifManager = GPProcessFactory.getNotificationManager();
              while(notifs.hasNext())
                      IGPNotificationInstance notif = (IGPNotificationInstance)notifs.next();
                      if(notif.isDueDateNotification())
                                IGPDeadline deadline = GPNotificationFactory.createDeadline(
                                                                                         IGPDeadline.DEADLINE_ABSOLUTE_POINT,
                                                                                         null,
                                                                                         0,
                                                                                         (java.sql.Date.valueOf("2008-02-29")).getTime());
                                notifManager.updateNotification(
                                                                     proc,
                                                                     notif.getActivityInstanceID(),
                                                                     notif.getNotificationID(),
                                                                     deadline);
                    params = GPStructureFactory.getStructure(process.getInputParameters());
                    if (process.getTitle().equals("Time-Off Process")){
                         IGPStructure struc = params.addStructure("Time_off_data.1");
                         struc.setAttributeValue("AbsenceTypeText", "Vacation");
                         struc.setAttributeValue("SimulationCode", 0);
                         struc.setAttributeValue("CompletionCode", 0);
                         struc.setAttributeValue("PaidFlag", true);
                    params.setAttributeValue("data", java.sql.Date.valueOf("2008-02-28"));
              //          initiate the process template by passing the Process template
                    rtm.startProcess(process,
              //          a name,
                    "Process started by API ",
              //          a description,
                    "This process has been started by an API",
              //          the initiating user
                    user,
              //          the role assignment,
                    roles,
              //          the initial parameters
                    params,
              //          and the user actually executing this action
                    user);
          } catch (WDUMException ex) {
          logger.traceThrowableT(Severity.ERROR,
          "Current user could not be resolved: ", ex);
          } catch (GPInvocationException ex) {
          logger.traceThrowableT(Severity.ERROR,
          "Exception raised when trying to start process: ", ex);
          } catch (GPEngineException ex) {
          logger.traceThrowableT(Severity.ERROR, "Exception raised when trying to start process: ", ex);     
         catch (UMException ex) {
         logger.traceThrowableT(Severity.ERROR,
         "Exception raised when trying to start process: ", ex);
    Edited by: Francisco Perez on Mar 10, 2008 3:41 PM

    Hello All,
    You can change the deadline of a Due date notification of an process as given below:
               IGPRuntimeManager rtManager = GPProcessFactory.getRuntimeManager();     
               String process = executionContext.getProcessId();
               IUser admin =   UMFactory.getUserFactory().getUserByUniqueName("administrator");
               IGPUserContext userContext =  GPContextFactory.getContextManager().createUserContext(admin);
               IGPProcessInstance procesInst = rtManager.getProcessInstance(process,userContext);
               Iterator notifs = (Iterator) procesInst.getNotificationInstanceEnumeration();
               while(notifs.hasNext())
                    IGPNotificationInstance notif = (IGPNotificationInstance)notifs.next();
                    if(notif.isDueDateNotification())
                        IGPDeadline deadline = GPNotificationFactory.createDeadline( IGPDeadline.DEADLINE_ABSOLUTE_POINT,null,0,(new Date(108,2,1)).getTime());
                        notifManager.updateNotification(process,notif.getActivityInstanceID(),notif.getNotificationID(),deadline);

  • How to modify parameters for a LOB?

    SQL1:
    ALTER TABLE "TEST"."T03"
    MODIFY LOB (COL2)
    STORE AS SECUREFILE
    (TABLESPACE "TBS_1" DISABLE STORAGE IN ROW CHUNK 5000 PCTVERSION 22 CACHE READS FILESYSTEM_LIKE_LOGGING STORAGE
    ( INITIAL 1024 NEXT 1111 PCTINCREASE 12))
    SQL2:
    ALTER TABLE "TEST"."T03"
    move LOB (COL2)
    STORE AS SECUREFILE
    (TABLESPACE "TBS_1" DISABLE STORAGE IN ROW CHUNK 5000 PCTVERSION 22 CACHE READS FILESYSTEM_LIKE_LOGGING STORAGE
    ( INITIAL 1024 NEXT 1111 PCTINCREASE 12))
    My intention is to modify parameters of LOB(COL2). Looks SQL1 has SQL error: ORA-00906: missing left parenthesis while SQL2 can be executed correctly. But the result of SQL2 turns out to be like:
    LOB ("COL2") STORE AS SECUREFILE (
      TABLESPACE "TBS_1" DISABLE STORAGE IN ROW CHUNK 8192
      CACHE READS NOLOGGING  NOCOMPRESS  KEEP_DUPLICATES
      STORAGE(INITIAL 106496 NEXT 8192 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0
      BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)) "
    which is not the same I expect. Can anybody please help?

    check query
    >
    SELECT GR.NAME GROUPING_RULE_NAME,
    GR.DESCRIPTION GROUPING_RULE_DESC,
    GR.START_DATE,
    GR.END_DATE,
    ORD.NAME ORDERING_RULE_NAME,
    AL.MEANING TYPE,
    GC.DESCRIPTION COLUMN_NAME
    FROM RA_GROUPING_RULES GR,
    RA_LINE_ORDERING_RULES ORD,
    RA_GROUPING_TRX_TYPES GT,
    RA_GROUP_BYS GB,
    RA_GROUP_BY_COLUMNS GC,
    AR_LOOKUPS AL
    WHERE GR.ORDERING_RULE_ID = ORD.ORDERING_RULE_ID(+)
    AND GR.GROUPING_RULE_ID = GT.GROUPING_RULE_ID(+)
    AND GT.GROUPING_TRX_TYPE_ID = GB.GROUPING_TRX_TYPE_ID(+)
    AND GB.COLUMN_ID = GC.COLUMN_ID
    AND AL.LOOKUP_TYPE = 'GROUPING_TRX_TYPE'
    AND AL.LOOKUP_CODE = GT.CLASS
    AND GR.NAME =:GROUPING_RULE_NAME
    >
    in some ide like sql developer
    before execution try to init session and simulate user login by which you run concurrent
    because you have in sql table AR_LOOKUPS which depend on lang
    CREATE OR REPLACE VIEW AR_LOOKUPS
    WHERE LV.LANGUAGE = userenv('LANG')
       and LV.VIEW_APPLICATION_ID = 222
       and LV.SECURITY_GROUP_ID = 0;and plz post result of test

  • How can I activate an old version of Photoshop that I've loaded on my new tablet? The web activation doesn't work, and when I call the number, it says it's not being used anymore. Meanwhile, I'm down to 13 days till it stops working due to not being activ

    How can I activate an old version of Photoshop that I've loaded on my new tablet? The web activation doesn't work, and when I call the number, it says it's not being used anymore. Meanwhile, I'm down to 13 days till it stops working due to not being activated. HELP?  I really need to continue using this product for my home business.It works fine not activated but the threat is that it will stop working in 13 more days if I don't get it activated, and none of the activation methods they list seem to work.

    The new serial number is to the right of your chosen download.

  • Cross browser testing : Modifier Keys playback actions not working in chrome and Firefox

    Hi,
    In my work flow I have to select multiple items in list.So I have recorded 'Ctrl+Click' action to select list items.In Chrome and Firefox it is not selecting multiple Items.
    Even Ctrl+A,Ctrl+C,Ctrl+V also not working in chrome and Firefox.Complete modifier keys support is not observed in chrome and Firefox.Let me Know how to automate modifier keys actions in cross browser?
    Regards,
    Nagasree.

    Hi Nagasree,
    Welcome to MSDN forums.
    First,please make sure the Chrome and Firefox is supported by cross browser testing.
    Latest version of Chrome and Firefox supported by cross browser testing are Chrome version 38.0.2125.111 and
    Firefox 33.
    I doubt whether Chrome and Firefox in cross browser testing don’t support automating modifier keys or there is anything wrong on it if you are using supported browser. Since this issue is related to the Extensions tool
    Selenium components for Coded UI Cross Browser Testing, if possible, I suggest you post this
    issue here, click “Q AND A”, and then you could post this issue there, you would get dedicated
    support there.
    Thanks for your understanding.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I have rented a movie on my ipad. It did not download due to not being on wifi at the time.  I know I completed the rental because my gift card balance went down $3.99 plus tax.  How do I find where to download the movie?

    I have rented a movie on my ipad. It did not download due to not being on wifi at the time.  I know I completed the rental because my gift card balance went down $3.99 plus tax.  How do I find where to download the movie?

    But now I can't find the actual movie...I go to iTunes to purchases and view movies , to downloads and searched the title of the movie...I can see an icon of it and it is in a separate place from other purchases but it says downloaded in faded lettering. Where is it?
    If you can't find the movie you downloaded on your iPad, iPhone or iPod Touch, check inside your Videos App

  • Disk Utility says of USB Drive - "This partition can't be modified" "This disk is not writeable and cannot be partitioned"

    Several months ago I bought a 64GB PNY USB memory stick to transpord data quickly.
    It seemed to work fine.  I could format it as a Mac partition and use it.  I hardly ever need
    it so I just put it away.
    Today I wanted to use it to put a file on and take it to the Kinko's/FedEx to print, and I
    find I cannot mount it on any of my computers, iMac, MacMini or MacBookPro.
    In Disk Utility virtually everything is greyed out.
    Disk Utility says: "This partition can't be modified" "This disk is not writeable and cannot be partitioned"
    If I try to mount it, it says "This disk cannot be mounted"
    There is no physical read-only switch or setting on the disk that I can see and it is very small.
    I has a Mac OS installed on it, so I wonder if that is a problem?  I should be able to write over that
    or reformat it I would think.

    Thanks for these replies. 
    I've got regular time machine backups and just backed up some of my data by copying some key folders to an external drive.  I'm bit paranoid about backup integrity and would ideally like to do another full backup to a different drive using a system other than time machine, in the event that something goes wrong with the time machine backup.  Any recommendations on good and affordable backup software to do a backup of my TM backup?
    One other question: I seem to encounter problems like this pretty frequently.  I'd say once a year or so, my drive fails completely or gets near enough to failing that I have to wipe and restore.  (I've never had a TM backup fail to work, though the last go around there were some hiccups which has led to my backup paranoia.)  I've had this happen on multiple computers, so I'm becoming pretty convinced that the problem lies somewhere in my data.  Is it possible (even likely) that there's something in my data causing this recurring problem?  If so, is there anything I might be able to do to try and pinpoint and address this problem?  I'd love to go one year without having to wipe/restore my machine!
    For a while I thought I just had bad luck.  But I think this is like the 4th or 5th time this has happened in the past 4 years and every time, I'm restoring from a backup, so I come back with the same data.  It's the one constant since I've had 3 different machines over this same time period. 

  • Operation ' Modify attribute TSTATE ' could not be carried out for Petition

    Hi Experts, when try compress a infocube appear this error
    Operation ' Modify attribute TSTATE ' could not be carried out for Petition xxxx
    The petition status is green.
    Any idea?
    Enrique.

    hi arvind,
    i tried using the both the methods you had mentioned, i am able to delete the request at that moment but its again coming back, i think as it is a partially activated request so may be that is why it is happening
    but the problem is still there
    regards
    Laksh

  • Modifying cold fusion script not picked up by iis

    We are running coldfusion 7, using iis6 on windows 2003 server. I am not a cold fusion developer and this is the only coldfusion script we have created by a previous developer. I needed to make some simple modifications to the script, including a change in the title. After having restarted IIS the modified script is still not showing the new title. What do I need to do for iis to show the changes in the cfm file?

    It's in the CF Administrator, which is separate from the JRun Admin Console. You can often get to the CF Administrator with a URL like this:
    http://your_server/CFIDE/administrator/
    Dave Watts, CTO, Fig Leaf Software
    http://www.figleaf.com/
    http://training.figleaf.com/
    Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
    GSA Schedule, and provides the highest caliber vendor-authorized
    instruction at our training centers, online, or onsite.
    Read this before you post:
    http://forums.adobe.com/thread/607238

  • [svn:fx-trunk] 12077: Although Spark RichText does not support link formats , modifying compiled FXG to not generate ActionScript code that will cause compile time exceptions .

    Revision: 12077
    Revision: 12077
    Author:   [email protected]
    Date:     2009-11-20 18:16:32 -0800 (Fri, 20 Nov 2009)
    Log Message:
    Although Spark RichText does not support link formats, modifying compiled FXG to not generate ActionScript code that will cause compile time exceptions.
    Removing references to Flex Builder 3 in RPC.
    QE notes: N/A
    Doc notes: N/A
    Bugs:
    SDK-24305 - Link format property nodes cause errors on RichText in FXG 2.0
    SDK-24322 - A couple references to Flex Builder 3 in Flex 4 LangRef (and code comments)
    Reviewer: Deepa
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24305
        http://bugs.adobe.com/jira/browse/SDK-24322
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/XMLDecoder.as
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/fxg/FlexFXG2SWFTranscoder.java

  • [svn:fx-trunk] 14047: Modifying framework projects to not depend on the FLEX_SDK linked resource .

    Revision: 14047
    Revision: 14047
    Author:   [email protected]
    Date:     2010-02-08 14:58:51 -0800 (Mon, 08 Feb 2010)
    Log Message:
    Modifying framework projects to not depend on the FLEX_SDK linked resource. Instead, we use the $ token (relative path to frameworks/) to point directly to the required swcs in the libs folder. This greatly simplifies the files, since there is now no need to exclude swcs from the SDK.
    Also, modified the projects such that the spark and framework projects may be imported together to FB without any other projects by having them depend on the swcs in the libs folder rather than the projects. However, other projects that depend on spark and framework will depend on the projects still. Thus, you must import spark and framework projects before importing the others.
    A developer working on the textlayout and osmf projects will have to replace the swcs on the build path in the spark/framework projects with their respective projects.
    No code changes.
    QE notes: N/A
    Doc notes: N/A
    Bugs: None
    Reviewer: Pete
    Tests run: checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/airframework/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/airspark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/airspark/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/flex/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/flex/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/framework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/framework/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/osmf/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/osmf/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/rpc/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/rpc/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/spark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/spark/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/sparkskins/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/sparkskins/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/textLayout/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/textLayout/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/wireframe/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/wireframe/.flexLibProperties

  • My iPad and iPhone4s both state "NOT ENOUGH STORAGE" and can't backup due to not enough iCloud storage available in the cloud.  I have sync my phone but I still get the msg - I will sync the iPad as well - both devices receive my mail as well as Acer pc.?

    My iPad and iPhone4s both state "NOT ENOUGH STORAGE" and can't backup due to not enough iCloud storage available in the cloud.
      I have sync my phone to my pc using itunes, but I still get the msg on the phone - could it be that the ipad and phone both receive the same mail?  I did go into Settings - icloud - and shut off Mail on phone - I will sync the iPad as well - both devices receive my mail as well as Acer pc.?  thank you -

    Not having enough storage in your iCloud account isn't caused by using your iCloud email account on your device.  It may be caused by having lots of email in your account though.
    Go to Settings>iCloud>Storage & Backup>Manage Storage to see what is taking up the space in your account.

  • MD04 Problem(MRP Parameters for plant not maintained)

    Sir in tcode MD04 i am getting error message no. 61273 (MRP Parameters for plant not maintained).What to do?
    i am online.

    Hi
    Maintain plant parameters in T code : OPPQ
    or copy plant properly
    Tarachand

Maybe you are looking for

  • Save/Open dialog crashes on opening a folder which contains multiple app. alias

    Hi: This is my first post in Apple forum, I've been searching some pages here, obviously I'm not the only one having this (or similar) problem but all existing threads are suggesting "Safe Mode" or "Disk Util" these useless things and never worked fo

  • Transfering files using drag and drop to Nano P

    I havent installed the supplied disks that came with my Nano Plus but am transfering files using drag and drop from "my music" folder on my computer to the Nano. These files are stored on my computer as the Name of the Artist as the folder name with

  • ITunes 11.1.3 no sound output

    However, VLC and Quick Time Player both produce sound.  I have reinstalled iTunes and the problem persists. Any suggestions? 

  • XmlDoc.load

    Get following error on only 1 site that I use daily (an educational site): Result of expression 'xmlDoc.load' [undefined] is not a function I think this may be causing problems on a link further down the chain where I get no text, only a header. How

  • CCM - Device update issue

    Hi person, I have an issue about a Cisco Unified CallManager 5.1.2.1000-11. When updating any information of a device (a phone 7911) and then clicking in "Save" I receive a message box with the following text: "Operation Completes By Date/time must b