SELECT_OPTIONS_RESTRICT for the char star '*'

Hello..
I created a program that runs by material ranges... but I want to avoid that user put the char star "*"
examples they can use and I want to avoid:
Material number:    *   or   0, or  00101, etc... I want the user not use the *
Can I use the SELECT_OPTIONS_RESTRICT for this?
How I can defined it..
any example?

HI,
in at-selection screen on field s_matrial.
write this logic.
loop through s_metrial.
   if  s_matrial-low  ca '*'
  or s_matirial-high ca '*'.
  error message.
endif.
endloop.

Similar Messages

  • Hierarchy variable for the char

    Hi All,
    Can v creat the Hierarchy variable for the char who does not hav the heir. another thing is whats the procedure to create the hierarchy variable bcoz when i select the char to create the variable its showing var of type char. how i hav to change it to hierarchy.
    Thanx

    hie,
    i think i understood what you want.
    I think you can achieve this by following way.
    1) create a text variable for user entry. For which user enters values 2,    3, or 4 as you said.
    2) create a dummy calculated key figure and assign this text variable to its description
    3) when query will execute, user inputs values 2 or 3 or 4 which will be reflected in the output in the title of the new dummy KF.
    4) then write a macro to read that value and delete 1 or 2 or 3 columns  from output as necessary before user can access the actual results.
    Regards,
    Purvang

  • BW 7.3 Error in DTP if the values are char for the char field

    Hi,
    I have created a field with
    Eg: Field1 CHAR 7 -> i have removed the ALPHA conversion
    I am loading the data from ECC if the values are
    AA0-992 or AA1-AT1 there is no issue it is getting loaded
    but when i am getting the values as AAA-BBB it throws an error.
    In RSKC "-" is allowed CHAR.
    Can someone help becuase as this is the CHAR field it should accept
    Thanks

    Hi,
    I resolved in between we had the lower case characteris so that thrown and error.
    Thanks

  • REP-1352: The fonts specified for this report cannot be found for the char

    We have migrated all our character reports to oracle 10g - sun solaris machines.
    Now, these reports give us an error....
    REP-1352: The fonts specified for this report cannot be found for the character set specified by NLS_LANG
    Does anyone have suggestions.
    desformat - DELIMITED
    mode - character
    Thanks

    Hi,
    Did you check this DocId:203781.1. I think it will help you problem.
    Moreover does your X-server or vnc server on HP work fine.
    In the past with HP version 11.0 there was always problem with HP x-server. just check that your x-server is runinig will ex. x-clock.
    Cheers,
    Hamdy

  • Help required for the users  report requirement

    Hello,
    User requirement is to get the report as follows
    Period            planned order     Production order      Backlog
    Feb2008          15                           3                      18
    March2008      4                            11                     15
    Backlog is the formula for planned order & production order.
    My problem is that, In the cube the data for planned order is the char value 'X' or a blank.
    It has to count the total of planned order for the entire month of feb,& print the value counting the number of 'X',here as shown as 15.
    Planned order, Production order are in rows & are chracteristics.
    Is thr any solution to count master data which has a char value(X).
    I have tried using the formula variable.I had created the new formula.Then using the data functions as count(Formula variable),using the replacment path.But it did not work
    Help me out to find the total for the char value of the master data.
    Help would be rewarded!

    Hello,
    For BACKEND:
    1) Create a normal KF say counter and include it in the cube.
    2) Now you can populate the value for this KF via end routine in transformation.
    3) You need to check whether the value for planned order is X. If yes then update KF with value 1.
    4) I hope you can take care of this routine part. Once this is done the data in the cube might look in below manner:
    Month Planned-Order Counter
    Feb 2007 | X | 1
    Feb 2007 | X | 1
    Feb 2007 |  | 0
    Feb 2007 | X | 1
    Feb 2007 |  | 0
    Mar 2007 |  | 0
    Mar 2007 | X | 1
    Mar 2007 |  | 0
    Mar 2007 |  | 0
    Mar 2007 | X | 1
    Now in the report if you include month and counter the report will look like
    Month Counter
    Feb 2007 | 3
    Mar 2007 | 2
    If you see the counter is getting aggregated to give you the sum against the value of planned order as X against month.
    I think this should work.
    If this dosent work let me know i will let you the alternate solution for frontend. but for that too you need to make the above backend changes.
    So do the backend changes and try to use counter KF for showing planned orders and i think it should work fine.
    Regds,
    Shashank

  • All the char not available in Bex for an DSO

    Hi
    I am using a standard DSO for reporting. In DSO data fields contains 25 characteristics and i can see the records in all the characteristics. However when i try to do reportng in the BEx it shows only 20 characteristics.
    Other 5 char are missing. Please advice on this.
    Regards
    sapbi

    I'm confused can you please explain in more detail steps whats are u trying to do.
    Once you said you are building report on DSO later you said you are using infoset. be specific with the query that you want to ask.
    1) Are you able to see the info objects in DSO.?
    2) Are you building the report on top of DSO or Infoset?
    3) i asked you to check property "authorization relevant" is ticked or not for the info object which are not seen while building the Report on DSO
    in the info objects -- display screen -- business explorer tab -- is the option "auth relevant" is ticked or not?
    4) if you are using infoset what is the other target that you used to map and what are the keys that u had mapped in infoset?
    please provide all the details after checking again properly.... so that you can get some solution for your issue.

  • Why is the Star Transformation using two indexes for the same dimension?

    Hi,
    Recently, I have made an investigation about the Star Transformation feature. I have found a strange test case, which plays an important role in my strategy for our overall DWH architecture. Here it is:
    The Strategy:
    I would like to have the classical Star Transformation approach (single column Bitmap Indexes for each dimension foreign key column in the fact table), together with additional Bitmap Join Indexes for some of the dimension attributes, which would benefit from the materialization of the join (bitmap merge operation will be skipped/optimized).
    The query:
    select dp.brand, ds. region_name, dc.region_name
         , count(*), sum(f.extended_price)
      from fact_line_item  f
         , dim_part       dp
         , dim_supplier   ds
         , dim_customer   dc
    where dp.mfgr        = 10                 -- dimension selectivity = 1/10 --> acttual/fact selectivity = 6/10
       and f.part_dk      = dp.dk
       and ds.region_name = 'REGION #1' -- dimension selectivity = 1/9
       and f.supplier_dk  = ds.dk
       and dc.region_name = 'REGION #1' -- dimension selectivity = 1/11
       and f.customer_dk  = dc.dk
    group by dp.brand, ds. region_name, dc.region_name
    The actual plan:
    | Id  | Operation                              | Name                        | Starts | E-Rows | Cost (%CPU)| A-Rows |   A-Time   | Buffers | Reads  |
    |   0 | SELECT STATEMENT                       |                             |      1 |        |  3247 (100)|      1 |00:01:42.05 |     264K|    220K|
    |   1 |  HASH GROUP BY                         |                             |      1 |      2 |  3247   (1)|      1 |00:01:42.05 |     264K|    220K|
    |*  2 |   HASH JOIN                            |                             |      1 |  33242 |  3037   (1)|    217K|00:01:29.67 |     264K|    220K|
    |*  3 |    TABLE ACCESS FULL                   | DIM_SUPPLIER                |      1 |   1112 |   102   (0)|   1112 |00:00:00.01 |     316 |      4 |
    |*  4 |    HASH JOIN                           |                             |      1 |  33245 |  2934   (1)|    217K|00:01:29.10 |     264K|    220K|
    |*  5 |     TABLE ACCESS FULL                  | DIM_CUSTOMER                |      1 |    910 |   102   (0)|    910 |00:00:00.08 |     316 |      8 |
    |*  6 |     HASH JOIN                          |                             |      1 |  33248 |  2831   (1)|    217K|00:01:28.57 |     264K|    220K|
    |*  7 |      TABLE ACCESS FULL                 | DIM_PART                    |      1 |     10 |     3   (0)|     10 |00:00:00.01 |       6 |      0 |
    |   8 |      PARTITION RANGE ALL               |                             |      1 |  36211 |  2827   (1)|    217K|00:01:28.01 |     264K|    220K|
    |   9 |       TABLE ACCESS BY LOCAL INDEX ROWID| FACT_LINE_ITEM              |      6 |  36211 |  2827   (1)|    217K|00:01:33.85 |     264K|    220K|
    |  10 |        BITMAP CONVERSION TO ROWIDS     |                             |      6 |        |            |    217K|00:00:07.09 |   46980 |   3292 |
    |  11 |         BITMAP AND                     |                             |      6 |        |            |     69 |00:00:08.33 |   46980 |   3292 |
    |  12 |          BITMAP MERGE                  |                             |      6 |        |            |    193 |00:00:02.09 |    2408 |   1795 |
    |  13 |           BITMAP KEY ITERATION         |                             |      6 |        |            |   4330 |00:00:04.66 |    2408 |   1795 |
    |  14 |            BUFFER SORT                 |                             |      6 |        |            |     60 |00:00:00.01 |       6 |      0 |
    |* 15 |             TABLE ACCESS FULL          | DIM_PART                    |      1 |     10 |     3   (0)|     10 |00:00:00.01 |       6 |      0 |
    |* 16 |            BITMAP INDEX RANGE SCAN     | FACT_LI__P_PART_DIM_KEY_BIX |     60 |        |            |   4330 |00:00:02.11 |    2402 |   1795 |
    |* 17 |          BITMAP INDEX SINGLE VALUE     | FACT_LI__P_PART_MFGR_BJX    |      6 |        |            |   1747 |00:00:06.65 |     890 |    888 |
    |  18 |          BITMAP MERGE                  |                             |      6 |        |            |    169 |00:00:02.78 |   16695 |    237 |
    |  19 |           BITMAP KEY ITERATION         |                             |      6 |        |            |   5460 |00:00:01.56 |   16695 |    237 |
    |  20 |            BUFFER SORT                 |                             |      6 |        |            |   5460 |00:00:00.02 |     316 |      0 |
    |* 21 |             TABLE ACCESS FULL          | DIM_CUSTOMER                |      1 |    910 |   102   (0)|    910 |00:00:00.01 |     316 |      0 |
    |* 22 |            BITMAP INDEX RANGE SCAN     | FACT_LI__P_CUST_DIM_KEY_BIX |   5460 |        |            |   5460 |00:00:02.07 |   16379 |    237 |
    |  23 |          BITMAP MERGE                  |                             |      6 |        |            |    170 |00:00:03.65 |   26987 |    372 |
    |  24 |           BITMAP KEY ITERATION         |                             |      6 |        |            |   6672 |00:00:02.23 |   26987 |    372 |
    |  25 |            BUFFER SORT                 |                             |      6 |        |            |   6672 |00:00:00.01 |     316 |      0 |
    |* 26 |             TABLE ACCESS FULL          | DIM_SUPPLIER                |      1 |   1112 |   102   (0)|   1112 |00:00:00.01 |     316 |      0 |
    |* 27 |            BITMAP INDEX RANGE SCAN     | FACT_LI__S_SUPP_DIM_KEY_BIX |   6672 |        |            |   6672 |00:00:02.74 |   26671 |    372 |
    The Question:
    Why is the Star Transformation using both indexes FACT_LI__P_PART_DIM_KEY_BIX and FACT_LI__P_PART_MFGR_BJX for the same dimension criteria (dp.mfgr = 10)?? The introduction of the additional Bitmap Join Index actually make Oracle to do the work twice !!!
    Anybody, any idea ?!?

    Dom, here it is the plan with the predicates:
    | Id  | Operation                              | Name                        | Starts | E-Rows | Cost (%CPU)| A-Rows |   A-Time   | Buffers | Reads  |
    |   0 | SELECT STATEMENT                       |                             |      1 |        |  3638 (100)|      1 |00:06:41.17 |     445K|    236K|
    |   1 |  HASH GROUP BY                         |                             |      1 |      2 |  3638   (1)|      1 |00:06:41.17 |     445K|    236K|
    |*  2 |   HASH JOIN                            |                             |      1 |  33242 |  3429   (1)|    217K|00:08:18.02 |     445K|    236K|
    |*  3 |    TABLE ACCESS FULL                   | DIM_SUPPLIER                |      1 |   1112 |   102   (0)|   1112 |00:00:00.03 |     319 |    313 |
    |*  4 |    HASH JOIN                           |                             |      1 |  33245 |  3326   (1)|    217K|00:08:17.47 |     445K|    236K|
    |*  5 |     TABLE ACCESS FULL                  | DIM_CUSTOMER                |      1 |    910 |   102   (0)|    910 |00:00:00.01 |     319 |    313 |
    |*  6 |     HASH JOIN                          |                             |      1 |  33248 |  3223   (1)|    217K|00:08:16.63 |     445K|    236K|
    |*  7 |      TABLE ACCESS FULL                 | DIM_PART                    |      1 |     10 |     3   (0)|     10 |00:00:00.01 |       6 |      0 |
    |   8 |      PARTITION RANGE ALL               |                             |      1 |  36211 |  3219   (1)|    217K|00:08:16.30 |     445K|    236K|
    |   9 |       TABLE ACCESS BY LOCAL INDEX ROWID| FACT_LINE_ITEM              |      6 |  36211 |  3219   (1)|    217K|00:08:40.89 |     445K|    236K|
    |  10 |        BITMAP CONVERSION TO ROWIDS     |                             |      6 |        |            |    217K|00:00:32.00 |   46919 |  19331 |
    |  11 |         BITMAP AND                     |                             |      6 |        |            |     69 |00:00:34.50 |   46919 |  19331 |
    |  12 |          BITMAP MERGE                  |                             |      6 |        |            |    193 |00:00:00.58 |    2353 |      1 |
    |  13 |           BITMAP KEY ITERATION         |                             |      6 |        |            |   4330 |00:00:00.10 |    2353 |      1 |
    |  14 |            BUFFER SORT                 |                             |      6 |        |            |     60 |00:00:00.01 |       6 |      0 |
    |* 15 |             TABLE ACCESS FULL          | DIM_PART                    |      1 |     10 |     3   (0)|     10 |00:00:00.01 |       6 |      0 |
    |* 16 |            BITMAP INDEX RANGE SCAN     | FACT_LI__P_PART_DIM_KEY_BIX |     60 |        |            |   4330 |00:00:00.07 |    2347 |      1 |
    |* 17 |          BITMAP INDEX SINGLE VALUE     | FACT_LI__P_PART_MFGR_BJX    |      6 |        |            |   1747 |00:01:23.64 |     882 |    565 |
    |  18 |          BITMAP MERGE                  |                             |      6 |        |            |    169 |00:00:09.14 |   16697 |   7628 |
    |  19 |           BITMAP KEY ITERATION         |                             |      6 |        |            |   5460 |00:00:02.19 |   16697 |   7628 |
    |  20 |            BUFFER SORT                 |                             |      6 |        |            |   5460 |00:00:00.01 |     316 |      0 |
    |* 21 |             TABLE ACCESS FULL          | DIM_CUSTOMER                |      1 |    910 |   102   (0)|    910 |00:00:00.01 |     316 |      0 |
    |* 22 |            BITMAP INDEX RANGE SCAN     | FACT_LI__P_CUST_DIM_KEY_BIX |   5460 |        |            |   5460 |00:00:08.78 |   16381 |   7628 |
    |  23 |          BITMAP MERGE                  |                             |      6 |        |            |    170 |00:00:21.46 |   26987 |  11137 |
    |  24 |           BITMAP KEY ITERATION         |                             |      6 |        |            |   6672 |00:00:10.29 |   26987 |  11137 |
    |  25 |            BUFFER SORT                 |                             |      6 |        |            |   6672 |00:00:00.01 |     316 |      0 |
    |* 26 |             TABLE ACCESS FULL          | DIM_SUPPLIER                |      1 |   1112 |   102   (0)|   1112 |00:00:00.01 |     316 |      0 |
    |* 27 |            BITMAP INDEX RANGE SCAN     | FACT_LI__S_SUPP_DIM_KEY_BIX |   6672 |        |            |   6672 |00:00:20.94 |   26671 |  11137 |
    Predicate Information (identified by operation id):                                                                                                  
       2 - access("F"."SUPPLIER_DK"="DS"."DK")                                                                                                           
       3 - filter("DS"."REGION_NAME"='REGION #1')                                                                                                        
       4 - access("F"."CUSTOMER_DK"="DC"."DK")                                                                                                           
       5 - filter("DC"."REGION_NAME"='REGION #1')                                                                                                        
       6 - access("F"."PART_DK"="DP"."DK")                                                                                                               
       7 - filter("DP"."MFGR"=10)                                                                                                                        
      15 - filter("DP"."MFGR"=10)                                                                                                                        
      16 - access("F"."PART_DK"="DP"."DK")                                                                                                               
      17 - access("F"."SYS_NC00017$"=10)                                                                                                                 
      21 - filter("DC"."REGION_NAME"='REGION #1')                                                                                                        
      22 - access("F"."CUSTOMER_DK"="DC"."DK")                                                                                                           
      26 - filter("DS"."REGION_NAME"='REGION #1')                                                                                                        
      27 - access("F"."SUPPLIER_DK"="DS"."DK")                                                                                                           
    Note                                                                                                                                                 
       - star transformation used for this statement                                                                                                     

  • Dialling plan that supports star services for the UK

    Wendy has sent me a dialling play that supporrts *21, but I need a UK dialling plan that supports all fo the UK star services as below - Can anyone help please?
    SET ANONYMOUS CALL REJECTION *227#
    CHECK ACR *#227#
    CANCEL ACR #227#
    Call Divert on all calls
    SET CALL DIVERSION * 21 * [phone number] #
    CHECK CALL DIVERSION * # 21 #
    CANCEL CALL DIVERSION # 21 #
    Call Divert on no reply
    SET DIVERSION ON NO REPLY * 61 * [phone number] #
    CHECK DIVERSION ON NO REPLY * # 61 #
    CANCEL DIVERSION ON NO REPLY # 61 #
    Divert on no reply: *61*number*wait# == (Extra System Y facility only - does not work on 410567 as of Dec 2011)
    Wait is two digit time in seconds (05 to 60) before redirection takes place.
    Call Divert on busy
    SET DIVERSION ON BUSY * 67 * [phone number] #
    CHECK DIVERSION ON BUSY * # 67 #
    CANCEL DIVERSION ON BUSY # 67 #
    Call Divert on no reply or busy
    SET DIVERSION ON NO REPLY & BUSY * 66 * [phone number] #
    CHECK DIVERSION ON NO REPLY & BUSY * # 66 #
    CANCEL DIVERSION ON NO REPLY & BUSY # 66 #
    Call Minder (Voicemail)
    CALL MINDER SERVICE 1571
    Call Waiting
    SET CALL WAITING * 43 #
    CHECK CALL WAITING * # 43 #
    CANCEL CALL WAITING # 43 #
    Caller Display
    SET CALLER DISPLAY DATA ON *234#
    CHECK CALLER DISPLAY DATA *#234#
    CANCEL CALLER DISPLAY DATA #234#
    Caller ID
    WITHHOLD CALLER ID 141 [phone number]
    RELEASE CALLER ID 1470 [phone number]
    CALLER RETURN 1471
    ERASES LAST NUMBER GIVEN ON CALLER RETURN 1475
    BLOCK LAST CALL ANSWERED WITH CHOOSE TO REFUSE 14258 [PIN] **
    ADD TO LIST OF BLOCKED NUMBERS WITH CHOOSE TO REFUSE 14258 [phone number] #
    Charge Advice
    SET CHARGE ADVICE (BEFORE A CALL) * 40 * [phone number] #
    SET CHARGE ADVICE (FOR ALL CALLS) * 411 #
    CHECK CHARGE ADVICE *# 411 #
    CANCEL CHARGE ADVICE # 411 #
    Choose to Refuse
    BLOCK LAST CALL ANSWERED WITH CHOOSE TO REFUSE 14258 [PIN] **
    ADD TO LIST OF BLOCKED NUMBERS WITH CHOOSE TO REFUSE 14258 [phone number] #
    I
    ncoming Call Barring
    SET INCOMING CALL BARRING * 261 #
    CHECK INCOMING CALL BARRING * # 261 #
    CANCEL INCOMING CALL BARRING # 261 #
    Miscellaneous
    CHECK WHICH SERVICES ARE ACTIVE * # 001 #
    BT LINE TEST & RINGBACK FACILITY 17070
    REDIAL LAST NUMBER DIALLED **0
    Outgoing Call Barring
    SET OUTGOING CALL BARRING * 34 option #
    CHECK OUTGOING CALL BARRING * # 34 #
    CANCEL OUTGOING CALL BARRING # 34 option * [PIN] #
    Reminder Call Service
    SET REMINDER CALL (using 24 hour clock with 4 digits) * 55 * [time] #
    CHECK REMINDER CALL * # 55 #
    CANCEL REMINDER CALL # 55 #
    SET REGULAR REMINDER CALL * 56 * [time] * [day option] #
    CHECK ALL REGULAR REMINDER CALL * # 56 #
    CANCEL A REGULAR REMINDER CALL # 56 * [time] * [day option] #
    CANCEL ALL REGULAR REMINDER CALLS # 56 #
    Day options numbers: Monday - 1, Tuesday - 2, Wednesday - 3, Thursday - 4, Friday - 5, Saturday - 6, Sunday - 7, Monday - Friday: 8 Every Day - 9.
    Remote (Smart) Call Divert on all calls
    SET REMOTE CALL DIVERT ON ALL CALLS * 44 * [PIN] * [your full phone number] * [number to divert to] #
    CHECK REMOTE CALL DIVERT ON ALL CALLS # 44 * [PIN] * [your full phone number] #
    CANCEL REMOTE CALL DIVERT ON ALL CALLS * # 44 * [PIN] * [your full phone number] #
    Remote (Smart) Call Divert on no reply
    SET REMOTE CALL DIVERT ON NO REPLY * 64 * [PIN] * [your full phone number] * [phone number to divert to] #
    CHECK REMOTE CALL DIVERT ON NO REPLY # 64 * [PIN] * [your full phone number] #
    CANCEL REMOTE CALL DIVERT ON NO REPLY * # 64 * [PIN] * [your full phone number] #
    Remote (Smart) Call Divert on busy
    SET REMOTE CALL DIVERT ON BUSY * 65 * [PIN] * [your full phone number] * [phone number to divert to] #
    CHECK REMOTE CALL DIVERT ON BUSY # 65 * [PIN] * [your full phone number] #
    CANCEL REMOTE CALL DIVERT ON BUSY * # 65 * [PIN] * [your full phone number] #
    Ringback
    SET RINGBACK [phone number] 5
    CHECK RINGBACK *#37#
    CANCEL RINGBACK #37#
    SET RING BACK INHIBIT *02*37#
    CHECK RING BACK INHIBIT *#02*37#
    CANCEL RING BACK INHIBIT #02*37#
    CALL ROUTING VIA BT
    (when using another provider) 1280

    Hi Jon,
    After thorough discusiion with engineering team and marketing team, we have decided to support most star services you requested except the following items. I have created a PMF for it. Please send me an email at [email protected]. I will reply you with the PMF.
    Call Minder (Voicemail) 
    CALL MINDER SERVICE 1571                                                                                   
    Call Waiting  
    SET CALL WAITING  * 43 #
    CHECK CALL WAITING  * # 43 #
    CANCEL CALL WAITING  # 43 #
    Caller ID
    WITHHOLD CALLER ID 141    [phone number] 
    RELEASE CALLER ID  1470  [phone number] 
    CALLER RETURN 1471                                                                                    
    ERASES LAST NUMBER GIVEN ON CALLER RETURN 1475    
    BLOCK LAST CALL ANSWERED WITH CHOOSE TO REFUSE 14258 [PIN] **  
    ADD TO LIST OF BLOCKED NUMBERS WITH CHOOSE TO REFUSE 14258 [phone number] #
    Choose to Refuse 
    BLOCK LAST CALL ANSWERED WITH CHOOSE TO REFUSE 14258 [PIN] **  
    ADD TO LIST OF BLOCKED NUMBERS WITH CHOOSE TO REFUSE 14258 [phone number] #
    Incoming Call Barring   
    SET INCOMING CALL BARRING    * 261 #
    CHECK INCOMING CALL BARRING    * # 261 # 
    CANCEL INCOMING CALL BARRING    # 261 #
    REDIAL LAST NUMBER DIALLED **0 
    Outgoing Call Barring 
    SET OUTGOING CALL BARRING  * 34 option #
    CHECK OUTGOING CALL BARRING    * # 34 # 
    CANCEL OUTGOING CALL BARRING    # 34 option * [PIN] #
    Reminder Call Service 
    SET REMINDER CALL (using 24 hour clock with 4 digits)    * 55 * [time] #  
    CHECK REMINDER CALL  * # 55 #
    CANCEL REMINDER CALL  # 55 #  
    SET REGULAR REMINDER CALL    * 56 * [time] * [day option] #
    CHECK ALL REGULAR REMINDER CALL    * # 56 # 
    CANCEL A REGULAR REMINDER CALL    # 56 * [time] * [day option] # 
    CANCEL ALL REGULAR REMINDER CALLS    # 56 #
    Day options numbers: Monday - 1, Tuesday - 2, Wednesday - 3, Thursday - 4, Friday - 5, Saturday - 6, Sunday - 7, Monday - Friday: 8 Every Day - 9.
    Ringback
    SET RINGBACK [phone number] 5
    CHECK RINGBACK   *#37# 
    CANCEL RINGBACK  #37#
    SET RING BACK INHIBIT *02*37#
    CHECK RING BACK INHIBIT *#02*37#
    CANCEL RING BACK INHIBIT #02*37# 
    Best regards,
    Wendy

  • Has anyone one else had problems redeeming the code for the free onetime download of Star Trek 2009 Movie?

    Has anyone one else had problems redeeming the code for the free onetime download of the Star Trek 2009 Movie?

    dawnfromcabot wrote:
    ITUNES HAS CHARGED MY DEBIT CARD $99.99 FOR GLOBAL WAR RIOT-SOME GAME I DID NOT KNOW WAS LOADED ON MY OTHER PHONE; HOWEVER, WHEN I PULLED UP THIS APP TO SEE EXACTLY WHAT IT WAS WAS I SURPRISED TO SEE I COULD DOWNLOAD IT FOR 'FREE'. I HAVE CONTACTED ITUNES THROUGH THIS REDICULOUSLY CHICKEN SH_T SYSTEM THEY USE SO THEY DO NOT ACTUALLY HAVE TO HEAR HOW UPSET A PERSON IS NOW THAT THEY CANNOT BUY FOOD FOR THEIR CHILDREN BECAUSE OF A MISTAKE MADE ON ITUNES PART.  I DID RECEIVE AN EMAILED RESPONSE FROM STEPHANIE WHO ADVISED THIS WAS PUCHARED ON A PHONE THAT HAS PURCHASED DOWNLOADS IN THE PAST. I WONDER IF SHE THOUGHT TO LOOK AT MY ENTIRE DOWNLOAD HISTORY AND DISCOVER THAT NOTHING HAS EVER BEEN PURCHASED ON MY ITUNE ACCOUNT IN THE AMOUNT REMOTELY CLOSE TO WHAT THEY ARE CHARGING ME NOW.  THAT IS BECAUSE I DO TRY TO MONITOR THIS ACCOUNT AND OBVIOUSLY THIS LAST PURCHASE WAS DONE WITHOUT MY KNOWLEDGE UNTIL I CHECKED MY ONLINE BANKING ACCOUNT, WHICH I DO EVERY DAY.  TO MAKE MATTERS WORSE THE APP STATES IT IS FREE TO INSTALL WHEN YOU PULL IT UP SO NO ONE HAS CLARIFIED TO MY WHERE THE $99.99 COMES INTO PLAY.  I WILL NOT DROP THIS UNTIL MY BACK ACCOUNT HAS BEEN PROPERERLY CREDITED IN THE SAME TIME FRAME IT TOOK YOU TO TAKE MY MONEY. I WILL LAUNCH A COMPLAINT WITH EVERY POSSIBLE ENTITY IN THE ITUNES COMPANY AND BUSINESSES OUTSIDE THAT REGULATE THEIR BUSINESS UNTIL THIS HAS RESOLVED IN MY FAVOR AS I AM THE ONE WHO HAS BEEN VICTIMIZED BY A COMPANY I INVITED INTO MY TELEPHONE NETWORK IN GOOD FAITH!!!!!!!!!!!!
    Reading that is giving me a headache, how about normal type.

  • How to display attributes for a CHAR in the Excel file (BEx)?

    Hi all,
    I knew that I can display attributes for a CHAR (ex: attributes - address, phone#, zip code for CHAR-Customer) when I run Web- based report. But I cannot find this function after I export the file to Excel. In the context menu for excel file, I only see 'select filter'(but no display attribute values), drilldown, properties (for query). Is it something that I cannot have in the excel file for the BEx report?
    Thanks
    J.

    Hi Bhanu,
    In fact, I found that I can move IOs in the 'rows', 'column', and 'free CHARs' and so do end user by using 'local view'. That means every one can change the query definition, right?
    For your last question, that was what I want to know. How can I prevent 'end users' change those query definitions? Is it about 'role' setting, right? But I am not the one to do 'role' setting.
    Thanks for help. (I will asign points when the SDN system works)
    J.

  • Confirm the char value for in UTF8

    Hi Team,
    we are facing an issue with one of the special characters in Oracle Database:
    1. We have description with ® in description
    2. We have the database charset as UTF8
    3. The setting for the application is Unicode
    4. When we query the item on the Application, SQL Developer, the description shows fine
    5. When we run the query connecting to the UNIX server with the charset UTF8, the description shows fine.
    6. When we run the query connecting to the UNIX Server with the charset ISO-8859-1:1998 (Latin-1, West Europe), the description shows ® instead of ®.
    7. The character value in the database shows as 49838.
    8. When we check for the query SELECT CHR (49838) FROM DUAL in SQL developer, the output shows as ®
    9. When we check for the query SELECT CHR (49838) FROM DUAL with the UTF8 as charset then the output shows as ®
    10. When we check for the query SELECT CHR (49838) FROM DUAL with the ISO-8859-1:1998 (Latin-1, West Europe) as charset then the output shows as ®
    11. We have also tried copying the character ® from charmap and using it in the description and even then it shows as ® when connected to UNIX using the charset ISO-8859-1:1998 (Latin-1, West Europe)
    Can anyone confirm the char value for ® in UTF8.
    Thanks
    Madhavi Gadicherla

    194 174 (hex C2 AE)
    http://www.denalimultimedia.com/info/Articles.aspx?cid=07&topic=unicode_utf-8
    http://www.utf8-zeichentabelle.de
    http://www.williamrobertson.net/documents/ascii.html
    194 when interpreted on its own is the  character, and 174 is ®. The application needs to know it's a 2-byte UTF-8 character.
    49838 is C2A2 in hex, which looks correct for the CHR function in a UTF-8 database.

  • HT5024 It states that it takes 24hrs for changes to come into effect. However, what does it mean that it may retains my review in the system indefinitely, so if I rate it 1 star by accident, and changed it to rate 5 stars, the 1 star rating is not removed

    It states that it takes 24hrs for changes to come into effect. However, what does it mean that it may retain my review in the system indefinitely? So if I rate it 1 star by accident, and changed it to rate 5 stars, the 1 star rating is not removed?

     Hi,
    One of my ex-colleagues has installed a NI-DAQ 6.5 in our system. [And I do not see any other naitional instruments card in the CPU of the computer, may be he removed it] I deleted the account and all his files in the system. When I am trying to install version8.0, its not getting installed and giving me a message that I should uninstall the previous version by going to Add/Remove programs in the control panel.
    I tried doing that, but the "Change/Remove" button does not seem to work...[There is no response and so unable to install the new version...]
    Any idea how can this problem be solved?
    It is a windowsXP operating system with SP2 installed on a machine with P4 processor.
    Thanks

  • Description not coming for a Char in the cube

    Hello All,
    I have recently enhanced a standerd data source. I have created a new info object and map the new field in the data source.
    Now my problem is althogh the valus for the new field is matching with source , but the vulues are coming in short forms.
    Like in source tha value is DATENS but here in BW its coming as DE. The values are coming in short form.
    I have checked the length of new Info Obj and its much more so no problem with length.
    Do I have to do a text load?
    I have added the new IO to info provider only which is getting populated through transaction data.
    Thanks and Regards
    Sunny

    Hello all,
    I found that in my enhancement , in the code I had a type declaration which is of two character. This caused the value in the added field to be of two char/
    Thanks for the information
    Sunny

  • I am looking for a small Dell black and white, laser printer like the Energy Star 1133 that is compatible with my macbook, 10.6.8.  I would like to buy a new computer in the near future so would need it to be work on my next computer also.  Any suggestion

    I am looking for a small Dell black and white, laser printer like the Energy Star 1133 that is compatible with my macbook, 10.6.8.  I would like to buy a new computer in the near future so would need it to be work on my next computer also.  Any suggestions?
    MacBook, Mac OS X (10.6.8)

    I am looking for a small Dell black and white, laser printer like the Energy Star 1133 that is compatible with my macbook, 10.6.8.  I would like to buy a new computer in the near future so would need it to be work on my next computer also.  Any suggestions?
    MacBook, Mac OS X (10.6.8)

  • HT5714 Why did I pay $19 for Start Trek Into Darkness pre-order, if Apple KNEW they were going to release a bundle on the release date and I could have got the other Star Trek movie for just $5 more?  What the heck Apple, I feel completely ripped off.

    Why did I pay $19 for Start Trek Into Darkness pre-order, if Apple KNEW they were going to release a bundle on the release date and I could have got the other Star Trek movie for just $5 more?  What the heck Apple, I feel completely ripped off.
    I didn't even have time to cancel the preorder as that processed a couple minutes before the bundle was posted.
    Pre-orders are apparently not worth my time ever again.  

    Go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store. Perhaps there will be something they can do for you.
    Regards.

Maybe you are looking for

  • Error message while creating or editing a report

    Hi, we acquire the Crystal reports Ver 2008 type full, and this moment we are having an error message while creating or editing a report, the message suddenly appears saying: Crw32.exe has enconutered a problem and needs to close. Is there a patch av

  • Can anyone tell me in detail how to install SharePoint 2013?

    I know it requires Windows Server Operating System, so  installed it on my VMWare (can it be installed on Win8 by any any any chance, highly unlikely) When I installed SharePoint Foundation 2013, it extracted files and then opened cmd prompt which op

  • Not a Cisco expert here but trying to load config.txt...

    So a few years ago we purchased (3) Aironet 1242AG AP's and was able to configure one of then, download the config.txt via the GUI, edit the config.txt file with the unique host name and IP's for the other (2) AP's.  Loaded them all just fine and the

  • Two Headers in the same table

    Hi people, Since i guess this is a pretty common question, i did make a search in the forum and Google. I did not find the way to have 2 Headers in the same table. I have a 4 pages long table. The same Header is quite useful in the first 2 pages but

  • DataSetConverter Error with TimeSpan - ArgumentException

    Using Crystal Reports for Visual Studio 2010 (SP1 installed) I can reproduce an error when using the DataSetConverter on datasets which contain columns of datatype "TimeSpan". DataSets will have columns of type "TimeSpan" for columns of type "Time" i