Need details for GRC Certification and Materials.

Please let me know the GRC Access Control Certifications and the materials for preparation.
Thanks in advance.
regards
Selvin J Dhina

Hi Selvin,
Please go through the below link you will get some idea.
https://training.sap.com/shop/certification/c_grcac_10-sap-certified-application-associate---sap-businessobjects-access-control-100-g/
Regards,
Neeraj Agarwal

Similar Messages

  • I updated my payment option details for app store and was charged with Rs. 60 twice. why did that happen?

    i changed my app store from canada to india and for that i'd to update my payment option details for app store and was charged with Rs. 60 twice. once the day i added the card details. and then another one 3 days later. why did that happen?
    i read soemwhere that it automatically gets credited back within 3-5 working days.
    waited for more than 7 days but no credit was given back.
    m feeling bad that i got charged without making any purchase.

    Each time that you add or change the card details on your account (and possibly also if you change your name and address, as the card needs to be registered to the same name and address as on your iTunes account) you will be charged a temporary store holding charge to check that the card details are valid and that the card is active, but it should disappear within a few days or so (the amount of time that it takes will vary by card issuer) : store holding charge.
    Give it a few more days, and if it still hasn't disappeared then try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Hi i need material for module pool and alv's.

    hi
      i need material for module pool and ALV's(not object oriented) if any one have pls do send that to my
    ID [email protected]
    thanx in advance.

    Hi
    Check the below link:
    http://wiki.ittoolbox.com/index.php/FAQ:What_is_module_pool_program_in_abap%3F
    http://help.sap.com/saphelp_46c/helpdata/en/35/26b1aaafab52b9e10000009b38f974/content.htm
    http://sap.mis.cmich.edu/sap-abap/abap09/sld011.htm
    http://sap.mis.cmich.edu/sap-abap/abap09/index.htm
    http://www.geocities.com/ZSAPcHAT
    http://www.allsaplinks.com/files/using_table_in_screen.pdf
    http://help.sap.com/saphelp_webas630/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/content.htm
    http://www.sapdevelopment.co.uk/dialog/dialoghome.htm
    http://www.sap-img.com/
    http://help.sap.com/saphelp_46c/helpdata/en/08/bef2dadb5311d1ad10080009b0fb56/content.htm
    http://www.sapgenie.com/links/abap.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c9/5472fc787f11d194c90000e8353423/frameset.htm
    You can also check the transaction ABAPDOCU which gives you lot of sample programs.
    Also you can see the below examples...
    Go to se38 and give demodynpro and press F4.
    YOu will get a list of demo module pool programs.
    One more T-Code is ABAPDOCU.
    YOu can find more examples there.
    See the prgrams:
    DEMO_DYNPRO_TABLE_CONTROL_1 Table Control with LOOP Statement
    DEMO_DYNPRO_TABLE_CONTROL_2 Table Control with LOOP AT ITAB
    http://www.geocities.com/ZSAPcHAT
    http://www.allsaplinks.com/files/using_table_in_screen.pdf
    ALV
    ABAP List Viewer
    The common features of report are column alignment, sorting, filtering, subtotals, totals etc. To implement these, a lot of coding and logic is to be put. To avoid that we can use a concept called ABAP List Viewer (ALV).
    This helps us to implement all the features mentioned very effectively.
    Using ALV, We can have three types of reports:
    1. Simple Report
    2. Block Report
    3. Hierarchical Sequential Report
    There are some function modules which will enable to produce the above reports without much effort.
    All the definitions of internal tables, structures and constants are declared in a type-pool called SLIS.
    1. SIMPLE REPORT.
    The important function modules are
    a. Reuse_alv_list_display
    b. Reuse_alv_fieldcatalog_merge
    c. Reuse_alv_events_get
    d. Reuse_alv_commentary_write
    e. Reuse_alv_grid_display
    A. REUSE_ALV_LIST_DISPLAY : This is the function module which prints the data.
    The important parameters are :
    I. Export :
    i. I_callback_program : report id
    ii. I_callback_pf_status_set : routine where a user can set his own pf status or change the functionality of the existing pf status
    iii. I_callback_user_command : routine where the function codes are handled
    iv. I_structure name : name of the dictionary table
    v. Is_layout : structure to set the layout of the report
    vi. It_fieldcat : internal table with the list of all fields and their attributes which are to be printed (this table can be populated automatically by the function module REUSE_ALV_FIELDCATALOG_MERGE
    vii. It_events : internal table with a list of all possible events of ALV and their corresponding form names.
    II. Tables :
    i. t_outtab : internal table with the data to be output
    B. REUSE_ALV_FIELDCATALOG_MERGE : This function module is used to populate a fieldcatalog which is essential to display the data in ALV. If the output data is from a single dictionary table and all the columns are selected, then we need not exclusively create the field catalog. Its enough to mention the table name as a parameter(I_structure name) in the REUSE_ALV_LIST_DISPLAY. But in other cases we need to create it.
    The Important Parameters are :
    I. Export :
    i. I_program_name : report id
    ii. I_internal_tabname : the internal output table
    iii. I_inclname : include or the report name where all the dynamic forms are handled.
    II Changing
    ct_fieldcat : an internal table with the type SLIS_T_FIELDCAT_ALV which is
    declared in the type pool SLIS.
    C. REUSE_ALV_EVENTS_GET : Returns table of possible events for a list type
    Parameters :
    I. Import :
    Et_Events : The event table is returned with all possible CALLBACK events
    for the specified list type (column 'NAME'). For events to be processed by Callback, their 'FORM' field must be filled. If the field is initialized, the event is ignored. The entry can be read from the event table, the field 'FORM' filled and the entry modified using constants from the type pool SALV.
    II. Export :
    I_List_type :
    0 = simple list REUSE_ALV_LIST_DISPLAY
    1 = hierarchcal-sequential list REUSE_ALV_HIERSEQ_LIST_DISPLAY
    2 = simple block list REUSE_ALV_BLOCK_LIST_APPEND
    3 = hierarchical-sequential block list
    REUSE_ALV_BLOCK_LIST_HS_APPEND
    D. REUSE_ALV_COMMENTARY_WRITE : This is used in the Top-of-page event to print the headings and other comments for the list.
    Parameters :
    I. it_list_commentary : internal table with the headings of the type slis_t_listheader.
    This internal table has three fields :
    Typ : ‘H’ – header, ‘S’ – selection , ‘A’ - action
    Key : only when typ is ‘S’.
    Info : the text to be printed
    E. REUSE_ALV_GRID_DISPLAY : A new function in 4.6 version, to display the results in grid rather than as a preview.
    Parameters : same as reuse_alv_list_display
    This is an example for simple list.
    2. BLOCK REPORT
    This is used to have multiple lists continuously.
    The important functions used in this report are:
    A. REUSE_ALV_BLOCK_LIST_INIT
    B. REUSE_ALV_BLOCK_LIST_APPEND
    C. REUSE_ALV_BLOCK_LIST_HS_APPEND
    D. REUSE_ALV_BLOCK_LIST_DISPLAY
    A. REUSE_ALV_BLOCK_LIST_INIT
    Parameters:
    I. I_CALLBACK_PROGRAM
    II. I_CALLBACK_PF_STATUS_SET
    III. I_CALLBACK_USER_COMMAND
    This function module is used to set the default gui status etc.
    B. REUSE_ALV_BLOCK_LIST_APPEND
    Parameters :
    Export :
    I. is_layout : layout settings for block
    II. it_fieldcat : field catalog
    III. i_tabname : internal table name with output data
    IV. it_events : internal table with all possible events
    Tables :
    i. t_outtab : internal table with output data.
    This function module adds the data to the block.
    Repeat this function for all the different blocks to be displayed one after the other.
    C. REUSE_ALV_BLOCK_LIST_HS_APPEND
    This function module is used for hierarchical sequential blocks.
    D. REUSE_ALV_BLOCK_LIST_DISPLAY
    Parameters : All the parameters are optional.
    This function module display the list with data appended by the above function.
    Here the functions REUSE_ALV_FIELDCATALOG_MERGE, REUSE_ALV_EVENTS_GET, REUSE_ALV_COMMENTARY_WRITE can be used.
    3. Hierarchical reports :
    Hierarchical sequential list output.
    The function module is
    A. REUSE_ALV_HIERSEQ_LIST_DISPLAY
    Parameters:
    I. Export:
    i. I_CALLBACK_PROGRAM
    ii. I_CALLBACK_PF_STATUS_SET
    iii. I_CALLBACK_USER_COMMAND
    iv. IS_LAYOUT
    v. IT_FIELDCAT
    vi. IT_EVENTS
    vii. i_tabname_header : Name of the internal table in the program containing the
    output data of the highest hierarchy level.
    viii. i_tabname_item : Name of the internal table in the program containing the
    output data of the lowest hierarchy level.
    ix. is_keyinfo : This structure contains the header and item table field
    names which link the two tables (shared key).
    II. Tables
    i. t_outtab_header : Header table with data to be output
    ii. t_outtab_item : Name of the internal table in the program containing the
    output data of the lowest hierarchy level.
    slis_t_fieldcat_alv : This internal table contains the field attributes. This internal table can be populated automatically by using ‘REUSE_ALV_FIELDCATALOG_MERGE’.
    Important Attributes :
    A. col_pos : position of the column
    B. fieldname : internal fieldname
    C. tabname : internal table name
    D. ref_fieldname : fieldname (dictionary)
    E. ref_tabname : table (dictionary)
    F. key(1) : column with key-color
    G. icon(1) : icon
    H. symbol(1) : symbol
    I. checkbox(1) : checkbox
    J. just(1) : (R)ight (L)eft (C)ent.
    K. do_sum(1) : sum up
    L. no_out(1) : (O)blig.(X)no out
    M. outputlen : output length
    N. seltext_l : long key word
    O. seltext_m : middle key word
    P. seltext_s : short key word
    Q. reptext_ddic : heading (ddic)
    R. ddictxt(1) : (S)hort (M)iddle (L)ong
    S. datatype : datatype
    T. hotspot(1) : hotspot
    Simple ALV report
    http://www.sapgenie.com/abap/controls/alvgrid.htm
    http://wiki.ittoolbox.com/index.php/Code:Ultimate_ALV_table_toolbox
    ALV
    1. Please give me general info on ALV.
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - this one discusses which way should you use - ABAP Objects calls or simple function modules.
    2. How do I program double click in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=11601
    http://www.sapfans.com/forums/viewtopic.php?t=23010
    3. How do I add subtotals (I have problem to add them)...
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    4. How to add list heading like top-of-page in ABAP lists?
    http://www.sapfans.com/forums/viewtopic.php?t=58775
    http://www.sapfans.com/forums/viewtopic.php?t=60550
    http://www.sapfans.com/forums/viewtopic.php?t=16629
    5. How to print page number / total number of pages X/XX in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=29597 (no direct solution)
    6. ALV printing problems. The favourite is: The first page shows the number of records selected but I don't need this.
    http://www.sapfans.com/forums/viewtopic.php?t=64320
    http://www.sapfans.com/forums/viewtopic.php?t=44477
    7. How can I set the cell color in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=52107
    8. How do I print a logo/graphics in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=81149
    http://www.sapfans.com/forums/viewtopic.php?t=35498
    http://www.sapfans.com/forums/viewtopic.php?t=5013
    9. How do I create and use input-enabled fields in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=84933
    http://www.sapfans.com/forums/viewtopic.php?t=69878
    10. How can I use ALV for reports that are going to be run in background?
    http://www.sapfans.com/forums/viewtopic.php?t=83243
    http://www.sapfans.com/forums/viewtopic.php?t=19224
    11. How can I display an icon in ALV? (Common requirement is traffic light icon).
    http://www.sapfans.com/forums/viewtopic.php?t=79424
    http://www.sapfans.com/forums/viewtopic.php?t=24512
    12. How can I display a checkbox in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=88376
    http://www.sapfans.com/forums/viewtopic.php?t=40968
    http://www.sapfans.com/forums/viewtopic.php?t=6919
    Go thru these programs they may help u to try on some hands on
    ALV Demo program
    BCALV_DEMO_HTML
    BCALV_FULLSCREEN_DEMO ALV Demo: Fullscreen Mode
    BCALV_FULLSCREEN_DEMO_CLASSIC ALV demo: Fullscreen mode
    BCALV_GRID_DEMO Simple ALV Control Call Demo Program
    BCALV_TREE_DEMO Demo for ALV tree control
    BCALV_TREE_SIMPLE_DEMO
    BC_ALV_DEMO_HTML_D0100
    Reward points if useful
    Regards
    Anji

  • Can I uninstall Extension Manager CC, or do I need ot for CC Photoshop and Lightroom?

    Can I uninstall Extension Manager CC, or do I need ot for CC Photoshop and Lightroom?

    Thank you, "Staff" (NOT YOU CARL SUN).   But you (STAFF)  have not answered my original query.
    Here is an explanation of my original question.
    I want to uninstall Extension Manager from my CC2014 App Menu.  Is this a mistake?  Or should i not do this because I need it for my CC2014 Program, i.e , Photoshop CC 2014 NS  and Lightroom cc 2014 alone.  I have nothing else.  I want  nothing else.

  • Need details for SAP USER-ID

    Dear All,
    I am Chartered Accountant and having 2 years of domain experience. I have completed my training from a small institute that is not SAP partner. I have very good hold on SAP FI and CO modules and want to appear for SAP FI certification. I DID SELF STUDY AND I AM TOO MUCH CONFIDENT ON THE SUBJECT.
    But for appearing any SAP certification I need SAP USER-ID. I DON"T KNOW HOW CAN I GET IT IF I AM INDIVIDUAL CONSULTANT??
    Exam Registration & Scheduling Information
    Registration for SAP certification exams taken at Pearson VUE is a simple 3-step process:
    1. See information below for details on obtaining your SAP User-ID.
    2. Create your Pearson VUE web account (SAP user id from step 1 will be required)
    3. Register for the exam
    All exams require the use of the SAP user id for proper tracking in the SAP Certification System.
    CUSTOMERS / PARTNERS / INDEPENDENT CONSULTANTS:
    If you have previously taken an SAP exam or attended SAP training, go directly to step b, otherwise, customers and partners should access visit the Service Marketplace to register for your S-user number. Independent consultants, as well as Customers and partners having questions or problems regarding this step, should use the following contacts:
    1. North America: Tel: +1 888 777 1727.
    2. For all APJ countries excluding Japan: education.apa at sap.com or tel: +65 62 708188
    3. For Japan: training.japan at sap.com or tel: +81 3 3273 7070 (9:00-17:00 in Japan local time)
    4. For all other countries please navigate to the appropriate country on sap.com/services/education and contact your local Education Department.
    CALLING ANY OF ABOVE NUMBER DOESN;T HELP. THEY DON;T REPLY OR CALL WAITING AND ALWAYS WAITING. I HAVE ALREADY SPENT AROUND FEW THOUSAND ON MAKING CALLS ON THESE NUMBERS.
    COULD ANYONE OF YOU EXPERTS HELP ME IN APPERING FOR SAP FI and CO CERTIFICATION? I HOPE THERE WILL BE A WAY TO APPEAR FOR CERTIFICATION EXAM WITHOUT USING SAP ID or ANY TRAINING CENTER WHO PROVIDED CERTIFICATION FACILITY WITHOUT ATTENDING THE TRAINING.
    AWAITING EXPERTS FEEBACK ON THIS ISSUE.
    Thanks,
    Manu Rathore
    Moderator message: please do not use all upper case in the future.
    Edited by: Thomas Zloch on Nov 29, 2010 11:09 AM

    Hi
    Elgibility for Certification:
    You should either complete your training in any Authorized Training Center or Should have experience of more than 2 years(not sure if it is 2 or 3 now) in the said module.
    If you dont have any of the above, then certification wont happen in India.
    Vishwa.

  • AS2 adpater-- Configuration details for both SND and RCV.

    Hi All,
    I need some details for both AS2 sender and receiver adapter.
    Sender AS2 adapter :
    1. Use Proxy
          Use Authentication
    Which one we need to use? 
    2. what is this Proxy Realm or Authentication Realm??
    3. Whether we need to enable Hostname check & HTTP keep alive? what is the purpose of these settings?
    4. what is this Message subject ?? the content of this comes from the file name or file data?
    5. Server certificate and private key authentication?? do we need to get these from partner system??
    Receiver AS2 adapter :
    1. Here also  the same question when we need to use Proxy settings and when we need to use Authentication settings.
    2. Dynamic attributes??
         Use dynamic attributes
         Use non-empty attributes.    
    What are the information we need to ask partner system to get the connection??
    Please reply if anyone worked on these AS2 settings.
    Thank You.
    Regards
    Krupakar.

    hi..
    Sender Adapter..
    1.You can use both use proxy and use authentication.depends upon the requirement.
    when you use proxy you have to give proxy server name and all parameters.That means proxy server acts like your actual server.To pass this data through  the AS2 apdapter U hv to specify th following parameters.
    Proxy Server : Your proxy server.
    Proxy Port :The port of the proxy server.
    Proxy User: User for optional authentication.
    Proxy Password: Password for optional authentication.
    Proxy Realm: Realm for optional authentication.
    2. REALM
    A realm is a part of Yanel which has its own configuration and repository. This allows you to run several subsites (which are independent of one another) in a single Yanel instance. For example, each department in your company can have its own realm. This allows one department to use its database as a content repository and another to use the filesystem to provide the content to Yanel
    So proxy realm means u r authorized to use the proxy server
    You use Use Authentication for -
    >Used to enable/disable basic authentication.
    Use Authentication Used to enable/disable basic authentication.
    User: User for basic authentication.
    Password: Password for basic authentication.
    Realm: Realm for basic authentication.
    3. if u check these options for the following purpose.
    SSL Hostname Check: Validate common name with server name.
    HTTP Timeout:Timeout in seconds for waiting for server
    response.
    4.Message Subject: This subject will be compared with the subject in the received message. This is used to find the
    correct channel for the inbound message. Wildcards are allowed.Its the file data.
    5. Your partne rwill provide u these details.
    Receiver Adapter:
    1.If u use the same in sender side then u hv to verify it again in the receiver system. Then only the communication is established.
    3.u must have the AS2ID and the certificates.
    THAnks
    MAnas
    reward points if helpful.

  • Needed software for ABAP certification training

    Hi All,
    I am a software developer. I'm new to SAP, but exited about working hard to become an SAP Development Consultant. I plan to take the courses
    TAW10_54 ABAP Workbench Fundamentals
    TAW12_52 ABAP Workbench Concepts
    which end with a certification test for
    Development Consultant SAP NetWeaver 2004 – Application Development Focus ABAP
    I think I will need to have my own access to the development tools for my training outside the classroom. I have found that there is a download: SAP NetWeaver 7.0 - ABAP Trial Version. My questions are:
    - Is this download what I need to set up a development environment for training and testing the skills from these courses?
    - Is there som other way to get access to working tools for certification training needs?
    I will be very grateful for any info/tip on how to test Netweaver application development using ABAP.
    Best Regards,
    Inge

    Hi,
    There is a web site www.sapdomain.com which is for ABAP certification. It is useful if you want to go for the SAP ABAP certification.
    reward if it helps.
    Regards.

  • Need links for data structure and algorithms.

    Hi.
    I am just new to java but need to learn data structure and algorithms.
    Do your guys got any good links or bbs to learn?
    Thanx in advance

    http://www.amazon.com/exec/obidos/tg/detail/-/1571690956/ref=cm_huw_sim_1_3/104-7657019-1043968?v=glance
    http://www.amazon.com/exec/obidos/tg/detail/-/0534376681/ref=cm_huw_sim_1_4/104-7657019-1043968?v=glance
    http://www.amazon.com/exec/obidos/tg/detail/-/0672324539/ref=cm_huw_sim_1_2/104-7657019-1043968?v=glance
    http://www.amazon.com/exec/obidos/tg/detail/-/0201775786/qid=1060946080/sr=8-1/ref=sr_8_1/104-7657019-1043968?v=glance&s=books&n=507846
    $8 for the first

  • P_ADM_SYS70-SAP Certified Techn. Professional:need details for 2010(India)

    Hi,
    i want to appear for P_ADM_SYS70   :- SAP Certified Technology Professional - Platform Technology with SAP NetWeaver 7.0  in the year 2010 in INDIA.
    1.When will be the exam slots for 2010? any link? Iwant to give it in April-10. Is it possilble through TechEd.?
    2.How much fee do i need to pay? i have 3+ yrs of exp. in Basis/netweaver.
    3.When to register?
    Your help is appreciated.
    with thanks...
    Ashok
    Edited by: ashok reddy kundam on Nov 1, 2009 3:54 PM

    Hi Sushant,
    Professional Certification course will cover questiones related to Business scenarios and Basic fundamentals which you have experienced during your implementaion or support experience. Associate level questions will come straight from SRM 210,270 pdf.
    There is no criteria for Certification except if you are engaged with some organisation than you must have completed 1 year in that organisation.
    After 3 yrs of experience, You can appear for Professional Certification. My suggestion will be to go for Associate first and than Professional in next 1 year.
    Best Regards,
    Anil

  • Need help for Java Certification

    Hello friends,
    I am preparing for SCJP 1.4. Those who have passed this exam pl help in prepration. Which books I should follow and some usefull sites which can help in preparing for the exam.
    I will appreciate any kind of help.
    Thanks,
    Regards,
    Nitin Goyal

    Hello friends,
    I am preparing for SCJP 1.4. Java certification, what do you need it for?I hear it's a new requirement to become a cab driver in Jakarta.

  • New to server, need VPN for remote desktop and file share...

    I've set up server and have the VPN working, I think, I need to have several outside systems join the servers VPN permanently to allow for file sharing and remote desktop. I don't want the "normal" internet browsing to go through the VPN (huge slow down) I have read that a "split DNS" or "split tunnel" is what I need, then to disable "send all traffic over VPN connection" option on each remote system. I was a little confused after reading on how to do this on Leopard server (the only instructions I found) but have absolutely no idea on how to do this on Snow Leopard server (the server I set up is 10.6) any assistance would be great, thanks in advance.

    Server Admin, VPN, Settings, Client Information, Network Routing Definition.
    Here add a private network record type that matches your LAN/VPN ip.
    For example
    IP Address: 192.168.0.0
    Mask: 255.255.255.0
    Type: Private
    You can find more informations about this feature in Snow Leopard Server documentation:
    http://images.apple.com/server/macosx/docs/NetworkServices_Adminv10.6.pdf
    search for "Configuring VPN Network Routing Definitions"

  • Need driver for iPod video and Windows Vista

    I had an iPod video and it synched no problem to my computer. There was a hardware issue inside the iPod so i sent it back and got a new one. Now when I connect it to my computer, it brings up the looking for a driver window and says it can't find it. Its only been a week since it worked fine.. I don't know if there is an issue with the new iTunes or what but has anyone had any experience with this issue or can simply tell me where to directly download or find the driver?

    I too have had a problem with needing a driver for ipod. My ipod was working fine, then my computer stopped recognizing the ipod. It says it needs a driver for the ipod and I can't find one anywhere...need help..please

  • G555. Need drivers for SM Bus and another Unknown device for Windows XP.

    I try to install Windows XP on my G555. I got all other drivers, but cannot find drivers for SM Bus and an Unknown device. And what's this device?
    The second problem is that after I installed all the drivers, the card reader disappeared. It was there after I installed Windows XP, before I install drivers.
    Thanks a lot.
    A Simpleguy
    Solved!
    Go to Solution.

    Hi Simpleguy,
    Welcome to the forum!
    In thinkpads, it's usually intel chipset driver. For AMD based G555, I wouldn't be surprised if this is the driver you need:- http://consumersupport.lenovo.com/us/en/DriversDownloads/drivers_show_2476.html
    As for other unknown device, find it's PCI ID with any other known information and paste here.
    Hope it helps.
    Maliha (I don't work for lenovo)
    ThinkPads:- T400[Win 7], T60[Win 7], IBM 240[Win XP]
    IdeaPad: U350
    Apple:- Macbook Air [Snow Leopard]
    Did someone help you today? Compliment them with a Kudos!
    Was your question answered today? Mark it as an Accepted Solution! 
      Lenovo Deutsche Community     Lenovo Comunidad en Español 
    Visit my YouTube Channel

  • Need info for ABAP Certification

    Hi All,
    I am having 5+ exp in SAP ABAP/HR ABAP and i am plannig for SAP ABAP certification. I searched on google and found different sereies of books. Can anybody help me to know what are the avaliable ABAP certification and books? So i can choose the right certification with correct course material.
    Thanks
    Piyush

    Hi,
      SAP Press Books are very useful otherwise SAP Provide certification material if u enroll for some SAP Certified institue like Siemens, Genovate etc.. That one also gr8 help for SAP Certification examination.
    Regds,
    Rakesh

  • Need drivers for Photosmart D7560, and Scanjet 4370 for both Windows 7 32 bit and 64 bit

    I need drivers for my Photosmart D7560 Printer and Scanjet 4370 scanner, for both Windows 7 32 bit, and 64 bit.

    Hi, For the printer:    http://ftp.hp.com/pub/softlib/software11/COL30216/mp-75048-1/PS_SF_04_D7500_NonNet_Full_Win_WW_130_140.exe For the scaner (no available):    http://h20564.www2.hp.com/hpsc/swd/public/readIndex?sp4ts.oid=457534&swLangOid=8&swEnvOid=4063 Regards. 

Maybe you are looking for

  • Using Receiver HTTP Adapter ?

    Hi, Is it possible to call the Mail service using receiver HTTP Adapter? Appreciate your help... Thanks, kumar.

  • Can you "share" photos between users?

    quick, likely dumb question - we're new to the mac: my wife and i are set up as two users with password log-in, etc. yesterday, she uploaded all of our photos to iPhoto on HER account; how do i access those photos on MY account using iPhoto? thanks f

  • Streamclip Settings For Multiclip

    So I have tried setting it to Apple DV/DVCPRO - NTSC and it will not work in Multiclip and I get no options under RT on my timeline. However if I then export from Quicktime choosing DV/DVCPRO it will work with Multiclip and I get my options under Tim

  • Zen Vision M flick scroll like new Ipho

    I have been out of the loop for a while, just wondering if any firmware updates for the Vision M allow you to flick/scroll the pad to move from artist to artist like the iphone ?

  • Repairing permissions has taken days - and still going

    After the slew of problems I had after upgrading to 10.5.2 it was suggested on one of these forums that I repair my permissions. I started that last Thursday morning - when I left work for the weekend on Friday afternoon it said "20 hours) still to g