Is SAP Certication only allowed for ppl taken training from selected center

Hi Experts
Just wanted to know that : If someone who has taken SAP training from any local institute is elligible for SAP certification?
Is there any prerequisite for Certification , which states that u should be trained from some specific institues. If yes, which are those institutes in India.
Regards
Dhanya Nair

Dear Dhanya Nair,
for the certification of your software product there is no prerequisite for a specifiy SAP training.
This forum is about software product certification. I think your interest is more into consultant certification. Please have a look at the following link for further information:
http://www.sap.com/services/education/certification/index.epx
Best regards,
  Juergen

Similar Messages

  • Automatic carryforward only allowed for amount 0

    On 4.7, we are attempting to process a payment for on a FY2007 Purchase order using MIRO. We are now in our FY2009 year but we are receiving the error message FMCF101 - Automatic carryforward is only allowed for amount 0. What could be the cause of this?
    The PO was created on 03/21/2007. A goods receipt for the total quantity of the PO was entered on 06/27/2007. Two invoices were successfully processed on 02/28/2008 but when we attempt the final 3rd invoice for 06/30/08, we receive the error message.

    If you have Periodic Based Encumbrance Tracking PBET active and you use the GR/IR updating in OFUP as well as you use the invoices to determine the CF level, then you MUST carry forward the GR - which in FM are considered invoices (same value type 54).
    Trying to reduce the GR without having carried forward the GR is not valid and you will get the error "Automatic carryforward is only allowed for amount 0".
    The only possibilities to avoid this error are:
    1. Carry forward the GR from the previous fiscal year to the one being modified.
    2. In OFUP do not use the invoice to determine the carry forward level.
    3. Do not update both the GR and IR but only the IR
    4. Do not use PBET. To update the GR in the previous FY or update it in the current FY without carry forward, contradicts PBET.

  • I am a Canadian staying in England for a few weeks.  How can I get an iPhoto Book printed win England and sent as a gift to an English relative? With my account, it seems that Apple only allows for my book to be printed in Canada.

    I am a Canadian staying in England for a few weeks.  How can I get an iPhoto Book printed win England and sent as a gift to an English relative? With my account, it seems that Apple only allows for my book to be printed in Canada and then sent to my Canadian address..

    in the iPhoto preferences  change the print products country to the UK and give it a try - there may be some restirctions on billing but it has worked for some people
    LN

  • I'm tying to make a payment for photoshop but the fields on the payment form won't allow me to enter the correct card information.  Im based in Japan but my card is registered to a UK address.  the fields only allow for a Japanese style address and postco

    I'm tying to make a payment for photoshop but the fields on the payment form won't allow me to enter the correct card information.  Im based in Japan but my card is registered to a UK address.  the fields only allow for a Japanese style address and postcode.  What can i do to complete the payment and get photoshop!

    As far as I know, your registered location and your credit card information must match... but,
    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Capacities of type 1 or 2 are only allowed for resources

    HI,
    I am getting the below error during selecting the capacity catogory 001 in the Capacities tab in CR01 transaction.
    Capacities of type 1 or 2 are only allowed for resources.
    Thanks and regards
    Murugesan

    WHat is the work center category you are creating...

  • WM - This screen is only allowed for manual transfer orders

    hi
    I am getting below when i am going to carry out the transaction LT06
    "This screen is only allowed for manual transfer orders"
    please help
    Regards

    then check at the very same place if you have entered an indicator for automatic TO.
    If there is none then check in OMLR what indicators you have set in field immediate TO creation

  • I need to do sap sd certification ,training for same is very costly from authorised center and i canot afford ,the other way is i do training from unauthorised center and take certification exam in any country where prerequisite is not doing training

    i need to do sap sd certification ,training for same is very costly from authorised center and i canot afford ,the other way is i do training from unauthorised center and take certification exam in any country where prerequisite is not doing training from authorised center.how good it it to do prepare from unauthorised center and take exam in any country like australia ,US ?please help understand .

    Hi Preeti,
    please first understand the difference between a subject (your header) and its body line, please never write so long subject matter.
    Now coming to your queries , what you thinks being at Australia or US is free of Cost. The first thing is that i don't understand your mission for taking Certifications, Are you a working proffesional because for more than 2 yrs. of working experience, you don't need any training , you can take direct examinations.
    And if you are not a working professional, i don't thing taking any certification will serve any purpose in your job hunt, although it will enrich your Resume only, you will nothing get out of this from just taking a vertification
    So, please tell us that you are a fresher or having real time working exposure in SAP SD module, then any one will guide you well.

  • IP which only allowed for PAT

    Hello,
    I am looking for example which allow some of the IP's belongs to INSIDE which can allow to using PAT method to access Internet.
    With reference to URL
    http://www.cisco.com/c/en/us/td/docs/security/asa/asa90/configuration/guide/asa_90_cli_config/nat_objects.html#pgfId-1455942
    It is talking about the whole 192.168.2.0/24 subnet.
    The following example configures dynamic PAT that hides the 192.168.2.0 network behind the outside interface address:
    hostname(config)# object network my-inside-net
    hostname(config-network-object)# subnet 192.168.2.0 255.255.255.0
    hostname(config-network-object)# nat (inside,outside) dynamic interface
    I would like to check how should config if only allow parts of IP belongs to 192.168.2.0/24 can be PAT to internet and others will deny.  Should be need create additional ACL?
    Thanks!

    Hi,
    You might be better of limitin the mentioned hosts from connecting to the Internet in the interface ACL rather than making a special NAT configuration that determines if a host can connect to the Internet.
    If you want to control which host gets NATed then you could use the Manual NAT / Twice NAT configuration instead of the above Auto NAT / Network Object NAT
    Example could look something like this
    object-group network PAT-SOURCE-HOSTS
     network-object host <host1 ip>
     network-object host <host2 ip>
     network-object host <host3 ip>
    nat (inside,outside) after-auto source dynamic PAT-SOURCE-HOSTS interface
    You can then add the addresses directly under the "object-group" or remove them when needed.
    You could naturally use small subnets instead of the host addresses in the above example if all the users are from a certain range of the subnet you mentioned. You will also have to make sure that there is no other NAT configuration on your ASA that would apply to the users.
    The above Manual NAT / Twice NAT is at the lowest Section 3 (priority of NAT configuration) because it has "after-auto" as a part of the "nat" command.
    Hope this helps :)
    - Jouni

  • So I just purchased Lightroom 5 and put it on my desktop last week and my computer crashed. If I end up having to purchase a new PC, does this mean I also have to purchase Lightroom again because it is only allowed for 1 PC use?

    This may seem like a silly question. But, I see on the insert that it says license is only good for 1 PC use. I am SO upset that my computer crashed, and thinking about wasting $128 makes that even more upsetting.

    I'm not sure what "insert" you are talking about, but as said above a perpetual license is good for installation on two computers. If the old computer is still functional, you can either uninstall LR5 from it or consider a new computer as the second installation. If the old computer is not functional and will never be used again, then LR is not functional and this is equivalent to its having been uninstalled.

  • BAPI for deletion of employee from work center T Code IR02

    Any one can give me a BAPI to delete position/person from work center ?
    T Code IR02
    IR02 -> HRMS - > Expand - > select person - > delete.
    Thank you
    Mrudang

    Thanks for your fast reply!
    I have looked to both functions before. Beside that they are both not remote enabled (which is not such a big problem as I could copy them or build a custom BAPI around them) I'm not quite sure how they could solve my problem.
    If I got it right, I would first use CR_CAPACITIES_OF_WORKCENTER to get the KAPID and using it as input for CLOI_WC_CAPACITY_READ. But I have problems to understand the output of CLOI_WC_CAPACITY_READ. The data type of the capacity is a float ( FLTP ) and the number seems to be to big, eg. 9.800000000000000E+01= 98h for one day.
    Could you try to explain your solution once again?
    Thanks,
    Simon

  • RFC Communication Channel only allows for one Logon User

    We're currently building a SOAP over HTTPS application in XI where
    an RFC communication channel connects to R3 with a logon user id
    and logon password (RFC Client Parameter). When updates are made
    on the R3 side using BAPI_NETWORK_MAINTAIN (for example), they're all
    done with the one logon user id. So fields "Last Changed by" or "Created by" have the
    one id, and any approvals can only be done by the one manager over the one id XI uses.
    If the external application passed an id (and password if necessary) to
    XI, is there any way connect to R3 using the passed id, and not have to
    use the one generic id .  If we're limited to the one id, is it
    possible on the R3 side to be able to change the id to a passed id that
    can then run the BAPI's/RFC's ?

    Hi Kye
    These should help you
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8798be90-0201-0010-d093-85f728778d37
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2a9dbe90-0201-0010-b283-a56f64534f18
    To capture parameter from URL you need to use ASMA for SOAP.
    Thanks
    Gaurav

  • NEF files only allow for exposure changes in CS2

    Hi
    When I open a NEF file (this happened with both D50 and D200 cameras) they only open a small raw box that allows me to change just exposure.
    When I had a Canon 20D the raw files would open a big box where I could change EVERYTHING and included a preview screen, but I just dont have this for my Nikon files.
    Any ideas?
    Thanks
    And

    To expand on Jeff's message, the Nikon PS plug-in is installed automatically when you install Nikon software. To get ACR, you need to remove or disable (rename, changing the extension) the Nikon plug-in and properly install Adobe Camera Raw, per the installations on the ACR download page.
    Art

  • Message FH017 Open item management only allowed for balance sheet accounts

    Hi,
    While creating a new GL account with P&L type it's giving the above message. If I select the BS type indicator, it's saving without any error.
    I observed, account group selection is creating this problem. Since creation of other accounts in other accounts groups doesn't get such problems.
    Any clues??
    Thanks in advance
    Durga.

    Subscribe  |  Add to Favorites
    Note 155317 - G/L a/c:change bal.sheet->P+L despite OI management Note Language:   Version: 4 Validity: valid since 14.09.2000 
    PDF Download Corrections Compare Versions SSCR
    Go to SAP Note:  Display 
    Content:  Summary  |  Header Data  |  Releases  |  Support Packages  |  Correction Instructions
    Summary
    Symptom
    You can change the control of a G/L account from a balance sheet account to a P&L account, although the account is set to open item management in at least one company code.
    Additional key words
    SAPMF02H, FS02, FSP2, FH017
    Cause and prerequisites
    This is caused by a program error.
    The corresponding check was not carried out if you did not branch to the screen of the company code data when making changes.
    Solution
    The error is corrected as of Release 4.6.
    You can make the advance corrections.
    Header Data
    Release Status: Released for Customer
    Released on: 13.09.2000  22:00:00
    Master Language: German
    Priority: Correction with medium priority
    Category: Program error
    Primary Component: FI-GL-GL-N Master Data
    Affected Releases
    Software
    Component Release From
    Release To
    Release And
    subsequent
    SAP_APPL 30 300 31I  
    SAP_APPL 40 40A 40B  
    SAP_APPL 45 45A 45B  
    Correction delivered in Support Package
    Support
    Packages Release Package
    Name
    SAP_APPL 31I SAPKH31I27
    SAP_APPL 40B SAPKH40B20
    SAP_APPL 45B SAPKH45B03
    SAP_HR 31I SAPKE31I27
    SAP_HR 40B SAPKE40B20
    Corrections Instructions
    Correction
    Instruction Valid
    from Valid
    to Software
    Component Last
    Modifcation
    97629 45B 45B SAP_APPL 14.09.2000  08:26:11
    97661 300 40B SAP_APPL 14.09.2000  08:28:04

  • Contract release orders only allowed for sche.agreements with dep.condition

    hi frnds,
    i got this error msg while i try to create a scheduling agreement with ref. to contracts
    help me out...
    thanks in advance....

    Hi
    Check whether you have used contract or Contract release order.
    Also check the allowed document types for the scheduling agreement.
    Thanks/Karthik

  • IPhone only allows for a very limited amount of iTunes tracks

    Hi there, since receiving a replacement iPhone 5, I've only been able to put 40-ish songs on it at a time. I have plenty of room for more, and have the most recent operating system, Is there a fix for this?

    OK Steve..I bet I know, because it happened to me.,,try this: It has to do with the AAC Encoder and bit rate at which you are importing songs into your ITunes.
    Connect your IPod, and look at the Bit Rate. If it is 800 to over a thousand, your songs are taking up too much space; the bit rate should only be 128 to 160. A song imported at a bit rate of 1022 will take up around 33 MB, while that same song imported at a bit rate of 160 will only take up about 5 MB. If that is the case, you will have to import all your songs again using a lower bit rate, and then replace those high bit rate songs on your IPod, which is a pain, but I do not know any other way to do it.
    This is how your change your bit rate that you import songs into your ITunes program from CD's:
    1. Connect your IPod & click EDIT, then PREFERENCES.
    2. Click the ADVANCED tab, then the IMPORTING tab.
    3. I use the AAC Encoder, and, in the SETTING block, select CUSTOM.
    4. Select 160 kbps, auto for the 2 boxes below, & say OK. You could, if you want use 'HIGH QUALITY 128 kbps' and that works fine, but I like 160...not much difference in how much room it takes up on your IPod..WHICH is where your problem lies, I suspect.
    Spend some time replacing your songs, and you can put a ton of songs on your IPod. Hope this all makes sense,,Bobby in Jax

Maybe you are looking for

  • E-mail problems on Macbook

    My e-mail software will not receive e-mails. I am only able to send. I have had this program for a few years and am just now having problems with it.

  • Exchange Rate Type per Company Code

    HI Experts, In our system the conversion rates for EURX are maintained since there are several European companies working with the system. Now we would like to use the same SAP-system for companies in China & Taiwan. In both countries there is an ind

  • Wireless mighty mouse compatability

    I want to buy my first mac. I'm totally leaning toward a macbook, but I'm curious to know if the wireless mighty mouse can be used with it when it's just on my desktop. It's just easier sometimes. Thanks. Oh, and if it can't, how about the wired mous

  • Adding drives, what to do next

    Our XServe RAID currently has in service (4) 250GB drives in RAID 5 on channel 1 for a total of 750GB usable space. We just purchased (4) 750GB drives and installed and formatted them for 2.1TB of usable space on channel 2. I would like to use all of

  • [XFCE] Anybody want to help me make a user switching patch?

    I love my XFCE desktop, but I hate not being able to switch users or lock the screen (I use LightDM). I Googled for a while now, and there doesn't seem to be any solution to this problem except for using a GDM-only applet that looks quite out of plac