ADF Train Application Issue, Trains  are  not  showing up on UI

Hi
I am new to ADF, I am Using JDeveloper 11.1.2.3.0
I have created a bounded taskflow train-flow.xml , with train flow, and four jsff pages sequentially start.jsff,adress.jsff,payment.jsff,review.jsff and one Taskflow Call activity children_btf
children_btf.xml contain three jsff pages.
I have used a template Train-Template.jsf for those three jsff pages with the <af:train id="pt_t1" value="#{controllerContext.currentViewPort.taskFlowContext.trainModel}"/>.
I dragged that train-flow.xm bounded task flow as region into the Main.jsf page
-->when i run this Main.jsf page no trains are showing up on UI.
Plz help me.
train-flow.xml
<?xml version="1.0" encoding="windows-1252" ?>
<adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
<task-flow-definition id="train-flow">
<default-activity>start</default-activity>
<view id="start">
<page>/start.jsff</page>
<train-stop>
<display-name>Start</display-name>
</train-stop>
</view>
<view id="addresses">
<page>/addresses.jsff</page>
<train-stop>
<display-name>Adress</display-name>
</train-stop>
</view>
<task-flow-call id="children_btf">
<task-flow-reference>
<document>/WEB-INF/children_btf.xml</document>
<id>children_btf</id>
</task-flow-reference>
<train-stop>
<display-name>Child train</display-name>
</train-stop>
</task-flow-call>
<view id="payment">
<page>/payment.jsff</page>
<train-stop>
<display-name>PAYMENT</display-name>
<sequential>false</sequential>
</train-stop>
</view>
<view id="reviews">
<page>/reviews.jsff</page>
<train-stop>
<display-name>Review</display-name>
</train-stop>
</view>
<task-flow-return id="taskFlowReturn1">
<outcome>
<name>taskFlowReturn1</name>
</outcome>
</task-flow-return>
<train/>
<control-flow-rule id="__1">
<from-activity-id>reviews</from-activity-id>
<control-flow-case id="__2">
<from-outcome>commit</from-outcome>
<to-activity-id>taskFlowReturn1</to-activity-id>
</control-flow-case>
</control-flow-rule>
<control-flow-rule id="__3">
<from-activity-id>children_btf</from-activity-id>
<control-flow-case id="__4">
<from-outcome>taskFlowReturn1</from-outcome>
<to-activity-id>payment</to-activity-id>
</control-flow-case>
</control-flow-rule>
<use-page-fragments/>
</task-flow-definition>
</adfc-config>
Train-Template.jsf
<?xml version='1.0' encoding='UTF-8'?>
<af:pageTemplateDef xmlns:af="http://xmlns.oracle.com/adf/faces/rich" var="attrs" definition="private"
xmlns:afc="http://xmlns.oracle.com/adf/faces/rich/component" xmlns:f="http://java.sun.com/jsf/core">
<af:decorativeBox id="pt_db1">
<f:facet name="center">
<af:facetRef facetName="body"/>
</f:facet>
<f:facet name="top">
<af:train id="pt_t1" value="#{controllerContext.currentViewPort.taskFlowContext.trainModel}"/>
</f:facet>
</af:decorativeBox>
<af:xmlContent>
<afc:component>
<afc:display-name>Train-Template</afc:display-name>
<afc:facet>
<afc:facet-name>body</afc:facet-name>
</afc:facet>
</afc:component>
</af:xmlContent>
</af:pageTemplateDef>
One Page: adresses.jsf
<?xml version='1.0' encoding='UTF-8'?>
<ui:composition xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
xmlns:f="http://java.sun.com/jsf/core">
<-- <af:pageTemplate viewId="/Train-Template.jsf" id="pt1"> -->
<f:facet name="body">
<af:panelHeader text="panelHeader 1" id="ph1">
<f:facet name="context"/>
<f:facet name="menuBar"/>
<f:facet name="toolbar"/>
<f:facet name="legend"/>
<f:facet name="info"/>
<af:outputText value="Adress Stop" id="ot1"/>
</af:panelHeader>
</f:facet>
</af:pageTemplate>
</ui:composition>
children_btf.xml
<?xml version="1.0" encoding="windows-1252" ?>
<adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
<task-flow-definition id="children_btf">
<default-activity>billing</default-activity>
<view id="billing">
<page>/billing.jsff</page>
<train-stop>
<display-name>Billing</display-name>
</train-stop>
</view>
<view id="shipping">
<page>/shipping.jsff</page>
<train-stop>
<display-name>Shipping</display-name>
</train-stop>
</view>
<task-flow-return id="taskFlowReturn1">
<outcome>
<name>taskFlowReturn1</name>
</outcome>
</task-flow-return>
<train/>
<control-flow-rule id="__1">
<from-activity-id>shipping</from-activity-id>
<control-flow-case id="__2">
<from-outcome>don</from-outcome>
<to-activity-id>taskFlowReturn1</to-activity-id>
</control-flow-case>
</control-flow-rule>
<use-page-fragments/>
</task-flow-definition>
</adfc-config>

-->sorry, i have tried many ways , i forgot to remove the comment for page template in adrress.jsf fragment, there are no more commnets in any .jsff pages still its not working
this is the my main page, using task flow as region.
Main.jsf
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
<af:document title="untitled1.jsf" id="d1">
<af:form id="f1">
<af:panelStretchLayout topHeight="50px" startWidth="100px" id="psl1">
<f:facet name="top">
<af:panelAccordion id="pa1">
<af:showDetailItem text="Browse" id="sdi1" disclosed="true"/>
<af:showDetailItem text="Search" id="sdi2"/>
</af:panelAccordion>
</f:facet>
<f:facet name="center">
<!-- id="af_twocol_left_full_header_Stretched" -->
<af:panelStretchLayout startWidth="100px" id="psl2">
<f:facet name="center">
<af:region value="#{bindings.trainflow2.regionModel}" id="r1"/>
</f:facet>
<f:facet name="start"/>
</af:panelStretchLayout>
</f:facet>
</af:panelStretchLayout>
</af:form>
</af:document>
</f:view>
Edited by: Rajashekar Thippireddy on May 16, 2013 9:30 AM

Similar Messages

  • Simple ADF Train Application Issue, Trains  are  not  showing up on UI

    Hi
    I am new to ADF,I am Using JDeveloper 11.1.2.3.0
    I have created a bounded taskflow train-flow.xml , with train flow, and three jsff pages sequentially start.jsff,adress.jsff,payment.jsff.
    I have used a template Train-Template.jsf for those three jsff pages with the <af:trainButtonBar>.
    I dragged that train-flow.xm bounded task flow as region into the Main.jsf page
    -->when i run this Main.jsf page no trains are showing up on UI.
    Plz help me.
    train-flow.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
    <task-flow-definition id="train-flow">
    <default-activity>start</default-activity>
    <view id="start">
    <page>/start.jsff</page>
    <train-stop/>
    </view>
    <view id="addresses">
    <page>/addresses.jsff</page>
    <train-stop/>
    </view>
    <view id="payment">
    <page>/payment.jsff</page>
    <train-stop>
    <sequential>false</sequential>
    </train-stop>
    </view>
    <train/>
    <use-page-fragments/>
    </task-flow-definition>
    </adfc-config>
    Train-Template.jsf
    <?xml version='1.0' encoding='UTF-8'?>
    <af:pageTemplateDef xmlns:af="http://xmlns.oracle.com/adf/faces/rich" var="attrs" definition="private"
    xmlns:afc="http://xmlns.oracle.com/adf/faces/rich/component" xmlns:f="http://java.sun.com/jsf/core">
    <af:decorativeBox id="pt_db1">
    <f:facet name="center">
    <af:facetRef facetName="body"/>
    </f:facet>
    <f:facet name="top">
    <af:trainButtonBar id="pt_tbb1"/>
    </f:facet>
    </af:decorativeBox>
    <af:xmlContent>
    <afc:component>
    <afc:display-name>Train-Template</afc:display-name>
    <afc:facet>
    <afc:facet-name>body</afc:facet-name>
    </afc:facet>
    </afc:component>
    </af:xmlContent>
    </af:pageTemplateDef>
    One page is (adress.jsff)
    <?xml version='1.0' encoding='UTF-8'?>
    <ui:composition xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:f="http://java.sun.com/jsf/core">
    <af:pageTemplate viewId="/Train-Template.jsf" id="pt1">
    <f:facet name="body">
    <af:panelHeader text="panelHeader 1" id="ph1">
    <f:facet name="context"/>
    <f:facet name="menuBar"/>
    <f:facet name="toolbar"/>
    <f:facet name="legend"/>
    <f:facet name="info"/>
    <af:outputText value="Adress Stop" id="ot1"/>
    </af:panelHeader>
    </f:facet>
    </af:pageTemplate>
    </ui:composition>

    Hi,
    here is your problem:
    <af:trainButtonBar id="pt_tbb1"/>
    the train bar is not linked to a train model. You need to reference #{ControllerContext.currentViewPort.taskFlowContext.trainModel} from the trainButtonBar to make it work
    Frank

  • My Iphone calendar events are not showing up in iCal when I sync? Syncing has not been an issue till today?

    My Iphone calendar events are not showing up in iCal when I sync? Syncing has not been an issue till today?

    I found this tip from a 2011 discussion on the same topic.
    Open iCal and backup or export your entries. Make a note of the fie name and location, you're going to need them in a minute. Once your backup/export is completed, close the iCal application.
    Open Finder and remove everything inside the "Username/Library/Calendars" folder. For instance, if your username is "Joe", then move everything inside the "Joe/Library/Calendars" folder.
    Open the iSync application. It's located in the "/Applications/" folder. Once iSync is opened, go into the iSync Preferences (iSync -> Preferences) and push/click the "Reset Sync History" button. Then, close the iSync application.
    Re-Open the iCal application and Import (File -> Import) a new calendar. When prompted, use your notes from Step #1 to select the file your created earlier. Once completed, close the iCal application (you should have all of your calendar entries back.)
    Open the iTunes application and connect your Apple iPhone to the computer.
    Within the Advanced section of the Info tab for the Apple iPhone, check the box the overwrites/replaces the Calendar data on the Apple iPhone.
    Click the Apple/Sync button. New, modified and deleted entries should now be syncing correctly.
    That's it! You should be all set and iTunes, iCal and our Apple iPhone should all be playing nicely as friends again. We've used the exact method to repair our own Apple iPhone at least once... maybe even twice.

  • Lov Values are not showing for Discoverer Reports in Application

    Hi,
    I developed some discoverer reports, those reports having parameters with LOV. Those LOV values are showing in Discoverer Desktop, but after registering those reports in Oracle applications those LOV values are not showing. Pls let me know how resolve this issue.
    Regards,
    Hanimi.

    Hi,
    Also it is necessary to know how the LOVs are defined. Are they based on Application flexvalues for example? In which case it may be that you have not got your NLS language parameters set correctly when connecting from Applications.
    Rod West

  • On Windows 7, CS6 all products, but especially need help with ID.  Fonts that are showing in other applications are not showing in ID.

    on Windows 7, CS6 all products, but especially need help with ID.  Fonts that are showing in other applications are not showing in ID.

    The ID Program folder will be relevant to your OS...
    I took a shot and right clicked on my Scripts Samples, choose reveal in Explorer and opened up the ID Program folder.
    As shown, there is a Fonts folder.
    Drag/Copy/Paste fonts to this folder.

  • HT2474 when I am opening any application including safari, these icons are not showing in dock, how to get open applications in my dock?

    when I am opening any application including safari, these icons are not showing in dock, how to get open applications in my dock?

    This could be a plist corruption problem, but I'm not sure.
    Sometimes, the preference list files get corrupted. You can usually just remove them and they'll get re-created. This may require you to reset certain settings. A notable exception to this is the Mail plist which actually stores the Library structure of your email accounts. Deleting the Mail plist will definitely cause lots of problems, but is recoverable.
    The plist files are stored in the /Users/username/Library/Preferences/ folder. They usually have the naming convention of com.company.programname.plist.
    A simple troubleshooting technique is to move a suspect plist file out of the Preferences folder and start up the app, again. It will re-create the plist from scratch.
    In your case, I would try the com.apple.dock.plist. You can use Activity Monitor to kill the Dock app and it will restart. Or, you can log out and log back in.
    There is a new file with Leopard called com.apple.dock.db. I haven't figured out what it does, but you might try moving it out. If anything gets worse, you can move the old file back in replacing the newly created one.
    This all sound somewhat odd, so I don't know if this will help.

  • Some videos are not showing in Apple TV playlist after upgrade to 6.0.  Can play on Macbook itunes and using airplay to Apple TV.  Anybody else have this issue?

    Some videos are not showing in my Apple TV playlists after upgrade to 6.0.  They were there prior to upgrade and I can play on Macbook itunes and also using using airplay to Apple TV.  Anybody else have this issue?

    Ok, so I'll try again.  Thank you for the idea of looking in Home Videos, which is where all my "lost" videos are listed.
    Is there a way to get them to display under their appropriate genre in the Movie section, which is where they all were listed prior to the os6 update?  It does me no good to have hundreds of movies categorized in iTunes via a genre only to have them appear in Home Videos on ATV.  These are not "home movies." They are legit mp4 movies that worked great under v5.

  • Windows (tool) panels are not showing.

    Windows (tool) panels are not showing, or letting me use most of the tool features. e.g. when I klick windows>align but no align window shows up, even though it is ticked in the 'Windows' drop down menu. This is the second time this has happened since subscribing. Help!

    Sam,
    It may be time for the list.
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save curent artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • I've just found that three movies I've bought from iTunes on on my iPad are not showing up on Apple TV or anywhere other than that iPad.  What's up with that and will I lose these films if I reset this iPad?

    I've just found that three movies I've bought from iTunes on on my iPad are not showing up on Apple TV or anywhere other than that iPad.  What's up with that and will I lose these films if I reset this iPad?

    Thanks.  The reason this has become an issue is that I recently bought a new Macbook Air that the iPad is not synced to.  The one is was synced to was stolen.  If I want to sync this iPad to the new Air, won't it be wiped before I'm able to copy these films or am I wrong about that?

  • My smart playlists are not showing up on my iPhone after turning on Music Match

    I have turned on Music Match (iOS 5 GM and iTunes 10.5 r 9) and can see all the songs in my library now across the cloud. The iPhone also has copied over most (but strangely not all) of my regular playlists and my folder structure.
    But all the Smart Playlists I created for my iPhone are not showing up so my music is not grouped the way I want it to be.
    For example, I have a playlist that selects out all the songs with three stars or more that have not been played in the last 2 weeks (so I only hear songs I like, but have not heard lately).
    So what's up??

    Isn't iTunes 10.5 r 9 a beta release for developers?  If that's the case then isn't there a special web site for developers to discuss issues (and they are not supposed to discuss them on the public forum)?  If you're not a developer and have this through unofficial channels then I'm not sure you can expect full functionality.

  • Texts are not showing up after upgrading to version 11

    Could someone help me with why some of my texts are not show up on my Flash project? Before the upgrade, everything is fine. However, after upgrading to version 11, my texts are disappearing.
    Before (version 10.3.183.7...)
    After (version 11.0.1.152...)
    The texts in the boxes will disappear, when I hover mouse cursor over it. Those boxes with texts in them are created with an external AS file, and the texts are dynamicaly changed/put in with an external XML file. There is a mask on the boxes, show only 4 at a time.
    Demo: www.ethanslin.com/portfolioWorks/flashWorks/demo/
    You will see the changes with Flash player version 11, and everything working fine with older versions.
    I use iMacs with Snow Leopard and Lion, and this happens on all of the browsers with Flash Player version 11.01.152. I also tested on Windows 7, and it is still happening. Is this a Flash Player bug or something changed that I am not aware of? Is there a work around for this?

    This is a known issue and we have a fix for this in our next release. Thanks for posting.

  • Suddenly, events entered in Calendar on iPhone are not showing up in iCal or iCloud

    Until late November, i had an iPhone 4s with iOS 5.   Then i got an iPhone 6 with iOS 8.  As previously, when i would enter an event in the Calendar, that data would also show up in my iCal calendar and on my iCloud calendar, until the last couple of days.  Now, new entries are not showing up on iCal or iCloud.  I encountered the problem that my iPhone, 64G, is being backed up to the iCloud and after two backups, taking up 2.4G each, my 5G of iCloud storage was used up.  I speculated that this was why my phone data stopped syncing to the other calendars on the computer and cloud, though i did not know for sure.  I deleted one of the two back ups and am about to delete the other one.  I have never had this problem of running out of iCloud storage on my other phone.  According to Settings>iCloud>Storage, i had 89MB.  But since i have deleted one of the 2.4G backups (which was "incomplete") my new entries are still not showing up in iCal and on the iCloud.
    Is there a way to get this feature to work again?
    Are there things i can check or uncheck in settings or in Calendar or  ??   that will get this to work well as it did in iOS 5?

    ckuan -  thank you for replying.  i am really desperate for help.  I have wasted so much time on this. I was on hold with Apple support for a long time and then had a call with a rep that lasted over an hour but he didn't know anything about issues of these kinds.  i was put on hold a lot while he consulted.  He did agree that the data wasn't syncing from iPhone to iCloud and iCal because the iCloud storage was used up by the iPhone back ups.  So he advised deleting one of them.  I now have 2.4G of storage on iCloud.  Am i wrong to think that should be enough?   I still ave the original complete back up (2.4g) undeleted, in case there some reason that i need it. i don't like deleting things i don't have a good understanding of.
    Following your instructions, i went to Settings>Mail,Contacts,Calendars.  I then scrolled down to Calendars and at the bottom, i see where it says Default Calendar.  This raised new questions for me which i will ask you/others now:
    On the Default Calendar page, there is a heading that says iCloud and there is a second heading that says my gmail email address, [email protected].  Under the iCloud heading, there is a list of 8 "calendars," called Work, Family, Pets, Home, etc.  Under the gmail address heading, there is only one option listed, which is my gmail username.  When i went to the Default Calendar option, as i think you suggested if i understood you right, i found that the Calendar with the checkmark next to it was the gmail user name, under the gmail address heading.  Presumably, this is the same setting i had on my 4s with iOS 5.
    I wanted to follow your instruction to change this to iCloud as Default Calendar. but the only option i have is to choose only one of those 8 "calendars," either Work, or Pets, or Home, etc.  Does this make sense?   The only reason i know for having these many different calendars was to give different colors to the different event categories. I didn't really want them to be separate calendars. i just wanted to use the color coding for type of event in my overall calendar.
    I don't know why this is suddenly so complicated and confusing, after working fine  for the first two or three weeks i've had the new iPhone.  Suddenly, when i enter events in Calendar, it's not reaching the cloud.  If this is because my gmail and/or google user name was checked as the default calendar, that was not a setting i would've recently changed.  I never would  have set my iPhone to only use one of the iCloud sub-calendars at my default calendars.
    But right now, per your instructions, i have checked Settings>Mail.Contacts,Calendars>Calendars>Default Calendar to iCloud>Home (Home being one of my 8 sub-calendars).  When i look on the Mail,Contacts,Calendars setting list, under Default calendar, it now says Home, instead of my gmail username.  Just to be clear, there is no way to check iCloud on the Default Calendar page.  i have tried checking it, but it's just a somewhat grayed out heading and doesn't respond to attempts to check it, it's not offered as a Calendar option. Only the various sub-calendars are offered a default calendar options, under the grayed out iCloud heading.  So, i selected Home, for no particular reason. i have lots of entries under different categories.
    Here is the result:   still no new entries showed up in iCloud or iCal.  In January, a couple of days ago,  i entered three dental appointments, for which i have always used Health as what i thought was a category (not a separate  "calendar").  The color of Health events is green.  The color of Home events is Blue.  After changing the Default Calendar from gmail email address>user name to iCloud>Home (blue), the dental appointment in January did not show up.  But when i went into the first dental appointment event>edit and changed the "calendar" to Home, it then showed up on the calendar.  The other two dental appointments which were still Health did not show up. 
    Then, i changed the first dental appointment that is showing up in January back to Health (green).  It still shows up, now, colored green, even though Home/blue is now my default calendar.  But the two other dental appointments are not showing up.
    Does this mean if want to use my Calendar and have the data backed up in iCloud and iCal, from now on, i need to use only one sub calendar and give up  using the different color codes because iOS 8 is forcing me to choose only one sub calendar to be my whole calendar, and the only way to use different colors for different categories of events would be to first enter it as the default sub calendar (such as dental appointment>Home), and then go back and edit it into the correct sub calendar (such as changing it to the correct category, Health) to show the correct one instead of the "default" one?
    Why was this made so much more difficult and complicated than it used to be?  It was working normally up  until a couple of days ago.
    What i need, if possible, is info on what setting i can use to go back to using my gmail address user name as my default calendar, so that it can just work properly as it did before.  It seems ridiculous that i am forced by iCloud to use a sub category as my default calendar and everything that isn't entered as that subcategory will not be processed in iCloud.  Why does iCloud provide these sub calendar category options at all, if it's going to force people to only be able to use one of them?
    What am i missing here?
    Is there a setting that would enable combining all subcategories as one calendar, called iCloud, but where i could still use the different colors for different categories?  

  • My Websites are not showing up on the Creative Cloud Control Panel

    Hi guys,
    For some reason, just recently, my websites that I have hosted with BC, that I have built for clients, are not showing up on the right control panel? Usually when I load up CC, it shows the Website text as ...loading, then my sites appear... now, nothing.
    Help!?
    Thanks,
    Aaron

    This seems to be a bug with Creative Cloud. I am encountering the same issue. We've gone ahead and notified the product team, but for now, you can access your websites by directly logging into Business Catalyst: http://www.businesscatalyst.com/admin/Index.aspx. Use the same log in information that you use for your Creative Cloud memberhsip.
    Thank you for bringing this issue to our attention! Hopefully we'll get it sorted out soon.

  • My extensions are not showing up

    I have installed quite a few extensions, but some of them are not showing up.
    The extensions showing up are as follows:
    Pearl
    amplify
    Not showing up:
    Google application mail watcher
    Shareaholic
    similar web

    Dear Sherri
    Please could you let us know which version of Photoshop you are using and whether the extensions menu is now greyed out? If you used Adobe add-ons to download your products, it will be easy to reinstall them directly from the 'My Add-ons' link on the left-hand side of the add-ons website: creative.adobe.com/addons.
    If, however, you are a CS6 user and use Adobe Exchange to obtain products for Photoshop, the 'My Stuff' section of the panel, as well as Extension Manager, will give you an indication of what should and shouldn't be currently installed in your copy of Photoshop.
    Kind regards
    Krystal
    -Adobe Exchange / Addons team

  • My functions are not showing up on my screen

    Hi I am not exactly sure how to describe this, I just installed cs6 and my functions are not showing up on my live preview. I have never seen anything like this before.
    here is my file, I have filled it in hot pink. This is how it shows up in the layer panel, bridge and in my explorer.
    here is a screen shot of what I see on my screen. If you look closely, I wrote "test" and it shows up in the layer panel but still nothing but a transparent background shows up on my live preview
    Please tell me how to fix this issue!!!

    Pictures from where?

Maybe you are looking for

  • Vendor wise payment term or po wise payment term with details

    Dear All,, Please provide us detail of payment terms from PO Sr. No. 5500000839  to 5500001284 .  any  sap standard report of any sap standard tcode or vendor wise payment term or po wise payment term with details with warm regards pritpal

  • Acrobat X Pro V10.1.0 on Windows 7 32 Bit Prof -- insufficient memory with protection tools

    Dear Acrobat X Users, when executing the tools "Ausgeblendete Informationen entfernen" (eliminate invisible information) or "Dokument bereinigen" (clean document) from the safety and security section (in German: Werkzeuge->Schutz), as recommended by

  • Trouble adding G4 to home network

    Not sure if this is the apropriate place to post this. Let me know if it is not. I have a home network set up with a Linksys router that is connected by ethernet cable to a Dell PC. It is WEP encrypted. My problem is that when I type the WEP key into

  • How to display data horizontally

    Hi, I have to display data the following format. sales order item description 01/09/2010 02/09/2010 03/09/2010 100              1         test         3                     4                6 in currently i am displaying the following format. sales o

  • Full trash emptying, iPhoto '11

    Hi! I have the issue with the trash of iPhoto '11. I have removed all photos from its trash and now it is showing me that trash contains 1 photo. I empty the trash one more time, but it is no effect. How can I force deleting 1 photo? iPhoto can not s