How to achieve similar background result

Hello,
I am trying to achieve a similar background to this picture for related art images I have.
Please advise how to achieve this result in either photoshop elements 9 or lightroom 5, or whether this can be achieved without either programs.
Thank you.
aaphrodite

"Do you mind clarifying how did you do the mask on the statue to protect the light there?"
The video Alec posted is very good -- and detailed!  Your statue has a good edge against the background so the selection was much easier.   And, you don't need a new background, just a darker one.
My steps were:
Select the statue with quick selection tool.
On the Menu Bar: Select > Inverse -- this selects the background instead of the shadow.
On the Menu Bar: Layer > New Fill Layer > Gradient and select the Reverse box -- this makes the layer and masks the stature itself from adjustments preserving the original light on the stature.  Note the new layer and mask in the upper right corner
I can post some screen shots if it helps. 

Similar Messages

  • How to achieve rotating background effect?

    I am interested in creating a rotating background like the
    one found at
    Dispatch . I know how to
    set the rotation angle, but i have no idea how to make it rotate
    where you can see it moving. I also know how to make something
    slide in a line, but i dont know how to make it rotate.
    Thanks in advance for your help.

    There is no one tool or method that will render that type of background. It is a stack of layers containing the various shapes and stylized strokes you see. Their interacions are enhanced by their varied colours, edge hardness, layer blend modes, and layer opacity. Once you realize that it's a series of separate and very simple objects, layering up something like this isn't really that difficult, though it might take some artistic vision, taste and experimentation to produce a result that looks pleasing, and not just random or disparate.
    If it's within your budget to purchase some pre-made art of this type, Digital Juice makes some every interesting layered images that you can customize for yourself by manipulating layers. Just having a look at their site can give you some ideas as to how art like this is produced.
    http://www.digitaljuice.com/products/product_volumes.asp?cid=2&pvid=9

  • Linked results pages - not sure how to achieve it

    Hi all. This is my problem. I have a MySQL database with a single table which contains a number of listings of albums by different musicians. The client has asked for a specific way of searching this and for the life of me I can't work out how to achieve it.
    Essentially what's needed are 3 pages:
    page 1 will pull into a repeating region all the listings in the table, displaying the artist's name. You click on the artist's name and it takes you to page 2, which shows all the available albums by that artist (and only that artist). You click on the album of choice and it takes you to page 3 where you'll see the detailed listing for that item.
    So far I've managed to get a page which shows all the different albums for the artist (for test purposes the database currently only has two entries, both by Queen) - these display fine and click through to the appropriate detail page for each album. What I can't work out is how to insert a page before the first of these to allow for selection of artists. I could probably easily produce a results page which pulls the artist name from the database (using a SQL query such as DISTINCT artist) but I can't work out how whatever results are produced would link through to the first of my pages.
    If anyone can get me facing the right way on this I'd really appreciate it. I've appended the code for my two pages (op_1.php and op_2.php) below.
    Thanks in advance,
    Jeff
    op_1.php code:
    <?php require_once('Connections/ourprice.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_ourprice, $ourprice);
    $query_rsOPchoose = "SELECT * FROM OPmusic";
    $rsOPchoose = mysql_query($query_rsOPchoose, $ourprice) or die(mysql_error());
    $row_rsOPchoose = mysql_fetch_assoc($rsOPchoose);
    $totalRows_rsOPchoose = mysql_num_rows($rsOPchoose);
    ?><?php
    // RepeatSelectionCounter_1 Initialization
    $RepeatSelectionCounter_1 = 0;
    $RepeatSelectionCounterBasedLooping_1 = false;
    $RepeatSelectionCounter_1_Iterations = "5";
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <title>Untitled Document</title>
    </head>
    <body>
    <table width="600" align="center" cellpadding="2">
      <?php do { ?>
        <tr>
          <?php
    // RepeatSelectionCounter_1 Begin Loop
    $RepeatSelectionCounter_1_IterationsRemaining = $RepeatSelectionCounter_1_Iterations;
    while($RepeatSelectionCounter_1_IterationsRemaining--){
    if($RepeatSelectionCounterBasedLooping_1 || $row_rsOPchoose){
    ?>
    <td><a href="op_2.php?recordID=<?php echo $row_rsOPchoose['id']; ?>"><img src="images/<?php echo $row_rsOPchoose['smallphoto']; ?>" alt="" name="smallpic" width="150" height="150" border="0" id="smallpic" /></a></td>
    <?php
    } // RepeatSelectionCounter_1 Begin Alternate Content
    else{
    ?>
    <td> </td>
    <?php } // RepeatSelectionCounter_1 End Alternate Content
    if(!$RepeatSelectionCounterBasedLooping_1 && $RepeatSelectionCounter_1_IterationsRemaining != 0){
    if(!$row_rsOPchoose && $RepeatSelectionCounter_1_Iterations == -1){$RepeatSelectionCounter_1_IterationsRemaining = 0;}
    $row_rsOPchoose = mysql_fetch_assoc($rsOPchoose);
    $RepeatSelectionCounter_1++;
    } // RepeatSelectionCounter_1 End Loop
    ?>
        </tr>
        <?php } while ($row_rsOPchoose = mysql_fetch_assoc($rsOPchoose)); ?>
    </table>
    <br>
    </body>
    </html>
    <?php
    mysql_free_result($rsOPchoose);
    ?>
    op_2.php code:
    <?php require_once('Connections/ourprice.php'); ?><?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $colname_DetailRS1 = "-1";
    if (isset($_GET['recordID'])) {
      $colname_DetailRS1 = (get_magic_quotes_gpc()) ? $_GET['recordID'] : addslashes($_GET['recordID']);
    mysql_select_db($database_ourprice, $ourprice);
    $query_DetailRS1 = sprintf("SELECT * FROM OPmusic WHERE id = %s", GetSQLValueString($colname_DetailRS1, "int"));
    $DetailRS1 = mysql_query($query_DetailRS1, $ourprice) or die(mysql_error());
    $row_DetailRS1 = mysql_fetch_assoc($DetailRS1);
    $totalRows_DetailRS1 = mysql_num_rows($DetailRS1);
    ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <title>OurPrice | <?php echo $row_DetailRS1['mtTitle']; ?> Fundraising Auction Prize To Use At Your Fundraising Event</title>
    <meta name="description" content="<?php echo $row_DetailRS1['mtDescription']; ?>" />
    <meta name="keywords" content="<?php echo $row_DetailRS1['mtKeywords']; ?>" />
    <style type="text/css">
    <!--
    .style3 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
    .style5 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #FF0000;
    -->
    </style>
    </head>
    <body>
    <table width="600" align="center">
      <tr>
        <td rowspan="12"><img src="images/<?php echo $row_DetailRS1['largephoto']; ?>" alt="" name="bigpic" width="200" height="200" id="bigpic" /></td>
        <td><div align="center"><span class="style5"><?php echo $row_DetailRS1['artist']; ?> </span></div></td>
      </tr>
      <tr>
        <td><div align="center"><span class="style3"><?php echo $row_DetailRS1['title']; ?> </span></div></td>
      </tr>
      <tr>
        <td><div align="center"><span class="style3"><?php echo $row_DetailRS1['description']; ?> </span></div></td>
      </tr>
      <tr>
        <td><div align="center"><span class="style3"><?php echo $row_DetailRS1['signedby']; ?> </span></div></td>
      </tr>
      <tr>
        <td><div align="center"><span class="style3"><?php echo $row_DetailRS1['certification']; ?> </span></div></td>
      </tr>
      <tr>
        <td><div align="center"><span class="style3"><?php echo $row_DetailRS1['reserveprice']; ?> </span></div></td>
      </tr>
      <tr>
        <td><div align="center"><span class="style3"><?php echo $row_DetailRS1['insurance']; ?> </span></div></td>
      </tr>
      <tr>
        <td><div align="center"></div></td>
      </tr>
      <tr>
        <td><div align="center"></div></td>
      </tr>
      <tr>
        <td> </td>
      </tr>
      <tr>
        <td class="style3"><div align="center"><a href="op_1.php">Go back</a> </div></td>
      </tr>
      <tr>
        <td> </td>
      </tr>
    </table>
    </body>
    </html><?php
    mysql_free_result($DetailRS1);
    ?>

    jeffmg wrote:
    Hi all. This is my problem. I have a MySQL database with a single table which contains a number of listings of albums by different musicians.
    That's where your problem lies. You need one table for the artists, and a second table for the albums.
    artist_id
    artist
    1
    Queen
    2
    The Beatles
    3
    Rod Stewart
    album_id
    artist_id
    album
    1
    1
    Made in Heaven
    2
    1
    Innuendo
    3
    2
    Please, Please Me
    4
    2
    Revolver
    5
    2
    Sergeant Pepper's Lonely Hearts Club Band
    6
    3
    Every Picture Tells a Story

  • How to achieve the results by Query ??

    Hello Guys,
    I have couple tables which I need to join to get the result....This is what is in the tables...
    CList Table
    CID, Name
    A, ABC
    B,CDE
    C,JFK
    JList Table
    JID, Name
    1, Something
    2, Another
    3, Else
    4, Should be something
    JOb_2_Courses
    JobID, CourseID
    1,A
    1,B
    2,C
    Employee Table
    EID, Job_ID
    1A, 1
    2A,1
    3B,1
    2C,2
    23D,3
    CStatus Table
    StatusID, Desc
    1,Completed
    2,Pending Approval
    3,Declined
    4,Scheduled
    5,Register
    Now user can only register the course which are related with their job....NO course else.....
    When they register it is moved to temp_course_registration and then once completed to COURSE_HISTORY
    For Example : So Employee : 1A will see two courses to register A and B...
    Say he registers A....it makes an entry in temp_course_registration table with the course id, employeeid and date....
    With further steps once that status is updated to '1'.....the course is deleted from temp_course_registration and is moved to course_history........
    Now to show to the user...I need to include all my tables in the query and on the basis of status, show necessary things to the user....
    Output :
    Course_ID, Status.............
    Say if they completed the course will come from course_history, if in the process will come from temp_course_registration.....if nothing is in the tables for the specific employee...this means status is '5' and they need to register everything...
    Can someone let me know, how to achieve the results....
    Thanks,
    Harsimrat

    Hello
    I'm off home now so I can't look at the query, but for future reference, if you want to improve your chances of getting help, you need to provide simple create table statements, and test data to go with it. I've done that with what you provided and hopefully someone else will be able to help. Also, you were asked if you could provide this in your other thread...
    CREATE TABLE CList(CID varchar2(1), Name varchar2(3))
    insert into clist values('A', 'ABC');
    insert into clist values('B','CDE');
    insert into clist values('C','JFK');
    CREATE TABLE JList(JID number, Name varchar2(30))
    insert into jlist values(1, 'Something');
    insert into jlist values(2, 'Another');
    insert into jlist values(3, 'Else');
    insert into jlist values(4, 'Should be something');
    CREATE TABLE JOb_2_Courses(JobID number, CourseID varchar2(1))
    insert into job_2_courses VALUES(1,'A');
    insert into job_2_courses VALUES(1,'B');
    insert into job_2_courses VALUES(2,'C');
    CREATE TABLE Employee (EID varchar2(3), Job_ID number)
    INSERT INTO employee VALUES('1A', 1);
    INSERT INTO employee VALUES('2A',1);
    INSERT INTO employee VALUES('3B',1);
    INSERT INTO employee VALUES('2C',2);
    INSERT INTO employee VALUES('23D',3);
    CREATE TABLE CStatus(StatusID number, Descr varchar2(30))
    insert into cstatus values(1,'Completed');
    insert into cstatus values(2,'Pending Approval');
    insert into cstatus values(3,'Declined');
    insert into cstatus values(4,'Scheduled');
    insert into cstatus values(5,'Register');HTH
    David

  • Poor quality, jaggy bitmapped titles - how to acheive good quality results

    Using imovie HD and idvd you can achieve half decent results by upping the quality of your exported project.
    On completion of your imovie project...
    1) select share (to quicktime) (top menu...forgive me if I get the names wrong..typing from memory)
    2) change to full quality (quicktime)... save file to location of your choice
    You can also choose expert settings and select DV etc.
    ...this creates a higher quality mp4 file (as opposed to exporting to idvd)
    4) on completion of the render, you can drag this file onto your idvd project
    If you require even better results, try Final cut studio

    Thanks for the response Kevin,
    I fully updated as of last week - Premiere 8.1.0, Media Encoder 8.1.0.122 and ran the export again with a brand new Premiere project, dragged into a sequence, export media, selected Quicktime / ProRes 422HQ codec, matched the frame size, pressed queue to open Media Encoder and the started the export. 
    Exactly the same results I'm afraid - blocky, pixelated areas on gradients or areas of similar color.
    Frustratingly, the free and 6 year old Mpeg Streamclip (v1.9.2) does a much better job, on a par with Final Cut. I don't suppose there's any way to automatically route the export via it?! Where Media Encoder uses 3 or 4 color shades with blocky finite edges, Streamclip and FCP seem to use 6 or 7 shades and the transitions between areas far smoother with visible dithering (you can see this in my original screenshots).
    I would say that it seems to do with the source camera and how it's been originally encoded - I've done some further tests with Canon C300 rushes and they seem to convert / export well without problems and yet some blue skies in footage shot on a Sony F55 show some obvious banding (after conversion to ProRes 422HQ) that doesn't appear on the source.
    I'm happy to provide the raw H264 mov to see if you are able to get any better results.
    Chris

  • How to schedule the background job daily twice?

    Hi,
    How to schedule the background job daily twice? any conditions?
    Regards,
    Srihitha

    see the step by step procedure.
    Scheduling Background Jobs:
    1. Background jobs are scheduled by Basis administrators using transaction SM36.
    2. To run a report in a background, a job needs to be created with a step using the report name
    and a variant for selection parameters. It is recommended to create a separate variant for each
    scheduled job to produce results for specific dates (e.g. previous month) or organizational units (e.g.
    company codes).
    3. While defining the step, the spool parameters needs to be specified
    (Step-> Print Specifications->Properties) to secure the output of the report and help authorized users
    to find the spool request. The following parameters needs to be maintained:
    a. Time of printing: set to “Send to SAP spooler Only for now”
    b. Name – abbreviated name to identify the job output
    c. Title – free form description for the report output
    d. Authorization – a value defined by Security in user profiles to allow those users to access
    this spool request (authorization object S_SPO_ACT, value SPOAUTH). Only users with matching
    authorization value in their profiles will be able to see the output.
    e. Department – set to appropriate department/functional area name. This field can be used in
    a search later.
    f. Retention period – set to “Do not delete” if the report output needs to be retained for more
    than 8 days. Once the archiving/document repository solution is in place the spool requests could
    be automatically moved to the archive/repository. Storage Mode parameter on the same screen
    could be used to immediately send the output to archive instead of creating a spool request.
    Configuring user access:
    1. To access a report output created by a background job, a user must have at
    least access to SP01 (Spool requests) transaction without restriction on the user
    name (however by itself it will not let the user to see all spool requests). To have
    that access the user must have S_ADMI_FCD authorization object in the profile with
    SPOR (or SP01) value of S_ADMI_FCD parameter (maintained by Security).
    2. To access a particular job’s output in the spool, the user must have
    S_SPO_ACT object in the profile with SPOAUTH parameter matching the value used
    in the Print Specifications of the job (see p. 3.d above).
    3. Levels of access to the spool (display, print once, reprint, download, etc) are
    controlled by SPOACTION parameter of S_SPO_ACT. The user must have at least
    BASE access (display).
    On-line reports:
    1. Exactly the same configuration can be maintained for any output produced
    from R/3. If a user clicks “Parameters” button on a SAP Printer selection dialog, it
    allows to specify all the parameters as described in p. 3 of
    “Scheduling background jobs” section. Thus any output created by an online report
    can be saved and accessed by any user authorized to access that spool request
    (access restriction provided by the Authorization field of the spool request
    attributes, see p. 3.d of “Scheduling background jobs” section).
    Access to report’s output:
    1. A user that had proper access (see Configuring user access above) can
    retrieve a job/report output through transaction SP01.
    2. The selection screen can be configured by clicking “Further selection
    criteria…” button (e.g. to bring “Spool request name (suffix 2)” field or hide other
    fields).
    3. The following fields can be used to search for a specific output (Note that
    Created By must be blank when searching for scheduled job’s outputs)
    a. Spool request name (suffix 2) – corresponds to a spool name in p. 3.b in
    “Scheduling background jobs” section above).
    b. Date created – to find an output of a job that ran within a certain date range.
    c. Title – corresponds to spool Title in p. 3.c in “Scheduling background jobs”
    section above).
    d. Department - corresponds to spool Department in p. 3.e in “Scheduling
    background jobs” section above).
    4. Upon entering selection criteria, the user clicks the Execute button to
    retrieve the list of matching spool requests.
    5. From the spool list the user can use several function such as view the
    content of a spool request, print the spool request, view attributed of the spool
    request, etc. (some functions may need special authorization, see p.3 in
    Configuring user access)
    a. Click the Print button to print the spool request with the default attributes
    (usually defined with the job definition). It will print it on a printer that was
    specified when a job was created.
    b. Click the “Print with changed attributed” button to print the spool request
    with the different attributes (e.g. changing the printer name).
    c. Click the “Display contents” button to preview the spool request contents. A
    Print and Download functions are available from the preview mode.

  • How to achieve BC4J stateful management in a web app?

    I have a web application developed with JSP, Struts as the view / controller layer and BC4J as the model layer.
    I am not using the complete ADF framework. Just plain struts, JSP and BC4J.
    What I want to do is to have one struts action to set a
    query condition on a view object and execute the query.
    Then i release the application module. In another struts action I want to get the same application module with the
    viewobject query set.
    Pseudo for Action 1:
    try{
    Configuration.createRootApplicationModule("test.bc.AppModule", "AppModuleLocal");
    .. get view object
    .. build and perform the query on the view object.
    finally
    Configuration.releaseRootApplicationModule(am, true);
    pseudo for action2:
    try{
    Configuration.createRootApplicationModule("test.bc.AppModule", "AppModuleLocal");
    .. get view object with the query stored
    .. use the results.
    finally
    Configuration.releaseRootApplicationModule(am, true);
    I cannot make this work. If I put the am from action1 in the session object and retrieves it from the session in action2 it works. But I need to release the appmodule in action 1 since I have no guarantees that the user will run action2..
    I have read the paper of Steve Muench "Understanding Application Module Pooling Concepts and: Configuration Parameters"
    This document says:
    "ADF application modules provides the ability to snapshot and reactivate their pending state to XML (stored on the file system or in the database), and the ADF application module pooling mechanism leverages this capability to deliver a "managed state" option to web application developers that simplifies building applications like the example just given.
    As a performance optimization, when an instance of an AM is returned to the pool in "managed state" mode, the pool keeps track that the AM is referenced by that particular session. The AM instance is still in the pool and available for use, but it would prefer to be used by the same session that was using it last time because maintaining this so-called "session affinity" improves performance.
    I have set my bc4j configurations to
    releasmode = STATEFUL
    jbo.passivationstore = databse
    jbo.server.internal_connection= my jdbc connection
    But the appmodule returned in action2 is not the same as the one returned in action1.
    I am using jdev 9052 and deploying to oc4j 904 standalone.
    I guess I have to use som other commands for retrieving/ releasing the AM or set some properties on it, but I have not found any documentation for this.
    Any tips on how to achieve this bc4j session state to work in a plain struts , bc4j environment is appreciated.

    The Configuration.createRootApplicationModule() and companion releaseRootApplicationModule() API's are not for use in web applications. They are designed for use by simple command-line console programs.
    Using the BC4J application module pool programmatically in a web environment should be done like the JDeveloper 9.0.3/9.0.4 "Pooling" sample illustrates.
    In the JDev 9.0.3 or 9.0.4 version, see the sample project under ./BC4J/samples/Pooling
    Hope this helps.

  • How to achieve parent-child relationship using self join?

    my table structure is as follows
    parent child name
    -1     1     A1
    1     2     A2
    1     3     A3
    how to achieve the hierarchy model using self join. this can be easily achieved using "connect by prior". but how to achieve the same using self join?

    Hi,
    Yes, that's definitely possible. If you only need to display two levels from the hierarchy, a self-join is a good option. Make it an outer join if you need to show everyone on one level, regardless of whether they have a match on the other level or not; for example, if you want the output:
    child_name     child_id     parent_name     parent_id
    A1          1
    A2          2          A1          1
    A3          3          A1          1It's good that you posted some sample data. Now post the results you want from that data, and your query (what you think is the best attempt you've made so far). If you haven't tried anything so far, then look at some other simple self-join to get ideas.

  • How to modify  the search results of the GUI for subscribing to calendars

    How to modify the search results of the GUI for subscribing to calendars
    Note:
    <OL>
    <LI>The following information applies only to iPlanet Calendar Server 5.0
    Patch 3.
    <LI>All of the cases for which the XSLT changes will work have not been
    verified.
    <LI>The following is only an example of an XSLT customization.
    </OL>
    The example below shows a sample customization of the
    search_for_calendars
    dialog. This customization will result in the Display Name being included as
    part of the search results in the GUI, which would normally show just the
    calendar ID. It will render the returned calendars in the following format:
    <P>
    Display Name - <I>description</I>
    <P>
    Normally, the format would be as follows:
    <P>
    Calendar-ID - <I>description</I>
    <P>
    </A>
    The example consists of the following two files:
    <P>
    <OL>
    <LI>search_for_calendars_common.xsl
    (the entire XSLT file)
    <P>
    <LI>diffctx.txt
    (the context sensitive diff patch file,
    which basically shows only the changes that need to be made)
    </OL>
    <P>
    <HR>
    </A><B>
    search_for_calendars_common.xsl</B>
    <?xml version="1.0" ?>
    <!DOCTYPE xsl:stylesheet (View Source for full doctype...)>
    - <!--
    set the output properties
    <xsl:stylesheet
    xmlns:xsl="http://www.w3.org/XSL/Transform/1.0"
    result-ns="http://www.w3.org/TR/REC-html40">
    -->
    - <xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0">
    - <!-- set the output properties
    -->
    <xsl:output method="html" encoding="ISO-8859-1" />
    <xsl:include href="data/common.xsl" />
    <xsl:include href="data/i18n.xsl" />
    <xsl:include href="data/date_format.xsl" />
    <xsl:include href="data/dialog_tabs.xsl" />
    - <xsl:template match="/">
    <xsl:apply-templates select="calendar" />
    </xsl:template>
    - <xsl:template match="calendar">
    - <xsl:choose>
    - <xsl:when test="@top='true'">
    - <xsl:variable name="Frame1">
    <xsl:value-of select="frame[1]" />
    </xsl:variable>
    - <xsl:variable name="Frame2">
    <xsl:value-of select="frame[2]" />
    </xsl:variable>
    - <xsl:variable name="Frame3">
    <xsl:value-of select="frame[3]" />
    </xsl:variable>
    - <xsl:variable name="tab_value">
    <xsl:value-of select="@tab" />
    </xsl:variable>
    - <HTML>
    - <HEAD>
    <xsl:call-template name="contextJavascript" />
    <TITLE>Calendars Search: Calendar Express - iPlanet</TITLE>
    </HEAD>
    - <FRAMESET border="0" frameborder="0" rows="77,*,71">
    <FRAME name="tab" marginheight="0" marginwidth="0" scrolling="no"
    scrollbars="no" src="{$Frame1}" />
    <FRAME name="main" frameborder="0" src="{$Frame2}" />
    <FRAME name="button" marginheight="0" marginwidth="0" scrolling="no"
    scrollbars="no" frameborder="0" src="{$Frame3}" />
    </FRAMESET>
    </HTML>
    </xsl:when>
    - <xsl:when test="@view='searchProperties'">
    - <xsl:for-each select="group">
    - <xsl:if test="@name='searchProperties'">
    <xsl:call-template name="search_toolbar" />
    </xsl:if>
    </xsl:for-each>
    </xsl:when>
    - <xsl:when test="@view='main'">
    - <xsl:for-each select="group">
    - <xsl:if test="@name='main'">
    <xsl:call-template name="main" />
    </xsl:if>
    </xsl:for-each>
    </xsl:when>
    - <xsl:when test="@view='button'">
    - <xsl:for-each select="group">
    - <xsl:if test="@name='button'">
    <xsl:call-template name="button_root" />
    </xsl:if>
    </xsl:for-each>
    </xsl:when>
    - <xsl:otherwise>
    - <html>
    What's this view? (search_for_cals.xsl) -
    <xsl:value-of select="@view" />
    </html>
    </xsl:otherwise>
    </xsl:choose>
    </xsl:template>
    - <xsl:template name="search_toolbar">
    - <HTML>
    <xsl:call-template name="emit_frame_head_tag" />
    - <BODY bgcolor="{$bgcolor_background}" background="imx/tdbg.gif"
    marginwidth="0" marginheight="0" onload="window.focus()">
    - <FORM>
    - <xsl:attribute name="action">
    <xsl:value-of select="./formdata@action" />
    </xsl:attribute>
    <xsl:attribute name="name">form</xsl:attribute>
    <xsl:attribute name="onSubmit">document.forms[0]['find'].click(); return false;
    </xsl:attribute>
    <xsl:apply-templates select="formdata" />
    - <CENTER>
    - <TABLE border="0" cellpadding="2" cellspacing="0" width="100%" height="100%">
    - <TR>
    - <TD align="center">
    - <TABLE border="0" cellpadding="3" cellspacing="1">
    - <TR>
    - <TD colspan="4">
    <FONT size="{$font_size_big_2}" face="{$font_name}">Find all calendars where
    the calendar</FONT>
    </TD>
    </TR>
    - <TR>
    - <TD valign="baseline">
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <SELECT name="which">
    <OPTION value="name;calid">name or ID</OPTION>
    <OPTION value="name">name</OPTION>
    <OPTION value="primaryOwner">primary owner</OPTION>
    <OPTION value="calid">ID</OPTION>
    </SELECT>
    </FONT>
    </TD>
    - <TD valign="baseline">
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <SELECT name="how">
    <OPTION value="0">contains</OPTION>
    <OPTION value="1">begins with</OPTION>
    </SELECT>
    </FONT>
    </TD>
    - <TD valign="baseline">
    <INPUT type="text" name="what" />
    </TD>
    - <TD valign="baseline">
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <INPUT type="button" name="find" value="Find">
    - <xsl:attribute name="onClick">
    <xsl:value-of select="./button[@name='find']" />
    </xsl:attribute>
    </INPUT>
    </FONT>
    </TD>
    </TR>
    </TABLE>
    </TD>
    </TR>
    </TABLE>
    </CENTER>
    </FORM>
    </BODY>
    </HTML>
    </xsl:template>
    - <xsl:template name="main">
    - <HTML>
    <xsl:call-template name="emit_frame_head_tag" />
    - <BODY bgcolor="{$bgcolor_background}" background="imx/tdbg.gif"
    marginwidth="0" marginheight="0">
    - <FORM name="form" method="post">
    - <xsl:attribute name="action">
    <xsl:value-of select="./formdata@action" />
    </xsl:attribute>
    <xsl:attribute name="name">form</xsl:attribute>
    <xsl:apply-templates select="formdata" />
    <INPUT type="hidden" name="how" value="0" />
    <INPUT type="hidden" name="which" value="name;calid" />
    <INPUT type="hidden" name="what" value=" />
    <INPUT type="hidden" name="selectedGroup" />
    - <xsl:if test="(./calsearchresults/nomatch)">
    - <!-- print no match found
    -->
    &#38;nbsp;
    &#38;nbsp;
    No Match Found
    </xsl:if>
    - <xsl:for-each select="./calsearchresults/searchresultcal">
    - <P>
    &#38;nbsp;
    &#38;nbsp;
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <FONT size="{$font_size_big}" face="{$font_name}">
    Owner:
    <xsl:value-of select="@owner" />
    <FONT size="{$font_size_big}" face="{$font_name}" color="{$bgcolor_wend_mid}">|
    </FONT>
    Calendar ID:
    <xsl:value-of select="@id" />
    <BR />
    </FONT>
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <xsl:choose>
    - <xsl:when test="@subscribed='false'">
    &#38;nbsp;
    &#38;nbsp;
    - <INPUT type="checkbox" name="calendar">
    - <xsl:attribute name="value">
    <xsl:value-of select="@name" />
    </xsl:attribute>
    </INPUT>
    &#38;nbsp;
    &#38;nbsp;
    - <A target="_blank">
    - <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand" />
    </xsl:attribute>
    <xsl:value-of select="@name" />
    </A>
    </xsl:when>
    - <xsl:otherwise>
    &#38;nbsp;
    &#38;nbsp;
    - <A target="_blank">
    - <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand" />
    </xsl:attribute>
    <xsl:value-of select="@name" />
    </A>
    &#38;nbsp;
    (Subscribed)
    </xsl:otherwise>
    </xsl:choose>
    - <xsl:if test="string-length(@description) > 0">
    &#38;nbsp;
    &#38;nbsp;
    - <FONT size="{$font_size_big}" face="{$font_name}">
    <xsl:value-of select="@description" />
    </FONT>
    </xsl:if>
    </FONT>
    </FONT>
    </P>
    </xsl:for-each>
    </FORM>
    </BODY>
    </HTML>
    </xsl:template>
    </xsl:stylesheet>
    <P>
    <A HREF="#back">Back</A>
    <P>
    <HR>
    </A>
    <B>diffctx.txt</B>
    Index: search_for_calendars_common.xsl
    ===================================================================
    RCS file: /m/src/ns/server/msg/calendar/core/html/search_for_calendars_common.xsl,v
    retrieving revision 1.1.2.14
    diff -c -r1.1.2.14 search_for_calendars_common.xsl
    *** search_for_calendars_common.xsl 2000/12/12 23:10:43 1.1.2.14
    --- search_for_calendars_common.xsl 2001/03/15 23:55:19
    *** 182,188 ****
    &#38;nbsp; &#38;nbsp;
    <INPUT type="checkbox" name="calendar">
    <xsl:attribute name="value">
    ! <xsl:value-of select="@id"/>
    </xsl:attribute>
    </INPUT>
    &#38;nbsp; &#38;nbsp;
    --- 182,188 ----
    &#38;nbsp; &#38;nbsp;
    <INPUT type="checkbox" name="calendar">
    <xsl:attribute name="value">
    ! <xsl:value-of select="@name"/>
    </xsl:attribute>
    </INPUT>
    &#38;nbsp; &#38;nbsp;
    *** 190,196 ****
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@id"/>
    </A>
    </xsl:when>
    <xsl:otherwise>
    --- 190,196 ----
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@name"/>
    </A>
    </xsl:when>
    <xsl:otherwise>
    *** 199,205 ****
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@id"/>
    </A>
    &#38;nbsp;(Subscribed)
    </xsl:otherwise>
    --- 199,205 ----
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@name"/>
    </A>
    &#38;nbsp;(Subscribed)
    </xsl:otherwise>
    <P>
    <A HREF="#back">Back</A>

    Maybe on the Google API s page?

  • How could be calculate only result  for cummulative value in Webi level?

    Hi Expert,
    I have to requirement on webi level only result calculation
    scenario below like that
    Company code            % X
    100                      10
    200                      13
    300                      15
    Result           = only cummulative   (not sum eg 38)
    So how could be achieve  only this result value ??
    Pls advice
    Regards
    Waseem

    Hi,
    Gaurav and Arijit,
    Thnks for reply
    I have to need only Result values . I am giving one more scenario like that
    Company code         M               J                     L             D %
    100                              70              30                     10             = 10/(70+30)*100 = 10
    200                              80              20                     13           = 13/(80+20)*100 = 13
    300                               150             50                    30            = 30/(150+50)*100 = 15
    Result                                                                                    =    L/(M+J)*M = 53/400*300 = 39.75
    I hided the values M , J and L , need only result value above scenario so how could be achieve
    pls reply
    Regards
    Waseem

  • How could be calculate only result  for cummulative value in bex level?

    Hi Expert,
    I have to requirement on bex level only result calculation
    scenario below like that
    Company code         % X
    100                      10
    200                      13
    300                      15
    Result           = only cummulative   (not sum eg 38)
    So how could be achieve  only this result value ??
    Pls advice
    Regards
    Waseem

    Hi Suman,
    Thanks for reply
    I had already applied its came only sum values
    But i have to need only Result values . I am giving one more scenario like that
    Comapny code         M               J                     L             D %
    100                        70              30                     10             = 10/(70+30)*100 = 10
    200                        80              20                     13           = 10/(80+20)*100 = 10
    300                        150             50                    30            = 30/(150+50)*100 = 25
    Result                                                                          =    L/(M+J)*M = 53/400*300 = 39.75
    I hided the values M , J and L , need only result value above scenario so could be achive
    pls reply
    Regards
    Waseem

  • How to achieve Vertical Text,start From left to right?

    How to achieve Vertical Text,start From left to right?
    Maybe  it does not make sense for English,but it is Quite useful for Chinese

    @喜狼_edny – hm. Possible, but the result is somehow unsatisfactory.
    See for yourself.
    We could start with some text right aligned in a table with just one single cell:
    We could rotate the cell to 270° like that:
    Code:
    var myCell = app.selection[0].tables[0].cells[0];
    myCell.rotationAngle = 270;
    And now we need the text direction from right to left and all characters rotated to 180°:
    Code:
    var myCell = app.selection[0].tables[0].cells[0];
    myCell.rotationAngle = 270;
    myProperties = {
        composer : "$ID/HL Composer Optyca",
        characterDirection : CharacterDirectionOptions.RIGHT_TO_LEFT_DIRECTION,
        paragraphDirection : ParagraphDirectionOptions.RIGHT_TO_LEFT_DIRECTION,
        characterRotation : 180
    myCell.texts[0].properties = myProperties;
    Result:
    Ugh! Not exactly the result we expected…
    (Tested with InDesign CS5.5 on OSX 10.6.8)
    It's the characterRotation that is not working as expected.
    Uwe
    Message was edited by: Laubender

  • How to achieve Delegation & Substitution for GP system in UWL for CE 7.1

    Hi all
    Could you please guide me , how to achieve delegation & substitution concept for GP system in UWL for CE 7.1.
    when i am trying to click on the Manage Delegation dropdown link which was there in top right corner of the UWL screen , then i am getting the error as " No system is activated for substitution rule " .
    Could you please tell me in our scenario how to activate the System for delegation rule since we are using GP system for GP related tasks in UWL. in all the documents they have mentioned how to achieve the same in R/3 workflow tasks but we are looking for GP tasks how to activate system.
    Is there any changes are required in UWL XML files for achieving this substitution & delegation rule for CE 7.1??
    In EP 7.0 how this delegation & substitution was enabled in UWL , could you pls tell me what are the changes are required to be done??
    if anybody helps on this then it is great help!
    Regards
    Sunil

    Hi Sr,
    There is Trails view in Result . which is newly introduced by Oracle.
    With the help of this you can achive this solution.
    Thanks & Regards
    Rahul

  • How to achieve modularize in flex using cairngorm framework?

    Hi,
    I have seen many articles on flex and cairngorm but haven't found enough information on how to achieve modularization in flex using cairngorm framework.
    Please let me know any information regarding this.
    Thanks in advance.
    Vishnu

    Hi Sumit,
    I am also working similar kind of requirement. In my case I tried to add new tab subtab using personalization , how ever the add new item button is not enable.
    So I created new stacklayout and tried to add this to new tab in the existing subtablayout by using co process form request code:
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    super.processRequest(oapagecontext, oawebbean);
    OracleCallableStatement oraclecallablestatement = null;
    OracleConnection oracleconnection = (OracleConnection)oapagecontext.getApplicationModule(oawebbean).getOADBTransaction().getJdbcConnection();
    try{
    oracleconnection.setAutoCommit(true);
    oraclecallablestatement = (OracleCallableStatement)oracleconnection.prepareCall("begin GLO_TMPVIJ_PRCV(:1); end;");
    oraclecallablestatement.setString(1,"In the custom co process request");
    oraclecallablestatement.execute();
    }catch(SQLException sqlexception)
    throw OAException.wrapperException(sqlexception);
    OASubTabLayoutBean subTabLayout =
    (OASubTabLayoutBean)oawebbean.findChildRecursive("ApplicationDetsTabLayout");
    OASubTabBarBean subtabbar = (OASubTabBarBean)oawebbean.findIndexedChildRecursive("subTabBar");
    OALinkBean link = (OALinkBean)oapagecontext.getWebBeanFactory().createWebBean(oapagecontext,
    OAWebBeanConstants.LINK_BEAN, null,
    "link");
    OAStackLayoutBean commentsRN =
    (OAStackLayoutBean)oapagecontext.getWebBeanFactory().createWebBean(oapagecontext,
    "/xxhr/oracle/apps/irc/candidateManagement/webui/CommentsRn",
    "CommentsRn", // always specify name
    true); // region created in Oracle9i JDeveloper OA Extension
    subTabLayout.addIndexedChild(commentsRN);
    subTabLayout.addIndexedChild(link);
    in this I am not ale to add the new tab.
    Regards,
    Vijay Reddy.

  • How can achieve this (Condition on CHARS at cube or report level)

    HI,
    My report requirement is to display only values where employee Home Dept Not Equal To Worked Department.
    Home Department (CHAR-20) and
    Worked Dept (CHAR-20)
    For that I created a Info Object in Cube (ZINDICATOR).While data load i want to populate this field with ‘X’ (Flag) if Home Dept = Worked Dept and ‘Y’ (Flag) if Home Dept <> Worked Dept.
    So that I can use ZINDICATOR in Query Filter to restrict accordingly..
    When I tried to write an if condition in update/Transfer rules it is giving me error...
    <b>“Formula element is not allowed here”</b>
    How can I achieve my desired results......?

    OK sorry,
    Are you doing this in an individual update rule or in a start routine?
    I suggest start routine. Steps:
    1. Add your derived characteristic into the communication structure of the transfer rules (do not have any update in the transfer rules for it)
    2. In the update rules have a direct mapping for the characteristic.
    3. Create a start routine in the update rule. code should be something like
    FIELD-SYMBOLS: <f_dp> TYPE data_package_structure.
    LOOP AT DATA_PACKAGE ASSIGNING <f_dp> .
      IF <f_dp>-home_dpt eq <f_dp>-work_dpt.
         <f_dp>-/bic/zindicator = 'X'.
      ELSE.
         <f_dp>-/bic/zindicator = 'Y'.
      ENDIF.
    ENDLOOP.
    You will need to replace the work_dpt and home_dpt etc. bits with the names of your characteristics.
    Regards
    Peter

Maybe you are looking for

  • How to find number of records in a cube and ODS....

    Hi, How do we find total number of records in a cube and ODS? Is there any Tcode for this ? From the content it is difficult to get the number of records, if it is more in number. Thanks, Jeetu

  • Problems Connecting Computer & Printer Via Wireless

    I've recently just bought a HP Deskjet 2544 printer. I've installed the printer as per all the instructions, however when i tried to install this via the wireless it could not find the computer even though it was connected to the wireless in the hous

  • Reports on Tarantella

    Hi, I need to present information on Tarantella's use to administrators and management in the form of reports. The only tool we are aware of is the tarantella command. Has anyone developed web-based reports for tarantella? Can we find a product in th

  • How many customer records will Business Catalyst CRM hold? Thank you!

    How many customer records will Business Catalyst CRM hold? Thank you!

  • Upgrade Windows to Mac

    have Elements 11 for Windows in Swedish. I'd like to buy an upgrade to Elements 12 for Mac in English. How do I do this?