PIN code and FAC for billing purpose

hi all,
We are configuring call manager (CUCM) version 8.6 so, at this point we are facing some issues on the functionalities:
A user has to be having a pin code associated to his phone then an authorization code that allow him to call OFFNET calls,
Now the user must have one code for private phone calls and one code for official calls for billing purpose
This user has to be able to change his pin code himself, but so long as it is associated to his phone they will still know that
His the one who made the call. In fact event the admin is not supposed to know these.
Can anyone please give me any idea on how to go on this. because CMC and FAC do not meet these requirement
Thank you

Here's my guide: How to: Unlock System Lock PIN Code

Similar Messages

  • How to design a table for Billing purpose

    hi all
    I want to develop a software for Billing purpose
    A company wants to record all sales in computer and at the month end wants to print out billing for all clients I have design this in foxpro and in Foxpro we did that when new month will start then new table generate like Crd_0707 (Credit month year).
    now I want to develop in oracle how I should start this project I mean who can I design tables.
    thanks

    If you understand relational theory and design shik Date's books. What you need to understand before porting an application from another database to Oracle is how Oracle works.
    If you do not know relational design then you need to learn it long before you start any porting project.
    If you know relational design then read the Application Developers Guide - Fundamentals, plus the first few chapters of the SQL manual up until the syntax diagrams start. These chapters identify the single row and aggregate functions that Oracle provides and introduce optimizer hints for tuning while the later chapters provide the syntax for DDL: create table, create view, etc .... You will also want to read the PL/SQL Users Guide and Reference then look at the supplied PL/SQL Packages and Types manual.
    After reading all this you meet the minimum requirements to work with Oracle, and I really do mean minimum.
    HTH -- Mark D Powell --

  • Lost my SIM card's PIN code and PUK code!!!!

    I lost my SIM card's PIN codes and PUK code.
    Our mobile provider is not helpful. We have to give around $100 to unlock these codes. I cannot spend $100 for it. I'm from Myanmar (Burma).
    My phone is Nokia E63. But I still got that problem in all other handsets like; Nokia 6300 and Nokia 1280
    Is there any ways to unlock my phone?
    Please help me.
    Queenie

    Exactly.
    Either way round you must remember that the SIM and any codes related to it are the property of your network. THEY control what happens to it.
    http://techyoddsandends.blogspot.com/2009/09/pin-code-puk-code-security-code-lock.html
    Message Edited by grschinon on 21-Nov-2009 11:44 AM
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • If I have my product code and cd for Adobe Creative Suite 5 can I obtain the serial number?

    If I have my product code and cd for Adobe Creative Suite 5 can I obtain the serial number? I had the serial number on my college email which I can't access now that I've graduated.

    adobe support might be able to help you,
    contact adobe support, https://helpx.adobe.com/contact.html

  • My AppStore wont update my apps because my old iTunes account keeps coming up and asks for billing info HELP!!!

    My AppStore wont update my apps because my old iTunes account keeps coming up and asks for billing info HELP!!!

    Apps are always associated with the Apple ID that was used to purchase them. This cannot be changed. To avoid getting the request you are seeing delete all apps that request the former Apple ID and download them again.
    Any apps for which you paid a fee will require that you purchase them again.

  • Custom process code and FM for custom IDoc...

    Hello Experts,
    I created a custom IDoc based from ARTMAS05 IDoc. This is because we only need 3 segments and
    the standard idoc(Artmas05) contains so many segments that we need.
    Now, will I create a custom process code and FM for this? how do I go about this?
    Thank you guys and take care!

    Hello,
                 Here are the Steps that we need to be following while creating a Custom Process Code with Custom Function Module. ( Since the Segments to be handled are very Less, I am recommending that you go for a Custom Function Module).
    1. Go to SE37 Create a Function Module. Please ensure to Create it with the IMPORT / EXPORT /TABLES parameters exactly in the way that they exist in any Standard SAP Inbound FM (Refer to IDOC_INPUT_ORDERS for example).
    2. Once our FM is Ready (Need not be Complete with the Code to go ahead with the Process Code Creation) and Active, the next Step is to Create an Entry in the Transaction Code BD51 where we will register the Function Module.
    3. Next, we'll have to go to T-Code WE57 where we'll have to make an entry for the Function Module with the IDoc Type & Message Type.
    4. Finally, go to WE42 and Create a New Process Code and assign the Function Module and the Message Type.
    NOTE 1 : The Process Code is, as we know, Client Dependent. So, once you create a Process Code, we need to have it migrated to the Testing Environment to Start & Carry Out Testing.
    NOTE 2: If Step 2 & 3 are missing, then we'll not be able to assign the Function Module in WE42 while Creating Process Code.
    Hope it was helpful.
    Thanks and Regards,
    Venkata Phani Prasad K

  • How do I do use the custom code and format for a percentage with 2 decimals in Report Builder 3.0?

    In Report Builder 3.0, I have the following custom code entered:
      Public Function SafeDivide(Numerator as String, Denominator as String) as String
    Try
    If Numerator = “” or Denominator = “” then
    Return “-“
    End if
    If Numerator = “-“ or Denominator = “-“ then
    Return “-“
    End If
    If CDbl(Numerator) =0 or CDbl(Denominator) = 0 then
    Return “-“
    End if
    If IsNothing(Numerator) or IsNothing(Denominator) then
    Return "-"
    End if
    Return Val( ( (CDbl(Numerator) / CDbl(Denominator) )*100 ) )
    Catch
    Return "-"
    End Try
    End Function
    I call the custom code in the cell with the following equation:
      =Code.SafeDivide(sum(Fields!TY_UNITS.Value)-sum(Fields!LY_UNITS.Value),sum(Fields!LY_UNITS.Value))
    I have the format for the cell set to 0.00%, but it’s not being followed.
    I want the result to be formatted as a Percentage, but instead I get values like: 
    -78.9473684210
    80
    300
    -100
    I have the format for the cell set to 0.00%, but it’s not being followed.
    How do I do use the custom code and format for a percentage with 2 decimals?

    Hi AngP,
    After testing the issue in my local environment, I can reproduce it. Based on my research, I find this issue is caused by the type of Units_VAR_Percentage cell is string, while the type of CDbl(Parameters!Var_Threshold.Value) is double, so they cannot be
    compared.
    To fix this issue, we can add a hidden column (Textbox91) next to the Units_VAR_Percentage column, and type =(sum(Fields!TY_UNITS.Value)-sum(Fields!LY_UNITS.Value)) /sum(Fields!LY_UNITS.Value) as the expression. Then use the expression below to control the
    BackgroundColor:
    =iif(iif(reportitems!Units_VAR_Percentage.Value=CStr(format(reportitems!Textbox91.Value,"0.00%")),reportitems!Textbox91.Value,0)>CDbl(Parameters!Var_Threshold.Value),"Yellow","PaleTurquoise")
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • FIND OUT GAPS IN TAX TO COMPARE  IN OLD AND NEW FOR BUDGETARY PURPOSE.

    CAN I HAVE EXPALINARY DOC WITH EX BUSINESS PROCESS. SPECIFICALLY TO
    FIND OUT GAPS IN TAX TO COMPARE  IN OLD AND NEW FOR BUDGETARY PURPOSE.
    THANKQ FOR IMMIDIATE RESPONSE
    Annie

    You can use DBMS_LOB.COMPARE

  • Oracle Error Code and Message for Query Timeout

    Hi,
    I need to catch the oracle error code and message for query timeout.
    I am using Oracle 9i and could not find any relevant error code/message
    for query timeout in Oracle Error Messages.
    If anyone has encountered such error messages, please let me know the
    Oracle Code or Error message.
    Thanks & Regards,
    Kanjana

    Fly is correct in that Oracle will normally let a query run forever in the absense of a user profile or dbms_resource setting that limits a users (query) resouce usage.
    The errors returned for these condition would probably vary but errors ORA-02092 "exceeded session limit on CPU usage, you are being logged off" and ORA-02093 "exceeded call limit on CPU usage" might be of interest.
    But for distributed queries Oracle does impose a time limit. See Oracle error ORA-02049 "timeout: distributed transaction waiting for lock"
    HTH -- Mark D Powell --

  • Would it be possible to have 2 shared resources, one local containing all common topics and pictures for several projects, and another one remote containing all topics and pictures for collaboration purposes

    Hi,
    I was wondering, now that I discovered the advantages of Resource Manger, if it would be possible to have 2 shared resources, one local with common topics and pictures for several projects, and another one, remote, containing the whole projects, i.e. topics and pictures, for collaboration purposes.
    The local one I intend to use it for my purposes to have common items (topics & pictures) updated in all projects where they appear, and the remote one I intend to use it together with my remote colleagues that might want to do changes in the topics.
    This would mean that the common topics and pictures would be present in both resources, the local one as well as the remote one.
    Thank you.

    Thank you for your fast answer Rick.
    I was merely wondering if it would be possible w/o having to use other products outside RoboHelp.
    We are already using svn for a lot of other purposes and we are using that for the RoboHelp projects as well, however I was wondering if it would not be possible to have RoboHelp take care of the RoboHelp projects, and with svn to take care of the other things in the company.
    Eventually, if it would be possible, I would think to sync all the local projects with the remote projects, then sync the local project with the local shared resources, and at the end sync the rest of the projects with the local shared resources.

  • HELP ME PLEASE MY MAC IS ASKING FOR A SYSTEM LOCK PIN CODE AND I NEVER SET ONE HELPHELP HELP

    ok so i tried enabling iCloud/Find my mac onto my macbook pro,and it restarted to finalise the process,but when it started back up its asked me for a system lock pin code,though i never set one???? please help omg im crying

    Here's my guide: How to: Unlock System Lock PIN Code

  • Switch between pin code and swype log in

    too many swypes on my cell phone, now it is asking for  a pin code
    i have no memory of ever putting in or assigning a pin code.
    i tried a few of my normal pin passwords and have used 2 of 9 attempts before it wipes the content and all personal data on the phone.

    In case you need the info.:
    Re: fingerprint scanner

  • Transaction Codes and BAPIs for Mobile Time And Travel

    Hi All,
    Please can anyone give me the "Transaction Codes" and "BAPIs" that are needed and used for developing an application for Mobile Time and Travel.?
    Please help me out.
    Cheers,
    Anu.
    Message was edited by:
            Anuradha Yandamuri

    Hi Anu
    Below are the Functional Modules used in the standard MTT application.
    <u><b>RFC's for Time Sheet (MTS)</b></u>
    CATS_MY_GET_MASTER_DATA      
    CATS_MY_GET_PICKLIST_FIELDS  
    CATS_MY_GET_REJECTION_REASONS
    CATS_MY_GET_TEXT_ELEMENTS    
    CATS_MY_GET_TIME_DATA        
    CATS_MY_GET_BOOTSTRAP      
    CATS_MY_GET_CUSTOMIZING_DATA
    TT_GET_PICKLIST
    <u><b>RFC's for Travel Expenses (MTR)</b></u>
    WAF_TRIP_ADD_RECEIPT          
    WAF_TRIP_CHANGE_RECEIPT       
    WAF_TRIP_CREATE               
    WAF_TRIP_DELETE_RECEIPT       
    WAF_TRIP_GET                  
    WAF_TRIP_GET_CREDIT_CARD_ITEMS
    WAF_TRIP_GET_CUSTOMIZING      
    WAF_TRIP_GET_DELETED_LIST     
    WAF_TRIP_GET_LIST             
    WAF_TRIP_MODIFY               
    WAF_TRIP_PROCESS_RECEIPT      
    WAF_TRIP_RESULTS              
    Hope this helps
    Thanks
    Raj

  • Can i use sql server express 2008, 2012, and 2014 for commercial purpose?

    Good day,
    I saw that the sql server express 2005 can be used for commercial purpose without buying additional license
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/8df18025-fc2b-43c2-8476-532336ff09e3/sql-server-express-for-commercial-use?forum=sqlexpress
    the question is can I do the same for sql server express 2008,2012, and 2014?
    can I install and use sql server express 2008, 2012 and 2014 on an azure vm? specifically
    http://azure.microsoft.com/en-us/pricing/details/virtual-machines/
    A0 instance
    just an off topic question, is it required to pay to use sql server on virtual machines?
    why is there a different pricing here
    http://azure.microsoft.com/en-us/pricing/details/virtual-machines/#Sql

    Hello,
    Yes, you can use all versions SQL Server Express for commercial use. Please read more resources about it.
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/01dbc5c3-b5fe-42d4-9eb9-91683cf8285b/can-any-commercial-application-that-uses-sql-server-express-freely-redistribute-the-sql-server?forum=sqlexpress
    https://social.technet.microsoft.com/Forums/en-US/661ebf2e-ff2f-4dae-a8ae-e2179a764c09/sql-server-2012-express-in-commercial-product?forum=sqlexpress
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Could I download firefox 20 and 21 and use one for personal and one for professional purposes.

    I am currently using Firefox for my work at home job but I am also taking online classes and my school recommends Firefox as their supported browser. My Job recommends using a separate browsers for personal needs. My question is could I download lets say Firefox 22 and use that for professional purpose and download Firefox 21 and use that for completing my school work.

    You can only open the Profile Manager if all Firefox instances are closed.
    You can install multiple Firefox versions via a custom install in different installation folders and only use the older Firefox version when you really need it.<br />
    Do a custom install and install each version in its own program folder to use multiple Firefox versions.
    * https://support.mozilla.com/kb/Custom+installation+of+Firefox+on+Windows
    * http://releases.mozilla.org/pub/mozilla.org/firefox/releases/
    See:
    *http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    *http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    *http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    You can use the -no-remote command line switch to open another Firefox instance with its own profile and run multiple Firefox instances simultaneously.
    *http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile

Maybe you are looking for

  • Trying to update my ipod software so I can use my Bose Sounddock remote

    Hi, I have a 30 GB 5th Gen ipod that is running Version 1.2, apparently I need version 2.2 to use my Bose Sounddock remote. After searching the Apple website to find a way to download version 2.2, Apple kept bringing me back to the latest itunes 7 do

  • Sudden strange LR3 behavior

    Greetings - I've suddenly started having odd things happening when importing in LR 3.4.1. This started after updating to OS 10.6.7, and had been getting wierder after updating to 10.6.8. Ran the usual permission repairs before and after each update(c

  • How do I get rid of BBM Spam?

    My phone is filling up with spam BBmessages - all junk/ unreadable/ foreign characters. It went quiet for a whil e but I have had over 500 so far this afternoon alone. I have deleted messenger, but they just appear on my mainscreen. I have changed my

  • Failed to schedule Software Protection service for re-start . Error Code: 0x80040154.

    Any one ever get this error in the event Viewer? I think its some sort of permissions issue for a software installed. But I can't seam to figure it out. Bizquick

  • An error occurred while retrieving policy for this computer 0x80072F78

    SCCM 2007 SP2 MIXED MODE OSD task sequence fails in client machines belongs to a particular MP with error "An error occurred while retrieving policy for this computer 0x80072F78' when checked MPctrl.log.....don't see anything as problem, below is the