Sei sulla pagina 1di 11

FNDLOAD AME Objects Page 1 of 11

APPS TO FUSION
.......contents copyright protected by FocusThread UK Ltd

Home Technical Articles Training Articles Receive Email for New Articles

Contributors Forum Oracle Apps Chat My Book

We are glad to announce the launch of Forum for Customizations and Extensions. Click here to visit http://apps2fusion.com/forums
Our OA Framework, BPEL Development & Apps DBA Trainings from USD 299 only
[on weekends] . Click here for details.
Also see here fully verifiable feedbacks/testimonials

RELATED ITEMS FNDLOAD AME Objects


Restart or Bounce Monday, 06 July 2009 23:57 Anil Passi E-mail
| Print |
Apache in Oracle
PDF
Apps 11i
Oracle FNDLOAD
Script Examples We have in the past articles seen various examples of FNDLOAD, for both AOL
objects and web ADI. In this article, you will see how to move AME Definitions from
XMLImporter in
one instance to another. The confusing thing about AME FNDLOAD is that these
Oracle Applications
scripts are available in two locations, which are
Framework
$AME_TOP/patch/115/import
iProcurement
$PER_TOP/patch/115/import
11.5.10 ReBuild It is recommended to use the LCT files in $AME_TOP where possible.
Charge Account
In this article, you will learn to download and upload the following AME
Install tools for

http://www.apps2fusion.com/apps/apps/414-fndload-ame 11/23/2009
FNDLOAD AME Objects Page 2 of 11

Components
Oracle Apps
1. AME Conditions
Development
2. AME Groups
FNDLOAD for 3. AME action type usages
Oracle Web ADI 4. AME Rules
Extend VO in OA
Where are the LCT Configuration files for AME
Framwork
These are in $AME_TOP/patch/115/import
OA Framework
$ ls –lx
Tutorials Training
amesaagc.lct amesaatc.lct amesactu.lct amesacus.lct
OA Framework amesappg.lct amesappo.lct amesapty.lct amescond.lct
Integrate OA amesconk.lct amescvar.lct amesicls.lct amesiclu.lct
Framework with amesmatr.lct amesmatt.lct amespdan.lct amesrule.lct
Web Service amesrulk.lct US
D2K to OA
Framework
Transition I want to download AME Conditions. How can I do that.
OA Framework For downloading and uploading custom AME Conditions, you need to use LCT file
amesconk.lct. Please note that Oracle also delivers another LCT file named
Extending Controller
amescond.lct. However amescond.lct works only for the standard/seeded AME
- Steps
conditions. In order to download custom AME Conditions, you must use
OA Framework
amesconk.lct
Extension of
Application Module
OA Framework
What is the information required to download AME Conditions.
Extension of AM - In order to download any object that is associated with a given AME Transaction
Steps - How To type, you will need the Application Short Name and the AME Transaction Type
OA Framework with short name. Both of these can be found from AME Configuration screens. However
Captcha Webservice for downloading AME Conditions, you need to know something known as AME
OA Framework FAQ Condition Key. All these details can be found by running the SQL Statement as

-Extending View shown below


select FA.APPLICATION_SHORT_NAME,
Objects
ACA.TRANSACTION_TYPE_ID,
OA Framework page
ACON.CONDITION_KEY,
on web
ACON.CONDITION_ID,
OA Framework ACON.CONDITION_TYPE,
Table based Screen AATT.NAME,
OA Framework nvl(ACON.PARAMETER_ONE, null),
Table Based Scree nvl(ACON.PARAMETER_TWO, null),
Non Programming nvl(ACON.PARAMETER_THREE, null),
Steps nvl(ACON.INCLUDE_UPPER_LIMIT, null),
nvl(ACON.INCLUDE_LOWER_LIMIT, null),
OA Framework
to_char(ACON.LAST_UPDATE_DATE, 'YYYY/MM/DD
Controller
HH24:MI:SS'),
ViewObject for
substrb(FND_LOAD_UTIL.OWNER_NAME
Table Based Screen (ACON.LAST_UPDATED_BY), 1, 100) OWNER
PLSQL Entity based from AME_ATTRIBUTE_USAGES AAU,
OA Framework - AME_ATTRIBUTES AATT,
OAPlsqlEntityImpl AME_CALLING_APPS ACA,

http://www.apps2fusion.com/apps/apps/414-fndload-ame 11/23/2009
FNDLOAD AME Objects Page 3 of 11

AME_CONDITIONS ACON,
MDS in OA
AME_STRING_VALUES ASV,
Framework -What FND_APPLICATION_VL FA
exactly it is? where /*:APPLICATION_SHORT_NAME is not null
OA Framework and :TRANSACTION_TYPE_ID is not null
Entity Objects - and FA.APPLICATION_SHORT_NAME
Thinking from D2k like :APPLICATION_SHORT_NAME
mindset and */ACON.CONDITION_ID = ASV.CONDITION_ID(+)
and FA.APPLICATION_ID = ACA.FND_APPLICATION_ID
SPEL in OA
/* and ((:TRANSACTION_TYPE_ID = 'NULL' and
Framework - With
ACA.TRANSACTION_TYPE_ID is null) or
Audio Visual Demo
ACA.TRANSACTION_TYPE_ID
Install OA
like :TRANSACTION_TYPE_ID)*/
Framework and ACON.ATTRIBUTE_ID = AATT.ATTRIBUTE_ID
jDeveloper RUP4 and AAU.APPLICATION_ID = ACA.APPLICATION_ID
from Scratch and AAU.ATTRIBUTE_ID = AATT.ATTRIBUTE_ID
OA Framework /* and (:ATTRIBUTE_NAME is null or
Screen Extension by (:ATTRIBUTE_NAME is not null and AATT.NAME
Embedding a like :ATTRIBUTE_NAME))
*//* and (:CONDITION_KEY is null or (:CONDITION_KEY
Custom Page
is not null and
Controller Extension
ACON.CONDITION_KEY like :CONDITION_KEY))
in OA Framework is
*/ and ACON.CONDITION_TYPE in ('pre', 'auth')
safe or unsafe ? and AATT.NAME not in
PPR in OA ('ALLOW_DELETING_RULE_GENERATED_APPROVERS',
Framework - What is 'ALLOW_REQUESTOR_APPROVAL',
Partial Page 'AT_LEAST_ONE_RULE_MUST_APPLY',
Rendering? 'EFFECTIVE_RULE_DATE',
OA Framework 'EVALUATE_PRIORITIES_PER_ITEM',
'USE_RESTRICTIVE_ITEM_EVALUATION')
Tutorial 01 Script
and sysdate between AAU.START_DATE and
OA Framework
nvl(AAU.END_DATE - (1 / 86400), sysdate)
Tutorial 01
and sysdate between AATT.START_DATE and
OA Framework nvl(AATT.END_DATE - (1 / 86400), sysdate)
Tutorials 02 and sysdate between ACA.START_DATE and
OA Framework nvl(ACA.END_DATE - (1 / 86400), sysdate)
Training Tutorial 03 and sysdate between ACON.START_DATE and
OA Framework nvl(ACON.END_DATE - (1 / 86400), sysdate)
Training Tutorials 04 order by ACON.creation_date desc
Deployment of the
--Note this SQL will return the most recently created AME Conditions on top
OA Framework --Therefore you can find the condition key
Tutorials
Call OA Framework
Page from Oracle How can I download the AME Condition?
Forms passing After knowing the Application Short Name, Transaction Type Short Name, and
Parameters Condition Key, you can then run the FNDLOAD command for downloading the
Create LOV based AME Condition as shown below, one single line
field using

http://www.apps2fusion.com/apps/apps/414-fndload-ame 11/23/2009
FNDLOAD AME Objects Page 4 of 11

Personalization in FNDLOAD apps/appsPassword 0 Y DOWNLOAD


OA Framework $AME_TOP/patch/115/import/amesconk.lct
Master Detail XX_FOCUSTHREAD_HR_AME_COND.ldt AME_CONDITIONS

Screen In OA APPLICATION_SHORT_NAME='PER' TRANSACTION_TYPE_ID='SSHRMS'


CONDITION_KEY='143353006:10371'
Framework Part-I
Debugging OA Of course the values for PER, SSHMS and ‘143353006:10371’ are derived from
Framework - 7 the SQL statement shown as above.
Different Techniques
Extend OA
Framework in R12 How can I upload the AME Condition?
OA Framework R12 In order to upload this AME Condition, run the command as shown below
Extension Example FNDLOAD apps/appsPassword 0 Y UPLOAD

Brief History of OA $AME_TOP/patch/115/import/amesconk.lct


XX_FOCUSTHREAD_HR_AME_COND.ldt
Framework and
Future
FNDLOAD - A dive
How can I download and upload AME Approval Groups?
into basics
For migrating AME Approval Groups, you will use LCT Configuration file named
OA Framework
amesappg.lct. In order to use this LCT file in FNDLOAD command, you must find
Extensions out the name of the approval group. Use the SQL as shown below to find the AME
To Extend- First Run Approval Group Name
Standard OA
select apg.name,
Framework pages
nvl(apgtl.user_approval_group_name, apg.name),
from jDeveloper
nvl(apgtl.description, apg.description),
Workflow Different
replace(apg.query_string, fnd_global.local_chr
Roles, Types of (13), null),
notifications, Events apg.is_static,
and Workflows Best to_char(apg.last_update_date, 'YYYY/MM/DD
Practices HH24:MI:SS'),
Add Submit Button substrb(FND_LOAD_UTIL.OWNER_NAME
Using OA (apg.LAST_UPDATED_BY), 1, 100) OWNER
from ame_approval_groups apg,
Framework
(select approval_group_id,
Extension
user_approval_group_name, description
Sample Code - Add
from ame_approval_groups_tl
Submit Button Using where language = userenv('LANG')) apgtl
OA Framework where sysdate between apg.start_date and
Extension nvl(apg.end_date - (1 / 86400), sysdate)
Move OA and apg.is_static = 'N'
Framework and apg.approval_group_id = apgtl.approval_group_id
personalizations (+)
from one /* and (:APPROVAL_GROUP_NAME is null or
(:APPROVAL_GROUP_NAME is not null and
environment to
apg.name like :APPROVAL_GROUP_NAME))*/
another
ORDER BY apg.CREATION_DATE DESC
Mobile Supply Chain
Application

http://www.apps2fusion.com/apps/apps/414-fndload-ame 11/23/2009
FNDLOAD AME Objects Page 5 of 11

Framework -
Introduction
To download the Approval group, use the command that is similar to as
Hello World Mobile
shown below
Supply Chain
FNDLOAD apps/appsPassword 0 Y DOWNLOAD
Application $AME_TOP/patch/115/import/amesappg.lct
Framework XX_FOCUSTHREAD_HR_APP_GRP.ldt AME_APPROVAL_GROUPS
Testing OAF APPROVAL_GROUP_NAME='XX_FT_3RD_LEVEL_APPROVER'
Extensions from
jDeveloper -Things
to keep in mind In order to upload the Approval Group in new environment, use the command
Add as shown below
Picklist/Dropdown FNDLOAD apps/appsPassword 0 Y UPLOAD

list field to OAF $AME_TOP/patch/115/import/amesappg.lct


XX_FOCUSTHREAD_HR_APP_GRP.ldt
Screen using
extension/Personalization
OA Framework
To download the AME Rule, use amesrulk.lct
Interview Questions
In order to build the download command for AME Rules, you will require the
Defaults in OA
following information
Framework - APPLICATION_SHORT_NAME
Concepts and TRANSACTION_TYPE_ID
practical approach RULE_KEY
Personalization link All these can be derived by running the SQL Statement as shown below
does not appear --ame rules sql
despite setting select ARUL.RULE_KEY,
ARUL.RULE_ID,
profile
AAT.NAME,
User Level
AA.PARAMETER,
Personalizations-
to_char(ARUL.RULE_TYPE),
Folders in OA nvl(ARULTL.DESCRIPTION, ARUL.DESCRIPTION),
Framework AIC.NAME,
Running OA to_char(ARUL.LAST_UPDATE_DATE, 'YYYY/MM/DD
Framework Page HH24:MI:SS'),
from jDeveloper - substrb(FND_LOAD_UTIL.OWNER_NAME
Audio Video Demo (ARUL.LAST_UPDATED_BY), 1, 100) OWNER
Shared Folders in
from AME_RULE_USAGES ARU,
AME_ACTIONS AA,
OA Framework
AME_ACTION_TYPES AAT,
Translating
AME_ACTION_USAGES AAU,
Personalizations
AME_ITEM_CLASSES AIC,
stored in MDS AME_RULES ARUL,
Enabling/disabling AME_CALLING_APPS ACA,
concurrent program FND_APPLICATION_VL FA,
parameters (select RULE_ID, DESCRIPTION
Adding Columns to from AME_RULES_TL
Advanced table in where LANGUAGE = userenv('LANG')) ARULTL
where /*:APPLICATION_SHORT_NAME is not null
OA Framework

http://www.apps2fusion.com/apps/apps/414-fndload-ame 11/23/2009
FNDLOAD AME Objects Page 6 of 11

and :TRANSACTION_TYPE_ID is not null


Programatically By
and */
Extension /* FA.APPLICATION_SHORT_NAME
CLAF- Custom Skin like :APPLICATION_SHORT_NAME
- Concepts for and */
Custom Look and FA.APPLICATION_ID = ACA.FND_APPLICATION_ID
Feel in Oracle Self and ARUL.RULE_ID = ARULTL.RULE_ID(+)
Service /* and ((:TRANSACTION_TYPE_ID = 'NULL'
CLAF Skin- A step
and ACA.TRANSACTION_TYPE_ID is null)
or ACA.TRANSACTION_TYPE_ID
by step demo to
like :TRANSACTION_TYPE_ID)
create new Custom
*/
Look and Feel Skin and ACA.APPLICATION_ID = ARU.ITEM_ID
Integrating XML and ARU.RULE_ID = ARUL.RULE_ID
Publisher and OA and AAU.RULE_ID = ARUL.RULE_ID
Framework and AAU.ACTION_ID = AA.ACTION_ID
Zip multiple files and AA.ACTION_TYPE_ID = AAT.ACTION_TYPE_ID
from a blob columns and AAU.ACTION_ID = (select ACTION_ID
into another blob
from AME_ACTION_USAGES AU1
where AU1.RULE_ID = ARUL.RULE_ID
column in table
and sysdate between AU1.START_DATE
Mobile Supply Chain
and
Application
nvl(AU1.END_DATE - (1 /
Framework 86400), sysdate)
AME-Approval and rownum < 2)
Management Engine and ARUL.ITEM_CLASS_ID = AIC.ITEM_CLASS_ID
BI Publisher /* and (:RULE_KEY is null
Document Viewer or (:RULE_KEY is not null
Common Region- and :RULE_KEY = ARUL.RULE_KEY))
Embeded Report
*/
and ARUL.RULE_TYPE in (1, 2, 5, 6, 7)
Output in OA
and sysdate between ARU.START_DATE and
Framework Page
nvl(ARU.END_DATE - (1 / 86400), sysdate)
Moving XML/BI and sysdate between ARUL.START_DATE and
Publisher nvl(ARUL.END_DATE - (1 / 86400), sysdate)
Components and sysdate between ACA.START_DATE and
Between Instances nvl(ACA.END_DATE - (1 / 86400), sysdate)
Embed HTML into and sysdate between AAU.START_DATE and
OA Framework nvl(AAU.END_DATE - (1 / 86400), sysdate)
Page- URL Include
and sysdate between AA.START_DATE and nvl(AA.END_DATE -
(1 / 86400), sysdate)
and other options
and sysdate between AAT.START_DATE and
OA Framework -
nvl(AAT.END_DATE - (1 / 86400), sysdate)
Develop Page that
and sysdate between AIC.START_DATE and
does not require nvl(AIC.END_DATE - (1 / 86400), sysdate)
login - Using and AA.ACTION_ID in
GUEST (select ACT.ACTION_ID
Hide or change from AME_ACTIONS ACT, AME_ACTION_TYPES ACTY,
Copyright and AME_APPROVAL_GROUPS AAG

http://www.apps2fusion.com/apps/apps/414-fndload-ame 11/23/2009
FNDLOAD AME Objects Page 7 of 11

where to_char(AAG.APPROVAL_GROUP_ID) = ACT.PARAMETER


Privacy Statement in
and ACT.ACTION_TYPE_ID = ACTY.ACTION_TYPE_ID
OA Framework and ACTY.NAME in ('pre-chain-of-authority
Key Flexfield in OA approvals',
Framework 'post-chain-of-authority
Useful list of scripts approvals',
for OA Framework 'approval-group chain of
OA Framework authority')
and AAG.IS_STATIC = 'N'
Master Detail
and sysdate between ACTY.START_DATE and
Region - Mandatory
nvl(ACTY.END_DATE - (1 / 86400), sysdate)
Steps
and sysdate between ACT.START_DATE and
apps2fusion forum nvl(ACT.END_DATE - (1 / 86400), sysdate)
Setting up Oracle and sysdate between AAG.START_DATE and
Application Server nvl(AAG.END_DATE - (1 / 86400), sysdate)
for Custom OAF UNION
Deployment select ACT.ACTION_ID
Extend View Object from AME_ACTIONS ACT, AME_ACTION_TYPES ACTY
to Add new Field In
where ACT.ACTION_TYPE_ID = ACTY.ACTION_TYPE_ID
and ACTY.NAME not in ('pre-chain-of-authority
OA Framework
approvals',
Executing SQL
'post-chain-of-authority approvals',
Queries from
'approval-group chain of authority')
Extended Controller and sysdate between ACT.START_DATE and
Personalization in nvl(ACT.END_DATE - (1 / 86400), sysdate)
OAF To Export Data and sysdate between ACTY.START_DATE and
Into Excel nvl(ACTY.END_DATE - (1 / 86400), sysdate))
Spreadsheet order by ARU.last_update_date desc
Integration testing of
Part 1-8 in SSHR
AME - Part 9 Once you know the RULE_KEY, then AME Rule can be downloaded by
Importing BC4J running the FNDLOAD command as shown below
FNDLOAD apps/appsPassword 0 Y DOWNLOAD
Substitutions in R12
$AME_TOP/patch/115/import/amesrulk.lct
Exporting detail
XXTHR_FOCUSTHREADAME_RULE.ldt AME_RULES
search results (as
APPLICATION_SHORT_NAME='PER' TRANSACTION_TYPE_ID='SSHRMS'
CSV) using OAF
RULE_KEY='143353006:10184'
and XML Publisher
SPEL in
Personalization - OA In order to upload the AME Rule in another instance, use the SQL as shown
Framework below
Integrating OAF FNDLOAD apps/appsPassword 0 Y UPLOAD
Notifications with $AME_TOP/patch/115/import/amesrulk.lct
Oracle Workflow XXTHR_FOCUSTHREADAME_RULE.ldt
AME SSHR - Part 1
- What is AME
AME SSHR - Part 2 To download AME Action Type Usages, you will use amesacus.lct

- How AME relates The list of parameters for downloading the AME Action Type Usages is the same

http://www.apps2fusion.com/apps/apps/414-fndload-ame 11/23/2009
FNDLOAD AME Objects Page 8 of 11

as those for AME Rules.


to Self Service HR
For example, the FNDLOAD command for downloading the Action Type Usages in
AME SSHR - Part 3
AME will be
- RBAC in AME FNDLOAD apps/appsPassword 0 Y DOWNLOAD
Nested Application $AME_TOP/patch/115/import/amesacus.lct XXTHR_FOCUSTHREAD_AUSG.ldt
Modules in OA AME_ACTION_USAGES APPLICATION_SHORT_NAME='PER'
Framework TRANSACTION_TYPE_ID='SSHRMS' RULE_KEY='143353006:10184'
How to extend root
Likewise, to upload the AME Action Type usage in another eBusiness Suite
application module
instance, use a command similar to as shown below
using nested FNDLOAD apps/appsPassword 0 Y UPLOAD
application module $AME_TOP/patch/115/import/amesacus.lct XXTHR_FOCUSTHREAD_AUSG.ldt
Asynchronous BPEL
Process Tutorial
OAF Screen in Self In order to find the parameters for AME Action Type Usages, use SQL below
Service HRMS - select ARUL.RULE_KEY,
Without AAT.NAME,
Programming - Part
AAC.PARAMETER,
AAC.PARAMETER_TWO,
1
AAU.LAST_UPDATE_DATE
OAF Screen in Self
from AME_CALLING_APPS ACA,
Service HRMS -
AME_RULES ARUL,
Without AME_RULE_USAGES ARU,
Programming - Part AME_ACTION_TYPES AAT,
2 AME_ACTIONS AAC,
Self Service HRMS AME_ACTION_USAGES AAU,
Workflow Explained FND_APPLICATION_VL FA
- Part 4 where /*:APPLICATION_SHORT_NAME is not null
OA Framework
and :TRANSACTION_TYPE_ID is not null
and */ /*FA.APPLICATION_SHORT_NAME
Screen in SSHR -
like :APPLICATION_SHORT_NAME
HRSSA Workflow -
and */
Part 3 FA.APPLICATION_ID = ACA.FND_APPLICATION_ID
Self Service HRMS /* and ((:TRANSACTION_TYPE_ID = 'NULL'
and AME Part 5 - and ACA.TRANSACTION_TYPE_ID is null)
Understanding or ACA.TRANSACTION_TYPE_ID
HR_API_TRANSACTIONS like :TRANSACTION_TYPE_ID)
Self Service HRMS - */
Design and Unit test
and ACA.APPLICATION_ID = ARU.ITEM_ID
and ARUL.RULE_ID = ARU.RULE_ID
AME - Part 6
and AAC.ACTION_TYPE_ID = AAT.ACTION_TYPE_ID
Creating the AME
and AAU.RULE_ID = ARUL.RULE_ID
Rule in Self Service
and AAU.ACTION_ID = AAC.ACTION_ID
HRMS - Part 7 /* and (:RULE_KEY is null
Test workbench in or (:RULE_KEY is not null
AME - Testing and :RULE_KEY = ARUL.RULE_KEY))
SSHR AME - Part 8 */
and ARUL.RULE_TYPE in (1, 2, 7)
and AAT.NAME not in ('approval-group chain of

http://www.apps2fusion.com/apps/apps/414-fndload-ame 11/23/2009
FNDLOAD AME Objects Page 9 of 11

authority')
SEARCH and sysdate between ACA.START_DATE and
APPS2FUSION nvl(ACA.END_DATE - (1 / 86400), sysdate)
SEARCH and sysdate between AAT.START_DATE and
nvl(AAT.END_DATE - (1 / 86400), sysdate)
and sysdate between AAU.START_DATE and
nvl(AAU.END_DATE - (1 / 86400), sysdate)
and sysdate between AAC.START_DATE and
nvl(AAC.END_DATE - (1 / 86400), sysdate)
and sysdate between ARUL.START_DATE and
nvl(ARUL.END_DATE - (1 / 86400), sysdate)
and sysdate between ARU.START_DATE and
nvl(ARU.END_DATE - (1 / 86400), sysdate)
UNION
select ARUL.RULE_KEY, AAT.NAME, AAG.NAME, null,
AAU.LAST_UPDATE_DATE
from AME_CALLING_APPS ACA,
AME_RULES ARUL,
AME_RULE_USAGES ARU,
AME_ACTION_TYPES AAT,
AME_ACTIONS AAC,
AME_ACTION_USAGES AAU,
AME_APPROVAL_GROUPS AAG,
FND_APPLICATION_VL FA
where /*:APPLICATION_SHORT_NAME is not null
and :TRANSACTION_TYPE_ID is not null
and */ /*FA.APPLICATION_SHORT_NAME
like :APPLICATION_SHORT_NAME
and */
FA.APPLICATION_ID = ACA.FND_APPLICATION_ID
/* and ((:TRANSACTION_TYPE_ID = 'NULL'
and ACA.TRANSACTION_TYPE_ID is null)
or ACA.TRANSACTION_TYPE_ID
like :TRANSACTION_TYPE_ID)
*/
and ACA.APPLICATION_ID = ARU.ITEM_ID
and ARUL.RULE_ID = ARU.RULE_ID
and AAC.ACTION_TYPE_ID = AAT.ACTION_TYPE_ID
and AAU.RULE_ID = ARUL.RULE_ID
and AAU.ACTION_ID = AAC.ACTION_ID
/* and (:RULE_KEY is null
or (:RULE_KEY is not null
and :RULE_KEY = ARUL.RULE_KEY))
*/
and ARUL.RULE_TYPE in (1, 2, 5, 6)
and AAT.NAME in
('pre-chain-of-authority approvals', 'post-chain-of-
authority approvals',
'approval-group chain of authority')

http://www.apps2fusion.com/apps/apps/414-fndload-ame 11/23/2009
FNDLOAD AME Objects Page 10 of 11

and AAG.IS_STATIC = 'N'


and AAC.PARAMETER = to_char(AAG.APPROVAL_GROUP_ID)
and sysdate between AAG.START_DATE and
nvl(AAG.END_DATE - (1 / 86400), sysdate)
and sysdate between ACA.START_DATE and
nvl(ACA.END_DATE - (1 / 86400), sysdate)
and sysdate between AAT.START_DATE and
nvl(AAT.END_DATE - (1 / 86400), sysdate)
and sysdate between AAU.START_DATE and
nvl(AAU.END_DATE - (1 / 86400), sysdate)
and sysdate between AAC.START_DATE and
nvl(AAC.END_DATE - (1 / 86400), sysdate)
and sysdate between ARUL.START_DATE and
nvl(ARUL.END_DATE - (1 / 86400), sysdate)
and sysdate between ARU.START_DATE and
nvl(ARU.END_DATE - (1 / 86400), sysdate)
and sysdate between AAC.START_DATE and
nvl(AAC.END_DATE - (1 / 86400), sysdate)
and sysdate between ARUL.START_DATE and
nvl(ARUL.END_DATE - (1 / 86400), sysdate)
and sysdate between ARU.START_DATE and
nvl(ARU.END_DATE - (1 / 86400), sysdate)
order by 5 desc

Hits: 1126 Email This Bookmark Set as favorite

Comments (2)
Subscribe to this comment's feed

Is it possible to use fndload for ame transaction


written by Kamelia Ivanova , November 18, 2009
Hi, very interesting article. I just want to ask is it possible to use fndload for
AME Transaction and how can I move it to other evirement? Thanks in
advance.
Votes: +0 vote up vote down report abuse

...
written by Anil Passi- , November 18, 2009
Yes certainly, I will write up an article that shows how to dump the full AME
Trx type setup and apply to next environment

Votes: +0 vote up vote down report abuse

Write comment

http://www.apps2fusion.com/apps/apps/414-fndload-ame 11/23/2009
FNDLOAD AME Objects Page 11 of 11

Name

Email

Title

Comment

smaller | bigger

Subscribe via email (Registered users only)

Write the displayed characters

Add Comment

< Prev Next >

http://www.apps2fusion.com/apps/apps/414-fndload-ame 11/23/2009

Potrebbero piacerti anche