HT201229 Number blocking in iO7: Wild card?

I like the new number blocking, but I would like to be able to block known sources of spam calls without waiting to get called by every one. I have no reason to want calls from Pacific Telecom, for instance, so I'd like to block entire ranges like "(701) 500-8xxx." Is that possible? Is it in the works?

Try using pattern search.
select single * from mara where matnr like '%070'.
Or you can populate a range table using CP option.
Check the below link for more information.
[http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb3a1f358411d1829f0000e829fbfe/content.htm|http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb3a1f358411d1829f0000e829fbfe/content.htm]
Hope this helps.
Thanks,
Balaji

Similar Messages

  • Can I use a wild card in a dialed number in ICM

    Hi there,
    I need to enter several thousand dialed numbers which will all be mapped to the same call type.  Instead of adding each individual number or bulk imporing them can I use a wild card?
    Cheers

    I can tell you that we do exactly what you want to do, and it's the correct way.
    When blocks of numbers are caught by the gateway translation rules on the POTS dial peers and then matched by VOIP dial peers and sent up to CVP, you often end up having to deal with this situation.
    To prevent callers from hearing the CVP error message we have a message (WAV file) copied from Call Manager (we use the Annunciator-VCA.uLaw.wav file - something like "the number you have called is not configured. Please check the number and dial again" in different languages) and a simple PM microapp script to play it, scheduled against a call type.
    All of the numbers coming up from CVP that otherwise don't do anything are mapped to this call type and play the message.
    I pay attention to the Router Log Viewer and keep hammering the addition of dialed numbers until I get no more errors there. It sure can take a while. When the branch office (we have 11 or so in different countries, expanding to 20) owns a large block of numbers (say 100) you want to catch all of the "unconfigured" numbers so the caller (who may have fat fingered) hears a message in their language that has meaning.
    I do these large configs using Excel, with formulae etc to make the work easy. You will figure out the shortcuts - necessity is the mother of invention.
    Once the Excel is correct on all the CVP routing clients, export it as TAB separated and Bulk Import.
    To do the call type association (a painful task), I change the name of the call type - I put AAAAA in front. This forces it to the top of the combo box. So now you can actually fly through the Dialed Numbers you are trying to set and just use "Enter - Enter" to set the association. Once all done, change the name of the call type back.
    That's the best I can do.
    Regards,
    Geoff

  • EIC: Employee search - wild card search with personnel number

    Hi,
    The employee search functionality in EIC employee-search screen allows to search an employee through wild card search. We had set up this and everything was working fine, but suddenly the functionality to search an employee by giving part of personnel number as wild card search is not working, surprisingly other search criteria are listing employee list. For example, if i need to search an employee with personnel no 30000111, then i can give 30* in search criteria and employees starting with 30XXXXXX would be listed. This is the functionality not working at the moment.
    Can anybody please help - what could be the probable cause or where should i look to fix this? Any documentation in this regard would really be helpful.
    Thanks in advance.
    Sujit

    hi,
    Probably u can set a debug point in the bsp application and ask your abaper to debug the same.
    check if any patch application has been done after you saw the functionality working fine.
    Regards
    Sameer

  • I am being stalked by an ex boyfriend who either calls from a blocked number or a prepaid calling card.  Is there any free app that I can download to block a "blocked" number and/or the prepaid calling card numbers?

    I am being stalked by an ex-boyfriend who either calls from a blocked number or a prepaid calling card.  Is there any free app for my Iphone 4S that I can download that will block a "blocked" number and/or numbers from prepaid calling cards besides paying for smart limits?

    ... he has already threatened to kill me
    You need to keep reporting the continued harassment to the police and the court that issued the restraining order. The only technology certain to protect you from such lowlifes is carried in a holster.

  • HT201229 So if I had a number blocked, and then un block it, will I retreive the messages that were sent and blocked prior?

    If I had a number blocked, then un blocked it, would I receive the prior messages that were blocked?

    Yes they'll receive it(unless they have blocked you). Blocking occurs on your end, you won't get calls/SMS's/iMessages from them.

  • How to prevent the use of wild cards in select-option

    Hello experts,
    Is it possible to prevent the use of wild cards in a select-option? If yes, how is it done please?
    I have a
    SELECT-OPTIONS: o_comp  FOR dbtab-field OBLIGATORY DEFAULT 'FI'.
    and, I want to prevent the users for giving in some thing like FI* with the wildcard bc it would lead to dump.
    I want an error message to display and prevent the users for making such entry.
    Please I need your help and I would be very grateful.
    Thanks
    Nadin

    You have to use SELECT_OPTIONS_RESTRICT to restrict input allowed. Call this FM in INITIALIZATION or SELECTION-SCREEN OUPUT sections.
    Sample :
    TYPE-POOLS: sscr.
    INITIALIZATION.
    * Restrict SELECT-OPTIONS
      PERFORM restrict_select.
    FORM restrict_select.
      DATA: restrict TYPE sscr_restrict,
            opt_list TYPE sscr_opt_list,
            *** TYPE sscr_***.
    * Défine select-options modes (aka option list)
    * - ALL standard - all options allowed
      CLEAR opt_list.
      MOVE 'ALL' TO opt_list-name.
      MOVE 'X' TO: opt_list-options-bt,
                   opt_list-options-cp,
                   opt_list-options-eq,
                   opt_list-options-ge,
                   opt_list-options-gt,
                   opt_list-options-le,
                   opt_list-options-lt,
                   opt_list-options-nb,
                   opt_list-options-ne,
                   opt_list-options-np.
      APPEND opt_list TO restrict-opt_list_tab.
    * - EQU only equality allowed (list of values)
      CLEAR opt_list.
      MOVE 'EQU' TO opt_list-name.
      MOVE 'X' TO opt_list-options-eq.
      APPEND opt_list TO restrict-opt_list_tab.
    * Affect modes to parameters or block of parameters
    * ALL by default
      CLEAR ***.
      MOVE: 'A'          TO ***-kind,
            '*'          TO ***-sg_main,
            'ALL'        TO ***-op_main.
      APPEND *** TO restrict-***_tab.
    * EQU to internal material number
      CLEAR ***.
      MOVE: 'S'          TO ***-kind,
            'S-MATNR'    TO ***-name,
            'I'          TO ***-sg_main, " no exclusion
            'EQU'        TO ***-op_main. " only value list
      APPEND *** TO restrict-***_tab.
    * Call  FM
      CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'
           EXPORTING
                restriction = restrict
           EXCEPTIONS
                OTHERS      = 1.
    ENDFORM.                    " restrict_select
    In the sample, only select-options for matnr is restricted to single value list.
    For your request build a mode with all options except "pattern" ones : CP and NP.
    Regards

  • How to add * wild card to a specific field on the selection-screen.

    Hello,
    How to add a * WIld card to a field in selection screen.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS : S_STCTS FOR G_STCTS OBLIGATORY,      "NUMBER SCHEME
                     S_AT20A FOR G_ATTR20A,    "SUBSTANCE ID
    SELECTION-SCREEN END OF BLOCK B1.
    I need to add Wild card functionality to Number scheme field S_STCTS on selection-screen.
    Any suggestions would be apprecaited..
    Regards,
    Kittu

    Hi Kittu,
    Here is one sample code:-
    select-option : s_name like kna1-name1.
    start-of-selection.
    if s_name-low = '*'.
    select * from kna1 into table it_kna1.
    elseif s_name-low = 'pat*' or s_name-low = 'pat'.
    select * from kna1 into table it_kna1 where name1 like 'Pat%'.
    endif.
    In case of wild card Select should be :-
    select * from <dbtab> where <field> like 'P%'.
    You can also use RANGES in your Code.
    E.g. RANGES: R_OBJNR FOR JEST-OBJNR
    R_OBJNR-SIGN = 'I'.
    R_OBJNR-OPTION = 'CP'.
    R_OBJNR-LOW = 'K1*'.
    R_OBJNR-HIGH = 'K2*'.
    Hope this helps.
    Thanks & Regards
    Jitendra Gujarathi

  • Characteristic wild card in report painter

    Dear experts..
    I am developing a report painter for PS cost element report with structure CCSS.
    I want to create rows with dynamic characteristic and I am thinking of using wildcard in the characteristic variable.
    What I am trying to achieve is basically to filter WBS only for those which consist "ABC" in the project number (ABC in POSID). I know it can be achieved in the selection screen but I want the selection screen to be as generic as possible and only filter it at row level.
    In the normal functional report we can use '*' as the wildcard but it can not be used in characteristic variable.
    Appreciate any enlightenment on how to use variable or set to be able to do this.
    Thanks in advance

    Hi Alexei,
    Welcome to SDN.
    You need to give the exact file name. System can not determine file name with wild card.
    Hope this will help.
    Regards,
    Ferry Lianto

  • Wild card highlighting

    CTX_DOC.MARKUP is working fine for basic word search & stemming, but does not highlight for wild card search.
    For example, searches for "roam" and "$roam" highlight the word "roams", but searches for "roam%" do NOT highlight the word "roams".
    The Text Reference guide indicates that there shouldn't be any problems with wild card highlighting.
    Any suggestions?

    It works fine for me, as demonstrated below. Is your index synchronization current? Can you find the value with a contains query without markup? Is roams one of your stopwords?
    scott@ORA92> create table test_tab
      2    (id      number primary key,
      3       test_col varchar2(30))
      4  /
    Table created.
    scott@ORA92> insert into test_tab values (1, 'roams')
      2  /
    1 row created.
    scott@ORA92> create index test_idx on test_tab (test_col)
      2  indextype is ctxsys.context
      3  /
    Index created.
    scott@ORA92> select * from test_tab where contains (test_col, 'roam%') > 0
      2  /
            ID TEST_COL
             1 roams
    scott@ORA92> create table markuptab
      2    (query_id number,
      3       document clob)
      4  /
    Table created.
    scott@ORA92> exec ctx_doc.markup ('test_idx', 1, 'roam%', 'markuptab', '1')
    PL/SQL procedure successfully completed.
    scott@ORA92> select * from markuptab
      2  /
      QUERY_ID DOCUMENT
             1 <<<roams>>>
    scott@ORA92>

  • Wild Card Cert

    Is there a way to use a wild card cert in the CSS SSL Proxy list ?
    Looks like you can request a cert such as ABC*.xyz.com from Verisighn.
    Can you use that in a CSS for URLS like
    ABC1.xyz.com
    ABC2.xyz.com
    ABC3.xyz.com
    and only use one VIP ?
    Thanks
    Steve

    the domain will be used to get a destination ip address.
    So, the CSS does not really control the domain<->ip resolution.
    If you can configure your DNS server to point all domains to 1 ip, then you only need 1 vip on the CSS.
    However, if you have 1 ip for each domain, you will need the 1 vip per domain on the CSS.
    I know working with a single vip sounds easier, but this could be a big limitation for you in the future.
    If your number of domain increases or if the traffic load increases, the CSS performance could slow down as it will require to inspect all data to identify the domain name.
    Playing with more vip will allow you to identify the domain with just the ip and increase performance.
    Regards,
    Gilles.
    Thanks for rating this answer.

  • Open file using wild cards

    does anyone know how to open a file using wild cards in the name.
    For example, a certain folder will contain a number of files, with the name constructed as follows:
    CALDB_ then a 6 digit serial number, and then 14 characters which could be ANYTHING.  so it might look like this
    CALDB_123456_33KA1234567890.txt
    or
    CALDB_123457_33KA1234567890.txt
    The key part of the file name is the 6 digit serial number which is unique, and the CALDB_ which is always the same.
    I would like to use a file open command with the file name something like  CALDB_123456_*.txt, but it doesn't appear to work. 
    Can anyone help?
    Thanks
    Solved!
    Go to Solution.

    Hi Dylan,
    I have been searching along our forum, and found a similar question for using wildcards in selecting files. An active user (unclebump) replied on this request with a VI, with which you can select a folder on your computer which is scanned for certain files. I've adjusted this VI for selecting the CALDB_* files. Enclosed you will find this file (zipped) including my test folder.
    Maybe this will be helpfull for your application.
    Best regards,
    Peter Schutte
    Message Edited by Peter S on 10-14-2008 03:22 AM
    Attachments:
    File selecting.zip ‏12 KB

  • QUERY ERROR WITH WILD CARD ON FORM WHEN NO DATA WWC-49102

    Portal 30985 ; database 9014 on sun solaris
    Same server : two databases 9014 : db1 with portal and db2(used here as remote database);
    Step1 ; Create public database link; db_link on db1 through Portal interface;
    Step2 ; create public synonym emp_syn for table emp@db_link through Portal interface;
    Step3 :create form based on emp_syn;
    the form is generated OK and also is behaving OK when Insert,Update,Delete from
    underlying table ;but when I am quering for 758% into the empno field I've got the same error:
    Error: An unexpected error occurred: ORA-00000: normal, successful completion (WWV-16016)
    No conversion performed for type NUMBER, value 758%. (WWC-49102) INSTEAD OF RETURNING EMPTY FORM(NO ROWS)
    I have tryed to query on other fields ;
    querying on a numeric field will give the above message;
    querying on a varchar or date field with or without wild card will raise the following error:Error: An unexpected error occurred: ORA-00000: normal, successful completion (WWV-16016)
    An unexpected error occurred: ORA-00000: normal,successful completion (WWV-16016).
    Lawrence

    Hi Mike,
    You can actually just check for the existence of the cell:
    var l_Cell = $x(pId);
    if (l_Cell)
    rest of the code to hide the column
    }As long as l_Cell refers to a valid page item, then the if test passes and the rest of your code can run.
    Andy

  • Persona Q Wild Card Premium Edition Preorder

    I placed an order for Persona Q Shadow of the Labyrinth Wild Cards Premium Edition 3DS on 7/05/2014. Nearing the release of the game I decided to check on its status to see when it would be shipping and noticed that it was linking to the wrong version in my order history ( regular version, not Wildcard that I ordered ) I emailed BestBuy 11/03 asking why it was linking to the wrong version in my order history and I received the following response:
    "Hi Michael, Thank you for choosing Best Buy. I understand you would like to check the status of your order. I'll be happy to assist you. I was able to locate your order BBYXX-XXXXXXXXXXXX Persona Q Shadow of the Labyrinth The Wild Cards Premium Edition Nintendo 3DS using the email address [email protected] you used, and it appears that your pre-order status is pending release and scheduled to be shipped on December 2 2014."
    The response confirmed that I would be receiving the Wild Card Edition and when it would ship but didn't address why it was linking to the wrong item. I sent the following email back 11/07:
    "I'm confused as to why it says "Atlus Persona Q Shadow of the Labyrinth The Wild Cards Premium Edition Nintendo 3DS" in my order history but when I click on it it goes to the wrong version of the game. Do you have any idea why its doing that?"
    I then received the following response on 11/07:
    "After researching the issue, it appears that we have a system error issue with our Online Website. It's a site-wide issue and our technicians have already been made aware of it. We assure you our technicians are working full-time to immediately resolve the issue. We want you to know we have the most competent and technically gifted engineers working hand-in-hand in fixing the problem. Therefore, I should not take more than 24 hours for the said issue to be rectified."
    I waited 24 hours and checked and nothing had changed. As I wasn't receiving any help from BestBuy email support after numerous attempts I had to look online to find out what the issue was. After doing some searching I found other customers online had the same issue and were told by BestBuy customer service that BestBuy made a mistake with the SKU and that they were issuing $30 gift cards so people could get the correct version that they ordered. I emailed BestBuy back with this information 11/17 and was told:
    "Our technicians are still working to resolve it and we don't have an approximate time on when will it be resolve."
    and that I would receive a $10 gift card. For some reason the email support people seemed to have no idea about the SKU mistake ( even after I looked it up online and explained it to them ) or that BestBuy was sending $30 gift cards to customers so they could receive the item they ordered. While I appreciate any gift card a business offers me it was a bit confusing why everyone else was issued a $30 gift card ( http://forums.bestbuy.com/t5/Gaming-Support/Persona-Q-Premium-Edition-Preorder/td-p/838319 / CAG ) and those customers didn't have BestBuy mistakenly confirm that the Wildcard Edition would be sent to them.
    This has been extremely frustrating as I was erroneously told that I would receive the Wild Card Premium Edition, my order was changed without me receiving any notification at all, I was given the wrong information over and over and over again until I ultimately had to search online to find out what the issue was. I apologize for the length of this post but I needed to explain what happened and I wasn't getting any help at all from email support. I just want to either receive the game I ordered or a code / gift card so I can replace my order. Please help.

    Hi mike1942,
    I can see why you'd be concerned! Details on this issue have been provided to our phone and e-mail support teams, so it's disheartening to hear of the difficulties and conflicting information you've encountered in trying to find a solution.
    When this title was initially made available for pre-order on BestBuy.com, the standard edition was incorrectly listed as the Wild Cards edition. The SKU number was correct though, and our merchant team has since made sure SKU #7377002 properly reflects the standard edition online.
    I've sent you some information, so please make sure to check your private messages when you can. To check your PMs, simply sign into the forum and then click on the letter icon in the upper right-hand corner of the page.
    Aaron|Social Media Specialist | Best Buy® Corporate
     Private Message

  • 'Wild Card' access setting in iTunes U - private site

    Hi Folks,
    I mistakenly deleted one of my access settings in our private iTunes U site today, and have managed to block all of our users from seeing any of their course content.
    Does anyone know of an access setting that is some kind of Download wild card? I vaguely remember that it didn't look like any credentials were a part of the rule, so I assumed it was a kind of wild card.
    Cheers!

    The problem seems to be related to loading images from the apple site (deimos.apple.com). The iTunes launch page will randomly lock-up while loading these images ( there is a 30 second to 2 minute delay typically). If I try to load one of these images defined in the launch page HTML, directly in the browser I see the same issue. The issues varies, at times there is no issue and at others the images won't load properly 50% of the time.

  • Wild Carding with Record Search - Auto Suggest Behavior

    I have a property by name searchTerm which is enabled for wild card record search. When I am doing a wild card search passing bbay* to ERecSearch , it is not auto correcting to baby and returning no results, whereas when I send bbay to Endeca, it is automatically auto correcting to baby.
    Please let me know why is this different behavior noted. Do we not expect them to auto correct even when we use wild carding. Please throw some light on this and how can this be achieved

    As Pradeep said, auto-correction is one of the linguistic features that isn't supported for wildcard searching (along with stemming, thesaurus, snippeting and phrasing). One approach is to do a "cascading search", so execute a search without wildcarding first (and getting spell-correction, did-you-mean, stemming etc.), and if you don't get any matches then re-submit as a wildcarded search. This is also useful as part of a larger part number matching strategy.
    Michael

Maybe you are looking for

  • Center channel won't work now

    I just did a fresh windows install, reinstalled the creative drivers and software. I have it set to 5. like before but now it's sending my center channel sound through my Sub. My sound card is a creative xfi xtremegamer fatality pro with z5500 as my

  • Photos received on Facebook are too dark on iPad

    Facebook photos on my Mac look fine but are too dark on my iPad.  Can I change any settings on my iPad?

  • Charging iPhone with closed lid on mbp

    I've been researching, but found nothing this specific so far. Related links: - http://support.apple.com/kb/HT1476 - This says it may or may not charge - http://forums.mactalk.com.au/11/72536-snow-leopard-not-charging-iphone-while-lid -closed.html -

  • Java "for loop" in KM

    Hi All, I have a Table(I$_Customer) where i have data like this: CN;CA; CAD; Row_type; Rank; File_number CN;CA;CAD;1; 0; 1 A; 25; A; 2; 1; 1 B; 60; B; 2; 2; 1 C; 15; C; 2; 3; 2 D; 23; D; 2; 4; 2 E; 21; E; 2; 5; 2 F; 21; F; 2; 6; 3 G; 25; G; 2; 7; 3 H

  • Time won't displayed in title

    time won't displayed in title i can't see time in title when "backlight timer" set to 2 seconds please help