Date logic required urgently

hI all,
i need logic for the following
Basically, “15.06.2007” is the “Required delivery date for the plant”. This means that the stock should be there in the plant by “15.06.2007”.
We need to change the formula for the delivery date.
Formula: Delivery date = (15.06.2007 – LEAD TIME of the material)
Say, for example the lead time for the product is 8 (this varies for different materials). Then the delivery date should be:
Delivery date = (15.06.2007 – 8)
                            = 07.06.2007
So we need to create a PO for this material on 07.06.2007
Thanks
sanjeev

use this Fm
RP_CALC_DATE_IN_INTERVAL
pass i/p as date and  sign as minus .
make use of this code .
pass ur lead days 
data: date like sy-datum,
      date1 like sy-datum.
date = sy-datum.
CALL FUNCTION 'RP_CALC_DATE_IN_INTERVAL'
  EXPORTING
    date            = date
    days            = 08 "take this as leadtime in days  
    months          = 00
   SIGNUM           = '-'   
    years           = 00
IMPORTING
   CALC_DATE       = date1. " new date
write:/ 'new date',  date1.
regards,
Vijay

Similar Messages

  • Date Logic required

    Hi All,
    I have a requirement,
    If user passes a date "1-JAN-2012" i need to pick the data between first half of the month i.e 01-JAN-2012 to 15-JAN-2012.This same for the dates 1-15.
    If user passes the date "16-JAN-2012" ineed to pick the date between second half of the month i.e 16-JAN-2012 to 31-JAN-2012.this same for teh dates 16-31.
    Here we need to consider all the months like jan...to dec.
    Request you to please help me in this issue.
    Regards
    Raghu

    Hi, Raghu,
    If you're starting with a string such as '1-JAN-2012' or '16-JAN-2012', you can do this at the beginning of your query:
    WITH    got_input_date  AS
         SELECT     TO_DATE (:input_date_string, 'DD-MON-YYYY')     AS input_date
         FROM     dual
    ,     dates_wanted     AS
         SELECT     CASE
                  WHEN  TO_CHAR (input_date) <= '15'
                  THEN  TRUNC (input_date, 'MONTH')          --  1st of the month
                  ELSE  TRUNC (input_date, 'MONTH) + 15     -- 16th of the month
              END   AS start_date
         ,     CASE
                  WHEN  TO_CHAR (input_date) <= '15'
                  THEN  TRUNC (input_date, 'MONTH') + 15     -- 16th of this month
                  ELSE  TRUNC ( ADD_MONTHS (input_date, 1)
                              , 'MONTH'               -- 1st of next month
              END   AS end_date_plus_1
         FROM     got_input_date
    ...To filter by these date, you can reference dates_wanted anywhere in the rest of the query. for example:
    FROM     table_x          tx
    JOIN     dates_wanted     dw  ON   tx.action_date     >= dw.start_date
                       AND      tx.action_date     <  dw.end_date_plus_1 
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables, and also post the results you want from that data for a few different values of the input parameter.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using.

  • Date of required availability of a purchasing order

    Hi,
    Is there a way to get the date of required availability for a list of purchasing orders (PO)? 
    What I'd like to do is extract the list of all open POs with the date they are required for production to see if they are late or not.  I'm not talking about the PO delivery date that was agreed with the supplier. I'm talking about the date the material in the PO is required in order not to delay the production.
    I know that I can see the date of required availability of a material in MD04 but it's only one material at a time and not really good to do reporting. 
    Thanks

    Xirpinu,
    Unless you are using MTO for both the parent and the component, the only way to determine the requirements date for a given Purchase order would be through a calculation, which you would have to develop.
    Rather than try to create this calculation, and then commit it to a report, why not use the tool that was intended to manage this issue - MD06.
    If you execute MD06, and select exception group 7, you can find all exception messages for a material that would require you to pullin (msg 10), pushout (msg 15), or delete a purchase order (msg 20).  For your purchased parts, this would be the ones in which the requirements date/qty is inconsistent with the Purchase order delivery date/qty.  If it became necessary to determine the requirements date, MD06 supports branching directly to MD05, where you can apply whatever logic you wish to determine the requirements date.
    Best Regards,
    DB49

  • Logic required  for Sort in ALV

    Hi All,
    I am dowloding the ALV report layout in excel sheet thorough mailing functionality.
    I want to implenemnt the dynamic sort. Here I am writing this.but i want the logic for below code.
          CALL FUNCTION 'LT_DBDATA_READ_FROM_LTDX'
            EXPORTING
      I_TOOL             = 'LT'
              IS_VARKEY          = W_VARKEY_EU
            TABLES
              T_DBFIELDCAT       = IT_DBFIELDCAT_EU
            T_DBSORTINFO       =  IT_DBSORTINFO
             T_DBFILTER         = IT_FILTER_LAYOUT
             T_DBLAYOUT         = IT_DB_LAYOUT.
    LIT_DBSORTINFO[] = IT_DBSORTINFO[].
        SORT LIT_DBSORTINFO[] BY KEY1.
        DELETE ADJACENT DUPLICATES FROM LIT_DBSORTINFO[] COMPARING KEY1.
        LOOP AT LIT_DBSORTINFO[].
          CLEAR: LW_SPOS,
                 LW_UP,
                 LW_DOWN,
                 LW_SUBTOT,
                 LW_COMP,
                 LW_EXPA,
                 LW_GROUP.
          CLEAR IT_DBSORTINFO[].
          READ TABLE IT_DBSORTINFO WITH KEY
                                    KEY1  = LIT_DBSORTINFO-KEY1
                                    PARAM = 'SPOS'.
          IF SY-SUBRC = 0.
            LW_SPOS = IT_DBSORTINFO-VALUE.
          ENDIF.
          CLEAR IT_DBSORTINFO.
          READ TABLE IT_DBSORTINFO WITH KEY
                                    KEY1  = LIT_DBSORTINFO-KEY1
                                    PARAM = 'UP'.
          IF SY-SUBRC = 0.
            LW_UP = IT_DBSORTINFO-VALUE.
          ENDIF.
          CLEAR IT_DBSORTINFO.
          READ TABLE IT_DBSORTINFO WITH KEY
                                    KEY1  = LIT_DBSORTINFO-KEY1
                                    PARAM = 'DOWN'.
          IF SY-SUBRC = 0.
            LW_DOWN = IT_DBSORTINFO-VALUE.
          ENDIF.
          CLEAR IT_DBSORTINFO.
          READ TABLE IT_DBSORTINFO WITH KEY
                                    KEY1  = LIT_DBSORTINFO-KEY1
                                    PARAM = 'SUBTOT'.
          IF SY-SUBRC = 0.
            LW_SUBTOT = IT_DBSORTINFO-VALUE.
          ENDIF.
          CLEAR IT_DBSORTINFO.
          READ TABLE IT_DBSORTINFO WITH KEY
                                    KEY1  = LIT_DBSORTINFO-KEY1
                                    PARAM = 'COMP'.
          IF SY-SUBRC = 0.
            LW_COMP = IT_DBSORTINFO-VALUE.
          ENDIF.
          CLEAR IT_DBSORTINFO.
          READ TABLE IT_DBSORTINFO WITH KEY
                                    KEY1  = LIT_DBSORTINFO-KEY1
                                    PARAM = 'EXPA'.
          IF SY-SUBRC = 0.
            LW_EXPA = IT_DBSORTINFO-VALUE.
          ENDIF.
          CLEAR IT_DBSORTINFO.
          READ TABLE IT_DBSORTINFO WITH KEY
                                    KEY1  = LIT_DBSORTINFO-KEY1
                                    PARAM = 'GROUP'.
          IF SY-SUBRC = 0.
            LW_GROUP = IT_DBSORTINFO-VALUE.
          ENDIF.
          LOOP AT IT_ALV_DATA FROM W_LOOP_FROM_EU TO W_LOOP_TO_EU.
            LW_TABIX = SY-TABIX.
            READ TABLE IT_FIELDCAT INTO LW_FIELDCAT WITH KEY
                               FIELDNAME = LIT_DBSORTINFO-KEY1.
            IF SY-SUBRC = 0.
              ASSIGN COMPONENT SY-TABIX OF
                         STRUCTURE IT_ALV_DATA TO <LFS>.
              IF SY-SUBRC = 0.
                CLEAR LW_CHAR.
                LW_CHAR = <LFS>.
                  IF LW_SPOS= 'SPOS'.
                  LOGIC Required
                    ENDIF.
                  ELSEIF LW_OPTION = 'DOWN'.
                 LOgic required
                    ENDIF.
                        ENDIF.
          ENDLOOP.
        ENDLOOP.
    regards,
    Ajay reddy

    Hai,
    Let
    1)general data
    2)all customers
    3)company code data
    4)sales organization data
    are the check box names,Then
    Just use the piece  of code below:
    <b>IF general data = 'X'.
       COUNT = COUNT + 1.
    ENDIF.
    IF all_customers = 'X'.
       COUNT = COUNT + 1.
    ENDIF.
    IF company_code_data = 'X'.
       COUNT = COUNT + 1.
    ENDIF.
    IF sales_organization_data = 'X'.
       COUNT = COUNT + 1.
    ENDIF.</b>
    Now check whether more than one Check Boxes are selected or not
    <b>IF COUNT GT 1.
    "* Do the oprations  what ever you want here  
    ENDIF.</b>
    <b>Reward points if it helps you.</b>
    Regds,
    Rama chary.Pammi

  • ALV ...Logic required

    Hi every body,
       I have one requirement like an alv report will display
    output which contains a material number.
    <b>If i click On the material number it shud go to MM03...Accounting view
    Logic required for this.</b>I am a beginner ...Plz help me...
    Thanks in advance.
    Message was edited by: raja gurrala

    Hi,
    See the code sample,
    INCLUDE <icon>.
    * Predefine a local class for event handling to allow the
    * declaration of a reference variable before the class is defined.
    CLASS lcl_event_receiver DEFINITION DEFERRED.
    DATA : o_alvgrid          TYPE REF TO cl_gui_alv_grid ,
           o_dockingcontainer TYPE REF TO cl_gui_docking_container ,
           o_eventreceiver    TYPE REF TO lcl_event_receiver,
           wa_layout TYPE lvc_s_layo ,
           wa_variant TYPE disvariant.
    CONSTANTS : c_a(1) TYPE c VALUE 'A' ,                     " All Layouts
                c_x(1) TYPE c VALUE 'X'.
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        CLASS-METHODS:
    * Hot Spot Click
           handle_hotspot
             FOR EVENT hotspot_click OF cl_gui_alv_grid
                IMPORTING e_row_id
                          e_column_id
                          es_row_no,
    * Double Click
    handle_double_click
          FOR EVENT double_click OF cl_gui_alv_grid
              IMPORTING e_row
                        e_column
                        es_row_no,
    ENDCLASS.                    "lcl_event_receiver DEFINITION
    * Implementation
    CLASS lcl_event_receiver IMPLEMENTATION.
    *&      Method handle_hotspot
    * This method is called when the user clicks on a hotspot to drill down.
    * The following types are exported from the ALV
    * LVC_S_ROW
    * LVC_S_COL
    * LVC_S_ROID
      METHOD handle_hotspot.
    * The hotspot processing coded in the form below.
        PERFORM f9900_handle_hotspot USING e_row_id
                                           e_column_id
                                           es_row_no.
      ENDMETHOD.                    "handle_hotspot
    *&      Method handle_double_click
      METHOD handle_double_click.
    * The double click processing should be coded in the form below.
        PERFORM f9901_handle_double_click USING e_row
                                                e_column
                                                es_row_no.
      ENDMETHOD.                    "HANDLE_DOUBLE_CLICK
    FORM f9900_handle_hotspot  USING    p_row_id
                                        p_column_id
                                        p_row_no.
    *Read internal table for proper value.
      READ TABLE  i_output
                  INDEX p_row_id
                  INTO wa_output.
    * Call the transaction MMBE
      SET PARAMETER ID 'MAT' FIELD wa_output-matnr.
      CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN .
    ENDFORM.                    " f9900_handle_hotspot
    *&      Form  f9901_handle_double_click
    *       Double Click
    FORM f9901_handle_double_click  USING    p_row
                                             p_column
                                             p_row_no.
      READ TABLE i_output INDEX p_row INTO wa_output.
      CASE p_column.
        WHEN 'MATNR'.
          IF NOT wa_output-matnr IS INITIAL.
            SET PARAMETER ID 'MAT' FIELD wa_output-matnr.
            CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN .
          ENDIF.
      ENDCASE.
    ENDFORM.                    " f9901_handle_double_click
    U can use either hot spot or double click event.
    If u r using hotspot set the hotspot = 'X' in fieldcatalog.
    Hope this helps.
    OR another method without oops concept
    FORM user_command USING r_ucomm LIKE sy-ucomm
                      rs_selfield TYPE slis_selfield.
    data:lv_matnr    LIKE v_mmim_lc-matnr,   "Material
    read table i_output into w_output index rs_selfield-tabindex.
    lv_matnr = w_output-matnr.
    SET PARAMETER ID 'MAT' FIELD lv_matnr.
    CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN .
    Clear:     lv_matnr.
    ENDFORM.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
    *   I_INTERFACE_CHECK                 = ' '
    *   I_BYPASSING_BUFFER                =
    *   I_BUFFER_ACTIVE                   = ' '
         i_callback_program                = v_repid
         i_callback_pf_status_set          = 'SET_PF_STATUS'
    <b>     i_callback_user_command           = 'USER_COMMAND'</b>
         i_background_id        = 'ALV_BACKGROUND'
        IS_LAYOUT               = I_LAYOUT
        it_fieldcat             = i_fieldcat "field catalog
       I_SAVE                   = 'A'
       IS_VARIANT               = G_VARIANT
        TABLES
            t_outtab                       = i_output "output table
       EXCEPTIONS
         program_error                     = 1
         OTHERS                            = 2
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Kindly reward points if this helps u, revert back with queries.
    Message was edited by: Judith Jessie Selvi

  • Last Consumption & Last receipt date logic

    Hi
    I am facing some issue while developing BI Stock report where user wants last consumption date & last receipt date in the report.
    But issue is that when i am going to develop BI query how can i differentiate date for both consumption & receipt because consumption & receipt has differentiate with movement type (suppose Mov type : 101 is for receipt & 261 is for consumption then if i use exceptional aggregation and put last value & reference char as Mov type then all 101 & 261 mov type data will come.
    Please guide for developing last consuption & last receipt date logic
    Regards,
    Gaurav

    Hi Anshu
    Thanks for your helpful reply.
    This is my last option as you suggested. But i will share you my concern that i have developed report on 0IC_C03 & in our business scenario, If i change ETL Structure then we need to delete target data, & we have millions of records if i reconstruct the data then it will take 4-5 days times. Also, some times our marker is interrupted then we need to again the same activity so i want to avoid the same activity in Workbench side and do all required changes in BI Query side.
    Can we use customer variable for time characteristics for the same issue.
    If there is any other idea in your mind, Please share.

  • ChaRM- Is data scrambling required for Implementing ChaRm in SM?

    Hello
    Is data scrambling required for the implementation of ChaRM in Solution Manager?  Iu2019ve heard that data scrambling is a requirement for CHaRm and if so is there documentation from SAP with the specifics.  I do not understand why data needs to be scrambled for transport management.
    Thanks!

    We are using CHaRM since 2007, and there is no data scrambling for CHaRM itself required. CHaRm is jsut taking control over TMS. It is a process to ensure some quality and to facilitate audit.
    Regards,
    Holger

  • MDX calculation based on date logic for the Jan 1 of current year through the 15th of the previous month

    Hello, 
    We need some help with an SSAS MDX query based on date logic. One of the problems is that I don't have access to the Cube but have been given a query example with the logic needed for the calculation. Here's the scenario; 
    The ETL process will run on the first Tuesday after the 15<sup>th</sup> of a given month. The Analysis Cube data queried should include the current year up to the end of the previous month. For example, on May 19<sup>th</sup>
    (the first Tuesday on or after the 15th) the query should include data from January 1<sup>st</sup> through April 30<sup>th</sup>.
    The 15<sup>th</sup> of the month is not part of the query, it is a factor in when the query is run. The query will always be in terms of complete months.
    SELECT
                    NON EMPTY { [Measures].[Revenue Amount],
                    [Measures].[Utilization],
                    [Measures].[AVG Revenue Rate],
                    [Measures].[Actual Hours] }
    ON
                    COLUMNS,
                    NON EMPTY { ([dimConsultant].[User Id TT].[User Id TT].ALLMEMBERS * [dimConsultant].[Full Name].[Full Name].ALLMEMBERS * [dimConsultant].[Employee
    Type].[Employee Type].ALLMEMBERS ) } DIMENSION PROPERTIES MEMBER_CAPTION,
                    MEMBER_UNIQUE_NAME
    ON
                    ROWS
    FROM
                    ( SELECT
    ( { [dimDate].[Week Date].[1/4/2015], [dimDate].[Week Date].[1/11/2015], [dimDate].[Week Date].[1/18/2015], [dimDate].[Week Date].[1/25/2015], [dimDate].[Week Date].[2/1/2015] } )
                    ON
                                    COLUMNS
                    FROM
                                    ( SELECT
    ( { [dimIsBillable].[Is Billable].&[True] } )
                                    ON
    COLUMNS
                                    FROM
    [SSASRBA]
    WHERE
                    ( [dimIsBillable].[Is Billable].&[True], [dimDate].[Week Date].CurrentMember ) CELL PROPERTIES VALUE,
                    BACK_COLOR,
                    FORE_COLOR,
                    FORMATTED_VALUE,
                    FORMAT_STRING,
                    FONT_NAME,
                    FONT_SIZE,
                    FONT_FLAGS

    Hi Hans,
    Thank you for your question.  
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated.  
    Thank you for your understanding and support. 
    Regards,
    Simon Hou
    TechNet Community Support

  • How to make the Deprtmnt field in the cost center master data as required ?

    Dear Experts,
    I want to make the Department field in the cost center master data as required field.....how do i do it?
    regards
    Suresh

    Hi Eli,
    Thanks for the quick reply
    while creating the Cost center itself the field should come as required field........can that be met with this enhancement?. Because the transaction code being used int the enhancement is for change mode but i want this feature in  create mode itself.
    thanks
    regards
    Suresh

  • Basic Start/Finish Date and Requirment Date in Maintenance Order

    Sir,
    We want to know the link between Order Start/finish date and requirement date in Maintenance Order.
    As we are facing problem during change in dates.
    When we change either start date or finish date in the order, the system automatically change the requirment date as of ondate of all the materials which has been earlier issued and also consider the today date.
    Like in Maintenance Order
    Basic Start Date - 01.04.2009
    Basic End Date  - 31.05.2009
    We have issued materials on the order at different date by putting offset value for the requirement date.
    Now if we increase the Basic End Date of order to n30.062.009 or whatelse, the system automatically changes the requirement dates of all the materials issue based on current date. Suppose we changed the Basic End date on 10.11.2009, the system changes all the requirement dates by calulating offset value from 10.11.2009. However these materials has been issued earlier.
    I want to know if there is any remedy to stop to change the requirement dates automatically.
    With Regards
    Mudit Gupta

    HI
    In general the requirement date will get changed only when the IMG settings in OPU7 permits the requirments dates should be adjusted towards the order basic start and end dates
    kinldy check and adjust as per the requirement
    regards
    thyagarajan

  • Customer Data Hub Required for EBS 11i?

    Is the Customer Data Hub required for EBS 11i to work correctly? It appears to be a supplemental product and not a required core product.

    Oracle Customer Data Hub (CDH) is not a mandate for EBS users. However, it solely depends on the Organizational needs. If an Organization decides to have SSOT (Single Source Of Truth) for it's customer data they can go with CDH solution.
    CDH is a complete packaged solution that allows companies to create a single, enterprise view of their customer base, by consolidating/synchronizing customer data from heterogeneous systems into a central, operational, data store. CDH alone will not suffice the requirement. CDH ties with Oracle Customers Online (OCO), Customer Data Librarian (CDL), and the Oracle Trading Community Architecture (TCA) to create a robust, scalable, central repository of duplicate-free, enriched data across a heterogeneous landscape.
    Hope this helps.
    Regards,
    ND

  • I don't have the up to date system requirements to run iCloud on my mac but would still like to access my email on my mac.  I think I need to update my settings, but am not sure what to do.  Can anyone help.  thanks

    I don't have the up to date system requirements to run iCloud on my mac but would still like to access my email on my mac.  I think I need to update my settings, but am not sure what to do.  Can anyone help.  thanks

    Welcome to the Apple Community.
    If you haven't done so already you need to migrate your mail account to iCloud first and do so IMMEDIATELY at the website Move
    Then
    Delete your mail account from Mail preferences and set it up again using the Mail Server Information.
    Some users have apparently encountered issues using this information in pre-Lion set ups (I haven't), Roger Wilmut has kindly provided instructions for those who find themselves with this problem.
    Entering iCloud email settings manually in Snow Leopard or Leopard
    Entering iCloud email settings manually in Tiger

  • DATE FIELD PROBLEMS - URGENT

    I´m having trouble with FormsCentral.
    My form is running about 8 months with no problems.
    Yesterday people started to complain that the system doesn´t accept any date.
    That means the date field restricts date entries, from date dd/mm/aaaa (brazilian format) to another dd/mm/aaaa, but every date that users input in, is considered by the system as invalid, even it´s a correct and valid date right between the interval specified!
    I need Help Urgent!!!
    I depend on these forms to finish the payrol service from here.
    Thanks
    I´ll be waiting.
    Maurício Galletti
    Message was edited by: SNOWMAUSS
    It look like the system accepts just dates starting from the date of today.
    I´m testing.
    Please help.
    Thanks
    Message was edited by: SNOWMAUSS
    It looks like the system have some problem just with the date 20/10/2013?!
    I´ve fixed the problem change the interval from 20/10/2013 to another date  and used  21/10/2013 to another date and it works!
    But I think something is wrong with the 20/10/2013 date?!
    To reproduce the erros just create a new form with date feature with this exaclty configurations and the bug appears:
    I´ll keep waiting
    Message was edited by: SNOWMAUSS

    Hi
    I´ve concluded that the problem persist if the date interval starts at the
    specific date "20/10/2013". Don´t know why?!
    Look at the screen capture above, you aks for
    Thanks a lot
    image: Imagem inline 1
    Maurício P. Galletti
    Contador
    [email protected]
    ( 55 11 3331-5567
    www.cadt.com.br
    2013/10/29 Genevieve Laroche <[email protected]>
       Re: DATE FIELD PROBLEMS - URGENT  created by Genevieve Laroche<http://forums.adobe.com/people/Genevieve+Laroche>in
    FormsCentral - View the full discussion<http://forums.adobe.com/message/5797083#5797083

  • Compatible with your plan/Data pak required/Requires data pkg $9.99 or higher

    1) When I go to "Upgrade your phone"/"Select a phone or device" I see 59 results.
    When I click "Compatible with your current plan" the number goes to down to 52 results.
    However, 23 of them say "Data pak required" and another 3 say "Requires data pkg $9.99 or higher".
    Those phrases seem to imply that those phones are not compatible with my plan and
    would require changing my plan.  If so, why do they not disappear when I click "Compatible with your current plan"?
    2) Suppose I get one of the phones that say "Data pak required" or "Requires data pkg $9.99 or higher"
    and indeed I have to change my plan.
    Would I be obligated to the different plan for the full two years or could I just switch back to my old plan
    at some point and just not be able to access some features of the phone?
    I tried asking my question to Verizon Wireless directly but all I got was some ambiguous doublespeak
    wrapped in some polite niceties instead of a coherent answer.
    Thanks for any help.

    bwb2 wrote:
    1) When I go to "Upgrade your phone"/"Select a phone or device" I see 59 results.
    When I click "Compatible with your current plan" the number goes to down to 52 results.
    However, 23 of them say "Data pak required" and another 3 say "Requires data pkg $9.99 or higher".
    Those phrases seem to imply that those phones are not compatible with my plan and
    would require changing my plan.  If so, why do they not disappear when I click "Compatible with your current plan"?
    2) Suppose I get one of the phones that say "Data pak required" or "Requires data pkg $9.99 or higher"
    and indeed I have to change my plan.
    Would I be obligated to the different plan for the full two years or could I just switch back to my old plan
    at some point and just not be able to access some features of the phone?
    I tried asking my question to Verizon Wireless directly but all I got was some ambiguous doublespeak
    wrapped in some polite niceties instead of a coherent answer.
    Thanks for any help.
    1. Compatible with your current plan is referring to your minutes and Nationwide talk & text plan... The data plan is seperate.
    2. It depends on if you get a smartphone or not. If you get a feature phone that requires a data plan, then no you could not take away the data plan and still use that phone. Same goes for smartphones. You will always have to have a data plan with a phone that requires one no matter how you use it... Now if you got a feature phone that doesn't require a data plan, but you added a data plan, you could take that away at any time and revert back to the pay-per-usage plan.

  • What are the data collection requirements for CAND?

    Please explain the exact data collection requirements for CAND (Connected Analytics for Network Deployment). Thanks

    CAND needs to collect the following show command outputs for analysis: show version, show running-config, show module (or show diag, depending on the platform).

Maybe you are looking for

  • 9320 Curve not being recognized by Windows Vista - Vista Drivers available?

    Hi I have recently acquired a Blackberry 9320 but when I connect it to my Vista PC, the PC recognises there is new hardware but is unable to locate any drivers for it.  As a result, the Blackberry Desktop Media Application can't connect to it.  The P

  • How to merge cells in SmartForms?

    Dear Experts,           How can I  merge cells (Row wise adjecents cells)in a table of smart forms.. thanks in adv.... Moderator message: Please post your questions in the right forum and give more meaningful titles in the future. Edited by: kishan P

  • Team Calendar warning - No Team setup for the user in the selection period.

    Good morning, I am attempting to replace the older iViews (leaverequestapprover and teamcalendar) with the newer iView (approveleaverequest) which seems to combine the two functions. When implementing the approveleaverequest iView, I get the followin

  • Troubles with my iMac, it won't "start"

    Wow. So where do I begin.. In feb 2005 I bought a iMac G5 20". Since the day I bought it, it has run fine, like a charm. 2 months ago when I returned from a trip, it wouldn't start as it was supposed to. The troubles I got was: (the boing sound alway

  • "exploding" Mail app

    I have a very odd problem. We recently changed our IMAP server at work and now my Mail app doesn't work properly with it. I can read and send mail, but if I leave Mail open, and watch it on the Activity Monitor, it rapidly (~10 minutes or so) increas