Pls suggest me which bumper to take

Hi Guys
I was seeing the bumpers on the Case Program App, but seriously I can't see which will be best for the phone. Because i cant feel it.
I dont have any apple store near me.
Can u please suggest your if you have bought one?
Also is there any website where I can see enlarged pics ?

I suggest you start reading about ERP and then about SAP. Get a basic idea of what SAP is all about and what are the major modules in SAP. Then select a module that best suits your domain experience and your interest. Once you've zeroed in on the right modules, start making enquiries if the job market is good for that module. If there's a good demand for those Consultants in the market, then plan to take up a course.
Here depending on your financial situation you need to decide if you can afford a SAP Certified training course or not. After completing the course start marketting yourself in the market using all the jobsites and professional networks untill you land yourself a job. This is the toughest part.
There are numerous threads and blogs with the same objective as yours. Read through them to get an idea.
Good Luck.
pk
Edited by: kishan P on Nov 12, 2010 8:07 AM

Similar Messages

  • I have iphone 4 with 4.3.2(8H7). I want to update it, pls suggest in which version it will b good?

    i want to update my iphone 4 having 4.3.2 version in it.. pls  suggest in which version i should update..
    thank you.

    You don't have a choice of versions. You can only update to the current release. 6.1 as of this writing.

  • Pls suggest me which SAP module should i learn

    I have done M.Sc Electronics and have more than 6 yrs experience in Life Insurance Training. which SAP module should I learn

    I suggest you start reading about ERP and then about SAP. Get a basic idea of what SAP is all about and what are the major modules in SAP. Then select a module that best suits your domain experience and your interest. Once you've zeroed in on the right modules, start making enquiries if the job market is good for that module. If there's a good demand for those Consultants in the market, then plan to take up a course.
    Here depending on your financial situation you need to decide if you can afford a SAP Certified training course or not. After completing the course start marketting yourself in the market using all the jobsites and professional networks untill you land yourself a job. This is the toughest part.
    There are numerous threads and blogs with the same objective as yours. Read through them to get an idea.
    Good Luck.
    pk
    Edited by: kishan P on Nov 12, 2010 8:07 AM

  • Can u someone pls suggest the accesspoint model

    hi all i am new to cisco wireless and also to wireless. i am looking for 2 acces-point which can function as bridges also in workgroup. plus i am ubying a wireless controller for pushing qos,vlans,rf band management,security,802.1x, wep and ids features on to the accesspoints. i am basically requiring this for lab purposes only and not for production.
    can anyone pls suggest me which accesspoint will give this features which will be economical also.
    regards
    sebastan

    Sebastan,
    If you need AP's that can function as a bridge, and be associated to a controlle, you should go with the 1030. It can run as a bridge, to another 1030, or it can be a regular access point.

  • Pls suggest Online docs for 1Z0-051

    I am new to the forum and trying to get online Documentation for first exam in the track...Can somebody pls suggest online help and sites related to the OCP..?
    Edited by: user10997331 on Apr 10, 2009 1:02 PM

    Please read:
    1) The forum faq (announcment stickey post at he top of this forum) [http://forums.oracle.com/forums/ann.jspa?annID=794]
    2) The certification blog on [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=39]
    3) The oracle certifiaction site has lots currently on [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=39]
    (View all certifications and drill down to a certifaction or exam), you should be able to find the exam topics.
    4) Search in this forums for posts on 1z0-051.
    5) If you are serious about Oracle also take time to become familar with the Oracle Technology website [http://www.oracle.com/technology] which has links to documentation and tutorials and other resources.
    6) IMPORTANT: Some 'online docs' you may find, or are directed to, or may be offered (particularly braindumps), may be unauthorised materials and using them could end up with you losing credit for any exam/certification you may take.
    Hopefully you will find these references and places to search useful.
    Rgds - bigdelboy.
    Edited by: bigdelboy on 10-Apr-2009 14:39 - did not notice hsawwan had replied earlier and given a good reference.

  • Hi  urgent pls suggest when i press enter the data disappears...

    hi
    i have develop,ed a module pool for table maintianece
    in which  there are theree fields
    customer number name  email id
    now when i dont press enter at first field ie customer number after entering all data
    and save the data is saved properly for all three fields
    but if after e ntering the customer number i press enter and then enter name and email id
    and save the data for email is not saved and also if i just press enter again the data in email id column which i entered disappears
    can anyone suggest reason and solution for it
    regards
    Arora

    hi
    here is my code
    PROCESS BEFORE OUTPUT.
      LOOP   WITH CONTROL TABLE_ZCUST_EM_CREATE."AT T_ZCUST_EM_CREATE
        MODULE STATUS_0200.
      ENDLOOP.
    *Process after input
    PROCESS AFTER INPUT.
      MODULE CANCEL_200 AT EXIT-COMMAND.
      LOOP WITH CONTROL TABLE_ZCUST_EM_CREATE ."AT T_zcust_em_CREATE ." .".
       MODULE USER_COMMAND_0200.
        CHAIN.
          FIELD t_ZCUST_EM_create-ship_to .
         MODULE set_field_validation ON CHAIN-REQUEST.
        ENDCHAIN.
        MODULE USER_COMMAND_0200.
      ENDLOOP.
    here ship_to is customer number
    ship_to_name is name
    and email id is email id field
    pls suggest on this code also if u want i can give code for the module validation and user commarnd 2000
    as below
    MODULE STATUS_0200 OUTPUT.
      w_lines_200 = sy-loopc.
    *Reading table t_zcust_em_create for screen 200.
      read table t_zcust_em_create
        index table_zcust_em_create-current_line.
    *Refreshing The Internal table 't_zcust_em_temp'
      refresh:t_zcust_em_temp.
    ENDMODULE. 
    MODULE set_field_validation INPUT.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
                EXPORTING
                   INPUT         = t_zcust_em_create-ship_to
                IMPORTING
                    OUTPUT       = t_zcust_em_create-ship_to.
      select single kunnr from kna1 into v_kunnr
              where kunnr = t_zcust_em_create-ship_to.
          if sy-subrc = 0.
           select single name1 from kna1 into t_zcust_em_create-ship_to_name
           where kunnr = t_zcust_em_create-ship_to.
          else.
          t_gui1-fcode = 'BACK'.
          append t_gui1.
          t_gui1-fcode = 'EXIT'.
          append t_gui1.
          t_gui1-fcode = 'SAVE'.
          append t_gui1.
          SET PF-STATUS 'AIMS_200' excluding t_gui1.
          message E002 with t_zcust_em_create-ship_to.
             endif. "kna1
    ENDMODULE.                 " set_field_validation  INPUT
    MODULE USER_COMMAND_0200 INPUT.
    *Setting it for select/deselect entries
      move:t_zcust_em_create to t_zcust_em_create_sel.
      append t_zcust_em_create_sel.
      clear:t_zcust_em_create_sel.
    *Getting internal table t_zcust_em_create with control
      read table t_zcust_em_create
             with key ship_to = t_zcust_em_create-ship_to.
    *Getting internal table for create entries: screen-200
      if sy-subrc ne 0 and t_zcust_em_create-ship_to ne space .
        append  t_zcust_em_create     .
        move:t_zcust_em_create to t_zcust_em_create_tmp.
        append t_zcust_em_create_tmp .
        clear:t_zcust_em_create_tmp  ,
              t_zcust_em_create      .
      endif.
      clear:t_cols.
    *Getting the value of  w_fill_200.
      describe table t_zcust_em_create lines w_fill_200.
    ENDMODULE.                 " USER_COMMAND_0200  INPUT
    PLEASE SUGGEST
    REGARDS
    ARORA
      module read_table_value_0200.

  • Authorization object coding -problem. Pls suggest.

    Hi experts
    I have created authorization fields and assigned in objects properly.
    My case is i am calling the transaction ZMAST which is create through table maintenance(ZMASTER) of the table ZMASTER.
    Now where to implement this coding part and how to do.
    Please explain me clearly the steps , the following coding part i put in dialog programming right now and can you tell me will this code work fine.
    If we can do in Table maintenance Events, do we need to write in standard program. pls suggest me on this.
    WHEN 'MAST'.
    AT SELECTION-SCREEN.
    AUTHORITY-CHECK OBJECT 'ZRAJ_TEST1'
    0 ID 'ACTVT' FIELD '03'.
    IF sy-subrc <> 0.
    MESSAGE 'No authorization' TYPE 'E'.
    ENDIF.
    CALL TRANSACTION 'ZMAST'.
    Thanks in advance.
    Regards
    Rajaram

    Hi,
    The coding can be done in the "Events" section of the table maintenance.
    Chk this link for further help on this:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/abap/how%20to%20implement%20events%20in%20table%20maintenance.doc
    Best Regards,
    Anjali

  • Pls suggest a book for OCP DBA

    Hello friends,
    I wanted to take Oracle database administrator certification exam(OCP)
    Can anyone please suggest me which book i can use. i have very little experience
    in oracle..
    thank u
    karthik

    Hi
    You can start with the installation and config guide for e sourcing application.Also scripting and workflow guide would provide you a lookin to the technical aspects. Follow the below mentioned links:
    http://help.sap.com/saphelp_sourcing_70_p/helpdata/en/39/8ee60a3d74482e9e0111c46dc1e23d/frameset.htm
    https://websmp106.sap-ag.de/support
    Regards
    Mudit Saini

  • I hav installed mac os lion on my MBP 2011 model but it is telling me no wifi hard ware installed what do i do pls suggest me sumthing

    i hav installed mac os lion on my MBP 2011 model but it is telling me no wifi hard ware installed what do i do pls suggest me sumthing
    so i cannot select my wifi or anything
    please tell me what do i do
    when i open network prefrences it shows
    when i click on "turn on wifi" nothing happens
    i have even done a apple hard ware test but it says everything is alright
    i am really tensed what do i do pls help me

    If AHT doesn't show any issues, your best bet would probably be to take it to the Apple Store. The AirPort (Wi-Fi) card may have been unseated from its original position. If there is a problem with the card Apple should be able to replace it for free.

  • New to SAP BI - Pls suggest a plan

    Hi friends,
    After 5 yrs of work in an MNC, I wanted a breakthrough for I didn't have any opportunities for my current skillsets which are premium tools and not many use them. Hence started learning SAP BI as I really wanted to change my stream and found this interesting. I chose this not only just because my friends are working but also somehow I wanted to do this.
    Anyways am currently learning extractions. My main questions:
    1. Is it mandatory to learn ABAP? Never really liked coding. Also why is it that the interviewers demand BO or ABAP in addition to BI? Am ready to learn BO as well if needed but is it good for my career?
    2. I want to go as a business analyst in the long run in the SAP field. Please tell me how can i achieve it? Also which module is the best for me to proceed further once am confident in doing technical side?
    3. I am going technical now only because want a break and once I have enough exp, i want to plan in a right way.
    Also, is there any specific path for the same? like order wise - SAP BI, BO, etc.,
    Pls suggest accordingly

    1. Is it mandatory to learn ABAP? Never really liked coding. Also why is it that the interviewers demand BO or ABAP in addition to BI? Am ready to learn BO as well if needed but is it good for my career?
    Not mandatory to learn complete ABAP coding, but you definitely need basic ABAP coding knowledge, since every now and then you have to write a routine in BI with ABAP code. So yes, basic ABAP is required. Interviewers ask for BO or ABAP along with BI because the competition is tough and knowledge in these areas would set you apart from the competition. Also, as I said earlier a little bit of ABAP knowledge is required. BO, being a more robust way of doing BI, its always good-to-have in your skillset.
    2. I want to go as a business analyst in the long run in the SAP field. Please tell me how can i achieve it? Also which module is the best for me to proceed further once am confident in doing technical side?
    I guess, Business Process Xpert is the way to go for that.
    3. I am going technical now only because want a break and once I have enough exp, i want to plan in a right way.
    Nothing wrong in that approach IMO.
    pk

  • As a part of my Daily Reporting Activity; i have to send 35 SMS everyday. Can someone suggest me which software is suitable for my usage as it's tedious job to forward the same sms report 35 times. I am using  IPhone 3GS -32 GB. Sincerly req your reply

    As a part of my Daily Reporting Activity; i have to send 35 SMS everyday. Can someone suggest me which software is suitable for my usage as it's tedious job to forward the same sms report 35 times. I am using  IPhone 3GS -32 GB. I am using service of Vodafone, Mumbai. & when i first time sent 35 SMS (having habit of Nokia to send group SMS at the click of one button) my IPhone sent 35 MMS.

    Found something for you that might be useful:
    http://itunes.apple.com/us/app/igroup-sms/id377378452?mt=8

  • Windows 7 decide which route to take if THE PC Has 4 connection (4 X 1 Gig) available to internet

    Hi Network experts
    realy i need you to figure out the below
    1)how windows 7 decide which route to take if  THE PC Has 4 connection (add on 4 X 1 Gig)  available to internet , the route print on windows machine shows the 4 
    connection with same metric (metric 10) , the adapter order is as follows 
    G1,G2,G3.G4
    2)what about the less subnet id if each interface has less subnet id than other
    3)the built in interface (gig 0) why have metric of 286 not 10 like others
    thank you all 

    Hello.
    As far as I remember, Windows uses ANY of the routes with equal metric.
    I'm not sure if there is publicly available algorithm, but I believe it may switch from one interface to another if experience packet loss on the current.
    So, the conclusion is: the outgoing interface is not predictable.
    If you want any kind of reliability you would better to create port-channel and use FHRP on your routers.

  • I have lost my facetime option when moved to another country. pls suggest how can i get it back

    Hi ,
    Recenlty i have bouhgt  new iphone5s from middle east . When i was using the phone over there the facetime was working perfect for me .
    Now when i moved to another country i can not see the facetime option in the iphone .
    Could you pls suggest how can i get it back .

    Hi Stedman ,
    Thanks for the information !!
    I have checked the article and i can clear see that my Wireless carrier support the facetime feature
    so what could be the reason am not able to use the facetime option .

  • I need to reinstall my adobe creative suite 6 on a new MAC, which does not take CDs. How do I do tho

    I need to install my adobe creative suite on a new MAC, which does not take CDs.
    Any clues

    Is your CS6 serial number for Windows or Mac? If Windows then you must apply for a platform swap to get a Mac serial number for CS6.
    If you already have a CS6 Mac serial number then download CS6 from
    http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html

  • Pls suggest is there any free application to Lock the selected folder on new I pad

    Pls suggest is there any free application to Lock the selected folders on new I pad

    There won't be any. iOS is a sandboxed OS and third-party apps won't be able to prevent access to other apps.

Maybe you are looking for