Implement FSG  in APPS 7.9.6

Hi
We are trying to implement FSG (Financial Statement Generator) in BI APPS 7.9.6
and we ran into problems. we have followed the configuration guied and ran full execution plan
and the process dose not bring our Hierarchies to the W_HIERARCHY_D table.
Dose any one succeeded to implement FSG in BI APPS 7.9.6 ?

Hi Luis,
Informatica is being used for the ETL. ODI will be an option when you move to Oracle BIA 11g (Fusion Application).
You should upgrade to the latest Oracle BIA (7.9.6.3) version for Oracle eBS. This prabably means that you have to move to Oracle BI 11g as well.
Check the documentation here; http://www.oracle.com/technetwork/middleware/bi-foundation/documentation/bi-apps-098545.html
Cheers,
Daan Bakboord
http://obibb.wordpress.com

Similar Messages

  • Implement as in Apps USER form

    Hi all,
    I am required to change the password like in oracle apps Sysadmin>user
    with same as username and password text items only.
    In password text item
    When -validate- item trigger I wrote
    PACKAGE BODY change_pwd IS
    first_entry varchar2(30);
    procedure Init_Password_Field is
    begin
    first_entry := NULL;
    -- Set required status of user_password field. Pwd is required
    -- if new record
    if (:system.record_status in ('NEW', 'INSERT')) then
    -- New record, required and enabled.
    set_item_property('GP_USERs.NEW_PWD',
                        REQUIRED, PROPERTY_ON);
    set_item_property('GP_USERs.NEW_PWD',
                        ENABLED, PROPERTY_ON);
    else
    -- Query record. Never required, enabled only if not
    -- not an externally managed user.
    set_item_property('GP_USERs.NEW_PWD',
    REQUIRED, PROPERTY_OFF);
    /*if (fnd_user_pkg.isPasswordChangeable(:user.user_name)) then
    App_Item_Property.set_property('USER.USER_PASSWORD',
    ENABLED, PROPERTY_ON);
    else
    App_Item_Property.set_property('USER.USER_PASSWORD',
    ENABLED, PROPERTY_OFF);
         end if;*/
    end if;
    end Init_Password_Field;
    Procedure change_password is
    pwdlen number;
    begin
    -- If nothing entered, do nothing
    if (:gp_users.new_pwd is NULL) then
         return;
    end if;
    -- Force re-entry first time password is entered
    if (first_entry is NULL) then
    -- Call custom package to do any custom password inspection.
    copy('', 'GLOBAL.USER_NAME');
    copy(:gp_users.new_pwd, 'GLOBAL.USER_PASSWORD');
    begin
    null;
    exception
    when form_trigger_failure then
    -- Some error raised. Clear password and fail validation.
    erase('GLOBAL.USER_NAME');
    erase('GLOBAL.USER_PASSWORD');
    :gp_users.new_pwd := '';
    when others then
    -- Some error raised. Clear password and fail validation.
    erase('GLOBAL.USER_NAME');
    erase('GLOBAL.USER_PASSWORD');
    :gp_users.new_pwd := '';
    raise form_trigger_failure;
    end;
    erase('GLOBAL.USER_NAME');
    erase('GLOBAL.USER_PASSWORD');
         Message('Re-enter Your Password to verify');
         first_entry := :gp_users.new_pwd;
         :gp_users.new_pwd := NULL;
    set_item_property('gp_users.new_pwd',
                   REQUIRED, PROPERTY_ON);
         raise Form_Trigger_Failure;
    end if;
    -- Second entry differs from first - error out
    if (first_entry != :gp_users.new_pwd) then
    Message('Please reenter correct password');
    Message(' ');
              :gp_users.new_pwd := NULL;
         Init_Password_Field;
    raise Form_Trigger_Failure;
    end if;
    -- Two entries match - encrypt new password
    --IF :system.record_status = 'CHANGED' THEN
    FORMS_DDL('ALTER USER ' ||:gp_users.username|| ' IDENTIFIED BY ' ||:gp_users.new_pwd);
    if (not Form_Success) then
         :gp_users.new_pwd := NULL;
    Init_Password_Field;
         raise Form_Trigger_Failure;
    end if;
    -- Clear entries and turn off required if valid pwd found
    :gp_users.new_pwd := NULL;
    set_item_property('gp_users.new_pwd',
                   REQUIRED, PROPERTY_OFF);
    -- Reset password_date field to null to force password
    -- expiration the next time user logs on.
    end;
    end;
    When I write this code user password is changed because of alter command with out Save.
    Requirement is
    Save new password when ever i saved.
    I implement forms_ddl inseveral ways ( key-commit and on-update) but password not altered.
    But when i implement forms_ddl like above it altered,but alter only when ever saved
    Thanks,
    Bhujendra

    Hi Guys!
    if anyone can help me with this problem, I would be really grateful.
    When I first used the "Disabled" Property, I saw that my data fields were being Nulled (that is, when I refresh the page, all the input-data disappears, and I am left with an EMPTY FORM)
    So, I tried to use the "ReadOnly" property.
    However, it did not work for me! Instead, I got the following Java Error : *"Couldn't find method setReadOnly(java.lang.String)..........NoSuchMethodException.............Select.setReadOnly....."*
    I know it should work, because other people have used it successfully. So, why is it not working for me??
    Is it because my IDM Version is 8.1 ?
    Please, help.
    Thanks

  • Implement JAAS in App Server Agnostic Way

    Is is possible to build a JAAS solution for authentication and authorization of
    a J2EE application without having to include WebLogic specific classes? The examples
    supplied in BEA's documentation make it look like I need to utilize WebLogic specific
    classes to handle authentication even. I am trying to build a security solution
    that will be valid on a variety of app servers, including WebLogic, and I do not
    want to have to rely on having seperate code for each app server.

    The vendor dependency in Weblogic is only in the way you plug your
    custom module into the server security itself, not in the JAAS
    authentication and authorization part.
    So as long as you deal with JAAS only classes in your login module(s)
    and policy the you should be able to plug it into any JAAS compliant app
    server (the SPPI interface does it for Weblogic and probably the other
    servers will have some other proprietary APIs to implement).
    That being said there is one bug that I've encountered in Weblogic so
    far and it is that the server system user has to be named "kernel
    identity" and your login module should be able to authenticate it if you
    replace completely the default security providers. But it's not a big
    issue as you'll probably need some bootstrapping user for your
    LoginModule anyway and you can just configure it to be "kernel identity"
    if you use Weblogic...
    HTH,
    Dejan
    William Rohrbach wrote:
    Is is possible to build a JAAS solution for authentication and authorization of
    a J2EE application without having to include WebLogic specific classes? The examples
    supplied in BEA's documentation make it look like I need to utilize WebLogic specific
    classes to handle authentication even. I am trying to build a security solution
    that will be valid on a variety of app servers, including WebLogic, and I do not
    want to have to rely on having seperate code for each app server.

  • Question about implementing a Flex app in Wlp 1.3.2

    Does anyone have an example of implementing a flex application in weblogic portal? I'm trying to figure out how one flex portlet (java 286) can trigger an event and have another java 286 portlet catch the event.
    thanks

    Yes, you have the snmpEngineTime / .1.3.6.1.6.3.10.2.1.3 option on IOS 12.0(3)T or later, as explained in this post:
    https://supportforums.cisco.com/message/573246#573246

  • Citrix Metaframe1.8 implementation with Oracle Apps 11i.

    We are considering implementing Citrix Metaframe 1.8 with our existing 11i implementation. As Oracle does not support Citrix as a platform to run Jinitiator, could anyone share their experience with a similar implementation, and maybe advice me on key issues/show stoppers faced.
    Any help would be appreciated.
    Thanks!
    Akshay

    This is an expected error -- Please see (Error When Trying To Start Discoverer (Addisctl.Sh) [ID 854976.1]) for details.
    So, you either need to upgrade Discoverer to 10g/11g as per these docs.
    Using Discoverer 10.1.2 with Oracle E-Business Suite 11i [ID 313418.1]
    Using Discoverer 11.1.1 with Oracle E-Business Suite Release 11i [ID 1073963.1]
    Or, exclude the discoverer script from the startup scripts if you do not use discoverer as per (After Cloning Discoverer Is Not Staring Automatically By Addisctl.Sh. [ID 371920.1]).
    Thanks,
    Hussein

  • Product Activation on Aperture 3, like on implemented on Adobe apps?

    I am using Aperture 3 Trial, and I decided to purchase the academic version of Aperture 3 (since my school bookstore sells the full version, not upgrade, academic license for $99)
    However, unlike other Apple softwares released recently, (where serial number is now located inside the actual disc itself, and not printed anywhere in the disc or the box), does Aperture 3 require me to enter the serial number to activate the software by "phoning home" to Apple server (which I have never seen Apple implement this type of product activation before)? If that's the case, will I be able to transfer my license to a new mac should I decided to purchase one?
    Also, does the Aperture 3 license give me the right to install on two macs (one on my main black MacBook, and on on my MacBook Air as a backup), provided that I don't run the software on two machines at the same time?

    Kento Ito wrote:
    I am using Aperture 3 Trial, and I decided to purchase the academic version of Aperture 3 (since my school bookstore sells the full version, not upgrade, academic license for $99)
    However, unlike other Apple softwares released recently, (where serial number is now located inside the actual disc itself, and not printed anywhere in the disc or the box), does Aperture 3 require me to enter the serial number to activate the software by "phoning home" to Apple server (which I have never seen Apple implement this type of product activation before)? If that's the case, will I be able to transfer my license to a new mac should I decided to purchase one?
    Also, does the Aperture 3 license give me the right to install on two macs (one on my main black MacBook, and on on my MacBook Air as a backup), provided that I don't run the software on two machines at the same time?
    No activation, registration is optional. You can transfer to new machines and install on 2 macs as long as you are not using both at the same time.
    Sincerely,
    K.J. Doyle

  • Flex mobile : Implement Android market app like Home screen

    What's the best way to implement a Android Market like homescreen. A scrollable list of images of different heights and widths that go beyond the screen height.
    Would it just be a series of hgroup and vgroup tags bound by a scroller or is there a better way to do it.

    I made a view like this once and a Scroller with HGroup/VGroup is how I did it.  This works great for a small number of items, but if you have many items you may want to consider a custom layout in a List using virtualization.

  • Iad Implementation in Iphone App

    Hello,
    I want to integrate the iad in the iphone apps.I have downloaded the sample code from developer reference library.It works fine in simulator, but it doesnot run in the device 4.1.Please help!!

    Can you go to the iAd forums and better describe what you mean when you say 'doesn't run'.
    https://devforums.apple.com/community/ios
    https://devforums.apple.com/community/ios/iadproduction

  • Scan IP confusion while implementing ORACLE apps R12 with 11gR2

    Hi All,
    We are planning to implement a R12 apps with 11.2.0.3.
    As i know that when we install oracle 11gR2.scan listener and scan vip got created in GRID_HOME. The scan listener comes with default port.
    As R12 by default comes with 11.1.0.7. As per oracle note ID-823587.1
    We need to follow the below steps.
    srvctl add listener -l listener_ebs -o <11gR2 ORACLE_HOME> -p <EBS Database port>
    srvctl setenv listener -l listener_ebs -T TNS_ADMIN= $TNS_ADMIN
    srvctl add scan_listener -l listener_scan -p 1521
    My question is Do i need to configure TNSNAMES.ora? Entry of tnsnames.ora contains scan-vip or virtual vip.
    What should be tha value of remote listener and local listener.
    Please help.
    Thanks and Regards

    My question is Do i need to configure TNSNAMES.ora? Entry of tnsnames.ora contains scan-vip or virtual vip.See "3.7.1 Steps to Perform On All Oracle RAC Nodes" in the same doc.
    What should be tha value of remote listener and local listener.See (Appendix D : Enabling/Disabling SCAN Listener Support in Autoconfig) in the same doc.
    Thanks,
    Hussein

  • Oracle R12 Implementation - Apps DBA Role

    Hi All,
    I have been asked to work on R12 Implementation project. I do not have prior experience on Implementation of Oracle Apps.
    I have done R12 upgrade and other general Apps DBA maintenace activities.
    Kindly let me know what would be the activities, roles and responsibilities of Apps DBA during Implementation. I want to get an idea about the activities involved in oralce Apps Implementation.
    Regards
    Sridhar M

    I have been asked to work on R12 Implementation project. I do not have prior experience on Implementation of Oracle Apps.
    I have done R12 upgrade and other general Apps DBA maintenace activities.
    Kindly let me know what would be the activities, roles and responsibilities of Apps DBA during Implementation. I want to get an idea about the activities involved in oralce Apps Implementation.https://forums.oracle.com/forums/search.jspa?threadID=&q=Apps+AND+DBA+AND+Tasks&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Apps+AND+DBA+AND+Activities&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Implementing bluetooth app

    Hi,
    I have a device that I want to be able to connect to my iPhone 4 using bluetooth. My device using the bluetooth profiles Dial-Up Network (DUN) and Serial Port Profile (SPP). And because of the bad support for bluetooth profiles in iPhone this ain't working. So I'm thinking of implementing an app that sets up those profiles and connects to my device.
    Anyone having experience of implementing bluetooth profiles in app:s for iPhone or just doing it with objective-c?
    Anyone knowing how hard this will be? I have implemented some small app:s for iPhone before and I have worked quite a lot with implementing bluetooth devices before, but never for iPhone or in objective-c.
    Any suggestion of material to read are also welcome!

    How do you know that most people want to just send a photo?
    I don't know it. But from what I have read on these forums, it seems to be the most commonly requested legitimate reason.
    Frequently someone posting here has taken a photo and wants to quickly send it to other people they're with and find they can't on their "advanced smartphone". I see far less requests for how to send music or videos.
    Obviously copyrighted material shouldn't be shared, so regardless of whether "teens and 20 somethings" want to do that, it's not a reason to allow it. But sending a photo you've taken should not be a problem, and I'm sure the iOS can tell the difference between a photo you've taken and a music, video or saved Safari file.
    Also since you can save images to your iPhone from Safari, those pictures you're trying to share could also be copyrighted.
    That's irrelevant. You can do the same on a computer just as easily, if not easier and there's no blocking of that activity.
    Since most phones have email or MMS, there really is no reason to use clunky bluetooth to share a picture.
    Both email & MMS cost money to use on many tariffs and use up network bandwidth. Bluetooth doesn't.
    To send via email costs the sender and the recipient. Bluetooth doesn't cost anyone.
    Some network providers impose limits on the size of pictures that can be sent/received by MMS or compress/scale them in transit, so the recipient may receive a poorer quality copy of what was sent. Bluetooth doesn't.
    Bluetooth is designed for short-range, small file transfers - sending photos is not clunky.
    Bluetooth doesn't require a network connection, so can be used anywhere (for instance, abroad when the user is avoiding roaming charges).

  • How should IT Departments approach the App Store?

    This question is in the capacity as an IT Administrator for a small/mid size company.  We have 4 Macs, 8 iPads, and 3 iPhones.  I have 1 Mac and 1 iPad at work that I use.  2 years ago we considered the options with how to support Apple ID accounts, iTunes, App Store, and the payment method(s) which need to be on-file. 
    Given our experience with accidental app and in-app purchases (according to the employees), the accounting department and the president decided after a conference call with Apple Support using Apple Care that rather than use corporate credit cards on file with corporate apple IDs, we would switch to a model that de-coupled the purchasing approval with installation approval.  The old method required us to review the monthly corporate card accounts, then chase down the people to make sure proper purchasing approval had been sought prior to app or in-app purchase.  There was no incentive for the employees seek prior approval even though one would expect professional adults to do so.  Currently the company notes that it would take on average 8 weeks for an employee to reimburse the company for a recreational purchase. 
    The replacement system currently in use now is for all Apple IDs to be personal accounts with personal credit cards.  Then employees are responsible for submitting an expense report and risk having the expense report request denied.  The thinking was that this would curtail the accidental app or in-app purchases as the employee would risk not being reimbursed for an unapproved purchase.  This system worked and accidental reimbursed purchases went down to zero for employees for whom this was a problem with corporate credit cards. 
    This is the model we use for iPads and iPhones.  Up until now, all Mac software purchases were shink-wrap purchased online from Apple or via an Apple VAR.  The push for the Mac to use the App Store changes this.
    MY QUESTION IS: if I buy the Mac OS X 10.7 Lion or 10.8 Mountain Lion with my personal Apple ID, can I install it on the other company Macs?  Will those users need to know my Apple ID password?  Or does the OS install without needing the Apple ID password?  What if a user needs me to install his or her OS on a company issued Mac, where he or she bought the OS under his or her Apple ID, can I install that OS without knowing his or her credentials?  Also can I install my copy of the OS on that company Mac and would future OS updates run without having to give that end user my own Apple ID Password?  Can I install the OS using my Apple ID then hand it off to him or her and let he or she run updates with his or her Apple ID?  Does it work that way?  We would rather not share passwords as each of our accounts has a personal credit card on file. 
    We would consider corporate Apple ID accounts if the following requirements can be implemented.  All app or in-app purchases should fire off an event which goes first to the employee’s direct manager then next to the company’s controller for approval.  If approved, then the app store or iTunes store should allow the end user to install the purchased item.  All company purchases should be kept under NET30 terms, then invoiced at the end of the month and paid all at once.  These are the requirements from our accounting department.  This is how all of our other vendors (IBM, Microsoft, Oracle, etc.) are paid. 
    The App Store seems to exist in some new virtual reality which our accounting department and legal/policy.compliance departments cannot comprehend.  I know IT Departments often get blamed for this, however, in our case that would just be shooting-the-messenger.   I am just trying to understand how all of this should work.  It would seem to me that this new consumer-cloud-model exists the way we have Apple IDs currently set up. The end-user interfaces with the App Store, then works directly with accounting to pay for the services.  It doesn't seem like IT needs to be involved anymore.  This is currently how we are attempting to approach this consumer cloud App Store model.  The upside is it let's IT focus on projects which directly require our unique expertise rather than play App-Store-middlemen with no value-add. 
    You thoughts?

    See also "Apple Support Communities > Mac App Store > Using Mac App Store > Discussions > purchase order" https://discussions.apple.com/message/15455935#15455935
    However, that cited solution won't work for us as the same Apple ID password would all for both purchases and installations.  We need to de-couple those 2 roles according to guidelines from our corporate office.  The decision making (purchasing) and adminstrative/administraton/installation roles need to be separate and discrete.  It is also similar to an enterprise model when developers write code in DEV environment,move it to a QA environment for testing, then a separate IT administrator (or Install Team) needs to copy the new code into the PROD environment. 

  • How to separate different views and parts of a single line of business(LOB) universal app for windows 8.1 with many users.

    Hello am an intermediate Windows Phone/Store Developer. Am currently in the process of implementing a LOB app that will have three different types users, an admin, a student, a teacher . Depending on how a user logs in i would like certain pages to be exposed
    to them and the rest to be hidden. The app will also store data temporally on a local db then sync regularly to an azure database(Can the recent entity framework 7 that supports store/phone apps allow code first databases or are there features still not fully
    accessible in WinRT apps)...This i believe can handle but also kindly point me out to existing implemented resources/examples i will appreciate very much.
    What am finding problematic is how to consume different app data stored by various users logged in for these different views. Will i need an asp web api is it really necessary cause i want to avoid it cause i have about three months to do it. I do not want
    to create three different apps and one ASP Web AP,  i want one single app and an api if possible, i know windows usually sandboxes apps hence app to app communication will be hard if not impossible. So my question is, is it possible to implement different
    user session management with a login (Windows Live ID) which i can abstract various parts of the app from them depending on the users login id in the app. E.g How can an admin logged in the same app as the student have access rights to certain pages in the
    app that a student will not see. How do i route different users to certain pages and can isolated storage store these persisting as a setting.
    How can i know which login id belongs to which of the three users? How do i then assign different access to different controls of the app with their id,provide custom views routes,access right,session management. I think i can do these without an ASP Web
    API is It wise? Building pages in the apps is easy but i want users to see different views of the app instead of one standard app depending on there login id, how can the NAVIGATION URI be used here. How can azure and features like active directory,azure mobile
    services. I know i have repeated the same things over and over and these might be complex for a free advise but as a windows dev these is my one stop shop. Any one with a view on how to approach these kindly show me the best directions. Thanks guys in advance.

    I suggest you have a look at this sample.
    https://code.msdn.microsoft.com/windowsapps/ListView-Interaction-ac044c3c. MainPage provides the framework to hold the content. At runtime, we create the Scenario collections and then bind to control. This approach can help you determine the type of users
    and provide some appropriate pages at runtime.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. Click HERE to participate
    the survey.

  • How to find out the names of front-end servers in Apps ?

    Hi,
    In the setup wherein we have mutiple front end servers (Apache running on all nodes, CM running on one of them, Forms server running on one/more of them etc ..) is there any way to know the node-names ?
    FND_NODES table lists only the CM node name
    FND_APPLICATION_SERVERS from 11.5.9 onwards doesnt have any info I guess
    What is the find this out
    Thanks

    "wherever the parameter is set to YES it means this is the node you are looking for "My question is
    I do not know the node names itself
    And thats what I am looking for
    We have very huge setup with mutiple instances and I was not part of the implementation team
    Each Apps instance has about 4 or 5 front ends. They are in the farm setup over the NAS
    I need to know the names of these 4 / 5 servers for each instance
    Apart from asking the senior / old-timer DBAs in the team or the documentation or asking sysadmins, is there any way from the 11i Apps metadata information, I can get this info
    FND_NODES in this farm type of setup just shows the name of the load balancer virtal server to which all these 4 or 5 servers point to
    But not the actual names of the servers

  • In App Purchase finished outside of app

    I am implementing an in app purchase subscription model.
    Let's say I have an iPhone 3 user which starts the whole purchase process from my application and then exits the application only to continue and fill his app store credentials outside of my app until he is done with the purchase.
    How can my app know that the transaction was made upon launch?
    Also in case I do get this info how can I tell it is not an old purchase for an old subscription period which has already expired?
    And last but not least in case the device supports multitasking and the purchase was finished while my app was in the background how will I get notified upon returning to the foreground?
    Thanks
    Roi

    Change your password.
    Contact your credit card company about reimbursement.

Maybe you are looking for

  • Error while installing SAP MMC

    Hello All, Iam trying to install SAP MMC where Windows userid/pwd  to be created is SAPServiceF03/abc123. In my company because of the password security policy I cant create a password abc123 for the windows OS user SAPServiceF03. The installer abort

  • My safari will not load in normal mode.  I can load in safe mode only.

    My safari will not load in normal mode.  i can only load in safe mode.

  • Staging Area - Sans Transformations?

    I am struggling to come up with a proper term for a database that will contain untransformed application data.  This would be an EL process what will pull application data from the source, and insert it into the "staging" area.  A subsequent job will

  • Sequence periodoic Jobs

    Hello All, I have 3 jobs thats needs to run one after the other. Job A, Job B and job C. When Job A is complete Job B needs to trigger and then when job B is done Job C. I have set the Jobs in SM36, First i have set Job A witha time and date and sche

  • How to put tabs on top?

    Hi i want tabs on top but i dont know how (see my screenshoot) http://i57.tinypic.com/10mst9t.png