Help needed selecting module for a QA guy.

Hi guys,
My friend has close to seven years of domain experience in Quality Assurance relevant to Process definition(tailoring), training, implementation and conducting audits by supporting the following verticals - Financial Services, System Software, Semi, Information Management, Aerospace, Automotive, CAD, Application related projects and support functions (like Procurement, HR and Training, System Administration)
He has worked for companies like HCL, Capgemini and EDS.
He wants to change his career track and come into SAP.  He has been getting ambiguous suggestions and advises from authorised training centres and others on selecting the module. He has been advised to take up SD / MM / QM / PS. Could anyone please advise which module he would fit into.
Thanks in advance.
Zubair

Thanks Amol for the advice.
My friend doesn't belong to an engineering background and had not worked in a manufacturing environment.
He holds an MBA degree specialised in systems and has worked in software companies supporting software projects and the functions(like HR,Procurement in the same setup) as a software quality guy.
Moreover the modules mentioned by you requires engineering background with manufacturing exposure.
He had enquired for the course at siemens and they said that he may not be suitable for any of the modules offered by them as per the above reasons.They also mentioned that they have to check with SAP Labs for expert opinion.
Please provide your inputs.
regards,
Zubair.

Similar Messages

  • Need Function Module for convertion of  Foreign currency to Indian currency

    hi friends,
    i need function module for converting amount from
    Foreign currency to Indian currency
    thanks

    hi Venkat,
    Please use the function module CONVERT_TO_LOCAL_CURRENCY
    <b><u>Sample code:</u></b>
          call function 'CONVERT_TO_LOCAL_CURRENCY'
            exporting
              date             = p_alv_tab-begda
              foreign_amount   = p_alv_tab-kkost_p_person
              foreign_currency = p_alv_tab-kwaer                 " foreign currency
              local_currency   = l_ev_waer                           " Indian currency
            importing
              local_amount     = p_alv_tab-kkost_p_person
            exceptions
              no_rate_found    = 1
              overflow         = 2
              no_factors_found = 3
              no_spread_found  = 4
              others           = 5.
    Hope this helps,
    Sajan Joseph.

  • Need ReplaceFunction module  for HR_DISPLAY_BASIC_LISTflag obselete

    Need Replacement module  for HR_DISPLAY_BASIC_LISTflag obselete .And need relacement function module for Need ReplaceFunction module  for HR_DISPLAY_BASIC_LISTflag obselete WS_EXCEL

    Hi,
    You can use any of the ALV_GRID/LIST function modules ... pretty much all of them have the same/additional functionality in comparison to HR_DISPLAY_BASIC_LIST.
    Also try alternate FM REUSE_ALV_GRID_DISPLAY.
    Regards,
    Ferry Lianto

  • Need guidance selecting module for training

    hi friends,
    I have done my Bachelor of engineering in computers and after that i have worked as a developer in an MNC. After that i have done my MBA in Systems and IT.I had knowledge of ITIL project management but nothing majorly of marketing or finance .Now i am selecting in a big MNC where i am going to be trained on any one functional module of my choice from limited choice.
    Being a IT guy i am totally confused as to which module to select .I need some advice which module will be best suited for me.what is the current trend which module is in hot demand.I am sure i dont like FICO module but other than that all modules seem to be domain specific.
    Is there any module which will be useful for an IT guy.?
    please reply.and guide me...

    Its a million dolloar question which BILL GATES only can solve....!!!
    Learning functional module by training or books is just gaining theory knowledge. In order to understand various industry terminology and business processes either you should have worked in different industries or you get by experience.
    Wish you good luck....
    Regards,
    Jagadish

  • Regarding parameters in the selection module for Datasource

    Hi
    I created the datasource and selection module.
    Since the table parameters are no longer supported in the system ,i used changing parameters instead for selection module.
    But in the generated <b>call_select_function</b> it is still using the table parameters to call the selection module and raising an error 'parameter is not defined' error
    Please let me know how can i resolve this issue
    Regards
    Leon

    Dear Leon,
    I hope this earlier posting will be of some help...
    Steps for Creating DataSource based on Function Module
    <b>Tables Tab:</b>
    ============
    i) Parameter Name = I_T_SELECT; Associated Type = SRSC_S_IF_SIMPLE-T_SELECT
    ii) Parameter Name = I_T_FIELDS; Associated Type = SRSC_S_IF_SIMPLE-T_FIELDS
    iii) Parameter Name = E_T_DATA; Associated Type = 'Like your extract structure'
    Please NOTE: Please make sure that you have a tick on 'Optional' for all of the above. Also 'Type Specification' for E_T_DATA will be 'LIKE' but for the other two it will be 'TYPE'.
    ==========
    When I try to change the E_T_DATA table parameter to my structure,
    I receive message FL069 "TABLES parameters are obsolete!".
    Have you encountered this problem ?
    ==============================
    I could not exit the tables tab once the warning message was displayed.
    <b>However, I have since discovered that you don't need to specify the type spec and the associated type at all.
    You can just leave them blank and only specify E_T_DATA in the Parameter Name.
    The extractor seems to work just fine.</b>
    Refer the below weblog by Siggi...
    /people/siegfried.szameitat/blog/2005/09/29/generic-extraction-via-function-module
    Regards, ABY

  • Need Select statement for fetch the details

    Hi
      i want to fetch particular customer wise sales orderds and that sales order No  and  date of sales order was created..  and  that sales order related PO No  and Materials ..
    for this..   how can i write an executable programm.. is it needed to  define seperate  internal tables or single internal table is enough  ?
    what is the select statement for fetching  all these details..
    any help will be appriciated
    Thanks
    Bbau

    custmer master table is KNA1  knb1  knbk
    sales data tables r  VBAK VBAP VBEP
    Material data  MARA, MARAC, MARD
    PO RELATED ekko  ekpo  eket
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Feb 13, 2008 3:04 PM

  • Search help in selection screens for interactive report

    A search help can only be assigned to DB table.
    So my doubt is can it also be used for seletion screens created for an interactive report?
    If yes what is the procedure.. Please give me one example at least...
    waiting for your valuable suggestions.....
    Thanks,
    regards,
    Chinmay

    Hi Chinmay,
    I suppose your requirement is to give search help to selection screen elements.
    Here is the code.
    REPORT  ZSHAIL_F4HELP                           .
    parameters: name(10) type c .
    TYPES: BEGIN OF VALUES,
             CARRID TYPE SPFLI-CARRID,
             CONNID TYPE SPFLI-CONNID,
           END OF VALUES.
    dATA: PROGNAME LIKE SY-REPID,
          DYNNUM   LIKE SY-DYNNR,
          DYNPRO_VALUES TYPE TABLE OF DYNPREAD,
          FIELD_VALUE LIKE LINE OF DYNPRO_VALUES,
          VALUES_TAB TYPE TABLE OF VALUES.
    at selection-screen on value-request for name.
    CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
      EXPORTING
        tabname                   = 'DEMOF4HELP'
        fieldname                 = 'CARRIER1'
      SEARCHHELP                = ' '
      SHLPPARAM                 = ' '
       DYNPPROG                  = PROGNAME
       DYNPNR                    = DYNNUM
       DYNPROFIELD               = 'CARRIER'
      STEPL                     = 0
      VALUE                     = ' '
      MULTIPLE_CHOICE           = ' '
      DISPLAY                   = ' '
      SUPPRESS_RECORDLIST       = ' '
      CALLBACK_PROGRAM          = ' '
      CALLBACK_FORM             = ' '
      SELECTION_SCREEN          = ' '
    IMPORTING
      USER_RESET                =
    TABLES
      RETURN_TAB                =
    EXCEPTIONS
       FIELD_NOT_FOUND           = 1
       NO_HELP_FOR_FIELD         = 2
       INCONSISTENT_HELP         = 3
       NO_VALUES_FOUND           = 4
       OTHERS                    = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    AT SELECTION-SCREEN OUTPUT.
    PROGNAME = SY-REPID.
      DYNNUM   = SY-DYNNR.
      CLEAR: FIELD_VALUE, DYNPRO_VALUES.
      FIELD_VALUE-FIELDNAME = 'CARRIER'.
      APPEND FIELD_VALUE TO DYNPRO_VALUES.
    I hope your query is solved.
    If so,please award points.
    Regards,
    Sylendra.

  • Help in Function Module for Sending Email to Supplier afetr Registration

    Hi  Team
    I am beginner in ABAP, need your help in finding solution for the below issue.The Scenario is between MDM to SRM(R/3 System)
    External supplier when registers, system need to generate a unique identification number ( Registration Number / Profile Number ) for the supplier and also generate a PIN ( password ) for the Registration Number, so that users from supplier company can request a user id to be created.These user idu2019s will be then linked to the supplier profile using the registration number.Also, supplier needs to be communicated with the Registration and PIN number via email.
    FOr the email we are using the FM"ZGVMP_SUPPLIER_REGISTRATION".
    My query is when the supplier is receiving the email , he is getting the email from the name GVMPUIDC(i.e the system id, it is being sent by the syetm id or user id of the program).
    I want the mail to be sent by the following name to the supplier by different name  instead of GVMPUIDC.
    please help in solving the problem
    Thanks
    Edited by: VArjun86 on Dec 5, 2011 11:12 AM

    Hi Kesshav
    The FM which i am using is zgvmp_supplier_registration..
    Below is the code which is being used to send the emails.
    Send emails to Registration from Suppliers only
        if not wa_contact-name1 is initial and
           not wa_contact-name2 is initial.
          if sy-sysid = 'NSP'.
            perform send_email.
          else.
            perform send_html_email.
          endif.
        endif.
    please let me know if you require any more details

  • Help Needed with JavaScript for show/hide subforms controlled by dropdown selection... Please!

    I have created a form that depending on what is seleced in a drop down menu it should determine what subform is displayed. The code I am pasting below only works with one (4 total) of the selections in the dropdown.
    I am not a scriptor by any strectch of the imagination! Can anyone see what I need to fix in the below to get this to work. It is almost like I am missing some sort of "or" statement... Any suggestions?
    Here is the current javascript associated with the dropdown field:
    form1.jobselection.customjob::change - (JavaScript, client)
    customprint.presence = "hidden";
    frontpagenote.presence = "hidden";
    weprint.presence = "hidden";
    preprint.presence = "hidden";
    if (xfa.event.newText == "CustomPrint"){customprint.presence = "visible";}
    else {frontpagenote.presence = "hidden";
    weprint.presence = "hidden";
    preprint.presence = "hidden";}
    if (xfa.event.newText == "PrePrint"){preprint.presence = "visible";}
    else {frontpagenote.presence = "hidden";
    weprint.presence = "hidden";
    customprint.presence = "hidden";}
    if (xfa.event.newText == "FrontPageNote"){frontpagenote.presence = "visible";}
    else {preprint.presence = "hidden";
    weprint.presence = "hidden";
    customprint.presence = "hidden";}
    if (xfa.event.newText == "WePrint"){weprint.presence = "visible";}
    else {frontpagenote.presence = "hidden";
    preprint.presence = "hidden";
    customprint.presence = "hidden";}
    form1.jobselection.customjob::click - (JavaScript, client)
    if (customjob.rawValue == CustomPrint)
    xfa.resolveNode(form1.jobselection.customprint).presence="visible";
    else
    xfa.resolveNode(form1.jobselection.customprint).presence="hidden";

    First of all i suggest you clean up the code a bit. Use this for example.
    var strSelectedText = xfa.event.newText;
    customprint.presence      = (strSelectedText == "CustomPrint") ? "visible" : "hidden";
    preprint.presence            = (strSelectedText == "PrePrint") ? "visible" : "hidden";
    frontpagenote.presence   = (strSelectedText == "FrontPageNote") ? "visible" : "hidden";
    weprint.presence            = (strSelectedText == "WePrint") ? "visible" : "hidden";
    //Optional code for checking values. You might want to put this in the exit-event.
    console.show();
    console.println("value = " + strSelectedText );
    console.println("customprint.presence = " +customprint.presence );
    console.println("preprint.presence = " + preprint.presence );
    console.println("frontpagenote.presence  = " + frontpagenote.presence  );
    console.println("weprint.presence = " + weprint.presence );
    // End optional code.
    What the above does is just have the same if/else you use, it just does it in much less code/scripting.
    The optional code is for you to verify what actually goes on. Wich values are changed or given, etc.
    What also might help is to write down the full path off the subform you want to change the presence of.
    So instead of "frontpage.presence" you write down "form1.frontpage.presence".
    Hope this helps.
    Rien.

  • Need help in selecting translations for bursting

    Hi,
    I am using EBS 12.1.3 (XML publisher 5.6.3) .I am successfully able to burst my consolidated report to e-mail in english language. But somehow I cannot get it to select the french translation ,for which I have already uploaded the corresponding xlf file for the template. I searched the forum and tried the filter attribute,so that my control file looks like this:
    <?xml version="1.0" encoding="UTF-8" ?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
    <xapi:request select="/DATA/LIST_G_COUNT/G_COUNT">
    <xapi:delivery>
    <xapi:email server="10.96.9.132" port="25" from="[email protected]" reply-to="">
    <xapi:message id="123" to="[email protected]" attachment="true"
    subject="${NAME} GL Voucher Report">Please find attached herewith the GL Voucher Report for ${NAME}.
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output-type="excel" delivery="123">
    <xapi:template type="rtf" locale="en-US" location="xdo://BTVL.XXBILCGLVCHR.en.US/?getSource=true"
    filter=".//G_COUNT[LANGUAGE='FR']" translation="XXBILCGLVCHR_fr_FR.xlf" />
    <xapi:template type="rtf" locale="en-US" location="xdo://BTVL.XXBILCGLVCHR.en.US/?getSource=true"
    filter=".//G_COUNT[LANGUAGE='FR']" translation="XXBILCGLVCHR_fr_FR.xlf" />
    </xapi:document>
    </xapi:request>
    </xapi:requestset>My report XML file structure is like this:
    <DATA>
           <PARAMETER1>value for Parameter1</PARAMETER1>
          <PARAMETER 7>value for Parameter 7</PARAMETER7>
          <LIST_G_COUNT>
                  <G_COUNT>
                  <FIELD1>Value for F1</FIELD1>
                  <LANGUAGE>US</LANGUAGE>
                  <LIST_G_VOUCHER_NUM>
                            <G_VOUCHER_NUM>
                                    <FIELD2>Value for F2</FIELD2>
                                    <FIELD7>Value for F7</FIELD7>
                            </G_VOUCHER_NUM>
                            <G_VOUCHER_NUM>
                                    <FIELD2>Value for F2</FIELD2>
                                    <FIELD7>Value for F7</FIELD7>
                            </G_VOUCHER_NUM>
                     </LIST_G_VOUCHER_NUM>
                     <CS_SUM>Value</CS_SUM>
                  </G_COUNT>
                  <G_COUNT>
                  </G_COUNT>
          </LIST_G_COUNT>
    </DATA>Oddly though, the bursting program errors out when I try to make it select any of the 2 languages using the above control file. It gives the message :
    Error while generating the Document...Any having any idea as to where i might be going wrong ?Any help will be appreciated.

    Hi Sarath
    Following package will help for find applied tax , charges and order total
    OE_OE_TOTALS_SUMMARY.PRT_ORDER_TOTAL (OOH.header_id),
    OE_OE_TOTALS_SUMMARY.Taxes (OOH.header_id),
    OE_OE_TOTALS_SUMMARY.Charges (OOH.header_id)
    Regards,
    akil

  • Need function modules for the following...

    Hello experts,
    Is there an function module that I can use for:
    1. get the last date for a given year
    2. get the exchange rate for a given document number in a span of 5 years -
    for example, I need to get the exchange rate of doc. number 0000000123
    for the year 2000, 2001, 2002, 2003, 2004 and 2005(maximum of 5 years)   
    Help would be greatly appreciated.
    Again, thank you guys and take care!

    Hi,
    To use CALCULATE_EXCHANGE_RATE_N, you just have to pass the required parameters like foreign amount/currency and local amount/currency, instead you can query the table TCURR for the same data, remember to convert the 'DATE' to internal format before sending it in to the fm/table, you can refer the following code, this might help,
    WRITE  V_date TO  LV_DATUM USING EDIT MASK '__.__.____'.
         CALL FUNCTION 'CONVERSION_EXIT_INVDT_INPUT'
           EXPORTING
             INPUT         = LV_DATUM
          IMPORTING
            OUTPUT        = LV_DATUM.
    Retrieve the Exchange rate from Custom table for the Exchange
            select ukurs from tcurr
            into tcurr-ukurs
            up to 1 rows
            where kurst = 'M'
            and   fcurr = komk-waerk
            and   tcurr = komk-HWAER
            and   gdatu >= LV_DATUM.
            endselect.
    Rgds,

  • Help needed with 'Conditions' for field with read only on demand

    Hy guys,
    I really need your help now, i have two items named P22_LOGIN_TYPE (..wich can be 'Default' or 'Special') and P22_PASSWORD, i need to turn to 'read only' the second item when the first item is 'Default', i'v tryied the conditional option but with no success, i know is managed from there but it's not working for me, it seems that i don't know exactly how to do it. By the way, i have APEX 2.2.
    I need an exact guide (explanation) on how to do it, thank you very much.
    Best regards,
    Victor

    Firstly you could set your First item to be a select list with submit. Make the branch go to the same page.
    Secondly, on the read-only conditions for your second item, use the condition when item in expression 1 = value in expression 2, and set that to 'Default' in expression 2.
    Essentially this will re-submit your page when you make a selection either 'Default' or 'Special'. If 'Default' is selected, then the PASSWORD item will be rendered as read-only. If you don't want to display the PASSWORD item at all, you can put the above condition for the read-only, into the conditions section of the item.
    Hope this helps and is not too confusing. It reads a lot worse than it actually is ;)
    Cj

  • Select module for resistance measurment

    Hi,
    I I would like to measure a componant that have a 3-5 Ohm resistance.
    Change in the resistance value during my experiment is 0.003 Ohm.
    Using DMM is not prefered becouase it has only 1 channel and i don't want to use switching card in addition to the DMM.
    So I m looking for the correct modules selection that will allow me to measure the resistance change using 4 probe methood.
    That means a current source and analog input modules.(can be one if possible)
    For this I need a stable current source and hi resolution Volt analog input modules.
    the requirments are:
    1) not more then 10mA current (avoid heating of the componant)
    2) 8 channels (more is good).
    3) sampling rate max 100 Hz can be less down to 10 Hz f it help to reduce cost.
    4) Effective resolution (after accuracy,stability,offset temperature drift and noise(in the bandwith in 3) of  0.05 to 0.1  mOhm.
    5) enviromental temperature where the equipment will be used is 25+- 5 degree.
    I hope there a modules that can fit this requirments, if not i would be happy to know what is the nearest that possible.
    I understand that PXI is the best platform for this but other platform is also possible.
    Thanks.

    10mA with 0.1mOhm resolution results in ONE µV !! 
    Additional thermoelectric EMV on the contacts etc....  
    Some ideas
    -use a AC bridge configuration with a preamp .... Ups ...resistors with a tempco less than 10ppm/K !! 
    -ask Keithley    , sorry NI
    - a XXmA two pole current 'diode'  (maybe in an appnote from Jim Williams ) in a 4 diode bridge sourced by a +- squarewave supply  , building an alternating current source, and a differential preamp ...  the pream is per channel , the rest might be done with muxer
    did I mention 4 wire measurements??
    Greetings from Germany
    Henrik
    LV since v3.1
    “ground” is a convenient fantasy
    '˙˙˙˙uıɐƃɐ lɐıp puɐ °06 ǝuoɥd ɹnoʎ uɹnʇ ǝsɐǝld 'ʎɹɐuıƃɐɯı sı pǝlɐıp ǝʌɐɥ noʎ ɹǝqɯnu ǝɥʇ'

  • Need functional module for service order

    hello,
    while creating service notification i want to create service order automatically.for that i need a functional module which is the key funtion to process creation of transaction in the background. i want the name of that functional module to create iw31 service order automatically  and that of functional group so that i can assign in the action box.
    Regards,
    Rajesh Kumar Raju
    9900311069

    Hi,
    unfortunately there is no such "official" BAPI available - not even in ERP2005! There is a BAPI called BAPI_ALM_ORDER_MAINTAIN but this is for changing an already existing service order.
    But, you can use what the "SAP CRM group" developed for their integration to the backend R/3 system. This FM is called CRM_CS_API_ORDER_CREATE and is part of FUGR CRM_CS_API_ORDER. This FM is acting in the same way as a "normal" BAPI although you can not find this FM in transaction BAPI.
    Hope this can help!
    Best regards, Johan

  • Help needed with DisplayConfigX for Philips 32PW9551/12 CRT TV

    Hi everyone,
    I've been following this part of Apple Discussions closely for some time now, and I realise that I'm not the only one having trouble connecting my Mac Mini (Core Duo) to my TV. I'm hoping that BSteely or somebody else here could take a look at my specific problem. I'll try to provide as much relevant info as I can, if more input is needed, please specify.
    Here goes :
    TV model : Philips 32PW9551/12 That's a CRT, but with HDMI input. The manual says that it should accept 480p, 576p, 720p and 1080i.
    Cable : DVI-HDMI
    Using VNC over Airport when things go wrong, resetting back to the original resolutions.
    Problem : can't get 720p resolution to work, only 640x480 fills screen. 640x480 is too low, since Remote Buddy's menu does not even fit on it.
    When I select 1280x720 the image is on the left of the TV, leaving a wide black bar on the right and dropping a lot on the right. Other resolutions either don't work at all, are seriously overscanned (no dock, no menu) or are horrible to look at.
    I've been fiddling with DisplayConfigX and SwitchResX, but I feel it's out of my league, so I'm not getting anywhere. I did export settings via SwitchResX, I hope that provides some insights.
    Thank you very much in advance for helping me get my setup to work by creating a tailormade timing !
    Kind regards,
    Also Starring
    Belgium
    DDC block report generated by SwitchResX for display
    PhilipsTV
    0 1 2 3 4 5 6 7 8 9 A B C D E F
    0 | 00 FF FF FF FF FF FF 00 41 0C 51 95 01 01 01 01
    1 | 06 10 01 03 80 42 25 78 0A 0D C9 A0 57 47 98 27
    2 | 12 48 4C 20 00 00 01 01 01 01 01 01 01 01 01 01
    3 | 01 01 01 01 01 01 01 1D 80 D0 72 1C 16 20 10 2C
    4 | 25 80 94 72 21 00 00 9E 01 1D 00 72 51 D0 1E 20
    5 | 6E 28 55 00 94 72 21 00 00 1E 00 00 00 FD 00 31
    6 | 3D 1C 2E 08 00 0A 20 20 20 20 20 20 00 00 00 FC
    7 | 00 4C 30 36 48 44 20 76 31 20 31 36 3A 39 01 29
    Valid DDC block: checksum passed
    EDID Version........1.3
    Manufacturer........PHL
    Product Code........20885 (5195) (9551)
    Serial Number.......16843009
    Manufactured........Week 6 of year 2006
    Max H Size..........66 cm
    Max V Size..........37 cm
    Gamma...............2.20
    DPMS Supported Features:
    Display type:
    RGB color display
    Input signal & sync:
    Digital
    Color info:
    Red x = 0.625 Green x = 0.280 Blue x = 0.155 White x = 0.283
    Red y = 0.340 Green y = 0.595 Blue y = 0.070 White y = 0.298
    Established Timings:
    640 x 480 @ 60Hz
    Manufacturer Reserved Timings:
    Standard Timing Identification:
    Monitor Description blocks:
    Descriptor #0 is Timing definition:
    Mode = 1920 x 540 @ 50Hz
    H. Active...............1920 pixels
    H. Blanking.............720 pixels
    V. Active...............540 lines
    V. Blanking.............22 lines
    HSync Offset............528 pixels
    HSync Pulse Width.......44 pixels
    VSync Offset............2 lines
    VSync Pulse Width.......5 lines
    Pixel Clock.............74.25MHz
    Horizontal freq.........28.12kHz
    Vertical freq...........50.04Hz
    H Image Size............660mm
    V Image Size............370mm
    H Border................0 pixels
    V Border................0 lines
    Interlaced
    Sync: Digital separate with
    * Positive vertical polarity
    * Positive horizontal polarity
    Descriptor #1 is Timing definition:
    Mode = 1280 x 720 @ 60Hz
    H. Active...............1280 pixels
    H. Blanking.............370 pixels
    V. Active...............720 lines
    V. Blanking.............30 lines
    HSync Offset............110 pixels
    HSync Pulse Width.......40 pixels
    VSync Offset............5 lines
    VSync Pulse Width.......5 lines
    Pixel Clock.............74.25MHz
    Horizontal freq.........45.00kHz
    Vertical freq...........60.00Hz
    H Image Size............660mm
    V Image Size............370mm
    H Border................0 pixels
    V Border................0 lines
    Non-Interlaced
    Sync: Digital separate with
    * Positive vertical polarity
    * Positive horizontal polarity
    Descriptor #2 is Monitor limits:
    Horizontal frequency range.......28-46 kHz
    Vertical frequency range.........49-61 Hz
    Maximum bandwidth unspecified
    Descriptor #3 is Monitor name:
    L06HD v1 16:9
    Mini Intel Core Duo   Mac OS X (10.4.8)  

    (1280x594 60Hz NTSC) gives fairly stable
    image, big black border on
    top, fallen off image on the left but right and
    bottom seem ok.
    You might want to run with that and see if you can dial it in better. SwitchRes X has arrows you can use in the right-hand side of the custom pane where you can try and center and size the image better.
    Another thing. I don't seem to be able to enter the
    pixel clock number exactly as you specify. It keeps
    changing it slightly. Eg, after rebooting, it says
    68,4 in SRX, even though I entered 69,75 before...
    This is explained in the SRX documentation. When you make a request of the hardware that it somehow can't satisfy, it just tries to do the next closest thing. But you don't get and feedback of what the hardware can and cannot do. You only get unexpected results as you have mentioned.
    And also, should the vertical scan rate not be
    exactly 60 Hz ? Other numbers don't seem to be
    accepted by the TV, but when making custom timings,
    these scan rate numbers seem to be changing all the
    time.
    If you look at the EDID data you posted at the begining of this thread, towards the bottom it states that your TV will work from with any vertical frequency in the range of 49Hz to 61Hz. You don't need to use 60Hz but that is a standard. There is very little downside to deviating from that with and LCD display.

Maybe you are looking for

  • Best Buy has failed

    We recently purchased a new microwave and gas range from bestbuy.com. The delivery was done as promised on the date that was indicated. However, per the chart for installation it said there would be an additional fee to have the microwave installed,

  • Cant uninstall itunes because 'itunes.msi' cant be found

    hi, while trying to update itunes to 9.2 version the update failed due to the bonjour file,i restarted the pc tried to open the itunes programme from the desktop short cut and got message 'this action is only valid for products that are currently ins

  • [SOLVED] KDE problems after upgrade from 4.10.0-1 to 4.10.1-1

    Hi guys, after updating KDE ihave the following problems: 1. The widgets are unable to load (red cross icon) everywhere at desktop, at panel. 2. Panel need to be removed and added after boot. 3. The programs does not displaying at task manager. 4. Pr

  • Some doubt regarding oracle 9i lite

    Hai, I am doing R @ D on 9i lite. My scenario is as follows, 1. first i installed oracle 8i 8.1.7 database. 2. using oracle 9i lite 5.0.2 setup, In another machine instllaing mobile server and mobile development kit. 3. how to synchronize the 9i lite

  • Is it possible to read Barcode using Blackberry Application?

    Dear Friends, Is it possible to read Barcode using Blackbbery application? If yes please let me know what thing we'll be require to develop the same. It is very urgent please help me. Regards, Haidar Ali