Please guide me how to start working on crm

please guid me how to work on crm, am new to crm, am very good complete abap.
Moderator message: please search for available information/documentation.
Edited by: Thomas Zloch on Sep 23, 2011 10:37 AM

You do not.  This is not a feature of iphone.  it is all or nothing.

Similar Messages

  • Hi my name is Vajra from INDIA, i am using ipod shuffle 3rd generation but it is not working properly due to battery problem, i need to change the battery please guide me how to change the battery or any chance to replace the ipod shuffle 3rd generation ?

    Hi my name is Vajra from INDIA, i am using ipod shuffle 3rd generation but it is not working properly due to battery problem, i need to change the battery please guide me how to change the battery or any chance to replace the ipod shuffle 3rd generation ?

    Seems no one care about us .no one replied till no@!!!!@ strange

  • Hi their is a code 10 error appears on my network card driver please guide me how i can fix that....

    I have Thinkpad T41 As my network card drive installed after installation the driver the system suddenly shows "This device can not start (code 10 Error) Please guide me how i can fix it

    Hi VanessaLovery,
    Welcome to the HP Forums!
    I would like to take a moment and thank you for using the forum, it is a great place to find answers. For you to have the best experience in the HP forum, I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand your notebook works fine on battery, but performs poorly on AC ,after taking it to a repair shop to have it cleaned.
     Here is a document on Troubleshooting an Overheating and Auto Shutdown Issue.
    Have you checked your performance plan to ensure it is set to balanced  Managing Power Options (Windows 7 and Vista).
    Have you tried a different electrical outlet?
    Are you using the AC adapter that came with your notebook?
    On startup if you press the F2 button approximately once every second, you should be able to enter the HP advanced diagnostics window, to test for hardware failures.    Testing for Hardware Failures (Windows 7, Vista).
    If you would like further assistance would you please provide your exact model of DV 6 and the Operating System you are running.  How Do I Find My Model Number or Product Number.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • HT4718 i got mountain lion as an upgrade to my new macbook pro i want to reinstall it please guide me how to reinstall

    i want to reinstall moutain lion please guide me how to do it

    Welcome to Apple Support Communities
    Press Command and R keys when your Mac starts and reinstall OS X

  • How to start working with iReport?

    Hi All,
    I'm just decide to use iReport for create report on Web but I don't know
    How to start working with iReport , What program I should to install , How
    to config any system files and set property .
    Please advice me for work with IReport.
    Thank you

    Hi,
    best hint to give is to start interviewing the product owner
    http://ireport.sourceforge.net/cap3.html
    Note that this is an open source project. Once you know which libraries you need, create a project in JDeveloper and double click on the project node. There is a Library node that allows you to import libraries to be used in your code.
    Under Tools --> Manage Libraries you can configure JSP tag libraries if required
    Frank

  • How to start working with a Development Component

    Hi Guys,
    Till now I was working with the local development of WD. I was the only one working so I created a local project and use to deploy to the J2EE Engine.
    Now we have got the full NWDI (Netweaver Dev Infrastructure).
    I want to know exactly how to start working and creating Projects now that the work is not local. I may need to use 1 DC inside another.
    A Development Component is to be created in the CMS and Checked into DTR. From the DTR I check in into my workspace. This is all i know
    Can someone tell me exact steps of how to start the work.
    Thanks for your support

    Hello,
    I believe you have already setup NWDI correctly and its running fine.
    So here is link of a step by step guide.
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/2656405aff1e24e10000000a1550b0/content.htm
    If you want to migrate your existing WD Projects to DC Projects, here is a link for "how to" do the same.
    http://help.sap.com/saphelp_nw04/helpdata/en/9e/1c200ac164cf4a942f2dacdf3359e9/frameset.htm
    If you want to create an external utility library containing some jar files which you want to use in your DC, follow this excellent blog by Valery.
    /people/valery.silaev/blog/2005/09/14/a-bit-of-impractical-scripting-for-web-dynpro
    Hope this is good enough for you to start with.
    Regards,
    Shubham

  • Hi,Please guide me how to choose correct career in SAP r/3 technical side?

    Hi, Experts.
    I have 2.8 yrs experience in SAP B1 as a techno functional consultant but recently i am learning abap to move r/3 side. after learning abap can i get a job in ABAP or i need to learn any related CRM technical or ABAP-HR, in this which on is the most demand, please guide me in terms of job and future career or can i learn BI ? it's good for my career but iam thinking after getting few years experience in ABAP  iam planning to move to BI.but job point of i here it's good openings so can i learn now itself BI ?or CRM technical or ABAP-HR ?please guide me how can take good decision on future career point of and  to select good modules in SAP World.
    Regards,
    Kumar.

    Have patience to start reading all from - [Re: Scope in SAP B1] ... you'll have the answer if not have it yet.
    Please close this thread if answered.

  • Can anyone please guide me how to create a table like employe table with 10

    Hi,
    can anyone please guide me how to create a table like employe table with 10colums.
    after that we need to update the colums with personal details......like name1,name2,address,city,zip...etc.
    using the RFC we need to update the personal details coulums (either select query or Insert command)
    if you have any program logic similar to this requirement please share with me...that would br greatly helpfull to me...
    thanks in advance
    srinivas

    Hi....
    We are having one table and now i am going to update that table's fields...
    for that in RFC function module we need to enter the fields in importing parameters (which are mandtory in table)
    and in source code just write like following....
    ( try to under stand that it contains some previous used table nad field and stucture and work area and function module names)
    FUNCTION ZL2C_UPDATE_MYCUSTOMER.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(USR_ID) TYPE  USRID
    *"     VALUE(LOGO_ID) TYPE  KUNNR
      DATA ls_mycust TYPE zl2cmy_customer.
      DATA: name1 TYPE name1_gp.
      DATA: sharpoint_url TYPE url.
      ls_mycust-usr_id        = usr_id.
      ls_mycust-logo_id       = logo_id.
      SELECT SINGLE name1 FROM kna1 INTO name1 WHERE kunnr = logo_id.
        ls_mycust-name1       = name1.
        SELECT SINGLE sharpoint_url FROM zl2c_CUSDASHBRD INTO sharpoint_url WHERE logo_id = logo_id.
          ls_mycust-sharpoint_url = sharpoint_url.
          INSERT into zl2cmy_customer values ls_mycust.
          COMMIT WORK.
        ENDFUNCTION.

  • Please guide me how PMS Colors can be done in DUOTONE?

    Hello,
    Good Day
    I have job having 7 Colors and I have been asked to done it in 5 Colors.
    (1) Pantone 485CVC (RED)
    (2) Pantone 356CVC (GREEN)
    (3) Pantone 116CVC (YELLOW)
    (4) Pantone 301CV (D-BLUE)
    (5) Pantone 279C (L-BLUE)
    (6) Pantone 732C (D-BROWN)
    (7) Pantone 730C (L-BROWN)
    I can use Red, Green and Yellow on separate screens where as remaining
    “FOUR COLORS” are Dark Blue, Light Blue, Dark Brown and Light Brown.
    Please guide me how I can finish the job in five colors as my boss advised
    me to do it in duotone. The job is on Illustrator CS2 and Colors are PMS.
    Please guide me how PMS Colors can be done in DUOTONE.
    I have been working in filled of screen print for many years but unaware
    about duotone in Illustrator.
    I would sincerely grateful for your reply and Guidance.
    With Best Regards
    Ahmed Ali
    [email protected]

    Since this is (evidently) being prepared for screen printing, your options will be affected by answers to these questions:
    Are halftone dots going to be allowed? Screen printing setups (especially in common T-shirt shops) often require solids only.
    If the screen printing setup can accommodate halftoning, at what halftone ruling? When a particular screen printing setup is limited to very course (ugly) halftone ruling--commonly 30 lpi or less--one often opts for textures or grain to achieve the effect of shading.
    Are the inks going to be opaque? Opaque inks are most common, but limit the possible results when overlapped. Translucent inks are only suitable for white or very light substrate colors. If the screen setup is sophisticated enough to support decent halftone ruling, and will be printed on a white substrate, then the colors you have listed could be accomplished simply building the file as ordinary four-color process, instead of with 5 colors. (None of the colors you've listed—red, green, yellow, two blues, two browns—suggest requiring a 5th spot ink.)
    Illustrator does not support multi-ink swatches. You can use multiple fills and/or strokes set to overprint to replicate it in output. But Illustrator cannot properly display overprinting of opaque inks in its interface. Overprint preview always assumes the translucent inks of offset printing.
    All the above is why it is common to build screen printing projects in Photoshop as multichannel documents, saved as DCS 2 EPS, or printed to Adobe PDF as separations. It's more intuitive because you have a Channel (not to be confused with Layers) for each ink, and the program is able to properly preview the printed results because you can simulate opacity, including the color of the substrate.
    Working this way, it is common to create vector objects in Illustrator and then paste them into the appropriate Channel in Photoshop.
    ...my boss advised me to do it in duotone...
    I suspect your boss doesn't know what a duotone is. Duotone (and tritone, quadtone) print multiple separations of the same grayscale channel. Duotone in Photoshop is the modern analog of the process darkroom technique of making two separation plates from the same image, using different screen angles and exposures. In Photoshop, you can do this for up to four inks, optionally applying different grayscale curves to each ink, not different channels (different artwork) to each ink. Traditionally, this was done to impart a bit of "color interest" to black-and-white photos being printed in a 2-ink job.
    Your boss is saying "duotone," but he's thinking of the functionality of a multichannel file using spot inks. Even Photoshop's quadtone would not give you five inks.
    JET

  • Dear Friends...... I have an ipad 2 32gb with wifi and 3g enabled sim..... i bought it second hand .... and now if am going to download any games it is showing me an email id and asking for its password... please guide me how can i change this setting

    Dear Friends...... I have an ipad 2 32gb with wifi and 3g enabled sim..... i bought it second hand .... and now if am going to download any games it is showing me an email id and asking for its password... please guide me how can i change this setting to my email id and password

    Tap on the id in Settings > Store and log out of it and then login with your id. Any content already on the iPad will be tied to the previous owner's id and it can't be copied or transferred to your id - so it's probably best to do restore the iPad back to factory defaults and start as from new with it : Settings > General > Reset > Erase All Contents And Settings

  • Please guide me how to delete the OLD claimed trip details

    Hi SAP Gurus
    We have corrected the all the cliams by newly created an posted properly today , how ever they are struck now and since they are form old employees (2007-2008) , few are still active / terminated/ retiree staus cant delete them nor make it zero. But appear in our report as pending...
    Please guide me how to delete the old trips.. your support really appreciated..
    Thanks
    Shan

    Hi Shan,
    As per my knowledge, no table should be deleted. Check the below link for more info.
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/73/6bf037f1d6b302e10000009b38f889/frameset.htm
    <<removed>>
    Thanks,
    Praisty
    Edited by: Matt on Jul 26, 2011 3:11 PM

  • How to start working in ABAP

    Hi,
    I have a friend who is a Singapore PR.
    She worked in non-SAP in IT for the past 10 yrs.
    Recently she learned ABAP(not certified).
    She dont have the experience working in a company.
    she has ABAP knowledge and can do the job.
    How can she break into the market? Will anyone share your experience how you started working in ABAP without the experience.
    Thank you so much for your reply.

    I too beleive that if you are having about 10 years of experience as an IT guy , then definately one would have developed that understanding of the function as well .
    In ABAP what i have experienced is that if you are having that business clarity or fucntion knowledge the you would think in a more effective way as compared to a newbie . As you would be aware what the problems coule be and what new would cropp in over a period of time .
    As a fresher yes you can start in ABAP but it would make your friend diffrent from the masses based on his 10 years of experience .
    Good luck .....

  • Please guide me How to configure the swift integration packages

    Hi frinds,
    Please guide me How to configure the swift integration packages, in swift we have to use MT103 format
    sender side we have ERD system and Receiver side File system,
    wt adapters  we have to use in sender side and what kind of encrypt and decrypt formats support for swift in PI

    hi,
    the only reference we have is this OSS note and guides inside it
    1064419 SAP Integration Package for SWIFT: Info about installation
    Please have a look at it,
    Regards,
    Michal Krawczyk

  • TS3694 please guide me how to restore iphone when message appear 1015 on restoring process

    Please guide when i am updating os 4.1 to 4.2 version of my Iphone 3g it shows error 1015 at the end of updating now it is completly black please guide me how to restore it.

    Search google for an answer. You can not get help here for your jailbroken phone.

  • Please guide me how to include storage location to existing material master

    Hi Guru's,
    Please guide me how to include storage location to existing material master....
    please provide step by step process or provide any documentation that would be helpfull to me...
    please let me know of my question is not clear..
    Thanks in advance and will give full points....
    Srinivas...

    Hi
    First :- You can define the storage loctions in the plant under the customization :- SPRO -> Enterprise Structure ->Definition -> Materials Management ->Maintain storage location
    Once defined under the plant, you can create the same storage locations in the material master
    Second :- Under SPRO -> MM -> Inventory -> palnt parameters, for your plant check the field " Create Storage locations Automatically" . This will lead to create new storage locations at the time of GR, even if you have not maintained under step 1.
    Hope it answers your question.
    Regards,

Maybe you are looking for

  • Looking for All-In-One Sudoku Game App for iPad?

    Bare with me...  I'm going to learn now if this is an appropriate question here and if not where to go that would be appropriate? I'm looking for a great iPad Sudoku game app that offers a variety of different format variations using numbers 1-9, dif

  • Time Machine Backing Up to Macintosh HD

    The other day, I was trying to back up my MacBook Pro. My time machine had been working well for two months, but when my Mac had been backing up for an unusually long time, I checked and I saw that the back up size kept increasing until I decided to

  • Oracle XE production : web admin pages not localized

    Hi, I've just installed the production release (OracleXE latin1) on a french windows XP SP2. The product runs fine but the web admin pages and documentation are in english. The entries in the "start" menu are localized. When I tested the last beta I

  • Old podcasts were auto deleted from hard drive

    I download a handful of podcasts once a week and keep a regular backlog on hand to listen to when traveling. This week, all of my archived podcast files -- looks like anything older than one week -- are gone. They were still listed in iTunes, but the

  • General ip address question, help ???

    firstly, how do i view my ip address? secondly, is there a way to change it? (i ask becuase some websites save ur ip and can alter their settings for you accordingly and i wish to undo this)