Create customer exit on 0calday

Hi ,
My requirement is i have to create customer exit variable on 0calday(characterstic). Default this value to current Monday of the week and popup to user.Validate User input with the Monday of the week.If its not a Monday give an error asking to enter Monday of that week
For ex: if i give date like 20.09.2007 it should display from starting of the week (i.e monday) to till that date.
PLz give me the instructions how to create
Thanks and Regards,
Madhavi

The below code will check wether the user input is monday or not. If it is not monday it will identify the monday's date in that week.
DATA: WEEKDAY LIKE SCAL-INDICATOR.
CALL FUNCTION 'DATE_COMPUTE_DAY'
                EXPORTING
                DATE   = <calday>
           IMPORTING
                DAY    = WEEKDAY
           EXCEPTIONS
                OTHERS = 1.
      CASE WEEKDAY.
        WHEN '1'.  "Mon
          RESULT = <calday>.
        WHEN '2'.  "Tue
          RESULT = <calday> - 1.
        WHEN '3'.  "Wed
          RESULT = <calday> - 2.
        WHEN '4'.  "Thur
          RESULT = <calday> - 3.
        WHEN '5'.  "Fri
          RESULT = <calday> - 4.
        WHEN '6'.  "Sat
          RESULT = <calday> - 5.
        WHEN '7'.  "Sun
          RESULT = <calday> - 6.
      ENDCASE.

Similar Messages

  • Customer exit on 0calday

    Hi,
    This is Madhavi. Plz help me to find out the solution for this.
    Create an exit on 0CALDAY. Default this value to Be current Monday of the week and popup to user.Validate User input with the Monday of the week.If its not a Monday give an error asking to enter Monday of that week
    Thanks and Regards,
    Madhu

    Hi,
    Try the below code, this may help you.
      data:  l_curr_day     type SCAL-DATE,
             l_date         type /BI0/OICALDAY,
             l_no_day       type SCAL-indicator,
             l_day1         type P,
             l_diff         type P,
             l_daym         type /OSP/DT_DAY,
             l_day(2),
             l_month        type /BI0/OIFISCPER3,
             l_year(4),
             l_curr_month   type i,
             l_curr_year    type i,
             l_month_temp   type i,
             l_year_temp    type i,
             l_s_range      type  rsr_s_rangesid,
             l_s_var_range  type line of rrs0_t_var_range.
      if i_step = 1.  "Before Selection screen is shown
        l_curr_day    = sy-datum.
        l_curr_month  = sy-datum+4(2).
        l_curr_year   = sy-datum+0(4).
        CALL FUNCTION 'DATE_COMPUTE_DAY'
          EXPORTING
            DATE = l_curr_day
          IMPORTING
            DAY  = l_no_day.
        if l_no_day = 1.
          l_s_range-sign  = 'I'.
          l_s_range-opt   = 'EQ'.
          l_s_range-low   = l_curr_day.
          l_s_range-high  = ''.
          append l_s_range to e_t_range.
        else.
          l_day1 = sy-datum+6(2).
          l_diff = l_day1 - l_no_day + 1.
          if l_diff > 0.
            clear l_date.
            l_day = l_diff.
            l_month = l_curr_month.
            l_year = l_curr_year.
            concatenate l_year l_month+1(2) l_day into l_date.
          else.
            l_month_temp = l_curr_month - 1.
            if l_month_temp >  0.
              l_day = l_day1.
              l_month = l_month_temp.
              l_year = l_curr_year.
              concatenate l_year l_month+1(2) l_day into l_date.
              CALL FUNCTION '/OSP/GET_DAYS_IN_MONTH'
                EXPORTING
                  IV_DATE = l_date
                IMPORTING
                  EV_DAYS = l_daym.
              l_diff = l_diff + l_daym.
              l_day = l_diff.
              concatenate l_year l_month+1(2) l_day into l_date.
            else.
              l_year = l_curr_year - 1.
              l_day = l_day1.
              concatenate l_year '12' l_day into l_date.
              CALL FUNCTION '/OSP/GET_DAYS_IN_MONTH'
                EXPORTING
                  IV_DATE = l_date
                IMPORTING
                  EV_DAYS = l_daym.
              l_diff = l_diff + l_daym.
              l_day = l_diff.
              concatenate l_year '12' l_day into l_date.
            endif.
          endif.
          clear l_s_RANGE.
          l_s_range-sign = 'I'.
          l_s_range-opt = 'EQ'.
          l_s_range-low = l_date.
          l_s_range-high =''.
          append l_s_range to e_t_range.
        endif.
      endif.
      if i_step = 3. " Validate user input
        read table I_T_VAR_RANGE into l_s_var_range with key vnam = 'YTSTDAY'.
        if sy-subrc = 0.
          l_curr_day    = l_s_var_range-low.
          CALL FUNCTION 'DATE_COMPUTE_DAY'
          EXPORTING
            DATE = l_curr_day
          IMPORTING
            DAY  = l_no_day.
          if l_no_day <> 1.
            raise NOT_MONDAY.
          endif.
        endif.
      endif.
    endfunction.
    regards
    rajesh

  • How to create Customer exit ?

    Hello,
    I am new to BI 7 and working on same.
    I wanted to create a Customer exit as per the requirements for a Text variable so as to do proper display.
    Can any one suggest step by step to do that .
    I use T code in Bi server
    What i see are the option of
    New project etc.
    But i dont see any option for Customer exit.
    Can any one provide step by step guide or some thorough example for creating Customer exit , it will be really helpful.
    Thanks

    if you are looking for BEx user exit.. Go to CMOD .. you need to create a project say for eg: ZBIVAREX. Assign enhancement as RSR00001 (BI: Enhancements for Global Variables in Reporting).
    go thru the example given :
    http://help.sap.com/saphelp_nw04s/helpdata/en/1d/ca10d858c2e949ba4a152c44f8128a/content.htm

  • How to create customer exit variable

    Hi guys,
    please any one can help for how to create customer exit variabel.
    Regards.

    Hi!
    welcome to SDN.
       its very simple.just go to Bex query designer. there u can use the following <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/ac/789b3c4d4d8d15e10000000a114084/content.htm">Link</a> to create a variable.. but use the processing type user exit.
    after that go to transaction SE37 in BW and opent he function module EXIT_SAPLRRS0_001
    and in that there is a include  ZXRSRU01.... just double click on it and edit that...
    there u can write code for your variable ,...for example write code inside
    case "ZMY_VARIABLE"
    *code for ur variable
    endcase
    u can use the following
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/f1/0a56f5e09411d2acb90000e829fbfe/content.htm">link for help</a>

  • How to create customer exit for characteristic variables and for text vars.

    hi friends,
      can anybody tell me how to create customer exit for characteristic variables and for text variables in bw ides system.
    thanks,
    sree

    Hi,
    Please have a look at:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f1a7e790-0201-0010-0a8d-f08a4662562d
    Krzys

  • Error creating Customer Exit variable, please help

    Hi Experts,
    This is the scenario, I need to obtain the convertion rate from the table TCURR in order to convert several currencies to USD, so I created a Customer Exit variable that gets the Period and based on that obtains the conversion rate for the last day of the given month from TCURR, the problem is when I created the Formula Variable to get the value from the Customer exit variable I got the following error:
    'ZVARREGEXIT' ALREADY EXISTS; SELECT A DIFFERENT NAME.
    But in not using that name anywhere on my variables creation, Im doing something wrong? How can I check wheres is that variable being used.
    Ideas, comments are always welcome and appreciated.
    Regards.

    Hi Ed,
    Open Admin Workbench (RSA1) and choose Transport Connection --> Object Types --> Query Elements --> Variable --> Select Objects. Find the variable of interest and transfer it back to the main screen, then right-click and choose 'Display Description'. That will show you a "where used" list of queries, workbooks, etc.
    Next, you can use the previous technique to open one of the queries, find the variable in the query, and determine which InfoObject it is associated with.
    Hope this helps!
    Regards,
    Saurabh

  • Scenerios for using I_STEP parameter for creating customer exit variables.

    Hi All,
    I need to create a customer exit variable.
    Please explain the different scenerios for using each i_step parameters.
    For eg. in which practical scenerio i_step 3 is used?

    Hi Shobhit,
    You can find plenty of info on this in the forums, So i suggest you to do a small search with imp Key words. Anyways below is the std usage of I_STEP
    I_STEP = 1
    Call takes place directly before variable entry. Can be used to pre populate selection variables
    I_STEP = 2
    Call takes place directly after variable entry. This step is only started up when the same variable is not input ready and could not be filled at I_STEP=1.
    I_STEP = 3 In this call, you can check the values of the variables. Triggering an exception (RAISE) causes the variable screen to appear once more. Afterwards, I_STEP=2 is also called again.
    I_STEP = 0
    The enhancement is not called from the variable screen. The call can come from the authorization check or from the Monitor. This is where you want to put the mod for populating the authorization object.
    This is basic info from help.sap.com.
    regards,
    Gaurav
    Edited by: Gaurav Kothari on Aug 4, 2011 2:18 PM

  • Customer Exit for MTD

    Hi,
    My requirement is to create Customer exit variable to calculate the Month to date (MTD) value (Quantity) in a query. I created a Customer exit variable for MTD (0CALDAY) in Query & wrote code in CMOD for the same as follows.
    DATA: ZYEAR(4) TYPE N,
    ZMON(2) TYPE N,
    ZDAY(2) TYPE N.
    CASE I_VNAM.
    WHEN 'ZVCE_MTD'.
    IF I_STEP = 2.
    REFRESH E_T_RANGE.
    LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE.
    ZYEAR = LOC_VAR_RANGE-LOW+0(4).
    ZMON = LOC_VAR_RANGE-LOW+4(2).
    ZDAY = LOC_VAR_RANGE-LOW+6(2).
    CLEAR L_S_RANGE.
    CONCATENATE ZYEAR ZMON '01' INTO L_S_RANGE-LOW.
    CONCATENATE ZYEAR ZMON ZDAY INTO L_S_RANGE-HIGH.
    L_S_RANGE-SIGN = 'I'.
    L_S_RANGE-OPT = 'BT'.
    APPEND L_S_RANGE TO E_T_RANGE.
    EXIT.
    ENDLOOP.
    ENDIF.
    ENDCASE.
    I debugged this code by putting a break point & running the query in RSRT, the code is getting executed & i am getting the From & To dates in E_T_RANGE output.
    But when I execute the Query, I am getting the output Quantity for FTD only, not MTD.
    For example, if i give 05-12-2009 as variable input for 0CALDAY when i execute the query, i should get the summed up quantity for 01 Dec to 05 Dec in a single cell. But now, i am getting the summed up quantity for 05 Dec only.
    Help me in resolving this.
    Regards,
    Murali

    Hi,
    It seems like you are reading some input value of existing variable from selection screen then based on the input you are calculating your MTD range.
    Now the variable i.e. time characteristic you are using on selection screen should not be restricted at global filter level, other wise your other variable in the query will not work.
    So keep the selection screen variable in some RKF and then use the new RKF for further restriction.
    Regards,
    Durgesh.

  • What is diff b/w user & customer exit

    Hi
    Good afternoon everybody,
    Plz differentiate user exit and customer exit.
    What is the way to findout user exits and how to modify it.
    Thanks in advance
    Venkat

    Hi Venkat,
    Check the following description
    Customer exits: The R/3 enhancement concept allows you to add your own functionality to SAP’s standard business applications without having to modify the original applications. SAP creates customer exits for specific programs, screens, and menus within standard R/3 applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks.
    If you want to enhance the functionality of your SAP System, you should take advantage of the exits available in standard R/3 applications. There are two main reasons why you should use exits rather than modifying SAP software yourself. Add-ons attached to exits have the advantage that:
    They do not affect standard SAP source code
    When you add new functionality to your SAP System using SAP’s exits, you do not alter the source code of standard SAP programs in any way. The code and screens you create are encapsulated as separate objects. These customer objects are linked to standard applications, but exist separately from SAP’s standard software package.
    They do not affect software updates
    When you add new functionality to your SAP System using SAP’s exits, your objects (called customer objects) must adhere to strict naming conventions. When it comes time to upgrade a to a new software release, customer objects’ names ensure that they will not be affected by any changes or new additions to the standard software package.
    In contrast to customer exits, user exits allow developers to access and modify program components and data objects in the standard SAP System.
    User exits: Programs with user exits contain subroutine calls at certain points in their syntax that are identified by the prefix USEREXIT. The actual user exits are located in an include that has been assigned to a module pool. This is where customers can include any changes (enhancements) that they want to make to the system. These includes are always processed during program flow.
    I hope this helps.
    Regards,
    Kinshuk

  • Error With Customer Exit Variable

    Hi,
    I need To Create Customer Exit For Text Variable based on Two Input Variable values.
    can any one correct my code Code is written below based on quarter and Fiscalyearvarient.
    I have to get calmonth Text value.
    I am getting the error as : "I_T_VAR_RANGE" is a table without a header line and therefore has no
    Component Called "0PERIV".
    DATA :  l_s_range TYPE rsr_s_rangesid,
            loc_var_range LIKE rrrangeexit.
    IF i_step = 2.
    CASE i_vnam.
       WHEN 'ZTXT_CML' .
          CLEAR: l_s_range.
          LOOP AT i_t_var_range INTO L_S_VNAM WHERE vnam = 'ZQUAR' AND vnam = '0periv'.
            IF i_t_Var_range-0PERIV = 'IE'.
              IF i_t_var_range-ZQUAR = '1'.
                l_s_range-low = 'APRIL'.
                l_s_range-sign = 'I'.
                l_s_range-opt = 'EQ'.
              ELSEIF i_t_var_range-ZQUAR = '2'.
                l_s_range-low = 'JULY'.
                l_s_range-sign = 'I'.
                l_s_range-opt = 'EQ'.
              ELSEIF i_t_var_range-ZQUAR = '3'.
                l_s_range-low = 'OCTOBER'.
                l_s_range-sign = 'I'.
                l_s_range-opt = 'EQ'.
              ELSEIF i_t_var_range-ZQUAR = '4'.
                l_s_range-low = 'JANUARY'.
                l_s_range-sign = 'I'.
                l_s_range-opt = 'EQ'.
              ENDIF.
            ELSEIF i_t_var_range-0PERIV = 'K4'.
              IF i_t_var_range-ZQUAR = '1'.
                l_s_range-low = 'JANUARY'.
                l_s_range-sign = 'I'.
                l_s_range-opt = 'EQ'.
              ELSEIF i_t_var_range-ZQUAR = '2'.
                l_s_range-low = 'APRIL'.
                l_s_range-sign = 'I'.
                l_s_range-opt = 'EQ'.
              ELSEIF i_t_var_range-ZQUAR = '3'.
                l_s_range-low = 'JULY'.
                l_s_range-sign = 'I'.
                l_s_range-opt = 'EQ'.
              ELSEIF i_t_var_range-ZQUAR = '4'.
                l_s_range-low = 'OCTOBER'.
                l_s_range-sign = 'I'.
                l_s_range-opt = 'EQ'.
              ENDIF.
            ENDIF.
              APPEND l_s_range TO e_t_range.
          ENDLOOP.
      ENDCASE.
    ENDIF.

    Hi Supraja,
    You would have to declare I_T_VAR_RANGE internal table as the table with an header line.
    This you will find in data declaration segment.
    ie
    DATA : I_T_VAR_RANGE type <table name> WITH HEADER LINE.
    or
    Create a work area like l_s_var_range.
    Use work area while performing operations in your code and later append the record to the table i_t_var_range.
    DATA : L_S_VAR_RANGE type i_t_var_range.
    Also, i_step = 3 is the right one, because you are processing the customer exit based on the values of the user input of two variables.
    Modified code below.
    DATA : l_s_range TYPE rsr_s_rangesid.
    DATA : L_S_VAR_RANGE type i_t_var_range,
    loc_var_range LIKE rrrangeexit.
    IF i_step = 3.
    CASE i_vnam.
    WHEN 'ZTXT_CML' .
    CLEAR: l_s_range.
    LOOP AT i_t_var_range INTO l_s_var_range WHERE vnam = 'ZQUAR' AND vnam = '0periv'.
    IF l svar_range -0PERIV = 'IE'.
    IF l_s_var_range -ZQUAR = '1'.
    l_s_range-low = 'APRIL'.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'EQ'.
    ELSEIF l_s_var_range -ZQUAR = '2'.
    l_s_range-low = 'JULY'.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'EQ'.
    ELSEIF l_s_var_range -ZQUAR = '3'.
    l_s_range-low = 'OCTOBER'.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'EQ'.
    ELSEIFl_s_var_range -ZQUAR = '4'.
    l_s_range-low = 'JANUARY'.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'EQ'.
    ENDIF.
    ELSEIFl_s_var_range -0PERIV = 'K4'.
    IF i_t_var_range-ZQUAR = '1'.
    l_s_range-low = 'JANUARY'.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'EQ'.
    ELSEIF l_s_var_range -ZQUAR = '2'.
    l_s_range-low = 'APRIL'.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'EQ'.
    ELSEIF l_s_var_range -ZQUAR = '3'.
    l_s_range-low = 'JULY'.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'EQ'.
    ELSEIF l_s_var_range -ZQUAR = '4'.
    l_s_range-low = 'OCTOBER'.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'EQ'.
    ENDIF.
    ENDIF.
    APPEND l_s_range TO e_t_range.
    ENDLOOP.
    ENDCASE.
    ENDIF.
    Hope it helps,
    Best regards,
    Sunmit.

  • Difference b/w Customer exits and User Exits

    Hi,
    Can anybody explain diff b/w user exits and customer exits .
    How to find out and Impement the coding ..
    Thanks Advance
    Rohan.A

    Hi Rohan,
    Check this matter , this may be helpful to you.
    <b>CUSTOMER EXITS</b>
    The enhancement concept allows you to add your own functionality to SAP’s standard business applications without having to modify the original applications. SAP creates customer exits for specific programs, screens, and menus within standard applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks.
    If you want to enhance the functionality of your SAP System, you should take advantage of the exits available in standard applications. There are two main reasons why you should use exits rather than modifying SAP software yourself. Add-ons attached to exits have the advantage that:
    •        They do not affect standard SAP source code
    When you add new functionality to your SAP System using SAP’s exits, you do not alter the source code of standard SAP programs in any way. The code and screens you create are encapsulated as separate objects. These customer objects are linked to standard applications, but exist separately from SAP’s standard software package.
    •        They do not affect software updates
    When you add new functionality to your SAP System using SAP’s exits, your objects (called customer objects) must adhere to strict naming conventions. When it comes time to upgrade a to a new software release, customer objects’ names ensure that they will not be affected by any changes or new additions to the standard software package.
    Customer exits are not available for all programs and screens found in the SAP System. You can only use customer exits if they already exist in the SAP System.
    <b>User exits :</b>
    1. Introduction
    2. How to find user exits
    3. Using Project management of SAP Enhancements 
    1. Introduction:
    User exits (Function module exits) are exits developed by SAP. The exit is implementerd as a call to a functionmodule. The code for the function module is writeen by the developer. You are not writing the code directly in the function module, but in the include that is implemented in the function module.
    The naming standard of function modules for functionmodule exits is: 
    EXIT_<program name><3 digit suffix> 
    The call to a functionmodule exit is implemented as:
    CALL CUSTOMER.-FUNCTION <3 digit suffix>
    Example:
    The program for transaction VA01 Create salesorder is SAPMV45A
    If you search for CALL CUSTOMER-FUNCTION i program
    SAPMV45A you will find ( Among other user exits):
    CALL CUSTOMER-FUNCTION '003'
      exporting
        xvbak   = vbak
        xvbuk   = vbuk
        xkomk   = tkomk
      importing
        lvf_subrc = lvf_subrc
      tables
        xvbfa = xvbfa
        xvbap = xvbap
        xvbup = xvbup.
    The exit calls function module EXIT_SAPMV45A_003
    Hope this is helpful.
    Reward all the helpful answers.
    Regards

  • Creation of Customer Exits in release 6.00 is having some problems

    I am facing problems while creating Customer Exits in release 6.0. Since due to the introdution of enhancement spots I am not clear as what is significance of enhancement spots for the BADI. How will it affect it?
    Also, I am finding differences while creating the BADI  in 6.00 release and that of lower releases. In 6.0 release it is not creating the default implementation which the system creates itself for lower releases when the BADI is activated. I want to know if this functionality is removed in the higher release or due to some other reason?
    Kindly let me know about these nuances as it is creating much problem in 6.0 release.

    I'm just wondering if release 6.00 (I mean SAP ERP) is already available non-rampup customers?
    Peter

  • Customer exit variable doesn't work

    Hi,
    I tried to create customer exit for my query but  iam not getting the right result.
    My requirement is to create a Key figure variable that displays Q1 - Q4 based on fiscal year/period (001.2008) entered by the user.
    steps I have taken
    1. created variable MD_VAR for fiscal year/period
    2. created key figure variable MD_VAR_KF where I have the description as Q1 .
    and the result I have is Q&MD_VAR_KF& but I would like to get Q1
    my code
    data: lv_month type n length 3.
    CASE I_VNAM.
    WHEN 'MD_VAR_KF'. "KF variable
    IF I_STEP = 2.
    LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE WHERE VNAM ='MD_VAR'.
    lv_month = LOC_VAR_RANGE-LOW+6(3).
    IF lv_month = '001' OR lv_month = '002' OR lv_month = '003'.
    L_S_RANGE-LOW = '1'.
    ELSEIF lv_month = '004' OR lv_month = '005' OR lv_month = '006'.
    L_S_RANGE-LOW = '2'.
    ELSEIF lv_month = '007' OR lv_month = '008' OR lv_month = '009'.
    L_S_RANGE-LOW = '3'.
    ELSEIF lv_month = '010' OR lv_month = '011' OR lv_month = '012'.
    L_S_RANGE-LOW = '4'.
    ELSE.
    L_S_RANGE-LOW = 'wrong values'.
    ENDIF.
    L_S_RANGE-SIGN = 'I'.
    L_S_RANGE-OPT = 'EQ'.
    APPEND L_S_RANGE TO E_T_RANGE.
    ENDLOOP.
    ENDIF.
    ENDCASE.
    What did I do wrong and  how do I achieve my requirement
    thanks

    When you variable result displays the variable name inside &...& means the variable is not deriving a value.
    Make sure the variable &MD_VAR_KF& is defined as a Text variable and as an Exit variable. Otherwise it won't process it in the exit.
    If Fiscal Period is dependent on Fiscal Year Variant (I can't remember off-hand) then the variant key will preceed the Fiscal Period value in the variable, and the value is always processed based on internal format YYYYMMM.  So your substring will be +6(3) if FYV dependent, and +4(3) otherwise.
    You have focused the issue on the code but didn't clarify how you defined the variable itself. If these settings are correct then you need to debug the code to see what part works and what doesn't, then provide more details.

  • Customer exit query

    Hi Experts
    I have a requirement, which says as below.
    As in report we have input date to enter , when user enters input date for instance oct 2010, the next column should show previous year oct 2009 results too. Can anyone has a document to create customer exit variable.
                      Thank you.

    Hi Srini,
    You can achieve this by creating a replacement path variable of type customer exit with off set of -12 so that it will display the previous years values as you want.
    OR
    directly if you have a standard variable for the date filed set an offet of -12 for and restrict the date fields with the KF to get the values of previous year.
    Regards
    KP

  • Display year data(customer exit)

    Hi,
    I have the data for last 10 years. I want to display the data according to user input.
    for ex user wants to display the data for the year 2002. it has to display only 2002 data.
    how to create customer exit variable?
    need code for this requirement.
    Thanks,
    Pooja.

    Hi
    No need for customer exit variable....Create a varibale for user entry/manual for the 0CALYEAR or whatever infoobject used for year in the query and restrict the infoobject with this newly created variable
    Assign points if useful
    Thanks
    N Ganesh

Maybe you are looking for

  • Is there a PCMCIA Ethernet card for Powerbook G4 OS X 10.4.8 ?

    My ethernet port on my Powerbook G4 is damaged and can no longer be used. I looked into getting it repaired but that apparently requires replacing the entire system board at considerable cost. Rather than take that route, I was hoping to find a PCMCI

  • HttpURLConnection throws a FileNotFound exception

    Hi Everybody, I want to post the data to a remote servlet using HttpURLConnection. But it throws a FileNotFound exception. Pls send me the solution. My code is First Servlet: ============== import java.io.*; import java.net.*; import java.text.*; imp

  • 2 small wishes with the soonest update.

    Dear Apple! Probably not only me, but many people will be very satisfy from below mentioned new options in our iphone. 1) Searching ipohone with contacts by keyword added to the notes field. 2) Alternative signature for my comapany exchange acc. and

  • Imovie Problems

    Hey, I am using a HDR-HC3 HDV 1080i video camera on imovie. Whenever I have the setting on my video camera (compressing it from HDV to DV) with the imovie format on PAL DV Widescreen I have no picture in imovie or it says the camera is not compatable

  • HDD Camocorders

    I know that there have been varying forms of this question, but as I look through them none have answered with any amount of certainty. I am looking for a HDD Camcorder that will be compatible with Final Cut Pro 5.1.2, any suggestions? I want to spen