As3.0 certification...

Can anyone please give me the details about as3.0 certification. I searched for it in google but i am little bit confused. Is there any as3 certification?
urgent...

you can get Flex, CS4, CS5 etc certification but i don't believe you can get AS3 certification
http://www.adobe.com/support/certification/exams/
you had already marked your question as answered which is why you might not have been getting responses

Similar Messages

  • Photo gallery in as3

    I'm making photo gallery where photos will be loaded from external xml file but i have problem. I want to add an effect when photo is changing like on this site: http://www.studiomelon.pl/index.html#/1/  Could somebody help me with that? I am noob in flash so please explain it as clear as you can. Thanks.

    I was sesrching for that for a long time before i created this tread. There is many tutorials and exaple files for page flip or page turn but i cant find good one. Many of them was coded in as1 or as2 other using php and java script so its difficult  to understant. I just want one simple solution for that. It cant be so hard to create something like that. Could you help me to find some good and simple tutorial in as3?

  • Creating an "if" Statement in AS3

    I've been having a problem trying to implement 2 email forms in the same scene at different places in the timeline.  If I do just one form, there isn't a problem, but there is a problem with the 2nd form (I've tried using different instance names to no avail). However, it appears I have most of it figured out, but am still having a problem, which I believe I may have a solution for by using an "if" statement.  In the following AS3 code is a string that reads var URL_request:URLRequest = new URLRequest( "send_email.php" ); I believe I may be able to resolve the problem if I had a 2nd string (in the same code) that read var URL_request:URLRequest = new URLRequest( "send_email_02.php" ); Is there a way to include that string in the same AS3 by using an "if" statement telling the code to "submit" the 2nd form?  If so, could someone please give me an example of how to write that "if" statement? This form has been driving me nuts for 4 days now and any help would be greatly appreciated. Thank you.
    stop();
    contact_name.text = contact_email.text = contact_subject.text =
    contact_message.text = message_status.text = "";
    send_button.addEventListener(MouseEvent.CLICK, submit);
    reset_button.addEventListener(MouseEvent.CLICK, reset);
    var timer:Timer;
    var var_load:URLLoader = new URLLoader;
    var URL_request:URLRequest = new URLRequest( "send_email.php" );
    URL_request.method = URLRequestMethod.POST;
    function submit(e:MouseEvent):void
    if( contact_name.text == "" || contact_email.text == "" ||
      contact_subject.text == "" || contact_message.text == "" )
      message_status.text = "Please complete all text fields.";
    else if( !validate_email(contact_email.text) )
      message_status.text = "Please enter a valid email address.";
    else
      message_status.text = "sending...";
      var email_data:String = "name=" + contact_name.text
            + "&email=" + contact_email.text
            + "&subject=" + contact_subject.text
            + "&message=" + contact_message.text;
      var URL_vars:URLVariables = new URLVariables(email_data);
      URL_vars.dataFormat = URLLoaderDataFormat.TEXT;
      URL_request.data = URL_vars;
      var_load.load( URL_request );
      var_load.addEventListener(Event.COMPLETE, receive_response );
    function reset(e:MouseEvent):void
    contact_name.text = contact_email.text = contact_subject.text =
    contact_message.text = message_status.text = "";
    function validate_email(s:String):Boolean
    var p:RegExp = /(\w|[_.\-])+@((\w|-)+\.)+\w{2,4}+/;
    var r:Object = p.exec(s);
    if( r == null )
      return false;
    return true;
    function receive_response(e:Event):void
    var loader:URLLoader = URLLoader(e.target);
        var email_status = new URLVariables(loader.data).success;
    if( email_status == "yes" )
      message_status.text = "Success! Your message was sent.";
      timer = new Timer(500);
      timer.addEventListener(TimerEvent.TIMER, on_timer);
      timer.start();
    else
      message_status.text = "Failed! Your message was not sent.";
    function on_timer(te:TimerEvent):void
    if( timer.currentCount >= 10 )
      contact_name.text = contact_email.text = contact_subject.text =
      contact_message.text = message_status.text = "";
      timer.removeEventListener(TimerEvent.TIMER, on_timer);

    While the overall scenario isn't all that clear to me, you don't necessarily need an if statement, but just have the different submit buttons assign the different URL_request values before they intiate any other processing.

  • Help with a preloader in AS3

    Hi,
    I upload a website and I have problems with the preloader did it in AS3. It starts after two or three minutes. I have a MC with an animation of 100 frames and the dynamic text of the percent. The preloader is located in the 1 frame to the 10, I mean, first frame with the actions and the other three layers (text, MC and background) with a lenght of 10. The movie has 525 frames. Here is the code:
    stop();
    addEventListener(Event.ENTER_FRAME, lodeando);
    function lodeando(event:Event):void
              var bytesTotales = stage.loaderInfo.bytesTotal;
              var bytesCargados = stage.loaderInfo.bytesLoaded;
              var porcentaje = Math.round(bytesCargados * 100 / bytesTotales);
              textoPorcentaje.text = porcentaje + "% Cargados";
              cargaAnimada_mc.gotoAndStop(porcentaje);
              if (bytesCargados == bytesTotales)
                        removeEventListener(Event.ENTER_FRAME, lodeando);
                        gotoAndPlay(2);
                        textoPorcentaje.text = "";
                        removeChild(textoPorcentaje);
                        removeChild(cargaAnimada_mc);
    Please, Could you help me?.

    These screen captures show the library of the movie. As you can see I export the most of them. However I have doubts about if I must convert to symbol the graphics. I have the preloader in the "presentación" folder without any exportation.
    Please, Could you correct the website?. Please, tell me an e-mail address and I send you the website via WeTransfer.

  • Oracle SOA suite 11.1.1.7 on windows 8 OS, But, during installation i got a problem "Check OS Certification".

    I want to install Oracle SOA suite 11.1.1.7 on windows 8 OS, My personal HP Pavilion g6 laptop. But, during installation i got a problem "Check OS Certification". What is this certification. Please Help Me.
    Regards,
    Satish.

    Pl identify exact version of Windows 8. Have you verified that your OS is supported/certified by consulting the spreadsheet at Oracle Fusion Middleware Supported System Configurations

  • Text input action AS3

    I have a text input field on the timeline that I want the user to enter specific information in. When that information is correctly entered, I need the timeline to progress.
    I successfully used the following AS2, but I cant find corresponding code for AS3
    on (keyPress "x") {
    gotoAndPlay("s05");
    Any help on converting this function to AS3 is greatly appreciated.

    You can use an Event.CHANGE listener for the textfield and then test its value in the event handler function to see if it agrees with the required string...
    inputtField.addEventListener(Event.CHANGE, testEntry);
    function testEntry(evt:Event):void {
         if(inputField.text == "whatever"){
              // do stuff

  • New Certification blog and new magazine about certification

    Dear Oracle Certification addicts
    Please consult the following blog http://blogs.oracle.com/certification/
    I did really appreciate the To Certify or Not to Certify topic is it quite good.
    Especially that Note to Hiring Managers: Just as candidate should not stake their careers solely on certification, you should not hire someone just because they are certified. Certification is an important factor and should play a role in your hiring process, but you should also base your hiring decisions on experience, education/training and communication skills (among other things). Most importantly you should follow up carefully with the candidate’s references. By looking at the whole package and verifying the details with multiple references you will improve your chances of hiring the right candidate.
    And we have now also a dedicated magazine or new letter on the oracle certification
    Extract from the news letter:
    July has been a busy month in Oracle Certification, with several new exciting things to share! Among them, our new and long-awaited Oracle Certification Blog. We are looking forward to sharing ongoing updates and discussing relevant topics in this short and easy to read format. Let us know what you think!
    We’re also happy to share that we have quite a few certifications still available in beta for a significant discount. It’s not only your chance to be among the first to be certified, but allows you to participate in our development process by providing Oracle with valuable feedback.. And of course, we are ramping up for our annual Oracle blowout in San Francisco - Oracle OpenWorld 2008, coming up in September. We hope to see you there!
    Paul Sorensen | Director of Certification, Oracle
    Have good readings....

    My understand is Oracle Database 11g Administrator Certified Professional (OCP) certification is already available via 1z0-050 to those with 10g OCP; to be technically correct IMHO this would make it a new path to the certification rather than a new certification ;-)

  • New to Flash AS3, Need help with some weird issues, have .fla link attached...

    Basically, the buttons are not visible when siteplan_mc is replayeed after floorplan closes, but they still work. Most things are only working on double click for soe reason, tho I have them to function on click. and the back button only woorks on unit 1 floorplan, tho the code it the same for all floorplans. I have a feeling it has something to do with levels... but I really have no idea... hopefully someone can help!
    thanks in advance,
    Sarah
    http://www.30eastroosevelt.com/RRHA_SITE.fla

    There are at least two things you're doing wrong. You can't go to a frame where something exists for the first time, and immediately do something to it. Like in your playunit functios for example:
    gotoAndStop("unit1")
    unit1_mc.alpha = 1
    unit1_mc hasn't yet drawn itself on stage to have its alpha set, and so there's an error. That is something that was improved in Flash 10, so if you had set the Flash to publish for Flash 10 and not Flash 9, then the floor plans and the back buttons appears ok. It would sometimes work with double clicks because by the second time you clicked, the movieclip now existed. You might be able to do what you want by having all of the room units on frame 1 of the siteplan_mc, and then set their visible to true or false as you need them, instead of doing the gotoAndStop().
    The other problem is that you're trying to set listeners on the Back buttons that don't yet exist. Wait until you're on the frame where the buttons exists, and then set its listener for the mouse click.
    Other things you're doing could be improved too, but really you might want to get together with someone who has done more AS3, to help you become more familiar with how it works.

  • Need advice about certification: do J2SE 1.4 or wait for 1.5 to go out?

    I need advice here! I am studing for Java Programmer certification (310-035) and I know now that the certification does not have any expiration date, instead it's version based. So, if I get now a J2SE 1.4 certification, soon it will be outdated... I guess!
    Does anyone know or have any ideia of WHEN java 1.5 sdk will be avaliable, and anyone can tell me how long it will take for a new 1.5 programmer certification be avaliable for general public?

    Do both. 1.5 is far enough away that you do not want to wait for it.
    And besides, 1.5 has enough new stuff in it that you'll want to recertify anyway.

  • HELP! Uploading AS3 Game to server, no sound and Spacebar doesn´t work HELP!

    Hello, relatively new to AS3 and flash, this is the first time i am publishing anything. We are trying to upload our simple flashgame to our webserver, the game works perfectly fine locally save for one thing. We get an error regarding TLF which says it wont stream or something. So when it gets online, no sounds play and spacebar doesn't work, left and right arrow does work. We have three TLF text fields that are used to update score, lives and show you final score. If i turn these into classical text they stop working.
    Things we have tried: Changing default linkage from RLS to Merged into code, changing the text boxes to classical text(they then stop working), made sure the paths are correct(all files are in the same directory including the .swz file)
    This is the code from the soundclass:
    package 
        import flash.net.URLRequest;
        import flash.media.Sound;
        import flash.media.SoundChannel;
        import flash.events.*;
        public class MySound
            private var bgSound:Sound;
            private var fireSound:Sound;
            private var waterSound:Sound;
            private var earthSound:Sound;
            private var lightSound:Sound;
            private var soundChannel:SoundChannel;
            public function MySound()
                soundChannel = new SoundChannel();
                bgSound = new Sound();
                var req:URLRequest = new URLRequest("BackgroundSound.mp3");
                bgSound.load(req);
                //fire
                fireSound = new Sound();
                var req2:URLRequest = new URLRequest("soundFire.mp3");
                fireSound.load(req2);
                // water
                waterSound = new Sound();
                var req3:URLRequest = new URLRequest("soundWater.mp3");
                waterSound.load(req3);
                // earth
                earthSound = new Sound();
                var req4:URLRequest = new URLRequest("soundEarth.mp3");
                earthSound.load(req4);
                // light
                lightSound = new Sound();
                var req5:URLRequest = new URLRequest("soundLight.mp3");
                lightSound.load(req5);
            public function playBgSound()
                soundChannel = bgSound.play(0, 999999);
            public function stopBgSound()
                soundChannel.stop();
            public function playFireSound()
                fireSound.play();
            public function playWaterSound()
                waterSound.play();
            public function playEarthSound()
                earthSound.play();
            public function playLightSound()
                lightSound.play();
    I can somewhat get that sound can bugg out, but why does spacebar stop functioning? ANy help is greatly appreciated as this has to be delivered in twelve hours(published online) for a school assignment.

    Also might add publishing it locally in my own browser everything works, as does ofcourse playing it in flash itself. Changing from RLS to merged into code stops the error from coming, but doesn´t fix the problem on the server.
    Code from main class related to sound and spacebar:
    import flash.display.*;
        import flash.events.*;
        import flash.ui.Keyboard;
        import flash.text.TextField;
        import flash.media.Sound;
        import flash.net.URLRequest;
        import flash.events.MouseEvent;
        import flash.utils.Timer;
        import flash.events.TimerEvent;
        public class main extends MovieClip
            private var fireTimer:Timer; //delay between shots
            private var canFire:Boolean = true;
            private var mySound:MySound;
            private var bulletSpeed:Number = -450;
              public function main()
                //load sounds
                mySound = new MySound();
            private function playGame(event:MouseEvent)
                gotoAndStop(2);
                // initialize
                myLives = 5;
                myHitsNo = 0;
                weaponType = 1;
                mybullets = new Array();
                enemys = new Array();       
                myScoreTxt.text = "Score: " + myHitsNo;
                myLivesTxt.text = "Lives: " + myLives;   
                fireTimer = new Timer(400, 1);
                fireTimer.addEventListener(TimerEvent.TIMER, shootTimerHandler, false, 0, true);
                stage.addEventListener(KeyboardEvent.KEY_DOWN, listenKeyDown);
                stage.addEventListener(Event.ENTER_FRAME, addEnemy);
                stage.addEventListener(Event.ENTER_FRAME, checkCollision);   
                player = new thePlayer(stage.stageWidth-40, spawnPoint2);// stage.stageHeight/2);
                stage.focus = player;
                addChild(player);
                mySound.playBgSound();
    public function listenKeyDown(event:KeyboardEvent)  // Controls and weapontype selector
                if (event.keyCode == 37) //left
                    player.movethePlayerDown();
                if (event.keyCode == 39) //right
                    player.movethePlayerUp();
    if (event.keyCode == Keyboard.SPACE) //space
                    shootBullet();
                    //soundFX.attachSound("Pistol Fire.wav");
                    //soundFX.start();

  • SAP FI and CO Certification syllabus_camparison

    Hello,
    Currently would like to persue a SAP FI and CO course.
    I m totally unaware of the SAP FI & CO course contents.
    I have Syllabus covered by Siemens and Syllabus covered by private trainer.
    Syllabus given by Siemen doesn't contain anything related to CO.
    can anybody compare both of them and tell me what are the topics which are not covered by the private trainer ?
    Your kind assistance will able me to take precise decision.
    Oblige the needful.
    rgrds/Vinod.
    Herewith copied both the sourses:
    SIEMENS:
    TERP01     SAP ERP: Intro     1.5 Hours          
    TERP02     SAP ERP: Intro to SAP NetWeaver     1 hour     Objectives     Identify the different components of SAP NetWeaver
    TERP11     SAP ERP: Introduction to NetWeaver Business Intelligence               Explain the business process functions each NetWeaver component supports
         (BI)               
    TERP21     SAP ERP: Intro to Processes in FI     6 hours     Contents     Financial Accountingu2019s role in the business
                        Organizational levels used in Financial Accounting
                        Financial Accountingu2019s components:
                        General Ledger
                        Accounts Payable
                        Accounts Receivable
                        Fixed Asset Accounting
                        Preparation of financial statements
    Following are the detailed contents of the above syllabus                    
    TFIN50     FI- I     10 days     Classroom     
                   Contents     u2022 Organizational units, master data and documents for Financial Accounting: company code,
                        fiscal year, currencies, general ledger accounts, customer and vendor master records, profit
                        center, document control, postings, clearing open items, cash journal
                        u2022 Handling of payments, dunning, correspondence and closing operations in Financial
                        Accounting:
                        Automatic payment program with clearing of open items
                        Automatic dunning program for creating dunning notices and correspondence
                        Overview of month and year-end accounting processes in Financial Accounting
                        Balance sheet and P&L
                        Preparatory closing postings in sub ledgers and the general ledger
                        Technical organizational and documentary steps in individual closing
                        Closing Cockpit
                        Configuration of periodic closings in Financial Accounting
    SMO01     Intro Solution Manager               This course is meant to familiarize you with the principles and terminology of the SAP Solution
                        Manager. You will be introduced to the benefits of using the SAP Solution Manager during the
                        implementation of your SAP solutions and during ongoing support and operations.
    TFIN52     FI- II     10 days     Classroom     
         (Inclusive of case study)          Contents     u2022 Organizational structures, master data, and business processes in Asset Accounting:
                        Chart of depreciation, depreciation area, asset classes, master data , asset transactions,
                        valuation, periodic processing, information system
                        Evaluation methods in Financial Accounting (Info system and ABAP reports of general ledger
                        accounting, accounts receivable accounting, and accounts payable accounting, report variants,
                        selection variables in variants, List Viewer, sample evaluations using the drilldown reporting
                        tool)
                        Special G/L transactions and document parking
                        Validations and substitutions in Financial Accounting
                        Archiving in Financial Accounting
                        u2022 Case study: implementation of a fictitious demo company using specific business processes,
                        configuration and mapping of the company structure, master data, and business processes in
                        the SAP system
                        u2022 Review and certification preparation
                        u2022 Certification examination for Certified Application Associate - Financial Accounting with SAP
                        ERP 6.04 on the content of the courses SAP125, TERP01, TERP02, TERP21, SM001, TFIN50,
                        TFIN52
    Private Trainer:
    SAP FICO Syllabus
    Srl No     Topic     Points Covered
    1     SAP Overview     Concept of client
    OverviewSAP Architecture
    2     Enterprise Structure     Define Company, Company code & Assign the same.
    Maintain Fiscal Year Variant,
    Posting Period Variant, Document Number Ranges, Document Type,
    Posting Keys, Field Status Variants & Groups & Assignment of the same wherever
    necessary.
    3     Simple Chart of Accounts     Create a simple Chart of Accounts, Assign the same, Edit GL A/cu2019s, Enter Transactions, Post with
    reference, Account Assignment Model, Recurring Document and Batch Processing, Document
    Parking and Document Extract.
    4     Period End Closing     Understand the Closing concept, Close the company created, view the Balance Sheet, Accounts,
    carry forward balances to the next year, and view the Retained Earnings Account.
    5     International COA     Create a company encompassing all features of the SAP standard company 0001, create a COA
    in line with the INT COA, Assign as necessary, Edit Gl A/c Collectively, Enter Transactions, Post
    with reference, Account Assignment Model, Recurring Document and Batch Processing,
    Document Parking and Document Extract.
    6     Cash Journal / Banking     Create GL A/c for Cash Journal, Document Types, Number Range Interval, Setup Cash Journal,
    Business Transactions, and Posting.
    7     Taxation     Understand the concept of a non-jurisdictional Tax Proceedure, Condition Type, Access
    Sequence, Account Key, Tax Codes, Input / Output Tax, Calculation and Posting. Jurisdictional
    Tax Proceedure will be configured independently by the student at this stage.
    8     Accounts Receivable     Create Customer Master Records, raise invoices, receive incoming payment, assign and clear
    open items, Down payment request, creation and clearing, Maintain Terms of Payment. Instalment Payment terms to be configured independently by the student.
    9     Dunning     Define Dunning Area, Dunning Keys, Dunning Proceedure, Dunning Notices.
    10     Interest     Define Interest Calculation Types, Number Ranges, Arrears Interest Calculation, Interest Run
    and Posting. Balance interest to be configured independently.
    11     Accounts Payable     Create Vendor Master Records, Input Tax, raise bills, create outgoing payments.
    12     Std Witholding Tax     Understand the concept of WT, Basic Settings, Calculation and Postings.
    Extended WT will be configured independently by the student.
    13     House Banks     
    Define House Banks, Outgoing Payment Configuration, Number Ranges for Cheques, and Bank
    Reconciliation. Automatic Payment Run to be configured independently.
    14     Foreign Currency Translation     Understand the concept of foreign currency translations, enter exchange rates, valuate open
    items at closing with reversals.
    15     SD/MM definition,
    assignment, and integration     Define Credit Control Area, Valuation Level, Plant, Location, Division, Sales Organisation,
    Distribution Channel, Storage Location, Shipping Point and Assignment of the same. Define
    Common Distribution Channel and Division. Check Enterprise Structure for Sales and
    Distribution. Understand integration concepts, and assign GL A/cu2019s.
    16     Create Material [FERT]     Create material, initial stock entry, check stock of material.
    17     Pricing Proceedure     Understand the concept of pricing procedure, condition type, access sequence, account key,
    procedure determination, and maintenance of condition records.
    18     Sales Order & Billing     Create Sales Order, Outbound Delivery, Billing Document, Accounting Entries.
    19     Asset Accounting     Understand Organisation Structure, Chart of Depreciation, Depreciation Areas, Asset Classes.
    20     Controlling
    Cost Element Accounting
    Cost Center Accounting     Maintain Controlling Area, Assign the same and maintain number ranges
    Create Default Cost Center, Primary Cost Element, Secondary Cost Element
    Activate Cost Center Accounting in Controlling Area, Maintain Standard Hierarchy, Create Cost
    Center Groups and Cost Centers, Select Planner Profile, Cost and Activity Input, Enter Plan and
    Actual amounts, Generate Variances, Redistribution and Assessment of Primary and Secondary
    Cost Elements across Cost Centers.
    21     New GL Concept     Configuration logic.

    check this link for one example co certification
    http://www.sap.com/services/education/certification/certificationtest.epx?context=[[C_TFIN22_64|G]]|
    Thanks,
    Ram

  • How to use as3 in flash cs3 to add dynamic text from a text file into a flash file

    let me start out by saying today is my first day of scripting
    in flash.
    I have a text file text.txt
    it contains
    text1=hello world
    can someone please show me how to display this text in a
    flash file
    i have been searching for this for hours and there are
    solutions with flash mx and actionscript 2.0 but i would like to
    see how to do this in as3.
    just a simple frame that loads that file and displays it when
    you test run the program
    much apreciated
    RC

    I'm not up on AS3 yet, but many things are still similar. You
    need to use the LoadVars class to accomplish this, You can find
    information this in Flahs Help>Actionscript>Actionscript
    Language Reference>Actionscript classes.
    rem: the text.txt file and the text.fla file must be in the
    same directory.
    The code will look something like this:

  • AS3 Scripting for Animated GIF

    Hi,
    I am trying to create an animated GIF for a white noise animation (needed for those viewers who don't have access to a Flash player). The SWF version runs perfectly. Currently, all of the AS3 for the bitmapData.noise and bitmapData.palettemap script is in the first keyframe. So, when I export as an animated GIF, I get a white screen in playback.
    I think the problem for the animated GIF is that there are no frames past the first frame. But, I am not sure how to add frames or re-write the AS3 to get a 30 second animated GIF? I tried duplicating the first keyframe into several new keyframes and get error messages. I would appreciate any help.
    Here's the AS3 in the first keyframe that works well for a SWF (previous relevant thread: http://forums.adobe.com/thread/734335?tstart=0):
    var array:Array=new Array();
    for (var i:uint = 0; i < 255; i++) {
    array[i] = 0xffffff * (i % 2);
    var _bitmapData:BitmapData;
    var bDHolder:Sprite = new Sprite();
    _bitmapData = new BitmapData(stage.stageWidth/4, stage.stageHeight/4);
    bDHolder.addChild(new Bitmap(_bitmapData));
    bDHolder.scaleX = bDHolder.scaleY = 4;
    addChild(bDHolder);
    addEventListener(Event.ENTER_FRAME, onSpriteEnterFrame);
    function makeNoise():void {
                _bitmapData.noise(getTimer(), 100, 255, 7, true);
                _bitmapData.paletteMap(_bitmapData, _bitmapData.rect, new Point(0,0), array, array,array);
    function onSpriteEnterFrame(event:Event):void {
                makeNoise();
    var itsNoisy:Boolean = true;
    stage.addEventListener(MouseEvent.MOUSE_DOWN, manageNoise);
    function manageNoise(evt:MouseEvent):void {
         if(itsNoisy){
             removeEventListener(Event.ENTER_FRAME, onSpriteEnterFrame)
         } else {
             addEventListener(Event.ENTER_FRAME, onSpriteEnterFrame)
         itsNoisy = !itsNoisy;
    Kind Regards,

    Jimmy,
    You may (also) try to ask in the (most) relevant Photoshop forum.
    http://forums.adobe.com/community/photoshop

  • Sap FICO Certification for Financial Accounting with mySAP ERP 2005

    Hi,
    I would like to write SAP-FICO Certification for Financial Accounting with mySAP ERP 2005
    Topic areas:
    SAP overview, Financial Accounting Master Data, Document and Posting Control,Special General Ledger Transactions, Document Parking, Substitution and Validation ,Payment Program, Dunning Program, Correspondence, Interest Calculation,Evaluation Options in Reporting ,Closing Operations in Financial Accounting ,Asset Accounting,The New General Ledger,SAP Solution Manager.
    If anyone have the Material for above topics, please send me my mail Id: [email protected]
    if anyone appeared recently for certification for the same code, please send model questions and answers.
    i will be very thankfull to you.
    Regards,
    Satyaprakash

    Hi
    I am also writing SAP-FICO Certification for Financial Accounting with mySAP ERP 2005.
    Request you to send me whatever the material you have in this regard.
    thanking you in advance
    Suri

  • Advanced certification in ABAP

    Hi All
    I am a ABAP programmer with 3 yrs of ABAP experience and currently working on EDI / IDOC technologies. I wanted to go for ABAP certification but I was advised by many not to do it as exam has got very simple ABAP questions, mainly on Basic ABAP
    I just wanted to know how true it is and is there any other certification for Advanced ABAPPERS ? ( Like Sun has for Java ).
    Are there any certification exams for ALE Idoc , BW programming.
    Amol

    Hi Amol,
    Your question amused me. I am also a certified ABAPer, having a rootless existance in SAP. I was working on Web technologies till last Aug and got Certified then and have been an ABAPer ever since. Unfortunately, there is no advanced certification program for ABAP but a certified ABAPer is always considered to have it all.
    You are right about the exam questions. It is all basic ABAP, but you see, high rises stand on great foundations. To learn advanced topics, may be you should approach SAPLABS at b'lore as you have over 3 yes of exp and that too on hot technologies like EDI/IDOC.
    I would suggest anyone to go for the certification, not to get their 2-3 lakhs spent, but for the face that you will be globally accessible being a certified ABAPer and will have great demand abroad and in India.
    Good luck.
    If you think this helped you, please reward me
    Karthik Potharaju

Maybe you are looking for

  • Crystal Report: irregular error not handled by the application component

    Hi all, The error message u201Cirregular error not handled by the application componentu201D comes up when I run any of the Crystal Report in the SAP Business One. But this error happens only in the client Machines, from the Server I can run the repo

  • WON'T INSTALL AT ALL ??

    i installed my itunes 4 about 6 months ago and i had to uninstall SP2 and downgrade it to SP1 to make it work. I recently decided to upgrade my software (itunes4->itunes6) and so first i tried to upgrade my drivers on ipod mini from 1.2 to 1.4 .. the

  • HT5128 What happened to Adobe Photoshop on PowerPC (Macbook)?

    I have Macbook and Adobe Photoshop was installed when I bought it.  But recently, I am not able to open this application and it says; "You can not open the application "Adobe Photoshop CS.app" because PowerPC applications are no longer supported." Ho

  • How to handle multiple DEV clients in CHARM

    Experts: We have many DEV clients  in our ECC landscape. Some customizing needs to be imported into all DEV clients. In order to use CHARM to do above import into different  DEV clients, I want to define some logical components with only 2 systems, i

  • Extractors SD, MM, PS

    Hi,   I am working in BI implementation project . The r3 configuration for the organization is as follows    a) They are creating projects for "execution type jobs"            Execution type jobs(material cost  + labour cost ) , they create new proje