netui-template integration with frames

Greetings,
Is there any integration between <netui-template and HTML frames ? For example, I need to define several frames in all the JSPs of a webapp. I'm using a template which declares something like:
<framest colums="25%,75%>
<frame src="leftTemplate.jsp" name="left"/>
<frame src="rightTemplate.jsp" name="right"/>
</frameset>
where leftTemplate.jsp and rightTemplate.jsp are templates. This raises an exception saying that there is no template context due to the fact that templates are used directly, which is right.
I tried to use <netui-template:section instead of frames but the target option of <netui-html don't seem to be integrated with sections. For example, I need to click an anchor in a section and produce a visual feed-back in another one. If I use the target option of the <netui:anchor to specify the second section name, it doesn't work. If the name specified by the target option of the <netui:anchor is a frame name, then it works. So I need either to be able to use templates in conjunction with frames or to have target-aware sections.
Any suggestion would be higly apreciated.
Many thanks in advance.
Nicolas

Hello
Which URL are you using in your Communication Channels? Make sure you use the appropriate URL as listed in note 1953125.
Also, make sure proper credentials are stored in the IMG.
Hope this helps.
Sridhar

Similar Messages

  • RoboHelp x5.0.2 integration with Frame 8.0

    Our company is looking to rid itself of Word (well, we tech
    writers would like to get rid of Word and are looking to build a
    case for making a switch to Frame) . We are also using RoboHelp
    x5.0.2 - will this pose a problem for us?
    This forum seems like an excellent place to start! Any words
    of wisdom out there?

    You will need the Technical Communication Suite (special
    version of RoboHelp 7) for single sourcing workflow from FrameMaker
    to RoboHelp. If you are looking for FrameMaker in place of Word and
    already use RoboHelp, this might be a worthwhile option for you to
    explore. Please check out the trial version.
    Disclaimer - I work for Adobe Systems

  • Is there a template for integrating with Twilio?

    Is there a template that can be purchased for easily integrating with Twilio? 

    Unlike wordpress templates, BC templates don't touch the server, there is no serverside code included in a template that could interface with the REST or XML interfaces of Twilio.
    With that said, you can build a middle man server that talks to both BC's API and Twilio's and get it all done. You would have to build it yourself or hire someone to build it for you (raises hand), price would depend on what you wanted to do.

  • Java Stack mandatory for a SAP BI system integrated with EP?

    Hi Guru's,
    Currently we are using SAP NetWeaver 2004 s version 7.0 system for our BI.
    This is integrated with the EP. But our BI system does not contain the Java Stack installed.
    When we work on WAD templates and execute  the template, it is automatically directed to EP portal where we can see our reports.
    Here my question is do we need Java Stack for this system to use ADOBE DOCUMENT services or can it work with EP only for the web functionalities.
    Any info on this is of great help.
    Best Regards
    Kumar

    HI Reddy,
    We came to know from our basis team that we do not have the Java Stack installed in our BI 7.x system yet.
    As it is integrated with EP which has Java, our web reports are working.
    1) But my question is still do we ned to install the Java Stack in our BI system as i do not find any Export to PDF option in EP for the reports (eventhough AS Java supports this).
    2) Or can we use the existing configuration without Java STack integrated to EP for the new tools like Report Designer and Integrated Planning?
    Regards
    Kumar

  • Java class integration with Oracle Identity Manager 9.1.0.2

    Hello Friends,
    I have a java class that is responsible for sending notifications, my question is how do the relationship of this class with the Oracle Identity Manager 9.1.0.2 so you can take the class and notify users when an application is approved or rejected.
    Any recommendation for this process.
    Thanks for the support
    Edited by: JLK on Jun 12, 2012 5:20 PM

    Hi
    Java class integration with OIM happen through concept of adapters. You can go through OIM documentation of how to create adapters.
    In your case you should create a process task adapetrs adn attach it on the Approved response code in your approval process.
    Desingn Console --> Process management --> Process definition --> <Apprlication Process Ex: AD User>.
    Alternatively you can also send notification using OIM OOTB email templates.
    Regards
    user12841694

  • MS Word integration with SAP CRM: can a PDF be created from the MS Word doc

    21/11
    Gurus,
    I know have a better understanding of the topic but still have 2 open questions.
    I now know that StreamServe cannot read .DOC files but can read and work with .PDF files.
    Since we are in a SAP forum and not a StreamServe forum,
    1/ I am wondering if SAP CRM 2007 can convert the MS Word generated and populated documents into .PDF. Possibly immediatly.
    2/ Can the MS Word generated and populated documents be saved by SAP CRM 2007 as .XML files?
    Thanks again.
    Dear All,
    On my project, there is a requirement to generate ad-hoc and amendable letters in CRM (2007).
    We might have +150 letters so I am thinking about using MS Word integration with SAP CRM to deliver this.
    With SAP CRM 2007, I understand that it is indeed possible to generate WebServices that will then be consumed by Word templates through the mail merge functionality. So agents will not have to enter BP name, address and so on. All this can be done by configuration which is great.
    My point of concern is how to integrate this design to StreamServe for printing purpose (we do not want to go into local printing)
    Can StreamServe collects the Word generated document?
    Should this Word document be converted as PDF before or can StreamServe do it?
    Should StreamServe exploits the XML contents within the Word generated document?
    Thanks for your help and insights about this.
    Brice.
    Edited by: Brice Vialle on Nov 21, 2008 9:26 PM
    Edited by: Brice Vialle on Nov 21, 2008 9:34 PM

    Hi Chris,
        Your advice helps me a lot, thank you.
        I upload an XML-Format template Word Doc to server as a MIME Object.
        When OfficeControl is started in Web Dynpro, OfficeControl automatically open the XML-Format template.
       For the first time, I get the XString-type Context attribute bind to the content of the Word Doc,
       then translate it to string, I got the XML-format content, it's great!
       However, after the first time, when I input any new contents in MS Word in Web Dynpro,
       no matter I execute "Ctrl + S" or click the "savedocument" button,
       when I translate the XString Context attribute to String, I got messy code. (but the first time, it is good plain text)
       I use the function module: ECATT_CONV_XSTRING_TO_STRING (good for first time, dump after first time),
       SCMS_XSTRING_TO_BINARY, SCMS_BINARY_TO_STRING (good for first time, messy code after first time).
       My Demo source code is in: (system) SMV --> (local object) zhaode --> (Dynpro Component) ztest_office_control
       core source code is as:
       clear itab.
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          BUFFER = lv_datas
        IMPORTING
          OUTPUT_LENGTH = lv_length
        TABLES
          binary_tab = itab.
      CALL FUNCTION 'SCMS_BINARY_TO_STRING'
        EXPORTING
          input_length = lv_length
          mimetype = 'text/plain; charset=utf-8'
        IMPORTING
          text_buffer = lv_datas_string
          output_length = lv_data_len
        TABLES
          binary_tab = itab.
        Can you give me some advice?
    Best Regards,
    Derek

  • SOA 11g Worklist Apps Customisation and Integration with Plumtree Portal

    Hi,
    We want to migrate an existing application build using SOA Suite 10.1.3.3 to 11.1.1.2.0.
    In the 10g application the worklist application was customised and the customised apps was linked as a remote portlet in BEA Plumtree Portal.
    1)In 10g the worklist application source code is available (\SOA_Oracle_Home\bpel\samples\hw\worklistapp) for customisation but is that possible for 11g ?
    (The location of the default deployed worklist apps in 11g is /../mdw_home/user_projects/domains/soa_domain/servers/soa_server1/tmp/_WL_user/worklistapp).
    Can we take the source code and customize in jdev and deploy under a different contextname in 11g??
    3)Our existing 10g worklist was customised a bit in terms of look and feel and for some custom authentication and it was deployed in the 10g SOA Server.
    A sample jsp application was created and the login page of the custom worklist apps was linked in a inframe so that it works when integrated with the Plumtree portal as a remote portlet. And this worked perfectly in 10.1.3.3 SOA Suite.
    However the 11g SOA worklist login when tagged in a jsp as an inframe in plumtree portal is giving a warning message
    Warning: Unable to load content in a frame. Frame content will load at the top level. On cliicking the OK button the worklist page is opening. This is with Firefox browser . however form IE7 or 8 its timing out from portal.
    As per http://newsoalife.blogspot.in/2009/09/framebusing-in-adf.html
    changing the web.xml for the worklist can help.
    Can anyone please let us know on the same as this appeas an unsupported one.
    Regards
    Ashif

    Hi,
    Can you check the log file.u are getting any error.can you check wf_error table also u are getting any error.
    Can you check consumer in AQ tables.
    Thanks,
    Rahul

  • [Fwd: Re: Integration with CM Systems ...]

    -------- Original Message --------
    Subject: Re: Integration with CM Systems ...
    Date: Thu, 10 Aug 2000 15:47:21 -0600
    From: Cindy Eldenburg <[email protected]>
    Organization: BEA Systems, Inc.
    Newsgroups: weblogic.developer.interest.personalization
    References: <398f3c55$[email protected]>
    Prashanth,
    The are a lot of differences in what the Documentum does as compared to
    Interwoven Teamsite. Comparing these items is like comparing apples and
    oranges.
    Normally in Teamsite, during the document capture process, a Teamsite
    user
    categorizes documents by specifying the documents' metadata attributes
    using
    Teamsite templates. Once the documents are captured, the Interwoven
    OpenDeploy
    workflow mechanism is used to publish the content to the WLCS database.
    Unlike Interwoven Teamsite, Documentum products manage the metadata and
    documents in their own repositories. Thus, with this integration, WLCS
    queries
    the Documentum system at runtime via a specialized JDBC driver supplied
    by
    Documentum. Once the Documentum user captures a document and tags it
    with
    metadata attributes, the document may be immediately available to WLCS
    (depending on administrative options in Documentum, such as whether
    staging is
    involved).
    Please contact your sales person for a more detailed overview of what
    these two
    products do and how they interface to WLPS.
    Cindy Eldenburg
    Prashanth A wrote:
    Can anyone explain to me clearly what does Weblogic mean when it says it
    integrated with Interwoven and Documentum. Is there any difference in the
    way it interacts with Interwoven as compared to Documentum. As in a run-time
    interaction with Documentum whereas a static integration with Interwoven

    Prashanth,
    The are a lot of differences in what the Documentum does as compared to
    Interwoven Teamsite. Comparing these items is like comparing apples and
    oranges.
    Normally in Teamsite, during the document capture process, a Teamsite
    user
    categorizes documents by specifying the documents' metadata attributes
    using
    Teamsite templates. Once the documents are captured, the Interwoven
    OpenDeploy
    workflow mechanism is used to publish the content to the WLCS database.
    Unlike Interwoven Teamsite, Documentum products manage the metadata and
    documents in their own repositories. Thus, with this integration, WLCS
    queries
    the Documentum system at runtime via a specialized JDBC driver supplied
    by
    Documentum. Once the Documentum user captures a document and tags it
    with
    metadata attributes, the document may be immediately available to WLCS
    (depending on administrative options in Documentum, such as whether
    staging is
    involved).
    Please contact your sales person for a more detailed overview of what
    these two
    products do and how they interface to WLPS.
    Cindy Eldenburg
    Prashanth A wrote:
    Can anyone explain to me clearly what does Weblogic mean when it says it
    integrated with Interwoven and Documentum. Is there any difference in the
    way it interacts with Interwoven as compared to Documentum. As in a run-time
    interaction with Documentum whereas a static integration with Interwoven

  • Forte integration with LDAP

    Hi.
    Has anyone successfully integrated with LDAP using the C library from
    LDAP SDK?
    Currently I'm facing a problem when I tried to generate the C++ wrapper
    for the C library. The compiler is unable to resolved the data type of
    some data structs. This is because the definition for these structs are
    not defined in any of the include files provided. According to the LDAP
    SDK doc, this is because the fields for those data structs are not
    intended to be accessible to the clients.
    That is why in my wrapper project, I defined these struct, each has the
    property Opaque = TRUE.
    The following is the error message:
    BEGIN FILE
    Working directory is d:\forte\tmp\cg13\pc_nt\ldapsrch
    Processing BOM file: LDAPSrch.bom
    Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 11.00.7022 for
    80x86
    Copyright (C) Microsoft Corp 1984-1997. All rights reserved.
    LDAPSrch.cc
    LDAPSrch.cc(70) : error C2027: use of undefined type 'BerElement'
    LDAPSrch.cc(127) : error C2027: use of undefined type 'LDAP'
    LDAPSrch.cc(184) : error C2027: use of undefined type 'LDAPMessage'
    LDAPSrch.cc(203) : error C2733: second C linkage of overloaded function
    'ldap_init' not allowed
    LDAPSrch.cc(204) : error C2733: second C linkage of overloaded function
    'ldap_simple_bind_s' not allowed
    LDAPSrch.cc(205) : error C2733: second C linkage of overloaded function
    'ldap_perror' not allowed
    LDAPSrch.cc(206) : error C2733: second C linkage of overloaded function
    'ldap_search_s' not allowed
    LDAPSrch.cc(207) : error C2733: second C linkage of overloaded function
    'ldap_first_entry' not allowed
    LDAPSrch.cc(208) : error C2733: second C linkage of overloaded function
    'ldap_next_entry' not allowed
    LDAPSrch.cc(209) : error C2733: second C linkage of overloaded function
    'ldap_get_dn' not allowed
    LDAPSrch.cc(210) : error C2733: second C linkage of overloaded function
    'ldap_first_attribute' not allowed
    LDAPSrch.cc(211) : error C2733: second C linkage of overloaded function
    'ldap_next_attribute' not allowed
    LDAPSrch.cc(212) : error C2733: second C linkage of overloaded function
    'ldap_get_values' not allowed
    LDAPSrch.cc(213) : error C2373: 'ldap_value_free' : redefinition;
    different
    type modifiers
    LDAPSrch.cc(214) : error C2733: second C linkage of overloaded function
    'ldap_ber_free' not allowed
    LDAPSrch.cc(215) : error C2733: second C linkage of overloaded function
    'ldap_msgfree' not allowed
    LDAPSrch.cc(216) : error C2373: 'ldap_memfree' : redefinition; different
    type modifiers
    LDAPSrch.cc(217) : error C2733: second C linkage of overloaded function
    'ldap_unbind' not allowed
    cl /W3 /Gf /GX /MD /c /Ob1 /vmg /DSTRICT /DWIN32 /D__WIN32__
    /DLIBOO_DLL
    WIN32_LEAN_AND_MEAN /Id
    :\forte\install\inc\cmn /Id:\forte\install\inc\os
    /Id:\forte\install\inc\ds
    /Id:\forte\install\inc\handles /Id:\forte :\forte\LdapAPIs\include
    /FoLDAPSrch.obj /Tp LDAPSrch.cc
    So, please advise on how should I proceed.
    Thanks in advance.
    from: suen
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Anoop,
    To adapt an SAP Workflow, you can create a configuration. In this configuration you can redefine values for steps of the workflow definition. These values are evaluated at runtime instead of the values originally defined.
    You can configure the following step types:
    Activity
    User decision
    Document from template
    Wait
    Moreover,Features
    You can set the following data individually in the step definition of the configurable step types:
    1)Responsible agents
    2)Excluded agents
    3)Message recipient for completion
    4)Priority
    5)Requested start
    6)Indicator denoting whether the step is included in the    workflow log
    7)Activation of a latest end, a latest start, or a requested end with the reaction Send mail
    This URL privides info about various workflow codes http://help.sap.com/erp2005_ehp_02/helpdata/en/9b/572614f6ca11d1952e0000e82dec10/content.htm
    Regds,
    Krutarth
    ·        Reference date/time for latest end, latest start, and requested end
    ·        Message recipient for missed deadline
    ·        Information about the work item display

  • Missing integration with Learning Solution in Predefined Performance Apprai

    Hi
    We have recently transported Predefined Performance Management to our
    production system. The integration scenario with SAP Learning solution
    and SAP Compensation were checked while configuring Predefined
    Performance Appraisal Templates.
    The integration with Learning Solution is reflected in our DEV server;
    when adding an action in the Competency and Development goal in an
    employee document a "Mandatory Assignment" option pops up which brings
    the course catalog defined in the Training and Event Module.
    The same was transported to the QAS; but the "Mandatory Assignment"
    option is not popped up while adding an action in the Competency and
    Development goal.
    Please advice on the corrective action on the missing option "Mandatory
    Assignment" when adding action in Competency and Development Goals.
    Regards
    Imran

    Hi,
    we also offer an option for those customers that run only SAP BUsinessObjects without any SAP applications - it is called remote support component. see here : http://service.sap.com/rsc
    The support for Solution Manager started with SAP BusinessObjects XI 3.1 SP3 but all the items listed below is part of the 4.0 release
    ingo

  • What is the best way to follow the scenario for Out look integration with share point using SAP Gateway?

    1)what is the best way to follow the scenario for Out look integration with share point using SAP Gateway?
    2)workflow concepts for Purchase order?
    3)Email triggering from out look for an approval process of PO? how these scenario can be best implemented with updated functions in Duet Enterprise.

    Hi,
    I do not have much idea on gateway integration with outlook but found out this document GWPAM Workflow Template which can be helpful for you to start with.
    also you may want to post your question in SAP Microsoft Interoperability forum
    Regards,
    Chandra

  • Avaya(Non-java app) integration with ADF

    Hi,
    We have a desktop application Avaya (non-Java) & want to integrate it with ADF. Currently we do it by passing parameters in HTTP URL. If the user clicks on a button in non-java app, it should:
    (1) open search page of an ADF application and execute search.
    (2) if the ADF application is already open, the button on Avaya app should execute search with partial page refresh. However, the whole page is being refreshed.
    Can you please guide, how to do this with partial page refresh? , as the No 1 is almost achieved.
    Thanks,
    NC

    Hi Shay,
    Below Options were tried for integration. Please have a look at them and suggest if there is any other possible way to Integrate Avaya with ADF.
    1) Calling ADF application with URL parameters.
    Reasons to drop:
    Every time a URL is called the entire page will get rendered again taking some 2-3 seconds which is very critical to the application.
    ADF is capable of handling URL parameters without re-loading the whole page(http://oracamp.com/passing-parameters-adf-application-through-url). But we can't use this inbuilt way as we have many customized developments implemented in the page. This way directly works at AMImpl (at Model level) level. We want the events to be fired at View level. That is backing bean level.
    2) Avaya is capable of dealing with ActiveX (OCX). They sent me 2 DLLs which handles communication between web page and Avaya application. A simulator was also sent (bundle attached herewith). The steps to be carried out for testing are-
    Installation procedures:
    i. Register the DTLCRMINT.ocx file. Start->Run-> Type the command
    ii. regsvr32 <ocx file location>
    iii. Register the DTLINTCMP.ocx file. Start->Run-> Type the command
    iv. regsvr32 <ocx file location>
    v. Double click on the Clinet.exe it would open up a windows application with a Textbox and Command button. Put In the data which needs to be sent.
    vi. Open the CRM Page.html. On opening the OCX would be loaded by default.
    vii. Now clicking the Send Data button on the client application, whatever information is there in the Client Text Box would be sent to the web page.
    viii. From CRM side, the application needs to use the OCX provided, and must wait for the event. On receiving the event the data that is retrieved as a part of the event can be parsed to update the text box and click on the search button.
    Reasons to drop:
    It works fine with basic HTML page. But once integrated with ADF page as an inline frame it doesn't work. We tried to embed the OCX object inside <verbatim> tags, but was not successful. The event fired by ActiveX object is triggered at client side by VBScript function. Avaya's ActiveXs seem to be only working with VBScript according to my understanding. So there was no way for ADF to capture VBScript events.
    ADF is capable of javascript up to some extent. To do a critical application like this, my feeling is javascript is never a good option.
    3) To use a text file. Avaya writes, ADF application reads.
    Reasons to drop:
    ADF can read the text files with normal java IO methods. But only the server directories are visible. So, Avaya has to write the information in the server file. With using a parameter like user name, ADF application can read the file in regular time intervals (with using poll feature) and get relevant information and automatically run the search.
    Initially the idea was to do this at client side. But since this is a web application, file reading at client side is next to impossible. Again when one side is reading and the other side is writing, file access violations may occur.
    4) Another option is if Avaya can offer the value in a web service, the ADF application can get it.
    Reasons to drop:
    There may occur a latency as well as Avaya says they can't offer web services.
    5) The ideal solution is, the ADF application's front end control's IDs can be provided. If the Avaya system is capable of accessing or getting hold of DOM and pushing the value to the controls and clicking the button; things would become pretty straight forward. JMeter works like this in testing J2EE applications.
    Any Recommendations how can it be done .
    Thanks.

  • Event Server Integration with other Products

    I have been using the EDA approch in my SOA project for few years now. These were based on JMS and other modes of Events supported by the WLI, BPM products. Now we have a dedicated Event processing server can we expect utilities/UI components that would easE the integration with other BEA products? What is the time frame for the avilability for this as well as the console for the Wev server?
    Thanks,
    Anil Datt

    Hello,
    Thank you for your post. We do have some integrations with other Adobe products planned for the future, but it's too early to announce our plans. We appreciate your enthusiasm for Buzzword - please keep the suggestions & ideas coming.
    Kind Regards,
    Michelle

  • BI Publisher Performance integrated with OBIEE 11g

    Has anyone seen issues around the performance of rendering the BI Publisher frame when it is integrated with an OBIEE dashboard (11g)?
    If I create a simple BI Publisher off a simple data model (Select 1 from dual). I open the BIP report within the BI Publisher environment (XmlpServer) and it opens in seconds.
    When I open this same report within the OBIEE Web Catalog or place it on a dashboard page I have seen it take upwards of 40-50 seconds to render the frame then the report. The time seems to me more around rendering the frame.
    Usually when you initiate your first session you see the longest rendering time, subsequent runs of the report are lower but still higher then the few seconds it takes in the BIP environment.
    Has anyone else seen this issue, we opened a ticket with Oracle and it seems they are leaning toward creating a BUG around this. Just wanted to see what others were experiencing and if they identified the source of the issue. Thanks.

    Hi Dustin,
    The FMW security model in BI Publisher means it is integrated into OBIEE - I believe it's the default. If you're using authenticating and authorising via weblogic then I can't think of a good reason to use BI Server authentication in publisher, you should be using FMW security.
    In answer to your question tThere was no bug raised. The work around for us was using document 1338007.1. In your case that doesn't seem necessary since you're using OVD already.
    Edit - should just add that if your OVD authentication is set up in the repository then you need to shift that to the weblogic server security model and remove any authentication logic from the repository. After that the FMW security model for publisher should work.
    http://download.oracle.com/docs/cd/E21764_01/bi.1111/e10543/privileges.htm
    Regards,
    Robert
    Edited by: Robert Tooker on Nov 3, 2011 2:07 AM

  • Integration with CM Systems ...

    Can anyone explain to me clearly what does Weblogic mean when it says it
    integrated with Interwoven and Documentum. Is there any difference in the
    way it interacts with Interwoven as compared to Documentum. As in a run-time
    interaction with Documentum whereas a static integration with Interwoven

    Prashanth,
    The are a lot of differences in what the Documentum does as compared to
    Interwoven Teamsite. Comparing these items is like comparing apples and
    oranges.
    Normally in Teamsite, during the document capture process, a Teamsite
    user
    categorizes documents by specifying the documents' metadata attributes
    using
    Teamsite templates. Once the documents are captured, the Interwoven
    OpenDeploy
    workflow mechanism is used to publish the content to the WLCS database.
    Unlike Interwoven Teamsite, Documentum products manage the metadata and
    documents in their own repositories. Thus, with this integration, WLCS
    queries
    the Documentum system at runtime via a specialized JDBC driver supplied
    by
    Documentum. Once the Documentum user captures a document and tags it
    with
    metadata attributes, the document may be immediately available to WLCS
    (depending on administrative options in Documentum, such as whether
    staging is
    involved).
    Please contact your sales person for a more detailed overview of what
    these two
    products do and how they interface to WLPS.
    Cindy Eldenburg
    Prashanth A wrote:
    Can anyone explain to me clearly what does Weblogic mean when it says it
    integrated with Interwoven and Documentum. Is there any difference in the
    way it interacts with Interwoven as compared to Documentum. As in a run-time
    interaction with Documentum whereas a static integration with Interwoven

Maybe you are looking for