Reset SIP trunk using job scheduler

We manage multiple CUCM clusters using 8.6/9.1 for clients and occasionally we will find the need to reset the main SIP trunks for PSTN access, which we have to do after hours due to these clusters being in production.  We have heard tell that it is possible to schedule a trunk reset using the job scheduler but we are unable to find how this is done.  Does anyone have any experience with this?

Part of our confusion is that when you save on the trunk configuration, we see the pop up below that mentions the Job Scheduler.

Similar Messages

  • Parallel processing in background using Job scheduling...

    (Note: Please understand my question completely before redirecting me to parallel processing links in sdn. I hve gone through most of them.)
    Hi ABAP Gurus,
    I have read a bit till now about parallel processing. But I have a doubt.
    I am working on data transfer of around 5 million accounting records from lagacy to R/3 using Batch input recording.
    Now if these all records reside in one flat file and if I then process that flat file in my batch input program, I guess it will take days to do it. So my boss suggested
    to use parallel processing in SAP.
    Now, from the SDN threads, it seems that we have to create a Remote enabled function module for it and stuf....
    But I have a different idea. I thought to dividE these 5 million records in 10 flat files instead of just one and then to run the Custom BDC program with 10 instances which will process 10 flat files in background using Job scheduling.
    Can this be also called parallel processing ?
    Please let me know if this sounds wise to you guys...
    Regards,
    Tushar.

    Thanks for your reply...
    So what do you suggest how can I use Parallel procesisng for transferring 5 million records which is present in one flat file using custom BDC.?
    I am posting my custom BDC code for million record transfer as follows (This code is for creation of material master using BDC.)
    report ZMMI_MATERIAL_MASTER_TEST
          no standard page heading line-size 255.
    include bdcrecx1.
    parameters: dataset(132) lower case default
                                 '/tmp/testmatfile.txt'.
       DO NOT CHANGE - the generated data section - DO NOT CHANGE    ***
      If it is nessesary to change the data section use the rules:
      1.) Each definition of a field exists of two lines
      2.) The first line shows exactly the comment
          '* data element: ' followed with the data element
          which describes the field.
          If you don't have a data element use the
          comment without a data element name
      3.) The second line shows the fieldname of the
          structure, the fieldname must consist of
          a fieldname and optional the character '_' and
          three numbers and the field length in brackets
      4.) Each field must be type C.
    Generated data section with specific formatting - DO NOT CHANGE  ***
    data: begin of record,
    data element: MATNR
           MATNR_001(018),
    data element: MBRSH
           MBRSH_002(001),
    data element: MTART
           MTART_003(004),
    data element: XFELD
           KZSEL_01_004(001),
    data element: MAKTX
           MAKTX_005(040),
    data element: MEINS
           MEINS_006(003),
    data element: MATKL
           MATKL_007(009),
    data element: BISMT
           BISMT_008(018),
    data element: EXTWG
           EXTWG_009(018),
    data element: SPART
           SPART_010(002),
    data element: PRODH_D
           PRDHA_011(018),
    data element: MTPOS_MARA
           MTPOS_MARA_012(004),
         end of record.
    data: lw_record(200).
    End generated data section ***
    data: begin of t_data occurs 0,
          matnr(18),
          mbrsh(1),
          mtart(4),
          maktx(40),
          meins(3),
          matkl(9),
          bismt(18),
          extwg(18),
          spart(2),
          prdha(18),
          MTPOS_MARA(4),
        end of t_data.
    start-of-selection.
    perform open_dataset using dataset.
    perform open_group.
    do.
    *read dataset dataset into record.
    read dataset dataset into lw_record.
    if sy-subrc eq 0.
    clear t_data.
    split lw_record
       at ','
    into t_data-matnr
          t_data-mbrsh
          t_data-mtart
          t_data-maktx
          t_data-meins
          t_data-matkl
          t_data-bismt
          t_data-extwg
          t_data-spart
          t_data-prdha
          t_data-MTPOS_MARA.
    append t_data.
    else.
    exit.
    endif.
    enddo.
    loop at t_data.
    *if sy-subrc <> 0. exit. endif.
    perform bdc_dynpro      using 'SAPLMGMM' '0060'.
    perform bdc_field       using 'BDC_CURSOR'
                                 'RMMG1-MATNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                 '=AUSW'.
    perform bdc_field       using 'RMMG1-MATNR'
                                 t_data-MATNR.
    perform bdc_field       using 'RMMG1-MBRSH'
                                 t_data-MBRSH.
    perform bdc_field       using 'RMMG1-MTART'
                                 t_data-MTART.
    perform bdc_dynpro      using 'SAPLMGMM' '0070'.
    perform bdc_field       using 'BDC_CURSOR'
                                 'MSICHTAUSW-DYTXT(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                 '=ENTR'.
    perform bdc_field       using 'MSICHTAUSW-KZSEL(01)'
                                 'X'.
    perform bdc_dynpro      using 'SAPLMGMM' '4004'.
    perform bdc_field       using 'BDC_OKCODE'
                                 '/00'.
    perform bdc_field       using 'MAKT-MAKTX'
                                 t_data-MAKTX.
    perform bdc_field       using 'BDC_CURSOR'
                                 'MARA-PRDHA'.
    perform bdc_field       using 'MARA-MEINS'
                                 t_data-MEINS.
    perform bdc_field       using 'MARA-MATKL'
                                 t_data-MATKL.
    perform bdc_field       using 'MARA-BISMT'
                                 t_data-BISMT.
    perform bdc_field       using 'MARA-EXTWG'
                                 t_data-EXTWG.
    perform bdc_field       using 'MARA-SPART'
                                 t_data-SPART.
    perform bdc_field       using 'MARA-PRDHA'
                                 t_data-PRDHA.
    perform bdc_field       using 'MARA-MTPOS_MARA'
                                 t_data-MTPOS_MARA.
    perform bdc_dynpro      using 'SAPLSPO1' '0300'.
    perform bdc_field       using 'BDC_OKCODE'
                                 '=YES'.
    perform bdc_transaction using 'MM01'.
    endloop.
    *enddo.
    perform close_group.
    perform close_dataset using dataset.

  • RTMT reset SIP Trunk

    Hello,
    anyone knows what is the trace in RTMT when a sip trunk connected to CUCM 9 resets manually. I am checkin in logs but there is so much logs in it, if ai know this trace i can "find" in logs.
    Thaks Anna.

    You need to look at cucm audit logs for this not RTMT

  • Having trouble getting a job to run using job scheduler

    I am using Oracle 11g. I run a sql script that schedules a job:
    exec sys.dbms_scheduler.create_job( job_name => '"SYSTEM"."UCR"', job_type => 'EXECUTABLE', job_action => 'D:\UserCountReport\bin\ucr.bat', repeat_interval => 'FREQ=HOURLY;BYHOUR=3;BYMINUTE=0;BYSECOND=0',start_date => to_timestamp_tz('2011-07-21 US/Eastern', 'YYYY-MM-DD TZR'), job_class => 'DEFAULT_JOB_CLASS', auto_drop => FALSE,enabled => FALSE);
    exec sys.dbms_scheduler.set_attribute( name => '"SYSTEM"."UCR"',  attribute => 'job_weight',  value => 1);
    exec sys.dbms_scheduler.enable( '"SYSTEM"."UCR"' );
    commit;
    exit;When I am connected to the database, I run these commands:
    SQL> SELECT JOB_NAME, STATE, job_action, repeat_interval FROM DBA_SCHEDULER_JOBS
    where job_name='UCR';
    JOB_NAME
    STATE
    JOB_ACTION
    REPEAT_INTERVAL
    UCR
    SCHEDULED
    C:\UserCountReport\bin\ucr.bat
    FREQ=HOURLY;BYHOUR=9;BYMINUTE=0;BYSECOND=0
    SQL> SELECT JOB_NAME, status FROM DBA_SCHEDULER_JOB_LOG where job_name = 'UCR';
    JOB_NAME
    STATUS
    UCR
    SUCCEEDED
    UCR
    SUCCEEDED
    UCR
    SUCCEEDEDHowever, I don't get any signs that the job has run even though Oracle says all the runs have succeeded. The batch file that the job is supposed to execute creates a file and writes stuff to it. However, the file is not written. When I run the batch file from command prompt, it executes correctly.
    I have tried following instructions here:
    Answers to "Why are my jobs not running?"
    However, all three of these commands return errors:
    SQL> select value from v$parameter where name='job_queue_processes';
    select value from v$parameter where name='job_queue_processes'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    SQL> select count(*) from dba_scheduler_running_jobs;
    select count(*) from dba_scheduler_running_jobs
    ERROR at line 1:
    ORA-00942: table or view does not exist
    SQL> select count(*) from dba_jobs_running;
    select count(*) from dba_jobs_running
    ERROR at line 1:
    ORA-00942: table or view does not existI've tried various other commands from that list and I get errors as well.
    I'm not quite sure where to go from here to troubleshoot this problem. Any help would be appreciated. Thanks.
    Edited by: 874375 on Jul 22, 2011 9:14 AM
    Edited by: 874375 on Jul 22, 2011 9:18 AM

    So I changed my script to this:
    exec sys.dbms_scheduler.create_job( job_name => '"SYSTEM"."UCR"', job_type => 'EXECUTABLE', job_action => '%windir%\system32\cmd.exe /C D:\UserCountReport\bin\ucr.bat', ....I now have this:
    SQL> SELECT JOB_NAME, status FROM DBA_SCHEDULER_JOB_LOG where job_name='BOXTONE_
    MONTHLY_UCR';
    JOB_NAME
    STATUS
    BOXTONE_MONTHLY_UCR
    FAILED
    BOXTONE_MONTHLY_UCR
    SUCCEEDED
    BOXTONE_MONTHLY_UCR
    SUCCEEDED
    JOB_NAME
    STATUS
    BOXTONE_MONTHLY_UCR
    SUCCEEDEDIs there a place with log files that will tell me why the job failed? If so where are the log files located?

  • Job scheduling in 9i

    hello sir
    In my application i want to transfer data from one table to another table every month, so for that purpose i have used job scheduling concept(DBMS_JOB)
    but every month means if month is january then 31 jan (transfer at 31th 24.00 pm)
    else february then either 28th/29th(transfer at 28/29 24.00pm)
    and so on
    actually i want logic or suggestion for above

    actually i want logic or suggestion for above Have the other table as a materialized view (if possible) and have the job refresh it every month.
    SQL> select last_day(sysdate) from dual ;
    LAST_DAY(SY
    30-APR-2006
    1 row selected.
    SQL>

  • Job Scheduling Management

    Hi Experts,
    Did any one have guide to schedule a job in solman 7.1 using Job Scheduling Management? I have created a job request from solman_workcenter job management. Now I want to know how to schedule the job in backend system. As I am not able find any document for Solman7.1 SP10 please suggest.
    Thanks
    Sajin

    Hi Kamil,
    Thanks for your quick response that document was quite helpful and while doing configuration I am facing an error while saving "Monitored Obj Name" could you please assist.
    Thanks
    Sajin

  • JOB SCHEDULING QUERY

    PLS HELP IN THIS REGARD
    WHEN TO USE  JOB SCHEDULING FMS EG: JOB_OPEN / JOB_SUMBIT / JOB_CLOSE  AND WHEN TO SCHEDULE JOBS THRU SM-36?  PLS TELL ME IN RESPECT TO DEV / PRD SERVERS IE: IF I AM WORKING ON DEV SERVER WHICH PROCESS WILL I OPT  AND WAT TO USE IN PRD SERVER ?  WAT IS THE USE OF GET_PRINT_PARAMETERS IN JOB SCHEDULING?

    Hi,
    JOB_OPEN / JOB_SUMBIT / JOB_CLOSE -> Used to schedule a report/program in background i.e on background workprocess.
    AND WHEN TO SCHEDULE JOBS THRU SM-36?- PLS TELL ME IN RESPECT TO DEV / PRD SERVERS IE: IF I AM WORKING ON DEV SERVER WHICH PROCESS WILL I OPT AND WAT TO USE IN PRD SERVER ?-> Background WP
    WAT IS THE USE OF GET_PRINT_PARAMETERS _. used to find the print parameters e.g in case you wnat to write data to spool

  • Job Schedule Custom ABAP Class Every 2 weeks

    Hi Folks,
    I would like to ask if  possible to run custom ABAP class using JOB Schedule (SM36). I have created a custom class that needs to be run every two weeks.
    Thanks,
    Robert

    Hi,
    what do you mean by "run custom class"? If you mean calling methods of that class then no. But it is easy to write a simple report which will call required methods.
    Cheers

  • Controlling which CUCM server communicate over a SIP trunk

    We have 3 CUCM servers, two sub and one pub at two different physical locations.
    There are two SIP trunk servers (non Cisco), we wish to have the CUCM at the same physical location to communicate with the SIP trunk device at its location, instead of going over the WAN to communicate with the other one.
    Communications are initiated from the CUCM side through a route pattern that points to a RL/RG that contains the SIP trunk.
    The SIP trunk uses a DP that uses a CUCM group that only contains the local CUCM server.
    Can this be setup to reliably control which CUCM server talks to the SIP trunk server at its location?
    Do we need to configure something differently?

    Hi,
    If the CUCM's are located in different physical location then the communication should be over the IP-WAN and if it is about different CUCM Cluster then we can use H323 ICT Trunk between CUCM server for communication which is again WANLink.
    Still not clear with your query, However as you want to control the Gwy/Trunks using the Route Pattern. You can create two separate route pattern for internal & external.
    Wherein in Internal Route Pattern you can specify the ICT/SipTrunk/GWY which is connected within the cluster under Route List/RouteGroup to route the call.
    And for External Route Pattern specify the Gwy/SipTrunk which connects you to the outside world.
    Regards,
    Venkatesh

  • SIP Trunk to 2811

    Hi,
    We have Cisco 2811 with CCME and also act as H.323 gateway for branch VOIP traffic. Cisco IP phones are registered in the router and there's a PRI E1 connection to PSTN cloud from the router. One Service provider offers SIP trunk.
    Q1. Is it possible to configure SIP trunk in 2811 and enable calls between H.323, SIP & PSTN?
    Q2. If possible, what are the pre-requisities ?
              * IOS
              * Additional Resources
    Q3. Highly appriciate if someone can provide  sample configuration with simple dial peers to enable voice routing between SIP, H.323 & PSTN cloud?
    Thank you
    Lakmal

    Thanks for the prompt support.
    Existing setup: refer attached diagram & router configs
    As explained earlier Location-1 is connected with PSTN PRI e1 and 2 mbps data link.
    Call flow:
    Location 01:
    E1 Number series: 038-42911XX
    Local Extensions: 33XX
    PSTN Access Code: 9 followed by 7 digits for local and 10 digits for national calls
    Location 01 can directly dial location02 by using 4-digit extension (62[345]x)
    Location 02:
    Local Extensions: 62[345]X
    PSTN Access C ode: 9 followed by 7 digits for local and 10 digits for national calls. These calls will connect to PSTN cloud through Location 01.
    Location 02 can directly dial location-1 by using 4-digit extension (33xx)
    In the proposed setup, the SIP trunk colored in red is introduced.  Could you please help me to configure the SIP trunk in the 2811 router and route calls through it? For example assume we need to route PSTN calls through SIP trunk using access code 8 which is currently doing by access code 9. Also need to terminate incoming calls from SIP trunk to 3300 extension. Please check whether the current IOS is capable?
    If you require any further details, please let me know.
    Thank you

  • Drop/Create sequence using Oracle Job Scheduler

    IDE for Oracle SQL Development: TOAD 9.0
    Question: I am trying to do the following:
    1. Check if a certain sequence exists in the user_sequences table
    2. Drop the sequence if it exists
    3. Re-create the same sequence afterward
    All in a job that is scheduled to run daily at 12:00 AM.
    What I would like to know is if this is even possible in the first place with Oracle jobs. I tried the following:
    1. Create the actual "BEGIN...END" anonymous block in the job.
    2. Create a procedure that uses a dynamic SQL string using the same "BEGIN...END" block that drops and recreates the sequence using the EXECUTE IMMEDIATE commands
    But I have failed on all accounts. It always produces some sort of authorization error which leads me to believe that DDL statements cannot be executed using jobs, only DML statements.
    BTW, by oracle jobs, I mean the SYS.DBMS_JOBS.SUBMIT object, not the job scheduler.
    Please do not ask me why I need to drop and recreate the sequence. It's just a business requirement that my clients gave me. I just want to know if it can be done using jobs. If not, I would like to know if there are any work-arounds possible.
    Thank you.

    Please do not ask me why I need to drop and recreate the sequence. It's just a business requirement that my clients gave me. I just want to know if it can be done using jobs. If not, I would like to know if there are any work-arounds possible.Well, I won't ask you then, but can you ask your clients why on earth they would want that?
    Do they know that doing DDL 'on the fly' will invalidate the dependent objects?
    Best shot you can give at it is reset the sequence. And you could do it in a job, yes, as long as it's interval is during some maintenance window (no active users).
    Regarding resetting a sequence, you, (and your clients) should read this followup:
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:1119633817597
    (you can find lots more info on sequences and jobs by doing a search from the homepage http://asktom.oracle.com)
    Regarding the authorization errors: your DBA should be able to provide you the nessecary privileges.
    But in the end, this is something I'd rather not would like to see implemented on a production system...

  • Issue with instant ringback when using sip trunk to SP

    Hi all,
    We use CUCM 8.0.2.
    We have a SIP trunk to a SP connected via one of our Cisco 2911 routers configured as a CUBE.
    Cisco IOS Software, C2900 Software (C2900-UNIVERSALK9-M), Version 15.0(1)M3, RELEASE SOFTWARE (fc2)
    c2900-universalk9-mz.SPA.150-1.M3.bin
    Cisco CISCO2911/K9 (revision 1.0)
    Technology Package License Information for Module:'c2900'
    Technology Technology-package
                      Current       Type
    ipbase        ipbasek9      Permanent
    security      securityk9    Permanent
    uc              uck9            Permanent
    data           None            None
    We also have several ISDN lines that run out via various Cisco routers configured as H323 gateways.
    We use 7945 and CIPC for our phones.
    We're having an issue with calls going via the SIP trunk where we hear ringing instantly after dialling - but before the actual device at the other end starts ringing (considerable difference).
    Using the SIP trunk: If I make a call to my mobile phone - I hear ringing instantly - about 3 rings before my mobile phone actually starts ringing - undesireable.
    Using H323 gateway: If I make a call to my mobile phone - I hear silence for a bit - then ringing when the mobile starts ringing - desired.
    Using SIP trunk: If I make a call to a landline that is ready - it rings instantly for at least 1 ring - before the actual phone I'm calling starts ringing - undesireable.
    Using H323 gateway: There is a momentary pause before hearing ringing on my phone and the phone I dialled - desired.
    Using SIP trunk: If I make a call to a landline that is off-hook (with no call-waiting/etc.) - it rings once and then returns the busy signal (the worst issue) - undesireable.
    Using H323 gateway: There is a momentary pause before hearing busy signal - desired.
    Phone to phone internally (same network): Operates as expected (instantly rings locally and on the phone I'm calling). Between phones that utilise the SIP trunk and phones that utilise the H323 gateways within the same network - communication is instant and as expected.
    Any ideas why this happens and how to stop it?
    I want it to not ring until the situation is known and that it can provide the appropriate feedback (ringing/busy/etc.).
    Some possibly relevant config (note that there is a known bug with this IOS that meant I had to declare the codec in each dial-peer as the voice class would not work):
    voice service voip
    address-hiding
    mode border-element
    allow-connections sip to sip
    sip
      bind control source-interface GigabitEthernet0/0
      bind media source-interface GigabitEthernet0/0
      header-passing error-passthru
      early-offer forced
      midcall-signaling passthru
    interface GigabitEthernet0/0
    ip address x.x.x.x 255.255.255.252
    ip access-group acl.SIP-IN in
    no ip redirects
    no ip unreachables
    ip verify unicast reverse-path
    ip virtual-reassembly
    duplex full
    speed 100
    no cdp enable
    gateway
    timer receive-rtp 1200
    sip-ua
    connection-reuse
    gatekeeper
    shutdown
    dial-peer voice 1 voip
    description *** INBOUND CALLS FROM CARRIER ***
    translation-profile incoming SIPTRUNK-INCOMING
    session protocol sipv2
    incoming called-number #blah blah#
    dtmf-relay rtp-nte
    codec g711alaw
    ip qos dscp cs5 media
    no vad
    dial-peer voice 61 voip
    description **** WA, SA AND NT NUMBERS ****
    destination-pattern 0[8]........
    session protocol sipv2
    session target ipv4:<MY SP's SIP SERVER>
    incoming called-number 0[8]........
    dtmf-relay rtp-nte
    codec g711alaw
    ip qos dscp cs5 media
    no vad
    dial-peer voice 81 voip
    description **** MOBILE NUMBERS ****
    destination-pattern 0[4]........
    session protocol sipv2
    session target ipv4:<MY SP's SIP SERVER>
    incoming called-number 0[4]........
    dtmf-relay rtp-nte
    codec g711alaw
    ip qos dscp cs5 media
    no vad
    dial-peer voice 500 voip
    description *** INBOUND SIP TRUNK TO CUCM PUB ***
    translation-profile outgoing SIPTRUNK-CALLING-ADD-0
    preference 1
    destination-pattern 5[12]..
    session protocol sipv2
    session target ipv4:<OUR CUCM PUBLISHER IP>
    dtmf-relay rtp-nte
    codec g711alaw
    ip qos dscp cs5 media
    no vad
    Any help or a point in the right direction would be greatly appreciated.
    Cheers,
    Brett

    I ended up resolving this issue as follows:
    In CUCM, under Device > Device Settings > SIP Profile.
    I modifed the profile relevant to my SIP trunk, under the "Trunk Specific Configuration", I set "SIP Rel1XX Options" from "Disabled" to "Send PRACK if 1xx Contains SDP".
    Now, I get the expected delay before hearing ringback.
    Solved!

  • Problem connecting two trunks to sip provider using same CUBE

    We need to connect two SIP trunks from service provider to Cisco CUCM 7.1 using CUBE “Cisco 2821”, SP using the following configuration:
    First SIP PSTN Link Configuration(In-Out DID/DOD 218 7700 – 218 7799)
    Customer IP Address =   10.196.191.158/30
    SP IP Address =  10.196.191.157/30
    Protocol= SIP
    SIP Port = 5060
    Transport Protocol=UDP
    Voice Codec= G711 A-Law
    DTMF = IN-Band DTMF without RFC2833
    Signaling IP address = 10.201.20.49
    IP Address 10.201.20.10 (Media IP) must be visible from IP PABX
    Second SIP PSTN Link Configuration( Inbound Only 920009999)
    Customer IP Address =   10.196.192.94/30
    SP IP Address =  10.196.192.93/30
    Protocol= SIP
    SIP Port = 5060
    Transport Protocol=UDP
    Voice Codec= G711 A-Law
    DTMF = IN-Band DTMF without RFC2833
    SIP server IP address = 10.201.20.49
    IP Address 10.201.20.10 (Media IP) must be visible from IP PABX
    When we tried to configure both links on the same CUBE we faced two problems:
    -          Routing issue, as we can’t route traffic using single CUBE through two different interfaces to the same destination “ i.e we have to configure static route commend (ip route 10.201.20.49 255.255.255.255 10.196.191.157 & ip route 10.201.20.49 255.255.255.255 10.196.192.93), sip traffic coming from one link can’t be sure to send it back to the same link.
    -          SIP media & signaling control binding issue, as CUBE support sip binding using one interface only “one IP Address”, if we not using binding commands on the CUBE we can’t receive any calls though any link.
    We have two options:
    SP to send both traffic on the same trunk link
    Or
    Have another CUBE for the second link.
    Attached network diagram.
    Any solution?????
    Regards,
    Ahmed Rizk

    I didn't mean NAT CUCM, I meant the interface towards it. But since you're using a single interface then yes that is what you NAT. You have a lot going on in that config. Probably a lot more than you need. Like I said you should work on this in two legs. CUBE to ITSP, and then CUCM to CUBE. You're trying to make the whole thing work in one shot which is going to cause you some headaches.
    Install XLite free version. In the account settings set your UserID to a generic 10 digit phone number, domain to something generic, then at the bottom set the Proxy Address to the IP of your CUBE. The media ports will be negotiated dynamically between the CUBE and the ITSP. Since you said you're not registering you will also need to give the ITSP YOUR peer IP (this is how they secure the trunk) which is whatever IP you're sourcing from when you leave your network (what you're NAT'ing the CUBE to).
    For testing, reduce your config to something like this:
    voice service voip
     allow-connections sip to sip
     allow-connections h323 to sip
     no supplementary-service sip moved-temporarily
     no supplementary-service sip refer
     signaling forward none
     sip
    dial-peer voice 10 voip
    description CUBE_TO_ITSP
    session protocol sipv2
    session target ipv4:SIGNALING IP PROVIDED BY ITSP
    destination-pattern [2-9].........
    codec g711ulaw
    dtmf-relay rtp-nte sip-notify
    no vad
    dial-peer voice 20 voip
    description ITSP_TO_CUBE
    destination-pattern .
    session protocol sipv2
    session target ipv4:Eventually your CUCM IP...for now set it to your computers IP.
    codec g711ulaw
    dtmf-relay rtp-nte sip-notify
    no vad
    Use XLite to place a phone call from your PC (if you have a mic and speakers you can have audio if the call connects). This should come pretty close to getting your outward leg established. Once you get this part working you can add in more codecs and translation profiles if you want. Let me know what happens. Include any debug or packet cap results if you can.  

  • When & how to use default settings option in job scheduling with BO 4.1

    Hi,
    With BO 4.1 we got new features and one of them is "Default Settings" option in the job scheduling. While scheduling a report in CMC we are getting below attached screen. I want to know when and how to use this option? while scheduling job on queries.
    Please guide me to, thanks in advance.
    Regards,
    Mithun Pati.

    Hi Mithun,
    Below thread may give you clear idea.
    The Purpose of the default settings is to have customized default settings for the enterprise. These settings would apply to any user who has access to Info view and wants to schedule a report. For example you can setup default values for "From" section of email so any scheduled reports use those settings. Similarly another setting we have defaulted is the number of retires involved and the seconds for each retry. Business Objects will not send out a failure emails unless the last retry has failed. The default settings should only be modified by an admin.
    Purpose of Default Settings when scheduling a WebI report?

  • Job Scheduling using server pool

    Is there any way to use a pool of servers for job scheduling?
    I know you can tell it the target server you want, but I want it to find an available server from a list.
    The reason is, the job runs software on the app server.  Not all app servers have this software installed.  But it is installed on more than one.  I want it to find an available server, but only one that has the software installed.  It would be great to somehow define a pool of servers where the job can run.
    I don't think I can get creative with job class.  This looks at all work processes on all servers. 
    If I go this way, I'd have to set all work processes as A on the servers I don't want to use, and set my job as B.  That is definately not an option.
    Any ideas?
    Thanks

    Hello dskdell,
    I guess u want to use some kind of load balancing with the background servers,
    well when u define a job,dont give the server name there,then it will look for the available server and schedule the job there
    " Although a job can specify to use a particular background server (an application server that has at least one background work process), it is best to allow the background processing system to use load balancing to distribute the workload among the available servers"
    Refer to http://help.sap.com/saphelp_nw70/helpdata/en/4a/2d513897110872e10000009b38f889/frameset.htm
    Hope it helps
    Rohit

Maybe you are looking for