Please suggest the best approach

Hi ,
e have a requirement of integrating two webcenter/ADF 11.1.1.6 applications .Thease two applications are running on two different environments.
Please suggest us the best approach.
As per the documentation we have the options:
1) 2nd App consume as porrtlet in 1st APP
2) Using pagelets
3) Remote taskflows
Cons of the above approaches:
1) If we render as ADF portlet some of the features will not work like popus.
2) If we use pagelets then we have to call pagelets from Iframes,as per security reasons customer
ask us to not to go for this option
3) If we use remote taskflow we can't include in portion of the page as portlet
So we are in a confusion as which one to use.please suggest us best approach
Regards
Babu.

In addition to Note: 559518.1, please refer to the docs referenced in (Rapid Clone Documentation Resources, Release 11i and 12 [ID 799735.1]).
Thanks,
Hussein

Similar Messages

  • Please suggest the best book or materila to learn EP Developement

    Please suggest the best book for learning Enterprise Portal developement in SAP ?  Which one is good in between below.
    1. SAP® NetWeaver Portal Technology: The Complete Reference by Rabi Jay ( How is this book in EP ?)
    2. SAP Authorization System: Design and Implementation of Authorization concepts for SAP R/3 and SAP Enterprise Portals by IBM Business Consulting (sap press book).
    Regards
    Badari

    Hi,
    For Content Developments you can refer below links
    LINKS FOR BEGINNER:
    Beginning EP Development
    Oliver's favorite SDN link collection
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/387daf90-0201-0010-bb98-cb1a5545bf69
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/4b0c105e-0501-0010-bcb0-92478a4b2a17
    Overview of the Content Development Process
    Overview of the Content Development Process
    Java development methodologies (Part I)
    Java development methodologies (Part I)
    Java development methodologies (Part II)
    Java development methodologies (Part II)
    Setting up the NetWeaver development environment (Part II)
    Setting up the NetWeaver development environment (Part II)
    Installing and configuring the preview edition of EP
    Installing and configuring the preview edition of EP
    Top Weblogs of All Time [19 to 14]
    Top Weblogs of All Time [19 to 14]
    Enterprise Portal Implementation Forum
    Enterprise Portal Implementation Forum
    Beginning EP Development
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/76bd3b57743b09e10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/1d/40e93bac3c5a6de10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/50/da644160087d47e10000000a1550b0/frameset.htm
    Have a look at the following threads to have an introduction to portal:
    Hi
    What is EP ??
    For kick start in portal, the following Wiki link is enough:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/ep/introduction%2bto%2bportal
    You can now see the following threads which already have similar question discussed, you will get lots of links in these threads:
    Start with EP
    e-Books on EP
    Portal Development
    Portal 7.0 Documentation
    Beginner to EP
    Thanks
    Santosh

  • Suggest the Best Practice for Procurement of Commodities like crude, copper

    Dear Gurus,
    Please suggest the best practice for following business Process.
    My client is having the procurement need for a comodity whose prices are fluctuating. Say Crude Oil . The prices are changing every day. Now The client would like to pay to vendor on day of good receipt. But it may be possible that the price on GR day is much higher. How to control these kind of procurement. Presently I have activated the price variance through invoice posting but this is not working.
    Can you suggest best practice for  procurement of comodities.
    Thank you for your consistant support.
    Regards
    Vinod Kakade
    Edited by: vinodkakade on Jul 14, 2011 2:34 PM

    Hi Vinod,
    Would you know the price by the time the GR is to happen, in this case you can ask the vendor to send the confirmations, just prior to that with the correct price.
    Please refer this link
    Change in PO Price after goods receipts and goods issue
    though the thread is marked unanswered.
    Regards
    Shailesh

  • Please specify the best DR Solution

    Hi,
    We have Oracle Applications 11.5.10.2 running on HP-UX PARIC Server(11.11)
    and Database 9.2.0.7 running on HP-UX Itanium (11.23). On the same Database server one more 9.2.0.7 Database running and used for Banking Applciations.
    We have DR site, which is in another Location. Right now, there is no connection between Primary and DR Sites.
    DR Servers are exact replica of Primary Servers (same Hostname, IP Address , same database name, same unix accounts). We are manually moving the PROD Backups to DR Servers and restore there and startup the services for every week like that.
    Now, we want to implement better DR setup, which should be online. we have couple of questions below, can anybody please suggest the best solution.
    (1) Oracle tools: what is the needed effort to use oracle tools for this and what is the impact on our daily backup (Daily we have cold backup for both Database and Applications in Primary Site, and restoration plans?
    (2) Other software: are there any other software that will make this replication easier?

    Hi;
    (1) Oracle tools: what is the needed effort to use oracle tools for this and what is the impact on our daily backup (Daily we have cold backup for both Database and Applications in Primary Site, and restoration plans?If you are going to online which mean DR and Primer site can comminicate i belive you can follow:
    1. Dataguard
    2. Goldengate
    3. Streams
    Check those options.Please googling you can find many good article thatswhy i dont share here now. If you have doubt update issue.
    For us we prefer to use dataguard,goldengate
    (2) Other software: are there any other software that will make this replication easier?
    There are some tool exsist like riverblade which is using dif. algorithm to send packet from one to other location. We do not have yet but i know it from some of my friend company which makes they very happy
    Regard
    Helios

  • What is the best approach to handle multiple FK with single table.

    If two tables are joined with each other with more than one ways, for example
    MAIN table is (col1, col2,....coln, person_creator_id, person_modifier_id)
    PERSON table is (person_id, name, address,........ phone) etc
    At database level PERSON_CREATOR_FK and PERSON_MODIFIER_FK are defined.
    Objective is to create a report that shows
    col1, col2...coln, person creator name, person modifier name
    If above two objects are imported with FKs in a EUL and discoverer plus is used to create above report. On first inclusion of person name discoverer plus will ask you to pick the join (provided the checkbox to disable this feature is not checked). Once you pick 'person creator' join it will never allow you to pick person modifier name.
    One solution is two create a custom folder with query like
    select col1, col2,...coln,
    pc.name, pc.address,.... pc.phone
    pm.name, pm.address,.... pm.phone
    from main m,
    person pc,
    person pm
    where m.person_id_creator = pc.person_id
    and m.person_id_modifier = pm.person_id
    Second solution is to import the PERSON folder twice in EUL (optionally named one as perosn_creator and other as person_modifier) and manually define one join per table. i.e. join MAIN with PERSON_CREATOR on person_creator_fk and join MAIN with PERSON_MODIFIER table using person_modifier_fk.
    Now discoverer plus will let you drag Name from each person folder without needing to resolve multiple joins.
    Question is, what approach is better OR is there a better way?
    With solution 1 you will not be able to use functions on folder items.
    With solution 2 there is a EUL design overhead of including same object multiple times and then manually defining all join (or deleting unwanted joins), and this could be a problem when you have person_modifier and person_creator in nearly all tables. It could be more complicated if person table is further linked other tables and users want to see that information too. (for instance, if person address is stored in LOCATION table joined with location_id and user want to see both creator address and modifier address....now you will have to create multiple LOCATION folders).
    A third solution could be to register a function in discoverer that return person name when person_id is passed. This will work perfectly for above requirement but a down side is the report will run slower if they need filters on person names (then function will be used in where clause). Also, this solution is very specific to above scenario, it will not work if you want the report developer the freedom to pick any attribute from person table (lets say, person table contain 50 attributes then its not a good idea to register 50 functions).
    Any comments/suggestion will be appreciated.
    thanks

    Hi
    In a roundabout way you have really answered your own question :-)
    In my opinion, the best approach, although by all means not the only approach - see below) would be to have the object loaded as two folders with one join going to the first folder and the second join to the other folder. You would of course name the folders appropriately.
    Here's a workflow that I use all of the time and one that I teach when I'm giving Discoverer Administrator training. It might help you:
    1. Bring in the PERSON folder to begin with
    2. Make all necessary adjustments to bring it up to deployment standard. These adjustments would be: folder name (E.g PERSON_CREATOR), item names, item placement, default positions, default aggregation and so on.
    3. Create or assign the required lists of values
    4. Create any required calculations
    5. Create any required conditions
    6. Create the first join from this folder to MAIN.
    7. Click on the heading for the folder and press CTRL-C.
    8. Click on the heading for the business area and press CTRL-V. A second copy of the folder, complete with all of the adjustments you made earlier will be inserted into the business area.
    Note: joins are not copied, everything else is.
    9. Rename this folder to say PERSON_MODIFIED
    10. Rename the items as appropriate
    11. Add a join from this folder to MAIN - you're done
    Other ideas that I have used and work well would be to use a database view or create a complex folder. Either will work, In both cases you would need to join on some other column other than the ones you referred earlier.
    I hope this helps
    Best wishes
    Michael

  • What's the best approach for handeling about 1300 connections in Oracle.

    What's the best approach for handling about 1300 connections in Oracle 9i/10g through a Java application?
    1.Using separate schema s for various type users(We can store only relevant data with a particular schema.     Then No. of records per table can be reduced by replicating tables but we have to maintain all data with a another schema     Then we need update two schema s for a given session.Because we maintain separate scheama for a one user and another schema for all data and then there may be Updating problems)
    OR
    2. Using single schema for all users.
    Note: All users may access the same tables and there may be lot of records than previous case.
    What is the Best case.
    Please give Your valuable ideas

    It is a true but i want a solution from you all.I want you to tell me how to fix my friends car.

  • What is the best approach to converting LV7.1 tags to LV2012 shared variables in multiple VIs?

    What is the best approach to upgrading from LV7.1/DSC tags to LV2012/DSC shared variables, in multiple VIs running on multiple platforms? Our system is composed of  about 5 PCs running Windows 2000/LV7.1 Runtime, plus a PLC, and a main controller running XP/SP3/LV2012. About 3 of the PCs publish sensor information via tags across the LAN to the main controller. Only the main controller is currently being upgraded. Rudimentary questions:
    1. Will the other PCs running the 7.1 RTE (with tags) be able to communicate with the main controller running 2012 (shared variables)?
    2. Is it necessary to convert from tags to shared variables, or will the deprecated legacy tag VIs from LV7.1 work in LV2012?
    3. Will all the main controller VIs need to be incorporated into a project in order to use shared variables?
    4. Is the only way to do this is to find all tag items and replace them with shared variable items?
    Thanks in advance with any information and advice!
    lb
    Solved!
    Go to Solution.

    Hi lb,
    We're glad to hear you're upgrading, but because there was a fundamental change in architecture since version 7.1, there will likely be some portions that require a rewrite. 
    The RTE needs to match the version of DSC your using.  Also, the tag architecture used in 7.1 is not compatible with the shared variable approach used in 2012.  Please see the KnowledgeBase article Do I Need to Upgrade My DSC Runtime Version After Upgrading the LabVIEW DSC Module?
    You will also need to convert from tags to shared variables.  The change from tags to shared variables took place in the transition to LabVIEW 8.  The KnowledgeBase Migrating from LabVIEW DSC 7.1 to 8.0 gives the process for changing from tags to shared variables. 
    Hope this gets you headed in the right direction.  Let us know if you have more questions.
    Thanks,
    Dave C.
    Applications Engineer
    National Instruments

  • Logging the Userid ... what is the best approach?

    Hi guys,
    I have a hard time to decide on the best approach to audit user information.
    Consider the the usual information you use for auditing purposes. Normally you have the columns:
    created_on
    created_by
    updated_on
    updated_by
    In an Apex application I would record the value of :APP_USER in the columns created_by and updated_by.
    But what happens if the login name changes? Would you go on and update all relevant tables to update the now changed name?
    There could be auditing triggers involved which you would have to disable.
    On the other hand I have checked the tables of Oracle Applications. Auditing is important for SOX compliancy I believe. They reference the USER_ID (number), not the login name.
    But in many cases you also manipulate tables from within a sqlplus session and thus you don't have a value for APP_USER for which you could do a reverse lookup of the USER_ID. Thus I usually do my logging as nvl(v('APP_USER'), user).
    But then I will run into problems when the username changes.
    What is your take on this? Any suggestions?
    Regards,
    ~Dietmar.

    Hi Denes,
    technically you are right, they don't actually use referential integrity. But they store the value of FND_USER.USER_ID as created_by last_updated_by.
    If I was to record the user_id then I would use a foreign key to an existing local user table.
    This way I could always reference the user since a delete would not be possible.
    And if the name changes, well then create a new account and dissable the old one.Well, good point. But you would loose all references you might have created for this user (if applicable): user preferences, privileges, etc.
    I had an actual use case in a German bank a few years ago. They changed the naming convention for all User accounts in all systems. Thus only the login name changed but the user identity stayed the same.
    ~Dietmar.

  • Do u know the best approach with data....?

    I am considering the best approach for returning a resultset from a ejb to my jsp page but I dont know which approach is the best. You comment PLEASE. (As resultset cannot be serialized so returning it directly wont be considered).
    Approach A � Make a custom class having get/set variables to represent each column values in the resultset, and use the class in jsp. However, I find this tedious because whenever I add to the select statement, I have to add class variables too.
    Approach B � Manually manipulate data in resultset and put into a vector then return the vector to jsp
    Approach C � use rowsets instead and return the rowset to jsp.
    Many thanks u all...

    Hello,
    Approach A is not recommended - you would have to leave the resultset open and so leave the connection the the database open.
    Approach B is better
    Approach C - well RowSets are a new thing in 1.4 which I have not tried yet. They look useful, but is your app running on 1.4?

  • What is the best approach to setup intranet and internet sites in SharePoint 2013?

    I am planning to setup a internet and intranet website for one of our client.  What is the best approach to setup this kind of environment?
    Some of the users (registered users) from the internet should be able to access information in the intranet site.  I have created two web applications for intranet and internet.  Is it the right way to go forward?
    Thanks in advance! :)
    LM

    Hi Laemon,
    Creating two separate web applications, one for Internet site and the other for Intranet is the right thing you have done.
    1. To properly plan creation of your web application, site collection and website is of utmost important to ensure you build your site in a professional and most recommended way. Go through this article from Technet that would help you plan your site in
    SharePoint 2013.
    https://technet.microsoft.com/en-us/library/cc263267.aspx
    2. Planning and choosing the right authentication type is also a very important decision. I recommend you to go through the below article if you have not already gone through.
    Plan for user authentication methods in SharePoint 2013
    3. Plan for licensing for your SharePoint 2013 Internet Facing Website.
    Licensing Internet Sites Built on SharePoint 2013
    SharePoint 2013 licensing for Internet facing sites
    4. To grant access to registered users to Intranet site (as you mentioned in question), if you created both web applications in same farm (same domain) then that would be easy to grant access using Site Permission with Windows Authentication enabled for
    both web application. If both web applications are created on different domains then If there is a two-way trust in place, and the SharePoint servers have the necessary port access to the remote domain's Domain Controller, then it is automatic. If it is a
    one-way trust, then you need to follow these directions:
    http://technet.microsoft.com/en-us/library/cc263460(v=office.12).aspx
    If there is no domain trust in place, then you either need to create one, or look at alternative technologies,
    such as ADFS.
    Please remember to upvote if it helps you or
    click 'Mark as Answer' if the reply answers your query.

  • What is the best approach to generate control numbers from bpel?

    1. If we want to control ISA/GS/ST control numbers from bpel, what is the best approach to do that?
    2.  how to generate these control numbers and where to store them to get a sequence out of it?
    Thanks,
    Kathar

    Internally Oracle B2B uses DB sequence for generating the control numbers. It is the best approach but at the same time it is not very straight forward, specially in case of clustered database. So you may carefully implement same with BPEL.
    Hi Anuj,
    If we let B2B to generate control numbers in the clustered environment, is there any settings we have to do?
    So you may carefully implement same with BPEL. BTW, what is the use case behind this?
    We were thinking about using this to send out duplicate messages to two TPs but we decided to go with java callout as you suggested in another thread.
    Thanks!
    Kathar

  • What is the Best Approach for System Defined Fields and Default values

    Hi ,
    Please let me know that what can be the best approach for providing a Default value for the System defined fields when creating a User and How can we hide the System defined fields at the time of User creation

    You cannot provide default values for any attributes defined in the FormMetaData.xml file. You can only provide default values for fields defined in the User Defined Fields and supply a default value.
    You can using entity adapters to populate some of the values, but you must supply an Organization because there is an entity adapter that you cannot modify that verifies the organization name.
    -Kevin

  • What is the best approach to portalize a struts application to oracle porta

    Hey guys,
    what is the best approach to portalize a struts application to oracle portal... would it by created PDK Portlets or JSR 168 portlets... and is there any direction to do so... can some one please him this girl in need...

    HELLO!!! WELCOME BACK!! I THINK YOU SHOULD USE
    deploy....Hey Thanks.
    is there any network congestion OR any other problem that i can anticipate before i use "deploy" utility. I have heared of some problems(i couldn't remember them now ....because honestly, i couldn't understand them atall when a BEA consultant told me those...).
    so, any problem that may arise ....that i need to think about before deploying ~10 applications to like ~70-80 clusters ....all at a time.
    thanks again for your advise. iam learning to see the big picture of application deployment.
    -sangita

  • Can anybody please suggest the way i can get all the indexes on a cache

    Can anybody please suggest the way i can get all the indexes on a cache?

    Hi,
    If you want to just see what there is at the moment, the StorageManager mbean IndexInfo attribute shows the toString() representation of the extractor of each index.
    If you want to get it programmatically, you can get hold of it by sending an entry-processor to a key, then casting the entry to BinaryEntry, and calling BinaryEntry.getBackingMapContext().getIndexMap() to get the same Map<ValueExtractor,MapIndex> of indexes which the index aware filters get.
    Best regards,
    Rob

  • On my iCloud account I can see an alternate email ID which can be used to login to my account, this email ID does not belong to me so I need to delete it. Please advice the best possible way as it does. It show any option to delete that ID

    On my iCloud account I can see an alternate email ID which can be used to login to my account, this email ID does not belong to me so I need to delete it. Please advice the best possible way as it does. It show any option to delete that ID

    Do the alternate e-mail address ends with me.com or icloud.com?

Maybe you are looking for

  • Multiple region printing to PDF (including charts)

    Hi, Has anyone created PDFs using FOP or Cocoon to print multiple report regions from a page. One of the regions I wanted to print to PDF is a chart ! Or is BI Publisher the only option ? Thanks a lot A

  • Extra internal HD not showing up

    Hi all, My laCie d2 external drive packed up, and just before I was going to toss it in the trash, I took it out of the enclosure and put it in my G4 (1.25d). It works! ...but only if I disconnect 1 of my other internal drives. I have a 70g Seagate d

  • Black & White Printing

    How can I print in B&W from MacOS Preview.app (it's a .pdf file) and my color cartridges are empty. Thanks

  • Ant Trouble: Defining class file properly

    I'm new to the Java and Ant world and was wondering if someone would be kind enough to explain why my sample xml file cannot find the class file? The XML / class file relationship works well when both files are in the same directory. I then moved the

  • Dock stops magnifying and highlighting, it's same wth other links and icons

    I have noticed a couple of times that my dock starts acting weird. It stops magnifying and highlighting icons. When I click the desired icon, it magnifies it. It stays magnified when I move mouse away and until I click something else. Its darn annoyi