BC4J/ADF-BC:  Use of the commons package

I use extended DataAction classes to access the ADF Business Components. The Oracle9i JDeveloper Handbook encourages accessing the application module class and view object class through the "common" package level. This is discussed in Chapter 14 (p. 465).
For example, in my 10G client:
import com.test.common.UserAM;
import com.test.common.UserByIDVO;
import com.test.common.UserByIDVORow;
(as opposed to:)
import com.test.UserAMImpl; ....
BindingContext myctx = actionContext.getBindingContext();
DCDataControl mydc = myctx.findDataControl("com_test_UserAMDataControl");
UserAM myAM = (UserAM)mydc.getApplicationModule();
myAM.prepareModelGetBUFbyID(Integer.parseInt(id));
UserByIDVO buVO = (UserByidVO) myAM.findViewObject("UserByIDVO");
I have found that I cannot get access to the "common" package without doing the following:
(1) Create a custom Java method for the *Impl.java class that I want to see in the "common" package.  (I have gone as far as to create an empty method just to force visibility of the "common" package.)
(2) Generate java files for the object through the editor for either the application module or view object.
If I don't do this I will have access to only the level above "common" and I believe that could force me into the scenario of only being able to do local deploys.
This works okay but ... am I handling this as it is intended to be used? What if I wanted to access the application module/view object programmatically but it does not have any custom methods?

I use extended DataAction classes to access the ADF Business Components. The Oracle9i JDeveloper Handbook encourages accessing the application module class and view object class through the "common" package level. This is discussed in Chapter 14 (p. 465).
For example, in my 10G client:
import com.test.common.UserAM;
import com.test.common.UserByIDVO;
import com.test.common.UserByIDVORow;
(as opposed to:)
import com.test.UserAMImpl; ....
BindingContext myctx = actionContext.getBindingContext();
DCDataControl mydc = myctx.findDataControl("com_test_UserAMDataControl");
UserAM myAM = (UserAM)mydc.getApplicationModule();
myAM.prepareModelGetBUFbyID(Integer.parseInt(id));
UserByIDVO buVO = (UserByidVO) myAM.findViewObject("UserByIDVO");
I have found that I cannot get access to the "common" package without doing the following:
(1) Create a custom Java method for the *Impl.java class that I want to see in the "common" package.  (I have gone as far as to create an empty method just to force visibility of the "common" package.)
(2) Generate java files for the object through the editor for either the application module or view object.
If I don't do this I will have access to only the level above "common" and I believe that could force me into the scenario of only being able to do local deploys.
This works okay but ... am I handling this as it is intended to be used? What if I wanted to access the application module/view object programmatically but it does not have any custom methods?

Similar Messages

  • To RE-USE (display) the common REGION in all of the Pages

    I have a Common REGION (It's a Select criteria with lot of lov's) and I want to display the same Region with every items on the TOP of all the Pages (1,2,3, .....) within same Application ID.
    One of the way is I should copy the REGION in all the pages but I want some better way, so that I can build the Region once and re-use that in every Page without copying.
    thanks..

    thaks..
    also if I want to avoid some of the pages..how can I do that.
    I mean, I have page 1,2,3,4 & 5. I want the common region to be displayed only on Page 1,3 & 5, Can I give the condition in Page 0 to display on particular pages.

  • BC4J "common" package

    Can someone explain what Java packages get generated automatically by BC4J and why?
    I created a new business components package, added a domain to it, and was surprised to see that a new subpackage called "common" had been created containing the domain. Why did JDev create a subpackage instead of using the package I had specified? (I had thought there was a 1-to-1 correspondence between business component packages and Java packages.)
    I can't find information about this in the documentation.
    Thanks.

    We put the following four artifacts in the ".common" subpackage of your BC4J package:
    1. bc4j.xcfg configuration file for application modules in your package
    2. custom interfaces for view objects, view object rows, or application modules for which you've published client-accessible methods.
    3. message bundle classes that BC4J creates for your components
    4. domain classes
    These are precisely the things that end up getting packaged into the "Common" jar file when you deploy your BC4J application (everything else goes into the "MiddleTier" jar file.
    BC4J encourages a logical three-tier design, and when you choose to deploy this logical three-tier application as a physical three tier application, the "Common" Jar file and all of your BC4J components implementations stay on the server.
    It's just the "Common" jar file that is required on the remote client tier.
    Actually, the things in the "Common" jar file are required on both tiers, thus that are common to both the middle tier and the client tier, hence the choice of the name "common".

  • Using classes outside of the default package in OATS 12.3.0.1.0

    Hello,
    OpenScript - Version: 12.3.0.1 Build 376.
    The test fails when I use classes that are not in the default package.
    Here is a simple example:
    TempClass - in the default package, I can create new objects and use it's methods without any errors.
    AlienClass - in another package (which name is anotherPackage) of the same project, I import that package into the script.java but I get an exception while creating new class object:
    "An unexpected exception occurred in the script. Script section: Unspecified. Caused by: ClassNotFoundException occured. anotherPackage.AlienClass "
    import anotherPackage.*;
    public void run() throws Exception {
      TempClass tmp = new TempClass(); // no errors while creating
      info(tmp.generateMessage());           // this method works correctly
      AlienClass al = new AlienClass();
      /* here I've got error
      *An unexpected exception occurred in the script.
      * Script section: Unspecified.
      * Caused by: ClassNotFoundException occured. anotherPackage.AlienClass 
    There are no such problems in OpenScript Version: 12.2.0.1 Build 223.
    Could you help me, please?
    Best regards,
    Natalie

    Hi, Sri!
    It was not necessary to name the root package "lib" in previous versions of OpenScript (12.2.0.1, 9.X.X).
    Except the default package, my work project in 12.2.0.1 included one main user package named by the testing application (let's call it "myApp"). And other packages and classes were located there.
    For example:
    D:\Development\TestProject\myApp\core\DB.java
    D:\Development\TestProject\myApp\test\Test1.java
    D:\Development\TestProject\myApp\test\Test2.java
    D:\Development\TestProject\myApp\web\common\Authorization.java
    etc.
    Project with such structure worked in OpenScript 12.2.0.1 but doesn't work in 12.3.0.1.
    According to your advice I created a new package - D:\Development\TestProject\lib, moved "myApp" with all included packages and classes into that package and corrected import statements (like lib.myApp.core.* instead of myApp.core.*).
    And then no errors appeared! So thank you very much! But it's interesting, why behaviour of OpenScript concerning package's name has changed?
    As for example from the first message,  import statement was in the same place where OpenScript added others packages during creating a new project. I've just tried to save some space in the message
    The full script.java is:
    import oracle.oats.scripting.modules.basic.api.*;
    import oracle.oats.scripting.modules.browser.api.*;
    import oracle.oats.scripting.modules.functionalTest.api.*;
    import oracle.oats.scripting.modules.utilities.api.*;
    import oracle.oats.scripting.modules.utilities.api.sql.*;
    import oracle.oats.scripting.modules.utilities.api.xml.*;
    import oracle.oats.scripting.modules.utilities.api.file.*;
    import oracle.oats.scripting.modules.webdom.api.*;
    import oracle.oats.scripting.modules.adf.api.*;
    import anotherPackage.*;
    public class script extends IteratingVUserScript {
      @ScriptService oracle.oats.scripting.modules.utilities.api.UtilitiesService utilities;
      @ScriptService oracle.oats.scripting.modules.browser.api.BrowserService browser;
      @ScriptService oracle.oats.scripting.modules.functionalTest.api.FunctionalTestService ft;
      @ScriptService oracle.oats.scripting.modules.webdom.api.WebDomService web;
      @ScriptService oracle.oats.scripting.modules.adf.api.ADFService adf;
      public void initialize() throws Exception {
      public void run() throws Exception {
      TempClass tmp = new TempClass(); // no errors
      info(tmp.generateMessage());     // this method works correctly
      AlienClass al = new AlienClass();
      /* here I've got error
      *An unexpected exception occurred in the script.
      * Script section: Unspecified.
      * Caused by: ClassNotFoundException occured. anotherPackage.AlienClass 
      public void finish() throws Exception {

  • How to find the common dimension tables used in Finance AR/PR and GL,

    Hi All,
    I need to find the common dimension table used in the Finance modules (AP,AR,PO,GL...), Since separate teams are working on populating each modules, and we need to find the dependency so that our loads shouldn’t impact others.
    Thanks!
    OBI

    Hi Guys,
    Thanks for all your answers.
    Yes....You are all right. We can list out the used tables upto certain extent. Anyhow, I have done some R&D to derive the SQL's which is given below:
    SELECT TABLE_NAME FROM USER_TABLES
    MINUS
    SELECT DISTINCT UPPER(REFERENCED_NAME)
    FROM user_dependencies
    where
    referenced_type='TABLE' and UPPER(NAME) in
    select distinct UPPER(object_name) from user_objects where UPPER(object_type) in
    'MATERIALIZED VIEW',
    'PACKAGE',
    'PACKAGE BODY',
    'PROCEDURE',
    'TRIGGER',
    'VIEW',
    'FUNCTION'
    UNION
    SELECT UT.TABLE_NAME FROM
    SELECT TABLE_NAME FROM USER_TABLES
    MINUS
    SELECT DISTINCT UPPER(REFERENCED_NAME)
    FROM user_dependencies
    where
    referenced_type='TABLE' and UPPER(NAME) in
    select distinct UPPER(object_name) from user_objects where UPPER(object_type) in
    'MATERIALIZED VIEW',
    'PACKAGE',
    'PACKAGE BODY',
    'PROCEDURE',
    'TRIGGER',
    'VIEW',
    'FUNCTION'
    AND REFERENCED_OWNER=(SELECT sys_context('USERENV', 'CURRENT_SCHEMA') FROM dual)
    ) UT,
    ( SELECT * FROM USER_SOURCE
    WHERE NAME IN
    ( SELECT DISTINCT NAME FROM USER_SOURCE
    WHERE TYPE NOT IN ('TYPE')
    AND
    UPPER(TEXT) LIKE '%EXECUTE IMMEDIATE%'
    ) US
    WHERE
    UPPER(US.TEXT) LIKE '%'||UPPER(UT.TABLE_NAME)||'%'
    AND
    (UPPER(US.TEXT) NOT LIKE '%--%')
    The above SQL Query can list out unused tables by checking the Dynamic SQL Statement also upto some level only.
    Once we extracted the list of unused tables, having a manual check would be also greater to verify as it is should not impact the business applications.
    Regards,
    Subramanian G

  • Why is the "Common DOM API" not included in main JDK1.4 / JAXP1.1 packages?

    Hi,
    It's good the core XML DOM is implemented in Java, and even better that this is to become integrated into JDK1.4. However, I don't understand why the JDK1.4 / JAXP 1.1 only includes the "org.w3c.dom" package and not the other DOM packages ("org.w3c.dom.events", etc. such as those implemented in Xerces or those that appear in the Common DOM API).
    Can anyone explain how to use this functionality (all DOM APIs) using JAXP 1.1 or JDK 1.4 ? Or must I stick to including the Apache implementation?
    Some useful references:
    http://java.sun.com/j2se/1.4/docs/guide/plugin/dom/index.html
    http://xml.apache.org/xerces-j/
    Hopefully someone can explain this a bit more to me...
    Thanks,
    Chris

    I am curious for the answer to this as well... I have been using Java SDK 1.3.1 with Apache's xerces 2.0.0-beta4, and am now trying to upgrade to SDK 1.4 with xerces 2.0.0..
    Also, what about package org.w3c.dom.ranges? Does anyone know if this an Apache-defined package, or is it a standard w3c one (in which case, why is it not part of the Common DOM API set)?
    Thanks for any help!

  • Do I need basic cable to use the MLB package purchased through itunes to use on my Apple TV?

    I would like to purchase the MLB package through itunes to use on my Apple TV. Do I need to have basic cable in order to watch it on the tv like some of the other apps require?

    Yes sorry, I can see that from your question title.  Are you in the US? Ifv so movie redownloads should be available, but I believev some studios aren't onboard.
    In iTunes, go to the Store home page - on the right in Quick Links is there a Purchased/Purchases section? If so check if you can download the movies from there.
    If you can't see them go to expresslane.apple.com and raise a support ticket for iTunes store, asking them to enable download via iTunes.
    AC

  • I am trying to update itunes but keep getting 'The feature you are trying to use is on a network resource that is unavailable - Click OK to try again, or enter an alternate path folder containing the installation package 'itunes64msi' in the box below'. ,

    I am trying to update itunes but keep getting 'The feature you are trying to use is on a network resource that is unavailable - Click OK to try again, or enter an alternate path folder containing the installation package 'itunes64msi' in the box below'.
    I am unable to install and also i cannot uninstall itunes, can anyone HELP PLEASSSSSSEEEEEE!!

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • When I try to update itunes, I get the following:  The feature you are trying to use is on a network resource that is unavailable.  Click OK to try again, or enter an alternate path to a folder containing the installation package iTunes64.msi in the box..

    When I try to update itunes, I get the following:  The feature you are trying to use is on a network resource that is unavailable.  Click OK to try again, or enter an alternate path to a folder containing the installation package iTunes64.msi in the box below.
    This leads me to another dialog box that says:  The file .......is not a valid installation package for the product iTunes.  Try to find the installation package iTunes64.msi in a folder from which you can install iTunes.
    That doesn't work either.  What to do?
    Dean

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • How can i remove iTunes 10.1.0.54 saying the feature you are trying to use is on a network resource...enter an alternate path to a folder contaning the installation package 'iTunes.msi'?

    How can i remove iTunes 10.1.0.54 saying the feature you are trying to use is on a network resource...enter an alternate path to a folder contaning the installation package 'iTunes.msi'?
    < Edited by Host >

    Unfortunately, this sort of trouble has gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center on June 25. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. (The results from mydigitallife and Major Geeks are worth checking.)
    After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove".
    Quit out of CleanUp. Restart the PC, and try another iTunes install. Does it go through properly this time?

  • After trying to run the iTunes automatic update, I got this "The feature you are trying to use is on a network resource that is unavailable." Click OK to try again,or enter an alternate path to a folder containing the installation package 'itunes.msi"

    After trying to run the iTunes automatic update, I got this box on my pc "The feature you are trying to use is on a network resource that is unavailable. Click OK to try again, or enter an alternate path to a folder containing the installation package 'iTunes.msi" in the box below.. I ran a search for the file, and entered that into the box, to no avail. Then I launched iTunes and clicked on 'check for updates', and was told I had the latest version 11.0.1 I think it is. So, any clue on what to do? Thanks for any and all help.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • When i try to download the newest version of itunes it says "the feature you are trying to use is on a network resource that is unavailable" and then it gives me an alternate path to a folder containing the installation package for itunes64.mis, help

    when i try to download the newest version of itunes it says "the feature you are trying to use is on a network resource that is unavailable" and then it gives me an alternate path to a folder containing the installation package for itunes64.mis, help

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • How can I use the security package in JCOP41V2.2?

    Hi all, I'm a newbie in javacard programming. I'm trying to develop a project with RSA_signature. But I found, the exception NO_SUCH_ALGORITHM will be thrown out when I new an instance of KeyPair.
    My java file Temp_1.java following:
    package temp;
    import javacard.framework.Applet;
    import javacard.framework.ISO7816;
    import javacard.framework.ISOException;
    import javacard.framework.APDU;
    import javacard.security.*;
    * @author lujj
    public class Temp_1 extends Applet {
    KeyPair myKeyPair = null;
         public static void install(byte[] bArray, short bOffset, byte bLength) {
              // GP-compliant JavaCard applet registration
              new Temp_1().register(bArray, (short) (bOffset + 1), bArray[bOffset]);
         public void process(APDU apdu) throws ISOException{
              // Good practice: Return 9000 on SELECT
              if (selectingApplet()) {
                   return;
              byte[] buf = apdu.getBuffer();
              if(buf[ISO7816.OFFSET_CLA] == (byte)0xEE)
                   try
                        myKeyPair = new KeyPair(KeyPair.ALG_RSA, KeyBuilder.LENGTH_RSA_1024);
                   catch(CryptoException e)
                        ISOException.throwIt((short)(0x6F00+e.getReason()));                    
                   return;
              switch (buf[ISO7816.OFFSET_INS]) {
              case (byte) 0x00:
                   break;
              default:
                   // good practice: If you don't know the INStruction, say so:
                   ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
    This package can be upload and the applet can be installed successfully.
    But if I send the apdu "EE 00 00 00 00" after selected the applet, "6F 03" will be returned.
    Is there anyone can help me? Thanks a lot.

    Thank you so much~
    Actually, it's only an applet for test. I cannot get the error code if I new the KeyPair in install function or Applet construct function. It will return "6A 80" when install the applet.
    And, I found that it support few algorithm. For example, it does not support ALG_DES_MAC4_ISO9797_M2,etc. Is there anything I can do if I want to use the algorithm? Shall I rewrite security package by myself?
    5555, security package is the standard package in JAVACARD API 2.1.1.

  • With the online package of PS/LR, how many machines can I use this on?

    With the online package of PS/LR, how many machines can I use this on? Can I have it at work and home?

    2 Computer License http://forums.adobe.com/thread/977272

  • Is there a way to use the common J-K-L keystrokes to play forward and backward in iMovie '11?

    Is there a way to use the common J-K-L keystrokes to play forward and backward in iMovie '11? Most editing apps--like Final Cut Pro, QuickTime Pro, Avid, etc.--use this convention. I find not having it slows editing down considerably?  I don't see it listed in keyboard shortcuts; is there any way to add it?  Thanks!

    I don't think so. If you click iMovie/Help, you will see a list of all keyboard shortcuts.
    Here they are.
    Get information
    Open iMovie Help
    Command-Shift-Question Mark (?)
    Open the Project Properties window
    Command-J
    Open the Project Theme window
    Command-Shift-J
    Show playhead info
    Shows date, time, and keywords for video frames above the playhead.
    Command-Y
    Import and export
    Import from camera
    Command-I
    Export movie
    Command-E
    Play video
    Play video beginning from the frame beneath the pointer
    Space bar
    Play 1 second of video total—0.5 seconds before the pointer and 0.5 seconds after
    Plays only 0.5 seconds of video from the beginning of the selection or to the end of the selection if the pointer is resting within the selection border.
    Left Bracket ([)
    Play three seconds of video total—1.5 seconds before the pointer and 1.5 seconds after
    Plays only 1.5 seconds of video from the beginning of the selection or to the end of the selection if the pointer is resting within the selection border.
    Right Bracket (])
    Play selection
    Slash (/)
    Play selected event or project from the beginning
    Backslash (\)
    In the Event browser, speed up playback from 1x to 2x to 4x by pressing the key one time or two times, respectively
    Right Arrow key
    In the Event browser, slow down playback from 4x to 2x to 1x by pressing the key one time or two times, respectively
    This action works only if you’ve already sped up the playback.
    Left Arrow key
    When playing Event video, jump forward 3 seconds (6 seconds when playing at 2x speed or 12 seconds when playing at 4x speed)
    Shift-Down Arrow key
    When playing Event video, jump back 3 seconds (6 seconds when playing at 2x speed or 12 seconds when playing at 4x speed)
    Shift-Up Arrow key
    When playing Event video, jump forward to the next clip
    Down Arrow key
    When playing Event video, jump to the beginning of the current clip, or jump to the previous clip if the playhead is near the beginning of the current clip
    Up Arrow key
    Play the selected Event or project full screen
    Command-G
    Exit full-screen mode
    Escape (Esc) key
    Move the playhead by one frame
    Left Arrow key or Right Arrow key
    Freeze the playhead
    Hold down Control key
    When skimming, keep the cursor in the middle of the row
    Option-Shift
    Manage projects and events
    Create new project
    Command-N
    Move to Trash
    Moves the selected project (in the Project Library), Event (in the Event Library), or Event clip (in the Event browser) to the Trash. If only part of an Event clip is selected, the entire clip is moved to the Trash.
    Command-Delete key
    Open iMovie preferences
    Command-Comma (,)
    Page setup
    Command-Shift-P
    Print selected Event or project filmstrips
    Command-P
    Select and edit video
    Select an entire project or Event clip when a partial clip is selected, or select all project or Event clips when an entire clip is selected
    Command-A
    Select to playhead
    Expands or contracts the selection from the nearest selection border to the playhead.
    Shift-A
    Deselect all clips
    Command-Shift-A
    Add selected frames to project
    E
    Split a clip on both ends of a selection (longer than five frames), or at the playhead position if nothing is selected
    Command-Shift-S
    Cut selected frames
    Command-X
    Copy selected frames
    Command-C
    Paste selected frames
    Command-V
    Paste all adjustments
    Command-Shift-V
    Paste video adjustments
    Command-Option-I
    Paste audio adjustments
    Command-Option-A
    Paste crop adjustments
    Command-Option-R
    Paste cutaway, green-screen, or picture-in-picture adjustments
    Pastes adjustments, depending on which type of video is selected.
    Command-Option-U
    Paste video effect

Maybe you are looking for

  • How to put DVDs on to ipad mini

    I want to know how to put my daughter's Peppa Pig DVDs on to her ipad??

  • Explain Plan useability

    I like the explain plan functionality - it is good for doing spot checks on execution plans. Unfortunately, I cannot copy the plan once it is produced, so if I need to send someone a copy of the plan, I revert to producing the execution plan in TOAD.

  • Active workflows in the system

    Hi all, Is there any way I can find all the active workflow in the system at table level?? Kr Vithal

  • Workflow Short Dump

    Hi i am working on workflow to send mails based on some conditions. I am receiving Runtime Error i.e. "DBIF_RSQL_SQL_ERROR" and exeception is "CX_SY_OPEN_SQL_DB". kindly let me know wat can be done in thsi regard.

  • New-MigrationBatch -excludefolders fails claiming 'excludefolders' is not a parameter

    Hi. I have been migrating users with no issue for awhile now. I finally ran into my first issue where an account will not migrate. When I look at the report for this user, I see this: Regular Items: 921, 331.2 MB (347,243,378 bytes) Regular Deleted I