Fixed dial for one specific international number suggestion required

Hi,
We have a requirement that one of our client require to configure one fixed number like 6666 for one international Help-desk number. In CUCM, they want to configure this number. Second thing they are acquiring, is it possible that when any person dial 6666 call goes out respectively from their local router. Not from their HO router.
Regards,
Humza Khan

Hi,
I tried with translation pattern, call is routing from HO router, not from remote side router. I assigned css which contains outbound calls partitions of all remote & HO sides. But all in vain. 
Any Suggestions.
Regards,
Humza Khan

Similar Messages

  • Changing proposed delivery date in sales order for one specific sales org

    Hi All,
    I want to change proposed delivery date in sales order automatically for one specific sales org only without changing lead time in VOV8.
    For that can I use MV45AFZZ. But it is asking access key to make changes. Is there any other user exit for the same. And how does exactly change it.
    Thanks in advanced.
    Points will be awarded.
    Regards,

    EXIT_SAPFV45E_001 has nothing to do with this - it is meant to update the purchase order from a sales order. It might not even be triggered if the sales order has no link to a purchase order.
    USEREXIT_SAVE_DOCUMENT is not really good for this either, because the delivery date has to be changed before that. If memory serves, it also influences the schedule lines and probably the ATP check and such. I would strongly advise against it. One of the other routines in MV45AFZZ should do just fine, USEREXIT_MOVE_FIELD_TO_VBAK for example.

  • Combining Skype Subscription for one specific coun...

    I have purchased a subscription for one specific country which I call the most. For other countries, I simply purchased some Skype credit.
    How can I make sure that my credit will not run out when I am calling that specific country that I have the subscroption for?

    NormanM wrote:
    Hello,
    The fault is almost certainly with the local Indian carrier used to terminate the call and not Skype. (All Skype calls travel via the internet and only convert to PSTN/Cellular networks at a point close to the recipient's phone). The fact that your Skype-to-Skype calls are trouble-free demonstrates the point. You can also check by placing a free call to the Skype Call Testing Service (echo123).
    First of all thanks for your reply and also you mentioned something PSTN/Cellular network etc etc how the Skype is working. But look here my problem is why this is happening, the subscription name itself India calling then Skype should be able to tieup or catch up with the local Indian carrier, isn't it? How do I know that the local carrier is supporting or not? I need a solution not the reason, yeah it is good to know the reason but what I will do with the reason here; it is beyond my doing. If this is the genuince reason for the failure then Skype is making false statement and fooling around the customers saying you can call Indian Mobile and land lines by this subscription, which is clearly not happening.
    Please let me know if there is anything can be done on this issue, yours time and effort is appreciately greatly.
    regards
    Unsatisfied Skype Customer

  • How to specify for JVM the stack for ONE specific thread that invokes JNI

    Hello all!
    I'm 2 days now looking for a solution in several forums but even in Sun Java Forums nobody was able to come up with a solution. If you know a better forum to place it, please let me know.
    Description:
    I have an application that launches several threads of different types. One of them is quite specific and run a critical JNI C++ process. The remaining ones are just for controling of other stuff... When I call the application by the command line
    java -classpath ... -Xss20m -Djava.library.path ... pack.subpack.myApp
    the application usually crashes: My computer has 256MB RAM of memory that vanish in seconds and causes an OutOfMemoryException
    Sometimes the application works properly, but sometimes the memory usage goes up fast until a general crash.
    What I believe that is going on:
    When we declare -Xss20m, I undestand that for each thread the JVM will attemp to allocate more 20MB, and if I have 10 threads, it goes up to 200MB and so on; however I'd like to have 20MB just for my critical process (that is called in one specific thread) and not for any thread.
    If I try to reduce -Xss parameter to, let's say 10MB, my C++ process overflow the JVM stack for the thread.
    So, does any body have know how to solve it? Please... I need experts help!
    Thanks a lot,
    Calegari

    There we go...
    I have this class:
    package calegari.automata;
    * <p>Title: </p>
    * <p>Description: </p>
    * <p>Copyright: Copyright (c) 2003</p>
    * <p>Company: </p>
    * @author Aur�lio Calegari
    * @version 1.0
    public class Native {
    * Parameters:
    * individuals --> All binary individual (AC rule)
    * indivLength --> number of infividuals
    * numEval --> number of RIs
    * generateUniform --> Uniform distribution of density
    * seed --> seed for current generation
    public native double[] AutomataIterator(int[][] individuals,
    int indvLength,
    int numEval,
    boolean generateUniform,
    long seed
    static {
    System.loadLibrary("Native");
    public Native() {
    Then, running
    javah -classpath ... calegari.automata.Native
    I'll get the following .h
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include "jni.h"
    /* Header for class calegari_automata_Native */
    #ifndef Includedcalegari_automata_Native
    #define Includedcalegari_automata_Native
    #ifdef __cplusplus
    extern "C" {
    #endif
    * Class: calegari_automata_Native
    * Method: AutomataIterator
    * Signature: ([[IIIZJ)[D
    JNIEXPORT jdoubleArray JNICALL
    Java_calegari_automata_Native_AutomataIterator___3_3IIIZJ
    (JNIEnv *, jobject, jobjectArray, jint, jint, jboolean, jlong);
    #ifdef __cplusplus
    #endif
    #endif
    Next, I built my cpp file which is right bellow
    #include <stdio.h>
    #include <stdlib.h>
    #include <conio.h>
    #include "jni.h"
    #include "calegari_automata_Native.h"
    #include "util.h"
    double IndividualEvaluator(long rule[], int automataCells[][149], int numInit1s[],
    int numOfACs, int numEvaluations);
    char getNext(char simb);
    JNIEXPORT jdoubleArray JNICALL
    Java_calegari_automata_Native_AutomataIterator___3_3IIIZJ
    (JNIEnv *env, jobject jobj, jobjectArray indiv, jint length, jint numEval,
         jboolean isUniform, jlong seed)
    printf("Native JVM call for C++ critical block: Started \a[-]");
    int ACs[10000][149]; //Will be filled with 100000 Initial states of a cellular automata
    int numIndiv = length;
    int numOfACs = numEval;
    //Dencity of each Initial state of cellular automata
    int num1sRIs[10000];
    //response
    double resp[1000];
    //set seed
    srand((unsigned int) seed);
    //generate Cellular automata states
    //Uniform generation
    if(isUniform)
    for(int i=0;i<numEval;i++)
    int num1s;
    num1s=0;
    for(int j=0;j<149;j++)
    ACs[i][j] = ((rand()%numEval)<i+1?0:1);
    if(ACs[i][j]==1) num1s++;
    num1sRIs[i] = num1s;
    printf(" %d ",num1s);
    else //not uniform generation
    for(int i=0;i<numEval;i++)
    int num1s;
    num1s=0;
    for(int j=0;j<149;j++)
    ACs[i][j] = rand()%2;
    if(ACs[i][j]==1) num1s++;
    num1sRIs[i] = num1s;
    //load individuals and start the critical method
    char simb = '-';
    for(int i=0;i<numIndiv;i++)
    jintArray oneDim = (jintArray) env->GetObjectArrayElement(indiv, i);
    jint *indiv=env->GetIntArrayElements(oneDim, 0);
    simb = getNext(simb);
    printf("\b\b%c]",simb);
    resp[i] = IndividualEvaluator(indiv,ACs,num1sRIs,numOfACs,300);
    jdoubleArray retApts;
    retApts = env->NewDoubleArray(numIndiv);
    env->SetDoubleArrayRegion((jdoubleArray)retApts,(jsize)0,numIndiv,(jdouble *)resp);
    printf("\nReturning to Java plataform: Completed\a\a\n");
    return retApts;
    char getNext(char simb)
    if(simb=='-') simb = '\\';
    else if(simb=='\\') simb = '|';
    else if(simb=='|') simb = '/';
    else if(simb=='/') simb = '-';
    return simb;
    Then it works fine since we declare the size of the stack to JVM, however, if we don't... We get a crash!
    Any idea?
    Thanks

  • Tcp_intranet channel to accept only for a specific internal IP address

    I am currently using SunOne Messaging Server v5.2:
    I would like to configure our MTA to only deliver emails to their proper mailstore if the emails are from 2 specific internal IP addresses. If emails that originated from the intranet are not from the above 2 IP addresses then I would like to re-route the emails to a particular MTA(port 25) for processing. Can this be done? And if so, what changes do I need to make to the imta.cnf file/mappings file?
    The tcp_local channel for outgoing emails should remain the same. My guess is that I have to modify the tcp_intranet channel to only accept from specific IPaddresses, Otherwise pass the emails to another channel or MTA for processing.
    Question: Can a user spoof an Email with an improper IP address. And if so, do I have to turn on reverse lookup to stop this from happening Or is reverse lookup on by default? Where is the reverse lookup setting? In the imta.cnf file?

    by default, we do examine the ip address of a mail sending partner. this is hard to spoof, and it's not based on "from" attribute.
    However, I'm not at all sure that what you're asking for is truly something achieveable by any normal means, nor if it's truly useful ..
    Perhaps you could create another channel for your specific ip addresses, and that would work. . .

  • IIS Failed Request Tracing for one specific URI only

    Hey everyone,
    I tried setting up IIS Failed Request Tracing for one and only one specific URI to debug a problem that persists with this URI. The problem about filtering it is that it's a HTTP 200 response that contains an error message from a 3rd party solution in SharePoint.
    So I set up Tracing for the URI, say /mywebsite/3rdpartyapp/_vti_bin/client.svc/ProcessQuery. That's what I entered in the custom field in the first step of the Tracing wizard. I entered code 200 as the HTTP Response Code criterion.
    Now I get many, many Trace logs for /_vti_bin/client.svc/ntlm/ProcessQuery. But this is something I didn't even want to aim my telescope at.
    I understand that it's basically possible to use wildcards in the configuration, but I didn't use any. Also, entering something like 3rdpartyapp*ProcessQuery resulted in getting many ntlm/ProcessQuery logs.
    Thus I guess that the URI filter criterion is not handled as I expect it to work.
    Can anyone tell me how IIS handles this exactly? Is only the last part of the expression ("ProcessQuery") actually evaluated or something like that?
    System: Windows SBS 2011 with IIS 7.5
    Kind regards
    Nico

    Hello,
    IIS related questions please ask in http://forums.iis.net/
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • How to disable BOP rescheduling for one specific location?

    Hi Experts,
       We are now processing BOP with rescheduling for request with conditions for all locations. But we would like to separate one location.  How can we disable the BOP rescheduling for that specific location? Is there a customizing setting to maintain that location list?
       Thanks a lot
    best regards,
    Wenyan

    Dear Wenyan,
    in standard you can only exclude locations from BOP while filtering, in the filter variant.
    Regards,
    Tibor

  • Query Builder - Getting Universelist for one specific Group

    Hi All,
               I am in need of a query string (in query builder) that will return me All the universes for a specific group.Is it possible to do and if possible what will be the way to do this?
    Thanks in advance for your help,
    Anirban

    Hi Anirban,
    What is the BusinessObjects version you are using ( i.e. BO XIR2 or BOXI 3.0)?
    Regards,
    Deepti Bajpai

  • Do Not Disturb for One Specific Contact

    After updating my 5C to iOS 8.2, my phone has defaulted my boyfriend's text messages to Do Not Disturb mode and I am not notified.  I have to specifically look at my home screen to see if any unread messages are pending.  Do Not Disturb is not on, and calls come through just fine.  I have tried going into Do Not Disturb Settings and there isn't anything there to specify an individual, unless a group is set up.  There are no groups set up.  I have also checked his contact settings, as well as iMessage settings and nothing is showing out of the ordinary.  Any ideas how this can be fixed??  Thanks to anyone that can help!

    Yes, unfortunately, messages are set to show when the screen is locked.  Other people can text me and they show up, just not him.  And there is the Do Not Disturb icon next to his iMessage thread.  I've tried resetting my phone, deleting his iMessage thread & starting a new one, deleting his contact & re-adding.  Nothing helps.  But thank you for the idea!!

  • Can't dial out a specific 800 number

    hello, we have ucm 7.1.3 and a 2921 as a voice gateway
    when we try to make calls to a specific toll free number we get a fast busy and if i debug the pri this is the reason code of the disconnect
    *Aug 16 16:29:56.675: ISDN Se0/2/0:23 Q931: RX <- PROGRESS pd = 8  callref = 0x8890
            Progress Ind i = 0x8388 - In-band info or appropriate now available
    *Aug 16 16:29:56.931: ISDN Se0/2/0:23 Q931: RX <- PROGRESS pd = 8  callref = 0x8890
            Cause i = 0x83AF - Resource unavailable, unspecified
            Progress Ind i = 0x8381 - Call not end-to-end ISDN, may have in-band info
    sm-r2-core-rtr(config)#
    *Aug 16 16:30:01.287: ISDN Se0/2/0:23 Q931: TX -> DISCONNECT pd = 8  callref = 0x0890
            Cause i = 0x8090 - Normal call clearing
    *Aug 16 16:30:01.335: ISDN Se0/2/0:23 Q931: RX <- RELEASE pd = 8  callref = 0x8890
    *Aug 16 16:30:01.339: ISDN Se0/2/0:23 Q931: TX -> RELEASE_COMP pd = 8  callref = 0x0890
    sm-r2-core-rtr(config)#
    *Aug 16 16:30:02.975: ISDN Se0/2/1:23 Q931: RX <- DISCONNECT pd = 8  callref = 0x888B
            Cause i = 0x8090 - Normal call clearing
    *Aug 16 16:30:02.975: ISDN Se0/2/1:23 Q931: TX -> RELEASE pd = 8  callref = 0x088B
    *Aug 16 16:30:02.995: ISDN Se0/2/1:23 Q931: RX <- RELEASE_COMP pd = 8  callref = 0x888B
    sm-r2-core-rtr(config)#do un all

    Toll free numbers are unique in their handling requirements.  If you have both local telco connections and dedicated LD connections, you will find that you can hand of *SOME* toll free traffic, but not all, on the dedicated LD circuit.
    The reason for this is that unless the LD carrer you are attached to is servicing that 800 number, they will have no idea where to send it. 
    Toll free calls should be routed out via the LOCAL telco connection.  The local telco can do a lookup to see who the toll free number is PIC'ed to, and forward it to the appropriate LD carrier for termination.
    If you send it to the LD carrier, and they don't terminate that 800 number (i.e. another carrier is servicing it), you'll get the error you are describing.
    Cliff
    Please rate helpful posts    

  • Imovie won't let me "export as quicktime".  It is only for one specific project, all others work fine

    When I choose the option "export using quicktime", it starts the export and then just stops - no error message.  It works for all my other projects, but not this specific one - any ideas what could be wrong?  Fairly desperate as I am supposed to show this tomorrow!

    When I choose the option "export using quicktime", it starts the export and then just stops - no error message.  It works for all my other projects, but not this specific one - any ideas what could be wrong?  Fairly desperate as I am supposed to show this tomorrow!

  • TS4268 why is my imessage down for one specific person?

    My iMessage works for everyone except one person. why is this and how do i fix it

    I am having the same problem.  My Imessage works for everyone except one person as of yesterday afternoon and still sending SMS to this person.  Very frustrating!!!!

  • How do I record sports for one specific team for the channels I subscribe?

    For example, I want to record all the Golden State Warriors games that occur on HDTV or if not available on HDTV then record them on normal TV, without recording blank channels that I are not on my subscription or a lot of superfluous programs that use some of the key words but aren't the game itself. If I record a series for the key word search "Golden State Warriors" or "Golden State" or "Golden State NBA" I miss games, record some non-game programs, or record channels that are blacked out to me.  I could do more selective searches with TiVo so that I just got the games I wanted, but I can't find enough granularity in the Comcast DVR system to record Warriors, Giants, or 49ers games.  The closest I can come is to save these searches, and every few days sit down and manually scan through all the items the return and select the right ones!  Even dong that, none of the searches turned up yesterday's Warriors game on 720 at &;30pm.  So I assumed it wasn't televised.  But I happened to look at channel 720 that evening - and the game was there!  What's going on? The Comcast system seems to work fine for the simple task of recording a TV sitcom series such as Chuck or The Mentalist.  But to record the games of my favorite sports teams requires a DVR system that can find the games on whatever channel they are on, and only record those channels which I subscribe to. Any suggestions on how best to record my favorite teams using the Comcast DVR?

    So I was able to find my teams and set them up as favorites... but the recording options are very limited. For example I can only record all shows that this team is listed, once per day, or once per week. The problem with the once per day option is that it records the very first time the team shows up in a show title. So for example it records the pre-game show and not the game (this would be a baseball team). And the problem with once per week is the same thing. If there is a program that has a football team listed before Sunday arrives then it records that show and not the game! All I want to do is record all the games the first time they air! Is that so hard? Also, for some reason it won't let me set up a series recording for my teams nightly replay on COMCAST SPORTS NET! For crying out loud your sports channel does a nightly replay of my baseball team and it won't let me record it as a series. I even tried setting up a manual recording sessions but guess what... It does not have the option to do it every night. So I can only manually record one day then I have to set up another one each night. Which ends up being the same as not being able to record the series. Basically Comcast has not figured out a way for sports fans to record their favorite teams as a series. Instead you either record EVERY show that has that team in the title (which includes things like celebrity golf shootouts, pre-game shows, replays, discussions shows, etc...) or you have to hit the record button for every game (and for baseball that means doing it almost every day). So, is there some solution I am missing? 

  • Problems running a report for one specific customer

    We have a portal where our external customer are login in using their customer number together with a pw. When logged inn they are running a specific report (custom made). Our issue today is that the customers have access to all other customers, thereby able to run reports for other customers as well. We want to set a parameter id so the report is locked only to the logged in customer. Anyone know how we can to this?
    Regards

    It all depend on your custom made report. WHat has it been developed in. Is it an ABAP report/BI Report.
    Make sure your report accepts say eg a Customer Id parameter. Then we can create a wrapper iview to pass the Customer Id.

  • Free item field checked defaultly in PO for one specific vendor

    Hi,
    If we always send a free PO to a vendor, is there any place to configure that once we create PO to this specific vendor, the free item field is checked defaultly?
    Some posts on the web indicated that they succeeded in doing this by setting in vendor master, but I cannot find the field.
    Where to achieve this function?
    Thanks!
    Wesley

    Hi,
    try to maintain a free goods condition in tcode MBN1 with        
    Discount type NR00 and make this article as an Additional material free    
    goods which will be procured free of cost on purchase of some other        
    article. The system will not consider the Net price value maintained in    
    the purchasing view of the article master and you would find that the      
    net price is ZERO for this free item in the Purchase order. 
    Regards,
    Edit

Maybe you are looking for