Adobe Form Highlight Function

Have imported fillable form (from va)
All fields, other than the field I'm working in, are highlighted [data hidden, will not print)
How do I turn off highlight function?

this is solvedunction module ,no function module exists

Similar Messages

  • OnSubmit function Error in passing values from WDA Adobe Form to Ztable

    Friends,
    I am trying to pass values from Adobe Interactive Form to ztable.
    I am using WDA to display the form. I have created the form context with attributes that are bound to the form fields using the Adobe Livecycle Designer.
    Once the user presses the Submit button, the data is passed to the ztable. In the onSubmit function assigned to the Submit button, I am using the "Read Context" feature of WD Code Wizard to read the values of the attributes
    I am able to read and populate the ztable with values of the first 3 attributes. But am unable to read the value of  4th attribute using the "Read Context" feature of WD Code Wizard. All 4 attributes are of string type.
    I am not sure if this is a buffer size problem or is there a limitation that only 3 attributes can be read per Adobe form / onSubmit function.
    Please let me know what is missing.
    Thanks and Regards.

    Resolved

  • PHOTO IS NOT GETTING REFLECTED IN ADOBE FORM

    Hi experts
    We have tried the below code to dispaly photo in webdynpro integrated with adobe forms
    CALL FUNCTION 'HR_IMAGE_EXISTS'
        EXPORTING
          p_pernr                     = v_obj_id
    *     P_TCLAS                     = 'A'
    *     P_BEGDA                     = '18000101'
    *     P_ENDDA                     = '99991231'
        IMPORTING
    *     P_EXISTS                    =
          p_connect_info              = l_connect_info
        EXCEPTIONS
          error_connectiontable       = 1
          OTHERS                      = 2.
      CHECK sy-subrc = 0.
      CALL FUNCTION 'SCMS_DOC_READ'
        EXPORTING
    *     MANDT                       = SY-MANDT
          stor_cat                    = space
          crep_id                     = l_connect_info-archiv_id
          doc_id                      = l_connect_info-arc_doc_id
    *     PHIO_ID                     =
    *     SIGNATURE                   = 'X'
    *     SECURITY                    = ' '
    *     NO_CACHE                    = ' '
    *     RAW_MODE                    = ' '
    *   IMPORTING
    *     FROM_CACHE                  =
    *     CREA_TIME                   =
    *     CREA_DATE                   =
    *     CHNG_TIME                   =
    *     CHNG_DATE                   =
    *     STATUS                      =
    *     DOC_PROT                    =
        TABLES
          access_info                 = lt_infos
    *     CONTENT_TXT                 =
          content_bin                 = lt_image_bin
        EXCEPTIONS
          bad_storage_type            = 1
          bad_request                 = 2
          unauthorized                = 3
          comp_not_found              = 4
          not_found                   = 5
          forbidden                   = 6
          conflict                    = 7
          internal_server_error       = 8
          error_http                  = 9
          error_signature             = 10
          error_config                = 11
          error_format                = 12
          error_parameter             = 13
          error                       = 14
          OTHERS                      = 15.
      CHECK sy-subrc = 0.
      READ TABLE lt_infos INDEX 1 ASSIGNING <fs_info>.
      CHECK sy-subrc = 0.
      CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
        EXPORTING
          input_length = <fs_info>-comp_size
          first_line   = <fs_info>-first_line
          last_line    = <fs_info>-last_line
        IMPORTING
          buffer       = l_employee_photo_content
        TABLES
          binary_tab   = lt_image_bin
        EXCEPTIONS
          failed       = 1
          OTHERS       = 2.
    but the photo is not getting reflected in the adobe forms .
    and also i have tried the url method but it doesnt work .
    please help me out .

    First, have you set a breakpoint in this code and made sure that you are getting data into lt_image_bin?  That would seem to be the first place to start.
    Then the question is how are you trying to pass the image into the Adobe Form?  Are you passing an XSTRING context attribute into the form interface?  Have you marked that part of the interface as an image?  Are you setting the MIME Type parameter of the form interface as well.  You really haven't posted any details about what you are doing on the Adobe Form side.

  • Problem using RFC to call an adobe form to create pdf file........

    Hi,
       I have an RFC that calls an adobe form to display the pdf output back in a bsp page...the RFC fails at the call to the adobe form (next call after after getting the form name) ...while debugging it looks like within this call it is trying to call fpcomp_job_open and failing on the call check_job_open ...
    The code in my RFC looks like this....
    DATA:
        gs_outputparams  TYPE sfpoutputparams,
        fn_name           TYPE rs38l_fnam,
        fp_docparams      TYPE sfpdocparams,
        fp_formoutput     TYPE fpformoutput,
        frm_result        TYPE sfpjoboutput,
        lv_form           TYPE fpname.
    DATA: l_pdf_xstring  TYPE xstring,
           l_pdf_len      TYPE i.
    lv_form = 'ZHR_ASSESSMENT_FORM'.
    Start formrocessing - OPEN spool job to send to printer
      gs_outputparams-getpdf = 'X'.
      call function 'FP_JOB_OPEN'
        changing
          ie_outputparams = gs_outputparams
        exceptions
          others          = 1.
      IF sy-subrc <> 0.
    *//    RAISE FP Open Error.
          exit.
      ENDIF.
    Get name of the generated function module for the form
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name     = lv_form
        IMPORTING
          e_funcname = fn_name.
      IF sy-subrc <> 0.
    *//    RAISE FP Get Form Module Name Error.
            exit.
      ENDIF.
    Call the Adobe Form
      CALL FUNCTION fn_name
      EXPORTING
          /1bcdwb/docparams  = fp_docparams
          gv_appraisal_id = gv_appraisal_id
      IMPORTING
         /1bcdwb/formoutput = fp_formoutput
        EXCEPTIONS
          usage_error        = 1
          system_error       = 2
          internal_error     = 3
          others             = 4.
      IF sy-subrc <> 0.
    *//    RAISE Call Form Module Error.
            perform f_build_message using 'E'
                                      'ZEXT'
                                      012
                                changing return.
           exit.
      ENDIF.
    End from processing - Close spool job
      CALL FUNCTION 'FP_JOB_CLOSE'
        IMPORTING
          e_result       = frm_result
        EXCEPTIONS
          usage_error    = 1
          system_error   = 2
          internal_error = 3
          OTHERS         = 4.
      IF sy-subrc <> 0.
    *//    RAISE FP Close Error.
           exit.
      ENDIF.
      form = fp_formoutput-pdf.
    Thanks,
    Venkatesh

    what is the solution for this problem? I have the same problem. I get sy-subrc = 1 after CALL FUNCTION 'FPCOMP_JOB_OPEN'.
    If I look more in detail I see that "Perform check_job_open" is creating the problem:
    FORM check_job_open.
      IF fpstat-is_opened = c_true.  (--> exactly here is the problem. This condition is true so the program is terminated.)
        PERFORM reset_status.
        MESSAGE ID 'FPRUNX' TYPE 'E' NUMBER '101' RAISING usage_error.
      ENDIF.
      fpstat-is_opened  = c_true.
      fpstat-is_started = c_false.
    ENDFORM.       
    Does somebody know why my job is open and what is the solution to have the job closed at the beginning of my processing?
    Thanks in advance.

  • Archivelink Parameters for Adobe Form

    Hello,
    I am trying to Archive outbound correspondence (SAP Adobe Form) to a content repository that I set up for Inbound correspondence using Archivelink.
    Archivelink is configured and working for Inbound corresponence that resides on my local drive, however I am unsure how to send a form outbound using the Import Parameters in the Adobe Form generated Function Module. 
    I am trying to test this using a SAP standard delivered form: (F140_ACC_STAT_01) (function module: /1BCDWB/SM00000012).
    Can someone please help me with specific values needed for the Parameters to get Outbound archiving to work properly?
    Some of the below params are obvious (i.e. langu, country, etc). However, some are ambiguous even after reading any documentation that I have found (i.e. Function, sap object, ar_object, object id). I tried to drill down on the params data el. to find value tables, but had no luck.
    Here is are my related objects:
    Business Object = BUS1006, Cont. Repos = Z1, Document Cl = 'PDF', Doc Type = 'ZBPDOCTYP' (w/pdf doc cl), Link tbl = 'TOA01'.
    Here is the FM structure, can you please tell me how to fill it based on your experience and the above given values?
    /1BCDWB/DOCPARAMS
           LANGU       =
           COUNTRY   =
           FILLABLE   =
           DYNAMIC   =
           DARATAB
                 FUNCTION  =
                 MANDANT  =
                 DEL_DATE  =
                 SAP_OBJECT  =
                 AR_OBJECT  =
                 OBJECT_ID  =
                 FORM_ID  =
                 FORMARCHIV  =
                 RESERVE  =
                 NOTIZ  =
           REPLANGU1  =
           REPLANGU2  =
           REPLANGU3  =
    Your help is greatly appreciated. Thank you.
    Kind Regards,
    Jason

    Hi,
    Do you want to know what values have to be passed to the following parameters:
                 FUNCTION  =
                 MANDANT  =
                 DEL_DATE  =
                 SAP_OBJECT  =
                 AR_OBJECT  =
                 OBJECT_ID  =
                 FORM_ID  =
                 FORMARCHIV  =
                 RESERVE  =
                 NOTIZ  =
    If yes? Then I could help a lil bit here:
    MANDANT = client (by default its taken as the logon client)
    DEL_DATE = date of deletion of the Outgoing document stored
    SAP_OBJECT = Business object = BUS1006
    AR_OBJECT =  Document type = ZBPDOCTYP
    OBJECT_ID = would ideally be the document number (has to be passed by the calling application)
    RESERVE = document class = PDF
    I am not sure of the FORM_ID and FORMARCHIV.
    Generally the function module ARCHIV_CREATE_OUTGOINGDOCUMENT is called for creating the ArchiveLink documents. Applications like MM, FI call this function module. This is further called by the function module CONVERT_OTF_AND_ARCHIVE. If you could check these function modules, it might be of some help.
    Best Regards,
    Sindhu Sreedharan.

  • Error "Job already started" when calling a adobe form in Z function module

    Hi All,
    I have a error when calling a adobe form in a custom function module.
    I am using FP_FUNCTION_MODULE_NAME to get the adobe form function module and then i am using FP_JOB_OPEN function module to control the printing parameters such as no print preview or no dialog ..etc.. I dont have any exceptions during the call of FP_JOB_OPEN function module ..
    Later I am calling my function module which was generated for the adobe form and i am getting the error called " JOB ALREADY STARTED".
    I tried executing the same function module in se37 and the PDF form output was generated, and also by commenting FP_JOB_OPEN function module the PDF form output was generated.
    But i need the FP_JOB_OPEN function module to control the output based on the output type which triggers the form output such as the medium from nast record which says print or email or fax.. etc
    Please let me know how to handling this error.

    Just as a followup note. If you are testing a function module from SE37 and the test button you will get a value in SY-CPROG. You must override this value for everything to work.
    If you override the value of SY-CPROG with the main program that will be calling the function module you have no problem.
    John W.

  • Adobe Forms function module - downloading the xstring output in PDF file

    Hi Guys,
    I'm using Adobe forms and fetching its output in an XSTRING PDF format. How can I download this XSTRING output to a PDF file and store on the local file system?
    I'm using the following approach to getting a PDF output:
    ls_outputparams-getpdf = 'X'.
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        ie_outputparams = ls_outputparams.
    * Get the name of the generated function module
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name     = 'ZADOBEFORM'
        IMPORTING
          e_funcname = lv_fmname.
      IF sy-subrc <> 0.
      ELSE.
    *   Call the Adobe Form function module
        CALL FUNCTION lv_fmname
          EXPORTING
            /1bcdwb/docparams  = ls_docparams
          IMPORTING
            /1bcdwb/formoutput = ls_form_output
          EXCEPTIONS
            usage_error        = 1
            system_error       = 2
            internal_error     = 3.
        IF sy-subrc <> 0.
        ENDIF.
      ENDIF.
    * Close the spool job
    CALL FUNCTION 'FP_JOB_CLOSE'.
    Now, the variable LS_FORM_OUTPUT-PDF contains the PDF output in XSTRING. My question is how can I download this as a PDF file to my local machine.
    Kind Regards,
    Shailesh.

    hi guys,
    im using all FM to download my PDF adobe but in this part :
    ls_spfli-carrid = 'AA'.
    ls_spfli-connid = '0017'.
    APPEND ls_spfli TO it_spfli.
    flag                     = 'X'.
    is_address_type          = '1'.
    is_address_number        = '22515'.
    is_person_number         = '22517'.
    is_country               = 'IN'.
    *&--- Call the generated function module
    CALL FUNCTION '/1BCDWB/SM00000200'
       EXPORTING
    *   /1BCDWB/DOCPARAMS        =
         it_spfli                 = it_spfli
         flag                     = flag
         is_address_type          = is_address_type
         is_address_number        = is_address_number
         is_person_number         = is_person_number
         is_country               = is_country
      IMPORTING
        /1bcdwb/formoutput       = fp_formoutput
      EXCEPTIONS
        usage_error              = 1
        system_error             = 2
        internal_error           = 3
        OTHERS                   = 4
    I have usage_error knowing that the execution of the function module in SE37 pass successfuly and also the execution of the forms .
    in your opinion what can be the problem?
    Kind Regards,

  • Adobe Form... Is there a way to use a drop down menu to highlight or note other fields...

    I am working on a simple Adobe form.  I am currently trying to figure out if there is a way to use the answers of a drop down menu to either mark, note or highlight 14 other fields.  There are 9 possibilities in the drop down menu, include a blank and NONE.
    For example if the drop down menu is set to 1, then field 9, 10 and 14 are marked, noted or highlighted. 
    Is this possible with a script?
    Thank you in advance for any help! 

    Have you looked at the properties that are available to form fields. I would look at setting the fill color or border color for a form field. Either of these can be done with Acrobat JavaScript.

  • How do I add a functional "submit button" to a pdf form in Adobe Acrobat Pro XI ? I created the pdf form in Adobe Forms Central.

    How do I add a functional "submit button" to a pdf form in Adobe Acrobat Pro XI ? I created the pdf form in Adobe Forms Central. It's for an online Diet Questionnaire. After people complete the form I'd like them to click "SUBMIT" and the completed form will be emailed to me.

    This can be a bit confusing because Acrobat 11 comes with the desktop app that allows you to create simple PDF forms without having a FormsCentral account. Some people find this helpful, but you need to understand that when you generate the PDF form, it is Reader-enabled by Acrobat. In order to edit the form further in Acrobat, you have to create a non-enabled copy of the form. You do this in Acrobat by opening the form and selecting: File > Save a Copy
    and opening the copy. It is not opened automatically.
    You can now add a button and set it up to submit by email, either using a "Submit a form" action or the submitForm JavaScript method. You can set it up to include just the form data or the entire PDF, and will want to use a mailto type URL. Submitting the form to the FormsCentral server has a number of important advantages over email (much more reliable, more secure, etc.), so you might want to consider it.
    If the form needs to be saved with Reader versions prior to 11, then you will need to Reader-enable the document. In Acrobat 11 you do this by selecting: File > Save As Other > Reader Extended PDF > Enable More Tools

  • How to use the SSO functionality when a button is clicked in Adobe Form?

    I have an offline interactive form - when the user clicks on a SUBMIT to SAP button, it asks for user id and password.
    However he user does not have a password to log into SAP directly - he will be logging in via Single Sign On.
    Can you please advise on how to achive this functionality?
    1. Click on a SUBMIT to SAP button on the Adobe Form
    2. Take this info and get the Single Sign On token from SAP portal
    3. Use this ticket/token and log into SAP ECC or validate this info within SAP ( for this 3rd step - probably use function module SUSR_CHECK_LOGON_DATA?)
    Thanks

    Hi
      I think you want to know the row number, in this case , what i would suggest is , in the action ,there is a parameter WDEVENT , which gives you the complete row where you clicked.
    In WDEVENT , you have GET_CONTEXT_ELEMENT method as well as GET_DATA method to fetch the data and it doesnt require any lead selection.
    Thanks
    Anzy

  • Using Adobe Form with SRM Functionality.

    Hi Friends,
    Our client wants to achieve the total functionality of SRM Purchase Order and Shopping cart through Adobe Form.I would like to know if any of you have come across such a scenario where Adobe Form has been used to replicate SRM purchase Order and Shopping Cart functionality.
    It would be a great help to us if you kindly share your experience of the above scenarios.
    Thanks in advance.
    Best Regards,
    Koushik

    Note 1264423 - Customizing for print forms in SRM 7.0
    Summary
    Symptom
    New functionality/Enhancements provided in SRM 7.0 for print forms is only
    available in the SAP Interactive forms by ADobe and is not available in
    Smartforms delivered by SRM.
    More Terms
    PDF based forms, ADB, Adobe forms, Confirmation, BBP_CONF_ADB, SAP
    Interactive forms by Adobe, Output, SRM-EBP-CA-PRT, SRM-EBP-CGS
    Cause and Prerequisites
    All new enhancements or functionalities are supported only in SAP
    Interactive forms by Adobe which is delivered as part of the SRM 7.0. The
    Smartforms deliverd in previous verions would not have any new enhancements
    from SRM 7.0.
    So it is recommended to use the new SAP interactive forms By Adobe instead
    of the Smartforms for print and output in SRM 7.0.
    Solution
    The customizing required to switch to the new SAP interactive forms by
    Adobe are described avaiable as part of the customization documentation
    againt the IMG entries for Output:
    the documentation and the respecitive customizing can be accesed in the
    following manner:
    Step 1:
    Goto transaction SPRO -> SAP Reference IMG -> SAP Supplier relationship
    Management -> SRM Server -> Cross Application basic settings -> Set output
    Actions and output Format -> Define Actions for Document output.
    maintain the action defentions for all purchasing documents for which the
    new forms are intended to be used in the above mentioned customizing.
    Save the customizing
    Step 2:
    Goto transaction SPRO -> SAP Reference IMG -> SAP Supplier relationship
    Management -> SRM Server -> Cross Application basic settings -> Set output
    Actions and output Format -> Condition-Dependent Document Output.
    maintain the conditions for output for all purchasing documents for which
    the new forms are intended to be used in the above mentioned customizing.
    Save the customizing.
    For more details on each of the above mentioned steps access the
    corresponding documentation againt the respective customizing entry in
    SPRO.
    Release Status: Released for Customer
    Released on: 30.10.2008 11:23:10
    Priority: Recommendations/additional info
    Category: Customizing
    Main Component SRM-EBP-CA-PRT Document Output / Forms
    Valid Releases
    Software Component Release From
    Release
    To Release and Following
    SRM_SERVER 700 700 700
    regards
    Muthu

  • Dynamic editable functionality in Adobe form

    Hi All,
    I am Calling a Interactive Adobe form from webdynpro view.
    second applicant(SBPID)--Read only               second applicant name(SNAME)-Calculated read only
    I have created Action on second applicant ID (SBPID) ---If SBPID is not empty disable SNAME(for user entry)
    I have created Action on second applicant name (SNAME) ---If SBPID is empty enable SNAME(for user entry)
    SBPID and TBPID i am displaying from my webdynpro view.
    I am unable to achieve this functionality.Any helpful inputs  will be appreciated.
    regards,

    Hi All,
    Awaiting your inputs on the issue.
    Regards,

  • Adobe form is not displayed via function module

    Hi to all,
    I have written a function module.
    Import parameter: ADOBEFORM_NAME type FPNAME.
    DATA: fm_name           TYPE rs38l_fnam,     
          fp_docparams      TYPE sfpdocparams,   
          fp_outputparams   TYPE sfpoutputparams.
    CALL FUNCTION 'FP_JOB_OPEN'                  
      CHANGING
        ie_outputparams = fp_outputparams
      EXCEPTIONS
        Cancel          = 1
        usage_error     = 2
        system_error    = 3
        internal_error  = 4
        OTHERS          = 5
    CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'          
      EXPORTING
        i_name     = ADOBEFORM_NAME
      IMPORTING
        e_funcname = fm_name.
    CALL FUNCTION fm_name
      EXPORTING
        /1bcdwb/docparams        = fp_docparams
       IMPORTING
        /1BCDWB/FORMOUTPUT       = fp_outputparams
      EXCEPTIONS
        usage_error           = 1
        system_error          = 2
        internal_error           = 3.
    CALL FUNCTION 'FP_JOB_CLOSE'
       IMPORTING
        E_RESULT             =
      EXCEPTIONS
        usage_error           = 1
        system_error          = 2
        internal_error        = 3
        OTHERS               = 4.
    it will execute LP01 , but didnt display adobe form.
    Please can any one tell me the problem in the code.
    I shall be thankful to you for this.
    Regards
    Pavneet Rana

    Thanks for Reply.
    Yes i have done it still there is no display of adobe from.
    DATA: fm_name           TYPE rs38l_fnam,
          fp_docparams      TYPE sfpdocparams,
          fp_outputparams   TYPE sfpoutputparams.
    fp_docparams-langu   = 'E'.
    fp_docparams-country = 'US'.
    fp_docparams-FILLABLE = 'X'.
    fp_outputparams-PREVIEW = 'X'.
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        ie_outputparams       = FP_OUTPUTPARAMS
    EXCEPTIONS
       CANCEL                = 1
       USAGE_ERROR           = 2
       SYSTEM_ERROR          = 3
       INTERNAL_ERROR        = 4
    CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
      EXPORTING
        i_name                     = ADOBEFORM_NAME
    IMPORTING
       E_FUNCNAME                 = fm_name.
      E_INTERFACE_TYPE           = E_INTERFACE_TYPE
    CALL FUNCTION fm_name
      EXPORTING
        /1bcdwb/docparams        = fp_docparams
      IMPORTING
        /1BCDWB/FORMOUTPUT       = fp_outputparams
      EXCEPTIONS
        usage_error           = 1
        system_error          = 2
        internal_error           = 3.
    CALL FUNCTION 'FP_JOB_CLOSE'
       IMPORTING
        E_RESULT             =
      EXCEPTIONS
        usage_error           = 1
        system_error          = 2
        internal_error        = 3
        OTHERS               = 4.
    Please can any one tell me the solution for that.
    I shall be thankful to you for that.
    Regards
    Pavneet Rana

  • Adobe Reader for iPad : Want highlighting function kept ON please!!

    I am using Adobe Reader for iPad.
    While studying .pdf files, I would like to keep the highlighting function on,
    until I'm done. That way I don't have to keep selecting it each time.
    Thanks!!!

    Hi Hollinst,
    Thanks a lot for your valuable suggestion.
    We have noted your request and have added it into our feature backlog. We can't say when they'll be available, but we're constantly looking to solve the problem our loyal users encounter.
    Thanks
    -Satyadev

  • Best replacement for Adobe Forms Central survey functionality

    I am disappointed that you are discontinuing Adobe Forms Central... Please advise of what other applications do you have that provide the abilitity to create quick surveys that I can email out and then view all of the feedback and create reports.  Thank you.

    Hi BrainTrainer,
    We've included a list of FormsCentral alternatives in this document: End of support | Adobe FormsCentral.
    Many customers have posted in the FormsCentral forum after doing research on those alternatives. I'll move your post to that forum, so those customers can chime in about what they feel are the best options.
    Best,
    Sara

Maybe you are looking for

  • Upgrade Processors from 1.8 ghz to 2.4 ghz of my Windows Hyper V 2012 R2 Host Server

    If I get new processors, do I  need to re-install the Host OS, or can we power it down, swap them out, and we're back in business with out issue on my guest machines?

  • XHTML Validation and Accessibility

    We've recently completed developing some Application Express systems for a customer, and they were disappointed the pages did not pass W3C XHTML validation to meet their accessibility targets. I've had the chance to do a bit of a post-mortem and nail

  • Cant switch to numbers/special characters on keyboard

    Hi, I was wondering if anyone can help me with this! I just bought my phone about 2 months ago and its already having problems. It doesnt matter where im typing to but I cant switch to numbers/special characters on the keyboard. Is anyone else having

  • Runtime error (at-1:0): iputils.dll

    when i try to install a application it display runtime error (at-1:0): cannot import dll:c:\users\ravi\appdata\local\temp\is:ga0qp.tmp\iputils.dll same application running smoothly in other workstation ( same configuration same HW) already re-install

  • Reporting through Enterprise Portals

    Please search the forums before posting Dear All, Can you please help me out with some info regarding "Reporting through Enterprise Portals in BI". Regards Karun Edited by: Arun Varadarajan on Jan 18, 2009 8:25 AM