Web template with HTML framset not working after transport

Hi,
I've built a frameset which consists of two web-templates (role-menu and content area) those two are combined together using plain HTML which does not acontain any web items (uploaded via WAD). This works fine in development. After transporting to our QA environment all the templates have been transported with concode 0, but the frameset does not get loaded. I always get an "Error loading template ...". The two templates which contain web items work fine when used stand-alone.
When looking in transport connection I see the following message:
"Object ZWF_WEB_FRAMESET (Web Template Name) could not be collected for object ()"
I also see the same behavior on another transport of a template. Nine out of ten ar fine, but one, all are exact copies - only the query used is different, does not work either. The query that is used has been transported and is working.
Has anybody an idea what could cause this?
Is there a way to regenerate templates (like RSRT for queries) ?
Thanks in advance
Bernd Dümmel
KODAK Stuttgart
  using ve created a

Did you upload the video?
Did you provide the correct path to your HTML object?

Similar Messages

  • USB connection with PC is not working after updating firefox OS 1.3 to 2.0 on my device. How to fix this?

    After updating OS 1.3 to 2.0 usb connection to PC is not working. I am using firefox os device Flame. I cannot share files with my PC. Please help me to fix this problem.

    ''Ralph Daub [[#answer-694088|said]]''
    <blockquote>
    Hi Raiyad Raad,
    I'm sorry to hear that you're having issues when connecting your Firefox OS device to the PC, after updating it from v1.3 to v2.0.
    Please ensure that USB Storage and Media Storage are activated.
    If you are still having issues after activating USB storage and restarting your device, please write back to us with the following information:
    * What is the model of your phone?
    * What is the OS version and Build ID found in the Device Information page? Please visit [https://support.mozilla.org/en-US/kb/how-do-i-find-what-version-firefox-os-i-have this link] if you need help finding the Build ID of your phone.
    * Please describe the steps you took to update your device.
    * Please provide the exact steps to reproduce the issue you are encountering.
    * How often do you encounter this issue?
    Please be sure to include as much detail as possible, including any websites that may exhibit this issue, and any error messages that you may be receiving, exactly as they appear. This will ensure that we have all the necessary information to investigate this behavior.
    - Ralph
    </blockquote>
    I've activated the USB storage and media on the phone. But still it's not working. I'm using T2mobile Flame and my OS version is 2.0. Build ID: 20141016183911
    I've written a blog about how I updated it here: http://raiyadraad.blogspot.com/2015/02/how-to-update-firefox-os-13-to-20-with.html
    I'm having this problem after updating to firefox OS 2.0

  • ORDS Template with parameter does not work

    Hello everybody,
    I can not get working a RESTful Service using the ORDS_SERVICES -API (ORDS version 3.0.0.343.07.58), same Query without parameter (hardcoded product_id) works fine.
    declare
    l_module_id number;
    l_template_id number;
    l_handler_id  number;
    l_parameter_id number;
    begin
    ORDS_SERVICES.delete_module(p_name => 'test_parameter');
    l_module_id := ORDS_SERVICES.create_module(p_name => 'test_parameter',
                                p_uri_prefix => '/test_parameter',
                                p_items_per_page => 10,
                                p_status => 'PUBLISHED',
                                p_comments => null);
    l_template_id := ORDS_SERVICES.add_template(p_module_id => l_module_id,
                               p_uri_template => '/demo_product_info_10/',
                               p_priority => 0,
                               p_etag_type => 'HASH',
                               p_etag_query => null,
                               p_comments => null);
    l_handler_id := ORDS_SERVICES.add_handler(p_template_id => l_template_id,
                               p_source_type => 'MEDIA', -- source_type IN ('COLLECTION_FEED', 'COLLECTION_ITEM', 'FEED', 'MEDIA', 'PLSQL', 'QUERY', 'QUERY_1_ROW')
             p_source => 'select mimetype, product_image from demo_product_info where product_id = 2',
             p_format => 'DEFAULT',
             p_method => 'GET',
             p_items_per_page => null,
             p_mimes_allowed => null,
             p_comments => null);
    /* now same result but with parameter */
    l_template_id := ORDS_SERVICES.add_template(p_module_id => l_module_id,
                               p_uri_template => '/demo_product_info/{product_id}',
                               p_priority => 0,
                               p_etag_type => 'HASH',
                               p_etag_query => null,
                               p_comments => null);
    l_handler_id := ORDS_SERVICES.add_handler(p_template_id => l_template_id,
                               p_source_type => 'MEDIA', -- source_type IN ('COLLECTION_FEED', 'COLLECTION_ITEM', 'FEED', 'MEDIA', 'PLSQL', 'QUERY', 'QUERY_1_ROW')
             p_source => 'select mimetype, product_image from demo_product_info where product_id = :product_id',
             p_format => 'DEFAULT',
             p_method => 'GET',
             p_items_per_page => null,
             p_mimes_allowed => null,
             p_comments => null);
    l_parameter_id := ORDS_SERVICES.add_parameter(p_handler_id => l_handler_id,
                               p_name =>  'product_id',
             p_bind_variable_name => 'product_id',
             p_source_type => 'URI',
             p_param_type => 'INT',
             p_access_method => 'IN',
             p_comments => null);
    commit;
    end;
    The first template works fine:
    http://localhost:8080/ords/xxx/test_parameter/demo_product_info_10/
    shows a jpeg image of a wallet.
    The second template does not work:
    http://localhost:8080/ords/xxx/test_parameter/demo_product_info/10/
    fails with error:
    mapped request using: BasePathMapper [basePath=/xxx/] to: SCHEMA:apex|XXX
    Choosing: oracle.dbtools.http.dispatch.DispatchMetaData as current candidate with score: MetaDataScore [score=0, matchedMethod=  GET: {10299, false}
      common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=10, pagination=NONE, requiresPrivilege=null, transport=null]
    , matchedPattern= /test_parameter/demo_product_info/{product_id}
    common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=null, pagination=null, requiresPrivilege=null, transport=null]
    methods:
      GET: {10299, false}
      common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=10, pagination=NONE, requiresPrivilege=null, transport=null]
    stack trace:
    oracle.dbtools.http.errors.InternalServerException: java.lang.IllegalArgumentException: INT
    at oracle.dbtools.http.errors.ErrorPageFilter.internalError(ErrorPageFilter.java:165)
    at oracle.dbtools.http.errors.ErrorPageFilter.doFilter(ErrorPageFilter.java:113)
    at oracle.dbtools.http.filters.HttpFilter.doFilter(HttpFilter.java:44)
    at oracle.dbtools.http.filters.FilterChainImpl.doFilter(FilterChainImpl.java:51)
    at oracle.dbtools.http.cors.CORSFilter.doFilter(CORSFilter.java:35)
    at oracle.dbtools.http.filters.HttpFilter.doFilter(HttpFilter.java:44)
    I changed the add_parameter-call p_param_type => 'INT' to be  p_param_type => 'STRING'
    then error remains the same and strack trace says
    oracle.dbtools.http.errors.InternalServerException: java.lang.IllegalArgumentException: STRING
    at oracle.dbtools.http.errors.ErrorPageFilter.internalError(ErrorPageFilter.java:165)
    at oracle.dbtools.http.errors.ErrorPageFilter.doFilter(ErrorPageFilter.java:113)
    Could you please confirm and fix,
    kind regards,
    Tom

    This is a guess, but I suspect that ords_services.add_parameter() is not required at all.
    Also, your URL /demo_product_info/10/ should not have the trailing slash (according to your template URI).
    For more information, I suggest you look here:
    ords.3.0.0.343.07.58.zip\ords.war\scripts\migrate\core\ords_migrate.plb
    The migration package will show what is usually done for templates that already exist within APEX 4.2. I checked my templates and the ones with URI variables {in-curly-brackets} contain no records in apex_040200.wwv_flow_rt$parameters.
    -Kris

  • Web address with hyphen will not work in PDF

    CS 4; ID 6.0.6
    OSX 10.5.8
    In ID, I create web links by selecting a url and then selecting New Hyperlink From URL. The new link is a Shared Destination by default with the web address as was selected. These links work fine when exported to PDF.
    When I use the same process on a url with a hyphen (part of the address and not a line break), the resulting Shared link will not work when exported to PDF. The newly created link in this case always begins with file:///Users/.
    What is it about the hypen that messes up the process? I work in a bilingual government so we have a lot of urls with hyphens in them. For example: www.cga-nb.org.
    Thanks.

    SWSinNC wrote:
    I will, thanks
    so your saying that if it's fake...that specific function is a common flaw ?
    Exactly!
    Unfortunately the full thread recounting this saga got lost in the forum changeover, but the fake copies come in authentic looking shrink-wrapped boxes with printed documentation; and everything works except the nudge.
    Or sometimes other keyboard combinations.

  • Save a published Access services database site as a template with contents does not work

    Hi
    I have a Access site on the SharePoint. I wanted the site to be duplicated to another subsite, I then did the usual - save site as a template with contents and made a copy of it, however it does not work. I have been getting the error as stated below
     error has occurred during report processing. (rsProcessingAborted)
    Query execution failed for dataset 'Default'. (rsErrorExecutingCommand)
    For more information about this error navigate to the report server on the local server machine, or enable remote errors
    However, it works if I make a local copy and publish it to the subsite? How does access services work on SharePoint and why the template option can't be chosen.

    Hi cally, check the following links for possible solutions:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/1e2b77ba-4cfa-4aa3-97e4-b7b39fbd46fd/error-with-ssrs-report-that-has-a-sharepoint-list-data-connection-ssrs-r2-and-sharepoint-2010?forum=sqlreportingservices
    http://blog.mikehacker.net/2012/05/16/sharepoint-2010-access-services-reporting-with-sql-2012/
    cameron rautmann

  • Web Template with Query Views not showing Variable Screen

    Hi, I have a Web Template using 3 Query Views based on a single query.  The Query has 2 mandatory variables (CALMONTH and VERSION).  When I execute the Web Template it does not prompt with the Variable Screen, and presents the report with the Variables that were in place when the view was saved/created.  I'd like the Variables to appear.
    1. Is this the correct behavior? 
    2. Is there any documentation that might describe this behavior.
    3. Should I just copy the query and create 3 queries instead?
    Note: I did a search in SDN and found lots of similar threads, but nothing exact.  Also, I know about forcing the variable screen, but I thought I shouldn't have to do this.
    Thanks!

    k forget the view, when you run the main query... do you get a pop up for variable screen,. yes or no?
    if you dont then try to run another query and see if you get the variable screen as well. if you dont then its a bug. if you do then something is wrong in your query and its having an issue, but if you do get the screen on your query then it is a setting in your web template not in your query.
    you can also try to run the query in RSRT backend ...

  • html:cancel / not working after changes made as per Steve Muench documen

    I have followed the document posted by steve for configuring BC4J to use Struts 1.1 Final.
    Once this is done the <html:cancel> button does not work.
    This button does two things , it skips the validate method in FormAction and returns true for
    isCancelled(request), but both things are not happening.
    When i go back to 1.1beta 2 release it works fine,
    So it is related to the changes that Steve made in the three files.
    BC4JRequestProcessor.java
    MultipartUtil.java
    UpdateAction.java
    Steve could you take a look and fix this issue.
    Thanks

    more info on isCancelled()
    isCancelled(javax.servlet.http.HttpServletRequest request)
    Returns true if the current form's cancel button was pressed.
    This method will check if the Globals.CANCEL_KEY request attribute has been set, which normally occurs if the cancel button generated by CancelTag was pressed by the user in the current request.
    If true, validation performed by an ActionForm's
    validate() method will have been skipped by the controller servlet.

  • Navigating through photos in single-photo view in iphoto with trackpad is not working after installing new OS Mountain lion

    I have recently download new OS Mountain lion on my macbook (white late 2010 model). I had snow leopard before.
    On iphoto, when i was viewing my photos in a single-photo view (double clicking on a photo), i was unable to go to the next photo/previous photo using my trackpad. Only way i could do this was by pressing arrow buttons on my key board.
    If i remember correctly, i was able to do this by using 3 fingers (sliding left to right or sliding right to left) on snow leopard.
    I can navigate back and foward on my internet browser using two fingers. And yes, i have tried using my two fingers on iphoto but nothing happens.
    I have checked my trackpad setting and everything seems to be right.
    Any ideas how i could fix this?
    Thank You
    p.s. i have iphoto 09

    Terence Devlin wrote:
    I can navigate back and foward on my internet browser using two fingers. And yes, i have tried using my two fingers on iphoto but nothing happens.
    This works here - but I'm on iPhoto 11. IIRC it worked on 09 too though.
    It's not working for me.

  • Hierarchy Analysis Authorization does not work after transport

    Hi Gurus,
    I am facing a issue in hierarchy analysis authorization in quality system but the same authorization works perfectly fine in development.
    All hierarchy authorizations works in Quality except for this one. I found one old sap note describing this as program error but this note is not applicable in BW 7.3.
    I have checked the table RSECVAL, RSECHIER and authorization is active so everything looks good. Please advise if anyone faced this issue after transporting hierarchy auths to other systems
    Regards,
    Salman

    Salman,
    What I understood from your description is that you have same role+AA in Dev and QA, which provides access in Dev for all the nodes for said hierarchy but in QA, same role+AA provides access to the same hierarchy for all the nodes but one. Try to create a ZTEST analysis authorization in QA itself with access for the problematic hierarchy node and see if it works ? This will rule out the case if there is a difference in hierarchy in DEV & QA.
    Regards,
    Shivraj Singh

  • MB_DOCUMENT_BADI Not Working after Transport

    Hi Experts
    I have created an implementation of the MB_DOCUMENT_BADI in our ECC6 system to perform some processing as part of the goods issue process.  The code has been unit tested and works as required.  I have transported the development to our QA system but despite the implementation showing as active the code is not executed.
    Having put a break point on the exit handler class this BADI does not get called in our test system.  Has anyone resolved this or a similar issue before? How can I identify why the badi is not being called?
    I'm not sure if this is an ABAP / transport issue or an MM configuration issue, but any help would ge gratefully accepted as I need to get this working and into our live system as a matter of urgency.
    Thanks
    Andrew

    Hi Shiva
    I have already got a breakpoint at this point and it does not hit this.  I have added a breakpoint in the method of the earlier implementation and this is not being hit either. 
    I now need to identify if this is not being hit as a result of my changes, or whether this implementation was not working before my transport, e.g. after our system upgrade that was completed last year.
    Kind regards
    Andrew

  • Applicatio​n with excel does not work after installing​. Cause is excel report generation

    First of all, yes i have selected the installer and included the NI report support. I can run and install the application buth the application freezes when handling an excel-related VI. I can still run the program in Labview and it works fine buth i want to use an exe because i have seen that it works considerably faster.
    Thanks,
    Andries Wim

    wim andries student wrote:
    > First of all, yes i have selected the installer and included the NI
    > report support. I can run and install the application buth the
    > application freezes when handling an excel-related VI. I can still
    > run the program in Labview and it works fine buth i want to use an exe
    I won't be able to help you with the Excel problem. I do not like Active
    X and don't deal with it if I don't absolutely have to.
    But your claim that the executable runs considerably faster given the
    same hardware and system resources definitely sounds suspicious. LabVIEW
    has very little speed difference between the development system and an
    executable. The difference is so small that you almost never should be
    able to even notice it. If it is very notica
    ble there are other reasons
    that it is faster, for instance failed initialization for whatever
    reasons, which makes subsequent functions to simply skip their task
    instead of doing something.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • SMTP with SSL does not work after MacBook sleeps

    Hi,
    I have a brand new MacBook running Leopard, using Mail for a work MS Exchange account and a personal IMAP account. I connect to both mailboxes over SSL for security and this all works perfectly fine. When I close my laptop however (i.e. send it to sleep), it seems to corrupt my SSL session for the IMAP mailbox. Upon waking the MacBook up, the Exchange account work perfectly fine, as does the IMAP mailbox for receiving, although sending mail always errors out. If I quit mail, restart it and then click "Connect" on both (incoming and outgoing) of the SSL notices, everything starts working again.
    Is there away to auto-Connect to IMAP mailboxes without the SSL notification or to recover SSL sessions after they time out?
    Cheers,
    Rob

    already a long thread here:
    https://discussions.apple.com/message/23733407?ac_cid=tw123456#23733407
    no solution yet..

  • Module with cpvc slides not working after uploading to LMS

    Everything works fine when previewing, but when it's uploaded to our LMS, it fails to load the video but continues to show the objects (shapes, text boxes) in that video slide.

    Did you also upload the js file to the directory indicated in the html code...
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    I don't see that file if I try to link to it, but that your swf is showing at all without that file is a bit of a wondering.

  • BEX 7.0: Formula variable with replacement path not working after BW Upg

    Hi all,
    We have a formula variable using replacement path for 0MATERIAL characteristic that is used in a calculated key figure, in order to perform conversion factor to change measure units (0MATERIAL attribute).
    This was working pretty well until an upgrade from 3.5 to 7.0 EHP 1. The list that is displayed contains all key figures empty instead of the desired values.
    Can anyone suggest what could be the possible reason for this?
    Thanks in advance.
    CCS

    Hi all,
    Problem solved!
    The solution was based on the u201Chow to...Report Data in alternate units of measureu201D document (for 3x version) . http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b7b2aa90-0201-0010-a480-a755eeb82b6f?quicklink=index&overridelayout=true
    Basically, the upgrade has override the previous changes made in the program LRRSVF20, like the "How to" document refers. Namely, the reference to YBW_AUNIT_ENHANCEMENT program.
    We have carried out the changes and, apparently, the query is now working fine.
    Thanks.
    Best Regards,
    Cátia Coelho Silva

  • Adding additional field in cProject is not working after transporting

    Hi All,
    My intention is to add additional field in cProject. So i copied a required view through program BSP_CUSTOMIZE and into another Z* BSP Application object. Then i had done the necessary modification on the view and saved. Then copied error.do controller and actived and tested in development server. It was working fine. So i moved the transport request for this object to quality system. When i tried to test the same thing in quality system, changes done in views are not reflecting.
    When i checked the entries in table BSP_APPLC, i didnt find any. I hope this is the reason why my changes in views are not reflected.
    Can anyone have idea, why it is not happening so. Kindly help.
    Thanks in advance.
    Regards,
    Karthick

    Ensure that in table BSP_APPLC is an entry for cprojects linking to your own aplictaion Zcprojects and is activated.
    I guess you have to reactivate the BSP_CUSTOMIZE in target system again.
    Please remeber: BSP_CUSTOMIZE is not supported officially.

Maybe you are looking for