Let end users change AutoAttendant Gretting

Hi
I created a AutoAttendant and is working fine whit extension 150, i now need to let a end user be able to change the Greeting Message (this needs to be change daily), i follow the instructions on this guide
http://my.safaribooksonline.com/book/certification/ccna/9780132904087/chapter-7dot-cisco-unity-connection-and-cisco-unified-presence/ch07lev1sec7_html
I make a end user a Call Handler Owner, now when the end user i try to log in into the Cisco Unity Connection Administration gets a Not Authorized message and cant navigate to change the gretting, is there a specific URL for the end user to log in and change the gretting or what am i missing on the configuration ? i need to let the end user have a easy access to change the gretting.
Regards.

hi Mario,
The call handler "owner" or call handler administrator config will give the user the ability to change the greetings via the phone/TUI only. Not via any url and using the media master as indicated here;
Using the Cisco Unity Greetings Administrator to Record or Rerecord Call Handler Greetings
The Cisco Unity Greetings Administrator allows you—or the call handler owners that you assign—to manage call handler greetings from any phone. The owner of the call handler can be any user or system distribution list.
http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/connection/7x/administration/guide/7xcucsagx/7xcucsag150.html
Cheers!
Rob

Similar Messages

  • Let end user to set up the query

    Hi all!
    Is there a way to let end user to set up a query/report with forms?
    = users can use a form (whit predefined values) to determine which column(s) shows in the result and can add filters before submit.
    Because a cube is stored in relational tables i think it's not an olap question.
    But here is why i asked this:
    I make an application that query an olap cube. I can make reports with apex from the cube view and from dimension views. But i want to let users to select from the available dimensons and measures and set filters on selected dimensions (on first page) using a form. When user submit the form the second page shows the result.
    Thanks
    Edited by: qenchi on 2009.08.09. 7:27

    Hi,
    This is what I've done in that application example.
    1 - I have two pages. Page 1 is the select columns and filters page and Page 2 is the report
    2 - On page 1, I have created a PL/SQL page process, called P1_CREATE_COLLECTION, that runs "Before Header". This is unconditional and has a Source Process of:
    BEGIN
    IF NOT APEX_COLLECTION.COLLECTION_EXISTS('FILTERING') THEN
      APEX_COLLECTION.CREATE_COLLECTION_FROM_QUERY('FILTERING', 'SELECT COLUMN_NAME, DATA_TYPE, ''Y'' SHOW_YN, '''' FILTER FROM ALL_TAB_COLUMNS WHERE OWNER = ''#OWNER#'' AND TABLE_NAME = ''EMP3'' ORDER BY COLUMN_ID');
    END IF;
    END;ALL_TAB_COLUMNS contains records for all columns in all tables. In this example, I'm retrieving a list of all of the columns in the EMP3 table (which is just a copy of EMP plus a few extra fields). I'm also getting the data type for the column, setting the "Show" value to Y and starting with an empty filter string for each column. The actual data is retrieved into a collection called FILTERING. In this way, I can store all of the user's selections for use on Page 2. The IF test just ensures that I don't overwrite the collection if it already exists - that is so that I can keep any settings that the user made when they were last on Page 1.
    This collection gives allows me to store the following:
    SEQ_ID - the collection's sequence ID
    C001 - The COLUMN_NAME
    C002 - The DATA_TYPE
    C003 - The Y/N flag for SHOW_IN_REPORT
    C004 - The filter to be applied to the column
    3 - I created a "SQL Query (updateable report)" report. To do this you need to create a report using the SQL Wizard - any SQL statement will do - then you can change the report type from "SQL Query" to "SQL Query (updateable report)". I haven't found another way to do this.
    The report's SQL was changed to:
    SELECT APEX_ITEM.HIDDEN(1, SEQ_ID) || C001 COLUMN_NAME,
    C002 DATA_TYPE,
    APEX_ITEM.SELECT_LIST(3, C003, 'Yes;Y,No;N') SHOW_IN_REPORT,
    APEX_ITEM.TEXT(4, C004) FILTER
    FROM APEX_COLLECTIONS
    WHERE COLLECTION_NAME = 'FILTERING'
    ORDER BY SEQ_IDThis is a "manual tabular form" and is based on the collection created by my process.
    4 - I then created a button on the page called P1_CREATE_REPORT. This is just a normal submit button - the branch for this is to Page 2. On the branch, I ticked the option to "reset pagination for this page"
    5 - Finally, on Page 1, I created a PL/SQL process, triggered by my button, and in the "On Submit - After Computations and Validations" process point. The Process code for this is:
    BEGIN
    FOR x IN 1..APEX_APPLICATION.G_F01.COUNT
    LOOP
    APEX_COLLECTION.UPDATE_MEMBER_ATTRIBUTE(p_collection_name=>'FILTERING', p_seq=>APEX_APPLICATION.G_F01(x), p_attr_number=>3, p_attr_value=>APEX_APPLICATION.G_F03(x));
    APEX_COLLECTION.UPDATE_MEMBER_ATTRIBUTE(p_collection_name=>'FILTERING', p_seq=>APEX_APPLICATION.G_F01(x), p_attr_number=>4, p_attr_value=>APEX_APPLICATION.G_F04(x));
    END LOOP;
    END;This loops through the tabular form after it is submitted and updates the collection with the Y/N Show values and the filters
    Now onto Page 2
    1 - I created a SQL Query report using *SELECT 1 FROM DUAL".  When created, I changed the report type to "SQL Query (PL/SQL function body returning SQL query)" and change the Region Source to the following code:
    DECLARE
    vSQL VARCHAR2(8000);
    vQ CHAR(1);
    vSEP1 VARCHAR2(2);
    vSEP2 VARCHAR2(6);
    BEGIN
    vQ := CHR(39);
    vSEP1 := '';
    vSEP2 := 'WHERE ';
    vSQL := 'SELECT ';
    FOR x IN (SELECT SEQ_ID, C001, C002, C003, C004 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME = 'FILTERING' ORDER BY SEQ_ID)
    LOOP
      IF x.C003 = 'Y' THEN
       vSQL := vSQL || vSEP1 || x.C001;
       vSEP1 := ', ';
      END IF;
    END LOOP;
    vSQL := vSQL || ' FROM EMP3 ';
    FOR x IN (SELECT SEQ_ID, C001, C002, C003, C004 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME = 'FILTERING' ORDER BY SEQ_ID)
    LOOP
      IF LENGTH(x.C004) > 0 THEN
       IF x.C002 = 'VARCHAR2' THEN
        vSQL := vSQL || vSEP2 || x.C001 || '=' || vQ || x.C004 || vQ;
       ELSIF x.C002 = 'DATE' THEN
        vSQL := vSQL || vSEP2 || x.C001 || '=TO_DATE(' || vQ || x.C004 || vQ || ',' || vQ || 'DD/MM/YYYY' || vQ || ')';
       ELSE
        vSQL := vSQL || vSEP2 || x.C001 || '=' || x.C004;
       END IF;
       vSEP2 := 'AND ';
      END IF;
    END LOOP;
    RETURN vSQL;
    END;This loops through the FILTERING collection twice. The first time to build up a SQL SELECT statement containing all of the columns in EMP3 that the user wants to show
    The second loop then builds up a WHERE clause for the statement based on any filters the user wants to apply. I have used the DATA_TYPE values stored in the C004 field to identify the format of the value in the WHERE clause - either VARCHAR2, which puts the string in quotes, DATE, which casts the string as a date using DD/MM/YYYY format and then any other value (which should be NUMBER), which just outputs the value entered.
    Note that I've used vQ to hold the quote character (CHR(39)) as I find this easier than trying to work out how many single, double or triple quotes I need to get quotes within the string.
    All of this just builds up a string (vSQL) which is returned to Apex at the end of the code so that it can build the report.
    Note that I have also ticked the option under the Region Source setting to show "Use Generic Column Names (parse query at runtime only)". This needs to be done as the columns are changeable.
    2 - I created a button called P2_BACK_BUTTON which branches back to Page 1
    Obviously, this is a very basic example. You could, for instance, go one step further and allow the user to pick the table (SELECT TABLE_NAME FROM ALL_TABLES) or view (SELECT VIEW_NAME FROM ALL_VIEWS). As the final report is being constructed as a string, it doesn't matter how the table/view name is derived. You could also add popups for calendars and calculators, where appropriate, on Page 1.
    Andy

  • Java.lang.NullPointerException in end user change password page

    Hi All
    I need to notify a user whenever he changes his password. when i log in to the user page and change password i get java.lang.NullPointerException.
    Any ideas???
    Help is appreciated.
    Thanks

    What exactly are you clicking on in the end user page? Your problem could be a number of things. You can get this error when the xml in a file it is referencing is not properly formed. e.g if you had not properly closed a tag in a config file.

  • Tabular form - let end user hide/show columns

    I have been requested to create a tabular form, but end user should have ability to hide/show columns, also they should rename the column headers. So I have created a table with column name called "attribute1", attribute2", etc. Based on that table, create a tabular form, which has column header as "attrbute1", "attrbute2", etc. Now end user wants to rename attrbute1 as he wants. And he/she also wants to have a link called "hide/show" next to the column header, so end user can control which column they want to hide/show. It is so easy to do that control from developer side, however, shift that function to end user from front end seems very difficult to me. I have search around and haven't found any good solution yet. Please help. Thanks advance.

    Hi,
    Anyone, can help me with this scenario.
    Brgds,
    Mini

  • Let end user request a role

    I want my end users to be able to request roles for themselves.
    Is there a out-of-the-box way to do this, or do I have to implement it myself?
    If I have to do it myself, please point me in the right direction.
    Thanks in advance
    Stefan

    Hi,
    Thnk u for u r quick reply.....
    i am using... IDM8.1
    I will Expain u the problem clearly...
    I created an ITRole(IT1) and assigned AD as optional resource.After tht i created Business role(B1) and assigened the ITRole(IT1) to tht roleB1.I assigned the B1 to the user . But i observed tht the resource(AD) is not Assigned to the user.So my question is how to assign the AD to tht user..one more surprising thing is the AD resource is not there in the user's available resources list also(End user and Admin interfaces).Am i doing anything wrong??
    Tnx in advance......
    Regards,
    Kavitha

  • End User Doc. Create / Change Customer Master Data

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. >
    Hi Experts,
    I would appreciate, if anyone of you could forward me the end user documents for creating & changing customer master data.
    sonicasmailbox at rediff
    Points will be assigned.
    Regards
    Sonica

    Hi
    Refer to help.sap.com for creating customer master data.
    Copy this to word document and it will be become user manual.
    http://help.sap.com/saphelp_ides/helpdata/en/47/ef8c64124811d2806f0000e8a495b3/content.htm
    Additionally refer to this weblink
    http://web.mit.edu/cao/www/AR/ar1/ar_FD01.htm - This if for FICO only.
    Changing customer master record.
    Use T.Code XD02.
    Enter Customer No,Company code,Sales Org, Distribution channel and division and press Enter or
    Enter Customer no,company code and click on customer's sales area, you will see Sales Org, Distribution channel and division,select the Sales org,Sales Org, Distribution channel and division and press enter.
    You can make necessary changes to customer master
    Please let me know if you need more information.
    Asssign points if useful.
    Regards
    Sridhar M

  • Is it possible for the end user to make changes to business processes?

    Hi
    I'm investigating Oracle's BPEL Processor Manager and BPM technologies for a large project we are going to do. The client wants to be able to change/create new business processes which would mean different web services being called in different orders after different amounts of time.
    Is it possible to allow end users to change business processes in a SOA environment with a portal using Oracle's offerings. This would eliminate JDeveloper & the designer and the need for knowledge of the underlying architecture.
    The only way around this would be getting users to edit the business rules but that would only work in a linear environment with lots of decisions won't it?
    Regards
    Sean

    I will leave your real question to be answered by product folks.
    BPEL does have capabilities that let you change how a given process will execute. For example, it's normal to have a process that will react differently depending on an incoming message (CancelMessage processes one way, SubscribeMessage does something else, ...). You can have the partnerlink that is invoked be selected based on a variable, a rule, a message element, a property in a property file or a preference set in the BPEL console. However, these all fail to answer your original question, because they require the original designer to code it all, not giving someone the capability to add a new WSDL on the fly with JDeveloper.
    You can also overlay endpoints, like if the user is in California, send to the west-coast server instead of the east coast. There is (was?) a tutorial about overlaying WSDLs.
    Andy

  • Header text change in End User Logon page

    Hello All,
    Could you please let me know where can i change the Header text of End User logon page which is SAP GRC Access Control, 10 to an different description.
    Thanks in advance.

    Hi Abhi,
    Go to SE80
    Go to Package GRAC_ACCESS_REQUEST -> Web Dynpro -> Web Dynpro Application -> GRAC_UIBB_END_USER_LOGIN
    Open the webdynpro in Admin mode and then right click on the page and you can Edit whatever text you want in End User Logon page as well as can enable and disable fields according to your requirement.
    Regards,
    Madhu

  • End User Transaction for Mass Change Sales Orders

    Hello,
    Transaction MASS can be used to change sales orders using object type BUS2032, however, end users are not allowed access to MASS.
    In most other cases, the object types can be accessed by individual transactions, for example, MEMASSPO for BUS2012 and XD99 for KNA1.
    But I cannot seem to find a similar transaction for object type BUS2032, does anyone know whether one exists or how to create such a shortcut.
    Thanks,
    Jake.

    Hi
    See SAP Note 483303 - BUS2032: Only sales orders of category VBAK-VBTYP = 'C'
    Regards
    Eduardo

  • Is there a way for end users to give their manager access to change their Out of Office, without an admin involved?

    Our end users need to be able to give their managers access to enable their out of office. 
    question 1.  Can this be done without giving them full access?
    question 2.  If they need full access, can the end user themselves give this access? (I've tried giving another user "owner" rights, but the user still can't seem to open my calendar from OWA to adjust my out of office)
    question 3.  Can this be done without an Sys Admin being involved?

    You can create a RBAC role for each manager scoped to each of their employees that lets them run the Set-MailboxAutoReplyConfiguration cmdlet on the exchange server. Otherwise they will need full access to the users mailbox which an admin would have
    to grant, the end user can not grant this permission. Then they can open the other users mailbox in OWA and set the OOF
    DJ Grijalva | MCITP: EMA 2007/2010 SPA 2010 | www.persistentcerebro.com

  • Is there a way to prevent an end-user from changing their own password?

    All you guru's out there, I need your help. Is there a way to prevent an end-user from changing their own password? Is there a function or procedure I can create or what?

    In this case, you do not want someone (whoever they are DBA etc) to connect as that
    particuler user to change the password.Yes, but I wouldn't expect the users to[i] know that password. The connnect would be handled automatically, behind the scenes.
    The clear implication of the OP's question and response was that users would not be allowed to change their own passwords. I'm guessing this is in response to a policy that says users mustn't have simple passwords like 123abc or mom. In such a scenario a better approach would be to apply regexp to a user's password to ensure it contains a mix of letters, numbers, punctuation, etc to achieve the desired level of complexity.
    So questions, should not be regarded as daft Agreed, but the same is unfortunately not always true of business decisions. As the OP has told us not to ask we cannot know why they want to do this. Personally, I think a user's individual password should always be their responsibility; anything else strikes me as insecure. YMMV.
    Cheers, APC

  • Stop the end user if changes are not saved

    Hi,
    Is there a way to show a warning to the end user when they try to navigate outside a page where there are any unsaved changes?
    Thanks.
    -Sree

    Sree,
    Try [url http://stegemanoracle.wordpress.com/2006/03/04/a-re-usable-prompt-to-save-changes-component/]this
    John

  • End user have ability to change font style in text field of interactive pdf form?

    Does the end user of an interactive pdf form able to change the font style, i.e.: make something bold or underline a word in a text field?
    I am making a form with text fields and the end user would like the ability to make something bold or underline it.. I do not see anywhere in acrobat that allows styles to be changed.
    I have created the form in Indesign > saved it as an interactive pdf and brought it into Acrobat.

    Thank you for the quick response! Do you set this in Indesign before exporting or do you set this in Acrobat? I am in Acrobat 10.1.10 and when I go to properties it doesn't give me  'options' to choose from.

  • How to create a PDF form which can be filled out and saved with change by end user

    I am using Acrobat 8.0 - Mac - and want to create a PDF with text form fields. Simple one page file. The end user needs to be able to fill out the text form fields and SAVE those changes. so far they can fill out the fields but can not save the file with changes.
    Thanks

    Sandee Cohen wrote:
    Phillip Jones said:
    After the uproar from Users about Standard being little more than Apple's Print to PDF; there hasn't been a Standard version for Mac since version 6. So many people were use the features in Acrobat 5  to create Forms that could be filled out by Reader. when the bought 6 Standard they were ready to hang the CEO of Adobe in effigy. When 7 came out is was Pro only.
    I'm confused.
    The current version of Acrobat comes in Standard, Pro, and Extended Pro versions. Only the Pro version is on the Mac. But that doesn't mean that the Mac community wouldn't have wanted the Standard version of Acrobat.
    The Standard version is hardly a mimic of Apple's Save to PDF. The most important features of Standard is to enable Rights in Reader as well as add comments, form fields. etc.
    The only thing that Standard does do are the pre-press and production features of Pro.
    However, given the difference in price ($450 vs. $300) there is ample reason for business on the Mac OS to buy Standard--if they could buy it.
    I didn't say PC users.
    I should have said Mac users. Because the Print system and sytem by which Mac users view anything is based on the PDF engine. The Mac sytem can do anything Standard Standrd could do. although in order to placate Adobe the pdf engine used is a version or two behind. If the Mac OS could do everything Acrobat could do there would be no reason for Adobe to provide Acrobat Or Reader for Mac.
    And you basing your assumption of what Standard can do a PC. Standard on Mac is basically Mac's Print to PDF  wrapped in an Adobe Package. It shad no ability to confer rights to reader (that didn't come to Acrobat Mac until Version 8) and was unable to to create forms. The current version of Acrobat PC comes as Standard, Pro, And extended. There never has and never will be an extended pro version for Mac (that adds the ability to create XML based forms) They don't have the interest. To adobe is little more than a Play toy. Because Windows has so much clout They can dictate what they want. Apple not so much. One advantage Mac does have is that Forms creator is built in. on PC its an adon (it free but an addon or was).
    Now back in OS 9 days and Acrobat 5.x Acrobat for Mac and PC were equal. except to have the print press features Mac users had to pay an addition $200.00.  (It exactly as you described in your last sentence - except Acrobat 5.x without the printpress and The Acrobat 5 without Print press was $299.00 and $499.00 with Print press.) I know I've used Acrobat since version 3.

  • Obiee 11g How to let user change password

    obiee 11g How to let user change password ?
    i not mean use weblogic console。 normal user how to change password。

    With 11g, OBIEE essentially uses the 10g notion of external authentication.
    By default, this is done by the WLS (Weblogic) LDAP identity store, but it may be done by another supported Authenticator either within WLS, or in the OBIS meta data (i.e. Custom Authenticator or LDAP). As such, OBIEE no longer has any control over user passwords; this is why the steps referenced in note 1102353.1 do not apply to OBIEE 11g, but only to internal/repository-defined users in OBIEE 10g.
    So, as with password maintenance in OBIEE 10g when an external authenticator is used, it is within that external authentication system that password is changed, not within OBIEE 11g. There is no option in OBIEE 11g to allow users to change passwords.
    There are two work-arounds with which you can change your password:
    1) From the Weblogic administration console/WLST.
    You need to give such user access into Weblogic console or access to browse through involved MBean hierarchy and other modify permissions. Changing the password using WLST instance is covered here:
    Ideally, the console and WLST approaches are used by Administration accounts to manage other users. But the console and WLST can be made to allow other users to change passwords (which will be more or less like carrying out an administrative task by users themselves)
    2) Using a programmatic approach.
    Here the application that intends to provide password change functionality to its users should implement this functionality on its own (GUI plus call to the relevant Weblogic API). Weblogic provides an MBean that the application can use to accomplish this. See here for more information.
    An enhancement request exists for this functionality. This is unpublished bug 11836170 - enable non admin users to change passwords in obiee 11g.

Maybe you are looking for

  • Process of replacement in case of vehicle returns

    scenario: the vehicle came returned;so now client wants to replace this to other; how can v do it? plz help regarding the above. thanks in advance

  • Find corresponding BPM to message in SXMB

    Hello everybody, we made a mass test: 500 IDOCs where send through BPM to call a JDBC insert. Now there is just one insert with an error and I want to find the corresponding BPM to find out, which  IDOC caused the error. Where is the link from SXMB_M

  • Homeshare iPad TV Shows now not listing correctly on device (Impossible to select anything)

    I have a major issue (Since the last iPad (2nd Gen) Firmware Update 3 days ago) - I have around 389 TV Shows (7,858 Episodes) all worked fine until 3 days ago. I can now only see (visible) 6 Shows on my iPad using Homeshare, and 99.8% of my TV episod

  • Prompt parameter in Report Title

    I have created one summary report and this report has two drill downs detail reports. First Summary Report is Sales report by Country, Second report is sales report by State and Third report is Detail Sales Report. I am passing parameter Country on s

  • Unknown computer appears in iCloud drive setup

    While upgrading to both Yosemite and iOS8, an unknown iMac has appeared in the list of devices that currently have access to my documents in iCloud. How do I get rid of this device?