Layout View is empty in WAD 7.0

I have created a WAD with tabstrip. This WAD runs fine when executed but in the web application designer the Layout View is empty. I can see all the web items in the overview tab and XHTML tab is OK too. Just the layout view is not showing anything.
The problem is only in this WAD all other WAD applications are fine.
Has anyone come across this problem and if know the resolution?
Thanks
Amit

Hi Sriman.
Thank you for the reply, but that does not solve my problem. I know that there is a size A4 210x297 mm, but i cannot use that as i have to use the other one only.
It is very surprising, that i dont have that option in WAD while designing, but get that option when i execute the query.
I guess i will have to post it to SAP, so they can create a note for this.

Similar Messages

  • Web Services Not Working because wwv_flow_collections view is empty

    Hello,
    I followed this example to try and get a web service running in my Application:
    http://apex.oracle.com/i/doc/advnc_rest_web_eg_2.htm
    When I run the page and enter the zip code 43221 they recommend with a radius of 5, I get no results. When debugging and throwing the query into SQL Dev, I have no records in my wwv_flow_collections view. Looking at the tables that comprise the view, wwv_flow_collections$ and wwv_flow_collection_members$, these two tables would join on c.id = m.collection_id alone, but there are additional in-line selects involving the DUAL table that make the query return 0 records and therefore the view is empty. I've never messed with these views/tables, are these auto-populated by APEX? Can they be updated? Right now I cannot get any web services to work because of this. Here is the from clause for the wwv_flow_collections view:
    FROM
    wwv_flow_collections$ c,
    wwv_flow_collection_members$ m
    WHERE
    c.session_id =
    SELECT
    v('SESSION')
    FROM
    dual
    AND c.security_group_id =
    SELECT
    wwv_flow.get_sgid
    FROM
    dual
    AND c.id = m.collection_id
    AND c.flow_id =
    SELECT
    nv('FLOW_ID')
    FROM
    dual
    Can anyone help? Thanks in advance!
    John

    John,
    I have been working this week to set up the exact same thing and got the same empty result set that you have. In this case I believe it has nothing to do with APEX. I downloaded soapUI 4.0.1 which tests web services and used the WSDL described in the APEX Webservices tutorial for http://www.ignyte.com/webservices/ignyte.whatsshowing.webservice/moviefunctions.asmx?wsdl to create the same sample requests. It also returns no results.
    So, I decided to use a different public WSDL and try to get it working. Here are my steps taken below:
    BACKGROUND:
    - I am using APEX 4.0 on an 11gR2 database, with ACLS set up for the APEX schema this app is using.
    - First off, the site I used I just found through google. It is a currency conversion rate webservice. It is explained here: http://www.webservicex.net/CurrencyConvertor.asmx
    - The WSDL is found here: http://www.webservicex.net/CurrencyConvertor.asmx?WSDL
    SETTING UP THE WEBSERVICE:
    1. In a new APEX application I went to "*Shared Components*" -> "*Web Service References*" -> "*Create*" to create a new web service reference
    2. Selected manual
    3. Called the webservice CURRENCY_TEST
    4. Set the URL to http://www.webservicex.net/CurrencyConvertor.asmx
    5. Set the Action to http://www.webserviceX.NET/ConversionRate (Action can be found in the WSDL - showing a few lines below)
    <pre class="jive-pre">
    <wsdl:binding name="CurrencyConvertorSoap" type="tns:CurrencyConvertorSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="ConversionRate">
    <soap:operation soapAction="*http://www.webserviceX.NET/ConversionRate*" style="document"/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    </pre>
    6. WSDL explains that the version is *1.1* in this case. (However, this same WSDL has the same operation for 1.2 so it probably would work)
    7. No Authentication
    8. soapUI 4.0.1 gave me the soap request which in this case is the following:
    <pre class="jive-pre">
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://www.webserviceX.NET/">
    <soapenv:Header/>
    <soapenv:Body>
    <web:ConversionRate>
    <web:FromCurrency>#FROM_CURRENCY#</web:FromCurrency>
    <web:ToCurrency>#TO_CURRENCY#</web:ToCurrency>
    </web:ConversionRate>
    </soapenv:Body>
    </soapenv:Envelope>
    </pre>
    9. Stored response in collection CURRENCY_COLLECTION
    10. Saved my web service reference
    11. Test the web service reference (you have to be on the web service references page and instead of the icon view of the report, use the list view. Click on the test icon to test the web service)
    12. On the test page, change #FROM_CURRENCY# to USD (for US dollars) and #TO_CURRENCY# to EUR (Euros)
    13. Click the test button and you should see a valid soap response with a currency rate within the ConversionRateResult tags
    USING THE WEBSERVICE AND GETTING RESULTS:
    1. Went back to the application and hit "*Create Page*" -> "*Form*" -> "*Form and Report on Web Service*"
    2. Selected my CURRENCY_TEST web service reference
    3. Next on the next page
    4. For input parameters, left the defaults to create 2 inputs, From_Currency and To_Currency
    5. Soap Style for this is Document (found in the WSDL as an attribute just after the soapAction attribute in the WSDL snippet above)
    6. Message Format is Literal (Also found above in the wsdl:output for this operation under the use attribute)
    7. XPATH is a bit complicated. In this case put */ConversionRateResponse* (I used the soapUI 4.0.1 to send the request and get back the soap response to see what the response tags would include and which path I'm going to)
    8. Message Namespace is http://www.webserviceX.NET/ (which is also found in the response soap message - I'd really recommend a tool to test this outside of APEX)
    9. For Parameter Names there is only one and it is ConversionRateResult (also found in the response soap message)
    10. Finish and run the report.
    OTHER GOTCHAS:
    So I finally got this to work, but in my case I was querying a remedy webservice and the xml tags I get back are all xmlns:ns0 and all response tags prefaced with ns0:
    In this case I had to after using the wizard go back and edit my query to change xmlns to xmlns:ns0 since the builder only assumes xmlns.
    <pre class="jive-pre">
    select extractValue(value(t),'/*/ns0:Assigned_Group','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Assigned_Group"
    , extractValue(value(t),'/*/ns0:Assignee','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Assignee"
    , extractValue(value(t),'/*/ns0:Resolution','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Resolution"
    , extractValue(value(t),'/*/ns0:Status','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Status"
    from wwv_flow_collections c,
    table(xmlsequence(extract(c.xmltype001,'//ns0:HelpDesk_Query_ServiceResponse','xmlns:ns0="urn:HPD_IncidentInterface_WS"'))) t
    where c.collection_name = 'INCIDENT_TEST'
    </pre>
    Good Luck!
    Jonathon

  • Console's left pane (tree view) is empty!!! Anyone has same experience???

    HI,
    My weblogic console view's left pane (used to show the tree view)
    is empty. It only shows an icon (indicating something is missing).
    Does anyone has similar experience before and know the solution
    to fix this?
    Thank you,
    Terrence

    The console's left pane is an applet. Make sure the java
    plugin is properly installed on your desktop.
    Kumar
    Terrence Leung wrote:
    HI,
    My weblogic console view's left pane (used to show the tree view)
    is empty. It only shows an icon (indicating something is missing).
    Does anyone has similar experience before and know the solution
    to fix this?
    Thank you,
    Terrence

  • Console.app "All messages" view is empty

    When I open the Console.app on my new MacBook Air, the "All messages" view is empty. I've tried deleting logs and fixing permissions, but to no avail. Any tips?

    Yes, you've found one: it happens to me too. Got a new MacBook Pro today, transferred everything via Time Machine, and now I have a few things that don't work, but the Console is completely blank.
    I'm guessing the "all" query tries to access some file I have no rights for. That could very well be, since I don't log in as admin. And sure, when I do log in as admin, I can see the logs. They're quite full, actually.

  • Portal Events---WDA view is empty on initialization

    Hello everyone,
    I created a WDA application which will be integrated with Employee Search Iview (provided by SAP).  Everything is working fine...only issue is that when we display the page first time...my WDA view is empty...untill we click on an employee....I want to get the first employee from the list and display his/her info in my WDA view as soon as we open up the page.
    I cannot seem to find any info on which event this Employee search iview triggers in the initialization and what parameters this event passes on.  Is there any documentation on this? I mean list of event trigger by this employee search iview and event names? 
    Once again...when we click on an employee from the list....we are populating the data in WDA view...no problem there....we just want to show data when we first come to the page....same as SAP does for its Employee search iview and general data iview....these iviews are from SAP...and when we put them together...general data iview fetchs the data for the first employee in the list....on initialization....but our WDA view stays empty....
    Thanks...
    J.

    Hi J,
    when we click on an employee from the list....we are populating the data in WDA view...no problem there....we just want to show data when we first come to the page.
    conceptually you need to place method in WDDOINIT of default view in your  WD4A application and try to read the first element of the employee list. This would be little different than reading the employee data from event, may be you can have some method in the ASSISTANCE class that attached to your WD Application that can read employee, data as soon as there is one available .
    Greetings
    Prashant

  • Process view is empty for imported legacy app

    Hello,
    The process view is empty for an imported legacy app (ES1).  Platform is JBoss turnkey on Win 7.  Did the following: (a) Imported legacy LCA, (b) created application, (c) imported process into application, (d) check-in application and (e) opened process in editor.
    The process editor is blank.  Thank you for insight on this one.   jb1809

    [Problem Solved]  Discovered that I omitted a step...did not refresh the Application View for the new legacy application.  After refreshing the application view, the process editor displays the process diagram.

  • FORUMCRAWLER_VW view is empty

    Hello. I'm working on SES integration (trying to make it search through discussions). All I need to do is to create crawlers for two database data sources on a SES server (for forums and for announcements). But, talking about forums - it must be indexed and there must be a lot of information stored in FORUMCRAWLER_VW view, but for some reason this database view is empty. All I made for forums integration is WC_Collaboration managed server installation, creating a new forum and adding task flows with forum category IDs to a portal pages. So, the question is why a FORUMCRAWLER_VW view is empty and what I need to do to make my forum data in database to be "selectable" with this view. Thank you.

    Okay, problem seems solved. I don't know if it is a bug or a feature... (: Anyway, this view selects data from threads that had been created from a portal application. And if you create threads from WC_Collaboration server admin console, there's no data will be selected with FORUMCRAWLER_VW view. Sorry, have no time to check SQL query for those DB view, may be this behaviour is reasonable.
    Edited by: Insomnium on 17.01.2013 2:33

  • Is there a way to view the notebook layout view on Word for mac on an iPad?

    Is there a way to view the notebook layout view on Word for mac on an iPad?

    No.  Create a playlist that you then sync to your iPod, and choose whatever view you wish of the playlist within iTunes.

  • All Content Not Viewing In Layout View

    I just installed InCopy CS3 on a user's recent IBM ThinkPad and for some reason when viewing a document in layout view SOME pages are not displaying content. All text content displays fine in galley and story view? This is a fresh install. Any ideas?
    Cheers,
    Danny

    The strange thing is everything views fine on my 3 year old Dell. I have seen this issue on a virgin InCopy CS3 install on an old Dell desktop. Just attributed the issue to the age and lack of RAM on that workstation. The files were created on a Mac in InDesign CS3.
    Cheers,
    Danny

  • Export Layout view

    Hi
    I know its a wrong place to Post this question but i could not get the answer from Incopy forum
    How to print the layout view of a document. When it try to print or export a doument to PDF the story view is exported or printed. How to change it to Layout view.
    Does anyone have the InCopy reference Guide. I could not find it anywhere in the Adobe Site.
    Thanks

    Maybe you're not entirely clear in your terminology.
    Story view? Layout view? For an InDesgin user it makes sense if you mean the Story Editor with the first, and your regular page view window with the second. However, that does not compute with your problem, which is (if I understand it correctly) that you export or print the
    i first
    one; i.e., the Story View. That can't be done in the ID I have.
    Perhaps it's an option in InCopy, as that is all text oriented (as opposed to Plain-InDesign), and probably not meant to be used in the way you describe. I recall that InCopy is designed to edit texts, while the actual layout work has to be done in ID.

  • Is there a layout view in the New Numbers?

    Hi there,
    I loved the layout view.  I could work with my document, add and remove cells, resize the documents before I decided to print.  Now I can't do the rezing before I print, so I have to go to print to see how it is layed out on the page and if I don't like it, I can't add / delete / resize cells without backing out into the edit pane.. 
    This makes my editing more time consuming..
    Does anybody know if there is a way to replicate this funcionality in the new numbers??
    Thanks
    Chad

    Barry,                                   
    The temporary solution you sent me will allow me to edit my existing files.  I received another file from an iPad today and that would not open it without version 3.0.  I am now behind 50 reports that cannot be billed because of formatting problems.  My records [reports] are reviewed by 3 national inspection agencies as well as state and local agencies. These agencies have the ability to shut the major corporations and municipal operations down based on my records.  My records can not be late incomplete or inaccurate.. 
         I must conclude that IMac and Ipad’s are no longer suitable for business use for myself or my sister companies. The IMac’s can still be used with office for mac but the Ipad’s must be used for pictures and music at home.  I will advise all sister companies that I will no longer accept data in pages or numbers and can no longer provide reports for their technicians in those programs.
         I am deeply disappointed that after almost 2 years development that proved to be a great savings in time due to iMac iPhone and iPad dependability the project must be scrapped because an update did not add features or correct problems. It removed features and added problems.  The reports sent to me from Ipad’s must be completely rebuilt before they can be used.  They were emailed which further degrades their usability.
             I will go this evening and purchase Windows products that are suitable for business.  I can not wait until Macintosh gets around to a fix [if they do] Because of the numerous hours spent converting these forms to mac and now back to Microsoft I am extremely offended at the lack of consideration for my time and support. Between reports I will take my break and get my frustrations out by writing bad reviews on every business forum I am a member of or simply can find.  You are costing me money time and frustration. 
             My conclusion in every forum will be Macintosh systems are very dependable but cannot be trusted due to software changes that delete common features necessary to do business.  They are not concerned with your business or time.  They may or may not react but as a business consumer I have to get the job done not wait for them to realize their mistakes and get around to making the products they sell usable.

  • How to add a text box in the layout (View)

    How to add a text box in the layout (View)

    Hi.
    Right Click in the RootUIElement container.
    Click Insert Element.
    Give Name: Input
    Type : Input Field.
    Press Enter.
    Regards
    Bala.

  • My "layout" view has disappeared. how do I get it back?

    I don't know how this happened but my "layout" view has disappeared and has been replaced by THIS view:
    I must have triggered some command but for the life of me I can't retrace my steps. Anyone know what caused this?
    Thanks in advance for any assistance.
    -C-

    I'm betting you have a major structural defect in your code that DW is choking on in Design View.
    Try fixing any errors found in the validator at http://validator.w3.org
    Usually something that bad is caused by an unclosed <title> tag.

  • Is there a way to automatically display a Word document in Print Layout view?

    I am using Report Generation Toolkit (v.1.0.1). After displaying the report, the view in Microsoft Word is always "Normal." It would be really nice to automatically show it in "Print Layout" view. (i.e. in Word, go to View >> Print Layout) Is there a way to do this programmatically through the vi? I'm using LV 7.1 and Windows 2000. Thanks,

    Hey dj143
    The best way to do something like that is with property nodes.You can do this the easy, by going into word and recording a macro. Then look at the macro and duplicate it using property nodes.here is a vi that I did for you that answer your question
    Joe.
    "NOTHING IS EVER EASY"
    Attachments:
    printview.vi ‏44 KB

  • Only source view, no layout view with PS web gallery.

    I created a web photo gallery using CS3... When i view the pages in GL CS2 from the gallery, it only shows source code, no layout view.
    Normally I wouldn't care, however, I have to add links to the jpgs.
    Is there a way to fix this so I can work with it?
    thanks for your help
    g

    hmmm. as I uploaded to provide a link the pages are not viewable in a browser.
    could it be the # sign in the URL?
    http://www.njrainbowdirectory.com/2008RBD-2/pages/Web%20Rainbow%20Directory#0001.html

Maybe you are looking for

  • AP Invoice Payment Automation in PL/SQL

    Hi, I have created AP invoices using the Standard Open Interface. Now, how do i create payments automatically in the system. Is there any API for this, how do I go about doing this in PL/SQL. Thanks. Navin

  • Consolidating Music Files into Itunes - File Name Invalid/Too Long!

    When trying to consolidate music files into my library, I get an error message stating "Failed, The file name was invalid or too long." ???? I have tons of songs and don't know which file name is invalid or too long???

  • Runtime Error when activating Comp Records

    When trying to activate IT 0759 records in Comp to update Basic Pay, some employees received a Runtime Error. It states, "The exception CX_HRPA_VIOLATED_POSTCONDITION was raised, but it was not caught anywhere along the call hierarchy." It says it wa

  • Changing system name in copied function

    Hi Guys, I have copied a bunch of functions, however the system is not allowing me to change the System Name in Actions tab. Can anyone help? Thanks

  • BW3.5 : Busness content == Need to find the source cube from an web item

    Hi,   While executing( preview) an iview  of the predelivered CRM business package( com.sap.pct.crm.slsAnalyt.spa.Customer iview for Sales manager), in Enterprise Portal, I get an error " Error loading template 0TPL_0CRM_SM_CUSTOMER".   I can see thi