Voice call processing flow (cisco routers)

Hi,
i have a doubt regarding to, What is applied first by a router acting as a voice gateway (translation rule?, dial peer?)
i mean what is the call flow once the call starts to be processed by the router.
best regards,

Every CME is an independent system, you can surely steer calls anyway you want them to go via dial-peers, but it may get little challenging for some scenarios.  Is there a reason you do not want to propose centrelized system such as BE6K?
What is your PSTN connectivity, is it SIP or TDM based i.e. PRI? If the second I dont see any voice cards, also do you have a requirement for any analog devices? If so where are they connected to?
HTH, please rate all useful posts!
Chris

Similar Messages

  • Function to call Process-flows/mapping from SQL

    Hi All,
    Can any one of you send me the function to call process-flows/mappings (eg: I have 10 mapping/Process-flows). It is an urgent requirement pending in my final testing.
    Plz help me in this regard.
    Regards

    Hi
    All information that you need, you can find in $ORACLE_HOME/owb/rtp/sql/. BAsically all executions in owb is called through wb_rt_api_exec package.
    for example:
    declare
         variable exec_return_code number;
         procesflow varchar2(255);
    plsqlname varchar2(255);
    begin
    -- Initialize Return Code
    exec_return_code := owbrt_sys.wb_rt_api_exec.RESULT_FAILURE;
    -- Run Task
    procesflow:='WF_X1';
    plsqlname:='MP_X1'
    exec_return_code := owbrt_sys.wb_rt_api_exec.run_task('OWF_LCTN','PROCESS',procesflow, ' ' );
    if exec_return_code = 1 then
    exec_return_code := owbrt_sys.wb_rt_api_exec.run_task('STAGE_LCTN','PLSQL',plsqlname, ' ' );
    end if;
    end;
    Regards

  • Calling process flow / mapping from comand line on client machine?

    Looking to call a process flow / mapping from a commad line on the client machine. Online research has found some attempts at it, but nothing solid. I'd like to test this functionality so that I can eventually build these calls into a wrapper used by an enterprise scheduler.
    Thanks

    what oleg2 is writins is oke but I think
    it is easier to write you one wrap around this sql-call, because then you have to parse some parameters and do other additional stuff
    PROCEDURE "P_EXECUTE_WORKFLOW"("P_WORKSPACE" IN VARCHAR2, "P_LOCATION_NAME" IN VARCHAR2, "P_WORKFLOW_NAME" IN VARCHAR2, "P_CUSTOM_PARAMS" IN VARCHAR2 DEFAULT '","', "P_SYSTEM_PARAMS" IN VARCHAR2 DEFAULT '","') ;

  • Error when using wb_rt_api_exec.run_task api to call process flow

    Dear All,
    I am using OWBV 10.2.0.3 and currently have some issue with it.
    I have a process flow and I'm executing it using wb_rt_api_exec api.
    When I ran it, that process flow failes with below error messages.
    RPE-01003: An infrastructure condition prevented the request from completing.
    RPE-01038: Failed to evaluate expression null. Please modify the expression, redeploy and retry again.
    RPE-01003: An infrastructure condition prevented the request from completing.
    RPE-02227: Cannot test Control Center user OWF_MGR. This user must match the login credentials of the evaluation location configured on owning module.
    ORA-01017: invalid username/password; logon denied
    But using same user when I log on to the OWB client I can run that process flow without any error. So it seems to be there is no any sesurity issues too.
    Furthermore I have done below things.
    OWF_MGR (Processflow user), OWB_MGR (repositiry user) and RUNTIMEUSR (user used to run the processflow) all registered under control center.
    There are couple of forum post here. I followed all those and didnt work anything for me.
    Early response highly regards,
    mc
    Edited by: mc**** on Jan 19, 2011 4:13 PM

    Hi,
    look these forum threads {message:id=3140661} and {message:id=2695999}
    I think you need connect with Design Center under user which you used for executing processflow and register workflow location
    Regards,
    Oleg

  • Audit_id of a process flow

    OK, i know this is basic, but I am new to OWB. How do I get the audit_id of a process flow at execution time? I am running OWB 10.2.0.1. The Transformation Guide as well as the User's Guide says that "you can obtain the audit ID at execution time using the pseudo variable audit_id" when using the Control Center Transformations, but all of their examples use hardcoded audit_id's. There doesn't seem to be any other mention of "pseudo variable" in any of the other OWB documentation.
    thanks in advance

    Hi
    See the global expression values below, you can use PARENT_AUDIT_ID to get the calling process flows audit id:
    http://download.oracle.com/docs/cd/B28359_01/owb.111/b31278/concept_processflows.htm#CHDEJBGF
    Cheers
    David

  • Alternative to process flow

    Hi!
    I have a scenario which looks like it should be implemented with a process flow, but it requires a workflow server and I don`t want to go that way for the moment.
    I want to call a stored procedure in the source schema, which populates a temporary table in the source schema. Then I just want to map this temporary table to a cube in the target schema.
    This can`t work with a pre-mapping processor because the procedure doesn`t have any input or output parameters. It just reads some data from a table, does some processing and then populates the temporary table with the result.
    The (temporary) table is necessary because the generated data are huge (about 2.500.000 rows).
    Do I have any other options to execute this mapping, except for the process flow?
    Thank you,
    Yorgos

    Yorgos,
    Any mapping can be invoked through PLSQL. You can do it as described in http://www.oracle.com/technology/products/warehouse/sdk/web_services/ws_single_record.html
    So, instead of process flow you will have PLSQL wrapper that calls other stored procedures with your logic.
    The pseudo code for the wrapper may look like the one below:
    begin
    Populate temp table
    Call OWB mapping that populates cube.
    Other stuff (clean up)
    End
    In the earlier thread we were discussing how to pack multiple workflows together
    Calling Process Flows from other projects
    You can use the same scenario but think mapping when we say workflow.
    Vladimir

  • Call processing in duplex pairs of Routers

    Hi ,
    I would like to completely understand the call  processing in a duplex pair of  ICM routers (say Router A and Router B) .  How will the OPC know to which router the call has to be sent ?  Please  let me know.
    Regards,
    Deepak

    Deepak,
    To get better responses to your contact center related queries, always post them to Contact Center section here https://supportforums.cisco.com/community/netpro/collaboration-voice-video/contact-center?view=discussions
    This section is for queries on UC applications like Meeting Place & others etc.
    BTW, did you read the UCCE SRND guide, it has detailed explaination about UCCE Architecture. The guide can be found at http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/ipcc_enterprise/ipccenterprise8_5_1/design/guide/uccesrnd85.pdf
    Please rate helpful posts.
    GP.

  • Call a shell script from a OWB Mapping or Process Flow

    Hi,
    is it possible to call a shell script from a owb mapping or Process Flow and how can i do this?
    Greetings

    Check this :-
    http://blogs.oracle.com/warehousebuilder/2010/05/how_to_use_user_defined_activity_in_owb_process_flow.html
    Cheers
    Nawneet

  • Browsing while voice call is in process

    Hi Masters,
    I've recently updated my Curve 3G 9300 from OS5 to OS6 and have read a lot about the common issue that OS6 doesn't give us the flexibility to choose which browser to use. But it seems that my problem is uncommon since I haven't been able to see any solution to it in last 3 days of googeling.
    My problem is that I'm unable to use internet browser while talking to someone. Everytime I'm on a call and I open my BB broswer it shows ''A voice call is in process. Browsing will not be possible". I was able to use browser while being on a call in OS5 but not in OS6. However, I'm able to use broswer while being on call if using it through WIFI but not with BIS.
    Kindly Help...
    Ankur

    Plz help Masters..

  • Calling pl/sql package on different database in process flow

    Hi there
    Have a process flow which calls procedure on different database. This procedure truncates a table on the remote database.
    Please could somebody confirm we would need to set up dblinks from the owf_mgr schema to the remote database.
    New to wokflow - am i Correct in assuming the process flows run on the owf_mgr
    rather than the control center owbrt.
    Many Thanks

    Hi there,
    Thanks for the reply.
    If my understanding is correct I could have a procedure as follows.
    hkeeping.trunc_table@dblinkname('TABLE_NAME');
    Is this the case?
    Another alternative was to call directly the transformation in the process flow
    e.g. we have pl/sql package on remote database whioch truncates the remote table.
    When we try this with same procedure on same databas as owb user exists on then works fine.
    However on remote database get message below. Does this mean anything to you? How could we sort this?
    RPE-01003: An infrastructure condition prevented the request from completing.
      TEMP_PLOW:TRUNC_TABLE
    Error
    RPE-01038: Failed to evaluate expression null. Please modify the expression, redeploy and retry again.
       TEMP_PLOW:TRUNC_TABLE
    Error
    RPE-01003: An infrastructure condition prevented the request from completing.
       TEMP_PLOW:TRUNC_TABLE
    Error
    RPE-02226: Cannot test Control Center user REMOTEUSERNAME. This user must match the login credentials of the deployment location.
       TEMP_PLOW:TRUNC_TABLE
    Error
    ORA-01937: missing or invalid role name
    Many Thanks

  • How to call OWB Process Flow from APEX?

    Hello.
    I was wondering if there is a way that I can have a OWB process flow kick off from a button in APEX? I know you can have APEX perform PL/SQL upon being clicked, so I am wondering if there is a way that I can do the same for a process flow? We are looking to have a manual kick off for a job and we are trying to use APEX for this. Any information would be great!
    Thank you

    Hi,
    Using SOAP ?if there is a way ... please provide some examples.
    I finished my EDQ process, and now i am trying to find how to call it from APEX
    My web service WSDL is
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
      <soap:Header/>
      <soap:Body>
        <dn:request xmlns:dn="http://www.datanomic.com/ws" id="?">
          <dn:record>
            <dn:ID>?</dn:ID>
          </dn:record>
        </dn:request>
      </soap:Body>
    </soap:Envelope>You did not state your Apex version. If you are on 4.x then see
    Creating a Web Service Reference Based on a WSDL
    Cheers,

  • Call/Invoke an OWB Process Flow from a Windows Command/batch

    Hi everyone,
    I'm newbie in Oracle Warehouse Builder and I've developed some process flows to load data from one database to another.
    One of these process, called "MAIN", is the beginning of the execution. I need to call these process flow (MAIN) from the Windows Command Line
    or batch (.bat file) to schedule in Windows Sckeduler Tasks.
    Anyone have an idea to how to do this?
    Thanks a lot!
    Edited by: Maximiliano García on 24/02/2012 05:41 PM
    Edited by: Maximiliano García on 24/02/2012 05:41 PM

    Check this blog post here that shows how to execute via sqlplus, which you will then be able to wrapper in a batch script or whatever to schedule.
    https://blogs.oracle.com/warehousebuilder/entry/how_to_execute_process_flow_from_sqlplus
    Cheers
    David

  • Using Cisco 3526 IPVC for Voice Calls as well

    Does anybody know the latest capabilities of the Cisco 3526 gateway when used as a Voice gateway? The Cisco SRND for "Cisco IP Video Telephony", which was published in July 2004, states that the IPVC gateways do NOT support H.245 Empty Capabilities Set or H.450. So they will give you supplementary services such as Hold, transfer, etc. Version 3.0 of the 3526 documentation lists "Empty capability set support" as a feature, although it does not state H.245 or H.450.
    Basically, I want to use a 3526 as a second Voice gateway as well as a Video gateway in a Call Manager deployment. I am just concerned that I won't get all the supplementary services when using it for voice calls.
    Any input would be greatly appreciated.

    I know the product can support voice, my main concern was the support for ECS (Empty Capabilities Set) within H.245. If it does not support this my IP Phones will not be able to use the supplementary features such as Hol;d, Transfer, etc,etc.
    I have escalated this to Cisc here in the UK for clarification. I am sure it will, but I just want clarification from Cisco or somebody that has used it in the same scenario.

  • Concurrent voice calls Cisco SF 100D-08 8-Port 10/100 Switch

    how many concurrent voice call can be conducted at once with the cisco sf 100d-08 8-port 10\100 switch?

    Christopher,
    As far as concurrent voice calls we don't have any documentation as to how many it can support.  It is strictly based on the bandwidth for the network as to how many calls it can handle.

  • Calling .exe file from process flow

    Hi All,
    I want to call an executable file from my process flow. What should I do for this. Please tell me. Eg. I want to call RUN.exe located in "c:\myfolder\run.exe" what should I do?
    Please help.
    Thanks,
    Danish

    I have had trouble with the user defined operator.
    Instead I use SQLPLUS operator to do these types of things.
    Use this for the Script Value:
    host c:\myfolder\run.exe
    exit;
    /

Maybe you are looking for

  • I have been using Firefox for many years now and really like it, now the version 4 is extremely slow, anyone else having the same issue?

    I upgraded to version 4 last week and find it extremely slow compared to the previous version - like so slow that some pages do not even load. I have downloaded and gone back to version 3.6.17 and everything is back to the normal I have known for yea

  • Moving project from one Mac to another

    Hi, Sorry if this question has been asked before. I have a project on my MBA. All masters of this project is on an external HDD. I want to move this project to my iMac. I still want to retain the masters on the HDD. What's the best way to do it? Than

  • How do I get iTunes to consolidate?

    For a while, I had two versions of iTunes - one (older, about 8.2.1 or 9.x) on my older PowerBook, and a newer one on my iMac. After recently buying a used MacBook Pro (early Unibody), my iTunes on my primary laptop and my iMac are both 10.5.x. But I

  • Why isn't Story CC Plus in my list of Apps

    Ok, So my adventures as a student who uniquely utilizes the creative cloud for a small fee has me listed on the Dean's list at my college, hoorah! But, as I take on Film Making the one app that I truly need now won't download from the net, nor is it

  • MobileMe Gallery delay to AppleTV?

    I just uploaded a movie to my MobileMe Gallery, but it isn't showing in my AppleTV MobileMe gallery. Is there a delay in showing up in AppleTV? I