... Design and View Issue

Hi All,
I have got stuck over a strange requirement.
There are 2 tables which are identical in structure. Both tables displays the same information.
Table structure is
TeacherID TeacherName param1 param2 param3 param4.
Now if the teacher has a special trainingcourse approved, their record is moved to another table. where the value of TeacherID, Teacher name remains same , but Any of the parameter values can differ.
The issue comes when we need to generate the report. The report should pick the value of parameters from Table1 if the teache has NO trainiing, and it should pick the record from Table2 if the teacher has the Training.
How to create a View which will display the information. as Decode function is not working in a Create View Command.
I have put a Flagg field , which turns to 1 whenever the teacher gets the training , and the record is moved/copied to table 2.
But how come we be able to display the report like below.
teacheId Teachername param1 param2 param3 param4...
xxx xxx xx xxx x xxx
where the value should be picked from Table 2 if there is a training , otherwise should be picked from Table1.
Kindly reply early, and suggest anyother possible design ..
Looking foward to your earliest feedback with this difficult design
Regards

There are a couple of options. Unless your tables are pretty small, I would porbably go with:
SELECT teacherid, teachername, param1, param2, param3, param4
FROM table1
WHERE flag <> 1 -- or possibly IS NULL depending on what you put in
UNION ALL       -- for a teacher with no training
SELECT teacherid, teachername, param1, param2, param3, param4
FROM table2Another option would be an outer join and DECODE or CASE. Something along the lines of:
SELECT t1.teacherid, t1.teachername,
       DECODE(flag, 1, t2.param1, t1.param1) param1,
       DECODE(flag, 1, t2.param2, t1.param2) param2,
       DECODE(flag, 1, t2.param3, t1.param3) param3,
       DECODE(flag, 1, t2.param4, t1.param4) param4
FROM table1 t1
   LEFT JOIN table2 t2 ON (t1.teacherid = t2.teacheridA third possibility, particularly if the number of trained teachers is relatively small would be scalar sub-queries like:
SELECT t1.teacherid, t1.teachername,
       DECODE(flag, 1, (SELECT param1 FROM table2 t2
                        WHERE t1.teacherid = t2.teacherid), t1.param1) param1,
       DECODE(flag, 1, (SELECT param2 FROM table2 t2
                        WHERE t1.teacherid = t2.teacherid), t1.param2) param2,
       DECODE(flag, 1, (SELECT param3 FROM table2 t2
                        WHERE t1.teacherid = t2.teacherid), t1.param3) param3,
       DECODE(flag, 1, (SELECT param4 FROM table2 t2
                        WHERE t1.teacherid = t2.teacherid), t1.param4) param4,
FROM table1 t1You would need to test with your data to determine which was better.
John

Similar Messages

  • BAM Activity and view issue on BizTalk server 2013 R2 machine.

    Hello all,
    I am trying to make BAM portal work since couple of days but no luck yet...
    I ma using BizTalk server 2013 R2.
    I am trying to deploy the activity and view from my Development server to Test server ( it's working fine on Developemnt).
    I have gone through one post and found this and followed steps here is the output for that :
    First confirm that you can see the name of the activity in the list of deployed activity by executing this command:
    bm.exe get-activities
    --> I can see the activity name in  there so I belive that activity is got created.
    While creating the BAM activity you must have created/deployed a view get the name of the view by using this command:
    bm.exe get-views -Activity:<activity name>
    --> I can see the view name in  there so I belive that view is exist.
    You need to provide permission to the account you are using to access the BAM portal on this view by using this command.
    bm.exe add-account -AccountName:”<AccountName>” -View:<viewname>
    --> while executing this command is got error as :
    Using 'BAMPrimaryImport' BAM Primary Import database on server 'TESTSERVER'...
    ERROR: Security management of the BAM view failed.
    The SQL role for the specified view is missing.
    Note : My BAMAlert service is running and running using
    GROUP\~biztalkservice account I am logged on Test Server using "NitinUser" account with administrator rights.
    What does this mean - if this mean that I needs to give rights to my user (NitinUser) on SQL Database please tell me how to do that ? with command....
    Thanks and Regards, Nitin.

    Hi Nitin,
    Can you try the solution as suggested by Thiago Almeida.
    http://connectedthoughts.wordpress.com/2008/06/16/bam-deployment-gotchas/
    His solution for this problem is to remove the view and re-add it, which worked for him. Obviously I didn't encounter this error, so have to suggest the solution from community.
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.
    Hello Ashwin,
    As per that post the author was having issue that view was not created ...
    also have noticed one thing that by executing following command in sql management studio.
    use
    BamPrimaryImport
    SELECT
    SUSER_SNAME(owner_sid),nameFROMsys.DATABASES
    on my development box it's showing my user GROUP\nitinUser and Name = CustomBizTalkDB
    but when I execute this on TEST server, entry for GROUP\nitinUser is not in database
    Thanks and Regards, Nitin.

  • WiSM Design and Testing Issues / Questions / Queries etc......

    Hi all. Heres hoping you can help........
    I hope you can grasp the following description of the test network I have. I admit a diagram would have been better but it's hard to send a whiteboard over the web : )
    I am currently in the process of designing and testing out a wireless solution and am having a few issues / queries. I have a 6509 with a Wireless Services Module (WiSM) installed in slot 3, one Cisco 1240 AP on a remote LAN and a DHCP server on a remote LAN (not the same as the AP)
    I am using LAG on controller 1 with port channel 1 and native VLAN 20.
    VLAN 20 is 10.1.1.0 / 24
    The management interface has IP address of 10.1.1.10
    The AP-manager interface has IP address of 10.1.1.11
    VLAN 11 is 128.88.1.0 / 24
    The service port has IP address of 128.88.1.10
    The Cisco 1240 AP on the remote LAN is picking up a IP address via DHCP (from a remote DHCP server) OK and can route to both the aforementioned VLANs 20 and 11.
    Issue/Question 1
    I can ping the management interface locally on the 6509 and also remotely from the AP so all looks OK there however I cannot ping the AP-manager locally or remotely.
    Is this expected behaviour? I would expect that if I can ping one I should be able to ping the other or is the AP-manager interface not routed and only used in some way to create the LWAPP tunnel>
    Issue/Question 2
    As previously stated the AP is picking up and IP address but it is not being passed the Option 43 parameter from the DHCP server (not yet ruled out the DHCP server as the cause of this). Due to this I have amended the DNS entry of the management interface (10.1.1.10) to CISCO-LWAPP-CONTROLLER as a last resort. With a console on the AP I can see that the AP tries to join by the "%LWAPP-5-CHANGED: LWAPP changed state to JOIN" output but then get;
    LWAPP_CLIENT_ERROR_DEBUG: spamHandleJoinTimer: Did not recieve the Join response
    LWAPP_CLIENT_ERROR_DEBUG: No more AP manager IP addresses remain.
    Is this related to the fact that I cannot see the AP-Manager interface on the network?
    Issue/Question 3
    I have chosen to hard code the IP address of the Service port rather than leave it to DHCP. I am more comfortable having static addresses for management. However, there is no option for a default gateway for the service port.... If I try to get round this by applying a static route via the CLI on the WiSM controller to point traffic out via 128.88.1.1 on VLAN 11 this seemingly overrides all routing on the controller and causes my management interface (10.1.1.10) to fall off the network. Is the routing table applied "en masse" to the Controller? If so this surely means that to use the Service Port you have to be on the local LAN segement?!?!
    Thanks for reading my ramble and heres hoping you can shed some light on my "niggles" !

    Hi
    I am having exactly the same problem.
    Getting the same error message "No more AP manager IP addresses remain."
    I'm deploying 200 AP's that will connect to 2x WiSM (4 controllers) in 2 seperate C6k Chassis
    (Controller 1a & 1b = wism 1, 2a & 2b = wism 2)
    I have had 1 out of the first 5 AP's physically connected, come online and register with Controller 2b (btw: this was not the master controller, it should not have registed with 2b). All others fail with the same error message as above.
    I have all Management and AP-Manager interfaces in the same vlan/subnet as my AP's.
    I place a console cable onto the failed APs and see the AP cycle though the motions of trying to find the controllers, download new software code from a random controller, then it reboots, gets DHCP assigned, then get the "No more AP manager ip addresses remain" and then issues a "Reload requested by LWAPP CLIENT.
    Then the AP does the whole cycle all over again.
    Not sure why the AP's don't register with the controllers when they are all in the same vlan.
    I have a couple of extra questions.
    1. what address do you bind to the dns entry cisco-lwapp-controller.localdomain, is it the management address or AP-Manager address ?
    I have bound it to the Management address for WiSM 1a.
    Also I have 4x controllers (2x WiSMs, 2 controllers per WiSM). Do I just bind controller 1a's address or do I have to put 4x DNS entries into my DNS server for all my controllers?
    2. DHCP option 43, Do I place all 4x management ip addresses in the option or do I put in the AP-Manager Ip address?
    I followed this guide but was still a little unsure http://www.cisco.com/en/US/products/hw/wireless/ps430/prod_technical_reference09186a00804fc3dc.html#wp125304
    2. This final question is more around Dynamic Interfaces for my 4 controllers once I get the AP's resisted,
    Do I have to set up a dynamic interface ip address on every controller?
    e.g.
    Ssid = data, VLAN=10, VLAN10=10.0.0.0/24, I will bind AP's 1-8 to VLan group 10.
    Do I have to setup 1 dynamic interfaces per controller in the 10.0.0.0 subnet, taking up 4 addresses ?
    And if I only have to set up 1 or 2 dynamic interface, how does this work if the controller fails?
    Cheers

  • Canvas and Viewer issues

    All of a sudden, can't see vid footage on the viewer or canvas.  Hear audio.  Clips are in the timeline.  4 hours trying to fix it.  Never happened before.  People with similar issues have apparently gotten cryptic answers so far.  Pleasse! someone who ACTUALLY knows a resolution respond.  I am standing by.
    Thank you
    Boe

    Try this:
    Shane's Stock Answer #15:  White or Black Canvas or Viewer
    Make sure the canvas or viewer are selected then go to VIEW>CHANNELS and set it to RGB.   It might be set to ALPHA.
    OR...
    Click on the drop down menu above the Viewer or Canvas and make sure that you are on IMAGE or IMAGE + WIREFRAME.

  • Adobe Color aka Kuler download and viewing issues

    Ive been trying to utilize the new adobe color and I'm finding that once I find a palette I like, I try to download it and when I try to view it, the file type is un supported in all of the CC apps I have including photoshop, Illustrator and after effects Does anyone know how to use them once their downloaded or at least how to view them so they can be used?

    You don't need to download the ase file from color.adobe.com to view it in photoshop / Illustrator / After Effects / InDesign / Flash.   These products have  "Color Themes" panel  at
    Windows > Extensions > Adobe Color Themes
    or
    Windows > Color Themes
    Simply  favorite a theme on color.adobe.com and it would show up in this panel.  From here you can use them directly in your designs.
    Let me know if that works out for you.

  • Issues in persisting dynamic entity and view objects using MDS

    Hi All,
    I'm trying to create dynamic entity and view objects per user session and to persist these objects throughout the session, I'm trying to use MDS configurations(either file or Database) in adf-config.xml.
    I'm facing following two errors while trying to run the app module:
    1. MDS error (MetadataNotFoundException): MDS-00013: no metadata found for metadata object "/model/DynamicEntityGenModuleOperations.xml"
    2. oracle.mds.exception.ReadOnlyStoreException: MDS-01273: The operation on the resource /sessiondef/dynamic/DynamicDeptEntityDef.xml failed because source metadata store mapped to the namespace / DEFAULT is read only.
    I've gone through the following links which talks about the cause of the issue, but still can't figure out the issue in the code or the config file. Please help if, someone has faced a similar issue.
    [http://docs.oracle.com/cd/E28271_01/doc.1111/e25450/mds_trouble.htm#BABIAGBG |http://docs.oracle.com/cd/E28271_01/doc.1111/e25450/mds_trouble.htm#BABIAGBG ]
    [http://docs.oracle.com/cd/E16162_01/core.1112/e22506/chapter_mds_messages.htm|http://docs.oracle.com/cd/E16162_01/core.1112/e22506/chapter_mds_messages.htm]
    Attached is the code for dynamic entity/view object generation and corresponding adf-config.xml used.
    ///////////App Module Implementation Class/////////////////////////
    public class DynamicEntityGenModuleImpl extends ApplicationModuleImpl implements DynamicEntityGenModule {
    private static final String DYNAMIC_DETP_VO_INSTANCE = "DynamicDeptVO";
    * This is the default constructor (do not remove).
    public DynamicEntityGenModuleImpl() {
    public ViewObjectImpl getDepartmentsView1() {
    return (ViewObjectImpl) findViewObject("DynamicDeptVO");
    public void buildDynamicDeptComp() {
    ViewObject internalDynamicVO = findViewObject(DYNAMIC_DETP_VO_INSTANCE);
    if (internalDynamicVO != null) {
    System.out.println("OK VO exists, return Defn- " + internalDynamicVO.getDefFullName());
    return;
    EntityDefImpl deptEntDef = buildDeptEntitySessionDef();
    ViewDefImpl viewDef = buildDeptViewSessionDef(deptEntDef);
    addViewToPdefApplicationModule(viewDef);
    private EntityDefImpl buildDeptEntitySessionDef() {
    try {
    EntityDefImpl entDef = new EntityDefImpl(oracle.jbo.server.EntityDefImpl.DEF_SCOPE_SESSION, "DynamicDeptEntityDef");
    entDef.setFullName(entDef.getBasePackage() + ".dynamic." + entDef.getName());
    entDef.setName(entDef.getName());
    System.out.println("Application Module Path name: " + getDefFullName());
    System.out.println("EntDef :" + entDef.getFileName() + " : " + entDef.getBasePackage() + ".dynamic." + entDef.getName());
    entDef.setAliasName(entDef.getName());
    entDef.setSource("DEPT");
    entDef.setSourceType("table");
    entDef.addAttribute("ID", "ID", Integer.class, true, false, true);
    entDef.addAttribute("Name", "NAME", String.class, false, false, true);
    entDef.addAttribute("Location", "LOCATION", Integer.class, false, false, true);
    entDef.resolveDefObject();
    entDef.registerSessionDefObject();
    entDef.writeXMLContents();
    entDef.saveXMLContents();
    return entDef;
    } catch (Exception ex) {
    System.out.println(ex.getLocalizedMessage());
    return null;
    private ViewDefImpl buildDeptViewSessionDef(EntityDefImpl entityDef) {
    try {
    ViewDefImpl viewDef = new oracle.jbo.server.ViewDefImpl(oracle.jbo.server.ViewDefImpl.DEF_SCOPE_SESSION, "DynamicDeptViewDef");
    viewDef.setFullName(viewDef.getBasePackage() + ".dynamic." + viewDef.getName());
    System.out.println("ViewDef :" + viewDef.getFileName());
    viewDef.setUseGlueCode(false);
    viewDef.setIterMode(RowIterator.ITER_MODE_LAST_PAGE_FULL);
    viewDef.setBindingStyle(SQLBuilder.BINDING_STYLE_ORACLE_NAME);
    viewDef.setSelectClauseFlags(ViewDefImpl.CLAUSE_GENERATE_RT);
    viewDef.setFromClauseFlags(ViewDefImpl.CLAUSE_GENERATE_RT);
    viewDef.addEntityUsage("DynamicDeptUsage", entityDef.getFullName(), false, false);
    viewDef.addAllEntityAttributes("DynamicDeptUsage");
    viewDef.resolveDefObject();
    viewDef.registerSessionDefObject();
    viewDef.writeXMLContents();
    viewDef.saveXMLContents();
    return viewDef;
    } catch (Exception ex) {
    System.out.println(ex.getLocalizedMessage());
    return null;
    private void addViewToPdefApplicationModule(ViewDefImpl viewDef) {
    oracle.jbo.server.PDefApplicationModule pDefAM = oracle.jbo.server.PDefApplicationModule.findDefObject(getDefFullName());
    if (pDefAM == null) {
    pDefAM = new oracle.jbo.server.PDefApplicationModule();
    pDefAM.setFullName(getDefFullName());
    pDefAM.setEditable(true);
    pDefAM.createViewObject(DYNAMIC_DETP_VO_INSTANCE, viewDef.getFullName());
    pDefAM.applyPersonalization(this);
    pDefAM.writeXMLContents();
    pDefAM.saveXMLContents();
    ////////adf-config.xml//////////////////////
    <?xml version="1.0" encoding="windows-1252" ?>
    <adf-config xmlns="http://xmlns.oracle.com/adf/config" xmlns:config="http://xmlns.oracle.com/bc4j/configuration" xmlns:adf="http://xmlns.oracle.com/adf/config/properties"
    xmlns:sec="http://xmlns.oracle.com/adf/security/config">
    <adf-adfm-config xmlns="http://xmlns.oracle.com/adfm/config">
    <defaults useBindVarsForViewCriteriaLiterals="true"/>
    <startup>
    <amconfig-overrides>
    <config:Database jbo.locking.mode="optimistic"/>
    </amconfig-overrides>
    </startup>
    </adf-adfm-config>
    <adf:adf-properties-child xmlns="http://xmlns.oracle.com/adf/config/properties">
    <adf-property name="adfAppUID" value="TestDynamicEC-8827"/>
    </adf:adf-properties-child>
    <sec:adf-security-child xmlns="http://xmlns.oracle.com/adf/security/config">
    <CredentialStoreContext credentialStoreClass="oracle.adf.share.security.providers.jps.CSFCredentialStore" credentialStoreLocation="../../src/META-INF/jps-config.xml"/>
    </sec:adf-security-child>
    <persistence-config>
    <metadata-namespaces>
    <namespace metadata-store-usage="mdsRepos" path="/sessiondef/"/>
    <namespace path="/model/" metadata-store-usage="mdsRepos"/>
    </metadata-namespaces>
    <metadata-store-usages>
    <metadata-store-usage default-cust-store="true" deploy-target="true" id="mdsRepos">
    <metadata-store class-name="oracle.mds.persistence.stores.file.FileMetadataStore">
    <property name="metadata-path" value="/tmp"/>
    <!-- <metadata-store class-name="oracle.mds.persistence.stores.db.DBMetadataStore">
    <property name="jndi-datasource" value="jdbc/TestDynamicEC"/>
    <property name="repository-name" value="TestDynamicEC"/>
    <property name="jdbc-userid" value="adfmay28"/>
    <property name="jdbc-password" value="adfmay28"/>
    <property name="jdbc-url" value="jdbc:oracle:thin:@localhost:1521:XE"/>-->
    </metadata-store>
    </metadata-store-usage>
    </metadata-store-usages>
    </persistence-config>
    </adf-config>
    //////////////////////////////////////////////////////////////////////////////////////////////////////////

    Hi Frank,
    I m trying to save entity and view object xml by calling writeXMLContents() and saveXMLContents() so that these objects can be retrieved using the xmls later on.
    These methods internally use MDS configuration in adf-config.xml, which is creating the issue.
    Please share your thoughts on resolving this or if, there is any other way of creating dynamic entity/view objects for db tables created at runtime.
    Nik

  • Issue with Output designer and  Konica bizhub Pro 920 Driver:

    Hi, i would appreciate if someone could help me with the following issue:
    I have designed a document using Adobe Output Designer and need to print it on Konica printer which uses above driver. Konica is not included in Adobe Presentment Target List so i am trying to use a Generic Postscript L2 - (PSLEVEL2) presentment target. I want to make few changes to this driver to match it with destination printer settings. e.g Output Order should be Face Up, Input and Output Tray should be Auto, Print position should be Left etc etc. I have tried to edit ICS file but it's not making any sense to me as i dont's know the PCL. Could anyone familiar with a similar situation help?
    Thanks in advance
    Tayyab.

    Hi, i would appreciate if someone could help me with the following issue:
    I have designed a document using Adobe Output Designer and need to print it on Konica printer which uses above driver. Konica is not included in Adobe Presentment Target List so i am trying to use a Generic Postscript L2 - (PSLEVEL2) presentment target. I want to make few changes to this driver to match it with destination printer settings. e.g Output Order should be Face Up, Input and Output Tray should be Auto, Print position should be Left etc etc. I have tried to edit ICS file but it's not making any sense to me as i dont's know the PCL. Could anyone familiar with a similar situation help?
    Thanks in advance
    Tayyab.

  • I have created numerous forms in Designer and for some reason, "Edit in Designer" from PDF, I cannot edit any of the fields in Design View.

    I have created numerous forms in Designer and for some reason, "Edit in Designer" from PDF, I cannot edit any of the fields in Design View.

    Is it possible you accidentally put the fields on the master page?

  • ASP in 'Design View' Issues

    I'm trying to add ASP includes that I created in DW using
    simple HTML and saving it out as ASP into a ASP Page in DW that
    originally came from FrontPage :( When I include these ASP includes
    I loose the visual of all my elements when I'm working in the
    Design and Code View. Which I would rather edit in Design that
    Code.
    FYI: When I brought the original ASP page from Frontpage in
    DW I was able to VIew the html elements and had the ASP icon in the
    corresponding ASP includes which is perfect.
    Please any help would be great. Obviously I have been thrown
    into a programmers world and I'm drowning. :)

    It sounds like your includes are full HTML pages and not just
    snippets. The
    includes cannot have <head>, <html>, or
    <body> tags anywhere.
    "hairpeace65" <[email protected]> wrote in
    message
    news:f32bi9$i8v$[email protected]..
    > I'm trying to add ASP includes that I created in DW
    using simple HTML and
    > saving it out as ASP into a ASP Page in DW that
    originally came from
    > FrontPage
    > :( When I include these ASP includes I loose the visual
    of all my
    > elements
    > when I'm working in the Design and Code View. Which I
    would rather edit in
    > Design that Code.
    >
    > FYI: When I brought the original ASP page from Frontpage
    in DW I was able
    > to
    > VIew the html elements and had the ASP icon in the
    corresponding ASP
    > includes
    > which is perfect.
    >
    > Please any help would be great. Obviously I have been
    thrown into a
    > programmers world and I'm drowning. :)
    >
    >

  • FCP 7/ Sync issue in the canvas and viewer-not in timeline.

    I am using FCP 7 on a Mac Pro.  I am seeing an audio/ video sync issue in the canvas and viewer if I display at anything less than 50%.  at 50% the video is choppy, but will play in sync.  If I adjust between 50% and 25% or less, I can actually see the frame change without moving the play head.  Has anyone else experienced this and found a solution?

    Thank you for the advice MtD.  This content was encoded using H264 compression, but I have the option within my media encoder application to create only i frames-no B or P frames.  This gives me a high quality file that is supposed to be much more "edit friendly" than standard H264.
    I'm in an environment where re-rendering to Apple ProRes is not always an option.  I have imported H264 content before and found no issue when trying to playback in the canvas.  One odd thing I did encounter with my "problematic" file is that though I capture this at 23.976fps, Quicktime Player identifies the frame rate as 23.97fps and Final Cut then interprets this as 59.94fps.  I thought this might be the culprit, but even after adjusting my frame rate to 23.98fps, and FCP7 importing as 23.98fps-the odd sync issue still appears in the canvas when displaying at less than 50%.
    I will take your advise and re-render to Apple ProRes when that is a possibility.
    Thank you.

  • Installation issue with CS6 Design and Web Premium

    I purchased CS6 Design and Web Premium for school with a voucher from JourneyEd. I have downloaded (it took 13 hours not 1.5)and assume that it completed since I saw the files extracting in the download assistant. I always download to my desktop and install from there. I have two folders, CS6 Master Collection which is empty and CS6 Design and Web Premium which has three subfolders; Adobe CS6, Design and Web Premium and fonts. The first two have set-up file applications within them. There is no .exe file so I have run the set-up applications within these file folders. An installer appears and runs onscreen but nothing is installed. There are no error messages. I purchased this computer in June and it has more than enough space. I am using Windows 7. I really need this for school.

    If the current installation files you have downloaded are not working then please try downloading the trial of Creative Suite 6 Design and Web Premium from http://www.adobe.com/cfusion/tdrc/index.cfm?product=designweb_premium.  You can then enter the serial number for your purchase during the installation process.

  • Why is the character style for hyperlinks not displaying correctly in design mode/viewing/output?

    I am using RH9 and generating WebHelp, and I needed to globally bump up the font size of just my hyperlinked text. I went into my Style Sheet > Character tab, changed the font size of the various character settings for hyperlinks, and clicked Apply and then OK. Normally, this would change all of my hyperlink text font sizes immediately across all of my topics. However, this time, it made no changes to any existing hyperlinked text, and it only affected new hyperlinks that I subsequently added. For the existing hyperlinks, I can only manually change the font size of the each hyperlink one at a time, but that's crazy (there's 100's in this help).
    I can successfully change other characters styles and paragraph styles. This issue only affects the hyperlink character styles. It also shows up in all RH modes - Design mode, viewing, and in the final output.
    Is this an indication of a corrupted style sheet or some other combination of events that I have yet to discover?

    Hi,
    You probably have inline styling in your project overwriting the font size of your style sheet. How are you changing the font size of the individual hyperlinks?
    There is a workaround for inline styling: Open your CSS in notepad and add !important after the font-size:
    font-size: 4pt !important;
    Note that this is a workaround, not a solution. As a solutions you can remove all the style attributes from your hyperlinks to force them to take the CSS styling again.
    Greet,
    Willam

  • JSF Design Time View Not working correctly for ADF/JSF components

    My project is not using any external tag libraries. It is based purely on ADF core/html and JSF core/html components. The design time view does not show the appropriate presentation, everything is shown as nexted frame containers (I suppose how you would show a component that does not have a visual representation).
    If I create a new project and copy my jsp (jsf) pages over they show perfectly. I did this activity and all was going well in the new project and then I lost the design time view again. I cannot tell you what I did to cause the issue, maybe it was a modification to the web.xml as has been suggested in some other threads. Can anyone tell me what I should be looking for that causes this problem, what corrective actions I might take to eliminate the issues

    Ok I have isolated this issue. In my phase listener I had this line of code:
    private static final Logger _logger =  Logger.getLogger(EigRequest.class.getPackage().getName());
    and I changed it to
    private static final Logger _logger =
    Logger.getLogger(EigRequest.class.getName());
    and design mode started to work. I guess either of the above works for me although I do not understand why the line works when you run the application but not in design mode.
    Moral to the story is if something fails in any one of these types of decorators you will drop into a raw view mode. The question I have is if errors are occuring how do I figure out where they may be. There is no indication that anything is wrong with the exception that you lose most of the design mode functionality.
    This was not a compile issue, this was not a runtime issue. It took me quite a few hours of writing a test program to validate that it was not just writing a phase-listener issue; then launching, editing, relaunching the application to find the problem. I will say that a good portion of the code came from a Eclipse project. If you add the offending lines of code while using JDeveloper you do not loose design mode immediately. You only see the problem the next time you start JDeveloper which complicates finding the problem.

  • Project Gantt Bar Bug in P6 (EPPM and PM) - A strange and Unique Issue

    Hello All,
    I have 18 projects in my production EPS but one has a problem, i've been unable to resolve, so far.
    The Issue*
    In the Project-Layout-View (Project Space), when I look at project X's Gantt Bar, following is observed.
    A- When he Project is Open:
    All is good. There is no issue.
    1- The bar length and position are good, i.e., it starts and ends at right location on the timescale.
    2- The bar has two colours (blue for actual and green for remaining) separated at the point where the Data Date is.
    3- Project Baseline Bar is all good
    B- When the Project is Closed:
    The Bar goes corrupt.
    1- The bar starts at the right spot on timescale but goes beyond its forecast finish by about 1 year.
    2- The whole bar has only one colour, blue, which mis-informs the viewer that the project has completed.
    3- Project Baseline Bar stays good
    Issue Environment"
    - I have P6 V8.2 (stand alone) and P6 V8.0 (Enterprise) both on Win 7 and the issue appears in both.
    - The issue appeared about halfway of the project progress.
    - I've tried summarizing - but in vain
    Look forward to seeing some interesting solution(s) from you.
    Regards

    Thanks ITPM
    Creating a new layout from scratch did not help.
    But something else happened that fixed the problem.
    The issue disappeared as soon as I updated the schedule in question with an updated XER, as our usual fortnightly exercise. So, looks like the issue started and ended in the source database.
    Now, when I stack the latest as well as 20 archived copies of project X sorted by finish dates, and all closed, in the project layout view, I see a nicely (uniformly) increasing blue colour, project after project, except the last fortnight's archive copy whose Gantt bar is corrupt - corrupt as described in the very first text of this thread.
    I still don’t know why and shall keep thinking about and shall ask the source re their view(s). This is not a serious issue for me but, could be serious to those fellows who have their summary/tracking layouts accessible (or designed to be accessible) by their project staff.

  • Apple tv Features and Bugs issue can be fixed

    Hi Apple
    We are looking for more safety, more new feature airplay, netflix , parental control, folder, new channels
    for netflix can you add netflix setting in setting to disable the search/ genre off/on it just have a instant queue / just for kids only.
    because as parent we work alot and we want a way for kids not go to search and click what they cant see. a easy way is to disable the search feature.
    for airplay for ipad, iphone and computer a way to stream on apple tv without glitches and reboot or close on the app.Airplay is wasting battiries life percents. it will be great a way to get this fix.
    it will be great a way to add app in a folder to make more room on the screen and have more cool channels add it like cnnet, crackle, kids programs, weather channel, buy movie tickets , fandango , plus more.
    the quaity from iphone4s,ipad 3, macbook is not getting better, is really low. I am trying to stream full 1080p photography from my devices and i get really low. i reboot it and still the same thing. photo stream has the same issue it will not appear in full hd
    please we are looking more foward for netflix setting to keep our kids safe, more great apps and better airplay feature and quaity to view files,music,video on apple tv without low,bad, wrost.
    thanks

    Apple don't read these user forums.
    Send feedback here:
    http://www.apple.com/feedback/appletv.html
    I don't like certain aspects of the way Netflix shows recently watched content either - in amidst Dora the Explorer etc there may be a poster for a horror movie I watched or something.  I'd like to disable this feature or be able to clear the recently viewed list and have a favourites list instead for kids shows.
    I do wonder however if the interface may be largely Netflix's design and not something Apple could necessarily change if they use some form of Netflix API to provide the content.
    I don't really like Airplay - we tend to use a Mac running 24/7 to provide iTunes content via AppleTV's Computers icon.
    AC

Maybe you are looking for

  • HT4314 Problem with Game Centre accounts on iPod touch

    I have one Apple ID, and I have two sons who each have an iPod touch, each creating separate Game Centre 'accounts' using my ID.  It worked OK at first, but now we can only access the new account.  Is there a way I can correct this to the way it was

  • How do I emulate mouse "right click" on MacBooKPro? The existing responses have been no help.

    Late 2012 MacBook pro. Software downloads resulted in boxes with actions menus. Software update now via AppleStore - takes minutes to present then nothing on screen - nothing works.  Got a couple of updates.  Nothing now.

  • Material's which contain C indicator must not show in MIBC

    Hi, I want to remove the C indicator from all Material's under MRP View. Through BDC i clear the C Indicator. For confirmation i saw in MARC table that ABC indicator column has no value as C. But when i run the transaction MIBC, how it shows the C in

  • How to kow when a page is complety loaded?

    Hi all. I have a JEditorPane in which I'm rendering a html page. But I want to know when the page finish to load in the JEditorPane. Is there a method, or trick to know this? Thanks.

  • Vector Circle Has Jagged Edges - Why?

    I'm creating a button logo in Fireworks for print use and wanted to use Vector shapes as I thought they didn't distort. I'm working in CMYK at 300DPI. So I start out with a white vector circle for the outer-ring to the button using an Anti-Alias edge