Monday 11 July 2016


Assessment Report Overview

Hi Guys today I am sharing one of the Assessment report Video which will give you functional overview of EBS Upgrade Assessment Report idea, For technical and coding view I'll share second part of this video.




 


Thanks Guys :)

Monday 4 July 2016

GIT Basics and Documents

Hi Guys,
Today i am sharing some Git tortoise basics documents by following this documents you can install the GIT and connect with cloud.

Git Installation

Download the docs and enjoy :)


Progress Indicator bar on Button -

Guys Some time We are facing issues to run Progress Indicator.

when we are doing any action our response in displaying at the same time so we need to use Progress bar to show information to the user.

Today I'll explain how to user progress Indicator on Button.

Step1- I have a Page where I am running some program on basis of Procedure call.





Step2- Once you'll click on runProgram one procedure will call and Progress indicator will show.




Step3- once procedure will run successfully it'll give a success message.





So the code which we have to add is given below -

you need to create a page and on button you need to call a clientListener.

<af:clientListener type="action" method="longRunningTask"/>

After that we need to add Dialog Popup and JavaScript code like below -

<af:popup childCreation="deferred" autoCancel="disabled" id="longRunningPopup"                          contentDelivery="immediate">
                <af:dialog id="dialog1" closeIconVisible="false" type="none" title="Loading Please Wait..."
                           inlineStyle="width:200px; text-align:center;">
                    
                </af:dialog>
            </af:popup>

            <af:resource type="javascript">
            
                            function longRunningTask(evt) {
                            var popup = AdfPage.PAGE.findComponentByAbsoluteId('longRunningPopup');
                            if (popup != null) {
                                AdfPage.PAGE.addBusyStateListener(popup, busyStateListener);
                                evt.preventUserInput();
                            }
                        }

                    function busyStateListener(evt) {
                        var popup = AdfPage.PAGE.findComponentByAbsoluteId('longRunningPopup');
                        if (popup != null) {
                            if (evt.isBusy()) {
                                popup.show();
                            }
                            else if (popup.isPopupVisible()) {
                                popup.hide();
                                AdfPage.PAGE.removeBusyStateListener(popup, busyStateListener);
                            }
                        }
                    }

            </af:resource>

That's it.
After adding this code you can able to see the progress Indicator on particular page.




Thanks Guys :)


ADF 11g Patch for IE11

Solution for adf 11g application issues on IE11 -

Guys Some time We are facing issues to run the ADF 11g application on IE11.
Here I am sharing one solution for adf 11g application running on IE11.

We need to apply the 18277370 patch to jdev.
below are the steps -
S1). download the patch.
S1). unzip to C:\bp1_Patch folder.
S2). Open the cmd and run the below command for windows -
set MW_HOME=C:\Oracle\Middleware
set ORACLE_HOME=C:\Oracle\Middleware\Oracle_Home
set PATH=$PATH:%HOME%\bin;%ORACLE_HOME%\bin;%ORACLE_HOME%\OPatch



S3). Open opatch lsinventory and list all the opatches which are there on your jdev if it was old                 installation otherwise no need to do listing.
S4). Close all the server and jdev ide before applying the patch.
S5). Run opatch apply in cmd.



S6). Press y once cmd is looking for y/n

Wait and after some time OPatch succeeded message will appear in cmd.
Imp - remove weblogic server cache and IE 11 Cache.

After Apply Patch, Running ADF Application you'll not get any unsupported message.

Thanks guys :)

Eclipse With Python

Hi Guys, Today i'll share how to start python project in eclipse IDE. to start Py development in eclipse we need to add Py Dev plugi...