Create Like

Hi,
I have a form with these items
Issue_id 16927
Issue_summary Test
issue_description It is a Test issue
status OPEN
Priority Low
On this form, there is a button named create_Like which redirects to same page.
What I want is when I click on that button,that page reopen with all these values but issue_id
should not have any value.
How Can I do that?
Please help.
Omy

Hi omy,
It can be done in a number of ways and it depends on your page design..
One method would be using javascript.
1
Edit the Creat_like button
go to the url redirect - select url and in ur enter javascript:create_alike();
2
in the html header enter
<script>
function create_alike()
    $x('P1_ISSUE_ID').value = null;
    doSubmit('CREATE_LIKE')
</script>3. Make sure onload process to fetch the row is conditional, i.e. it should not fire when u click on create_like button else error will be thrown...unable to fetch row.
Regards,
Shijesh

Similar Messages

  • Can I use 'Macintosh HD' folder time machine creates like any other hard drive folder?

    Very simply, is it possible, after using Time Machine to back up my Laptop, to use the 'Macintosh HD' Folder it creates like I would any other hard drive by selecting and extracting specific folders and backed up items as I see fit instead of going in to the Time Machine software and asking it to restore the drive to one of its 'backups' -essentially governing what exactly goes back in to my freshly cleared out laptop's internal hard drive? Will I run in to any problems? I am asking as I have picked up a software bug that I need to wipe off laptop hdd that would still be in the backups I have done and go back on to the laptop if I just asked Time Machine to restore.

    See Pondini's site for all of your Time Machine questions http://pondini.org/TM/Home.html
    In your case specifically http://pondini.org/TM/15.html

  • Create like  - this options on Grid control fails

    Hi,
    OS is Linux RHEL4
    grid control 10gr2 is installed an monitoring a cluster database.
    I have created a scheduled job to backup the database and I have another job to backup archive logs
    I am trying to use the Create Like feature of the job to create other jobs but even though I am logged in as either SYSMAN or SYSTEM
    I get a message saying that
    'Create like is not supported for this type of job'
    can anyone help out with this
    regards

    as the messags says, it is not supported for the type job. maybe there is a button "show sql" for the job definition, then you could adapt this sql for your new job. HTH

  • Remove 'Create Like' from GRID for Jobs

    Is there any way to REMOVE the 'Create Like' button from the Jobs tab. I have users that are required to RUN already established jobs, but are not allowed to CREATE or MODIFY jobs. It appears that if you give the jobs_admin right, then the user gets ALL rights. So, I thought that if I could modify the GRID page I could accomplish my goal.
    Anyone had to do this?
    Thanks,
    Brad

    I thought that you had to grant SCHEDULER_ADMIN to a user in order to use any of the jobs area of Grid. If you know a way to get more granular and only provide submit and view for jobs, please let me know.

  • Item Creation Using the "Create Like"  function

    The use of the "Create Like" functionality seems to have DB row locking - Has anyone come across this? And if yes is there any solution?

    Hi,
    Please state your product module (I assume RMS) and version, e.g. 13.1.
    How do you come to the suspicion there is row locking involved? ("seem" you say.)
    Did you check metalink for this issue? What is the name of the form (*.fmb)?
    At what step of the creation do you experience the problem?
    What is actually the problem? Long waits in the user interface?
    How many online users are there in the system?
    Regards, Erik Ykema
    Edited by: ErikYkema on Nov 4, 2009 9:40 AM

  • Episode 1: Edge and the Twitter API | Create Like Crazy with Adobe Edge | Adobe TV

    Adobe Edge is not limited to sexy web animations; you can also build apps and integrate third-party APIs easily. In this lesson, connect to Twitter, pull tweets, and visualize them using an item renderer built using Edge, thereby learning how to consume APIs and create elements programmatically within Edge.
    http://adobe.ly/LWYBWm

    Hi,
    So I have attempted to integrate the API as you have suggested. I am not a coder so I have no idea what I am really doing but check out what I have pulled together so far:
    http://dl.dropbox.com/u/9159616/Circle%20Pulse%20w%20Twitter%202.zip
    What I would like to do is be able to change the query to something custom so that anytime I hove over the button, a new tweet with the query of my choosing slides up  and the old one Fades out.
    Can you help with this? I really appreciate it. Thanks for posting this amazing tutorial.
    Adam

  • Continued : How are PHP pages created like this ...

    First off - thanks to every who had replied earlier, you guys
    solved my
    _initial_ question. I've come across another ...
    I'm going to be inserting code that I wanted echo'ed
    (printed) like so -
    if ($var == 10) {
    echo ....
    However, when I insert the code there - any apostrophes or
    quotes inside the
    code throws it in the crapper and chops up everything. I also
    tried passing
    it as a string and still the same thing.
    Inside the code I wanted printed I use a <?php .... ?>
    section also, which
    shouldn't matter if I'm printing this stuff correctly. What's
    the work
    around for this?
    Examples of errors:
    echo "<p style="example"> This is an example
    </p>"
    ---------------^^^^^^
    $test = '<p style="font-size: 10px">This apostrophe in
    can't breaks the
    string</p>';
    Thanks for your time, guys.
    Shane H
    [email protected]
    http://www.avenuedesigners.com

    Here is the PHP code that is inside the string I'm creating
    and echo'ing
    that is supposed to print errors when the form has been
    submitted, which is
    obvsiouly printing stuff too soon on that example page:
    <?php
    if(isset($Errors) && is_array($Errors) &&
    count($Errors)) {
    echo \'<p class="required" style="font-style: italic;
    font-weight:
    bold">The following required fields are missing:
    </p>\'."\n";
    echo \'<p class="required">\'."\n";
    foreach($Errors as $Error) echo \'*
    \'.$Error.\'<br>\'."\n";
    echo \'</p>\'."\n";
    if(isset($MailSuccess)) {
    if(!$MailSuccess) {
    echo \'<p class="required">There was an unexpected
    error. Please try
    later</p>\'."\n";
    ?>
    Shane H
    [email protected]
    http://www.avenuedesigners.com
    "Shane H" <[email protected]> wrote in
    message
    news:[email protected]...
    > Seb - great I really like that way. The only thing that
    is throwing me
    > trouble now is that I'm using <?php ... ?> inside
    of the string I'm
    > creating then echo'ing - here is an example page:
    >
    >
    http://www.avenuedesigners.com/about2.php?id=10
    >
    > Inside those forms, the values are getting PHP
    statements, example like:
    > value="<?php ... ?>".
    >
    > Also, before the form, I'm using a PHP statement to
    check for errors,
    > again like: <?php ... ?>.
    >
    > Help?
    >
    > --
    > Shane H
    > [email protected]
    >
    http://www.avenuedesigners.com
    >
    >
    > "(_seb_)" <[email protected]> wrote in message
    > news:[email protected]...
    >> Murray *ACE* wrote:
    >>>>echo "<p style="example"> This is an
    example </p>"
    >>>
    >>>
    >>> echo "<p style=".'"example">This is an
    example</p>';
    >>>
    >>>
    >>>>$test = '<p style="font-size:
    10px">This apostrophe in can't breaks the
    >>>>string</p>';
    >>>
    >>>
    >>> $test = '<p style="font-size: 10px">This
    apostrophe in can'."'t breaks
    >>> the
    >>> string</p>";
    >>>
    >>
    >> a less confusing solution IMHO, use single quotes
    for your PHP strings,
    >> so all the html double quotes will be safe, and you
    only need to escape
    >> the single quotes in your html/text:
    >>
    >> echo '<p style="example">it\'s way
    easier</p>';
    >>
    >> depending on the situation, you can also use the
    addslashes() and
    >> stripslashes() PHP functions:
    >>
    >>
    http://us3.php.net/manual/en/function.addslashes.php
    >>
    http://us3.php.net/manual/en/function.stripslashes.php
    >>
    >>
    >>
    >> --
    >> seb ( [email protected])
    >>
    http://webtrans1.com | high-end web
    design
    >> Downloads: Slide Show, Directory Browser, Mailing
    List
    >
    >

  • How are PHP pages created like this ...

    http://www.foo.com/fooing.php?id=10
    OR
    http://www.foo.com/fooing.php?id=20
    etc.
    Shane H
    [email protected]
    http://www.avenuedesigners.com

    <a href="detailpage.php?id="10">Article 10</a>
    <a href="detailpage.php?id="20">Article 20</a>
    <a href="detailpage.php?id="30">Article 30</a>
    In DW server behavior parlance, it's a master/detail page
    arrangement.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Shane H" <[email protected]> wrote in
    message
    news:[email protected]...
    > Okay - say I have something like this on a page called
    list.php :
    >
    > Article 10 (link)
    >
    > Article 20 (link)
    >
    > Article 30 (link)
    >
    > Article 40 (link)
    >
    > I want those to open with the .php page say
    "articles.php" but have
    > ?id=20, 30, etc.
    >
    > Do those need seperate .php pages created for them, or
    how exactly would I
    > do that?
    >
    > Thanks for sticking with me here, guys.
    >
    > --
    > Shane H
    > [email protected]
    >
    http://www.avenuedesigners.com
    >
    >
    > "(_seb_)" <[email protected]> wrote in message
    > news:[email protected]...
    >> Shane H wrote:
    >>>
    http://www.foo.com/fooing.php?id=10
    >>>
    >>> OR
    >>>
    >>>
    http://www.foo.com/fooing.php?id=20
    >>>
    >>> etc.
    >>>
    >>> --
    >>> Shane H
    >>> [email protected]
    >>>
    http://www.avenuedesigners.com
    >>
    >> whatever is after the "?" is a variable ("id") and
    its value ("20").
    >> The variable value is retreived by PHP via the $_GET
    array:
    >>
    >> <?php
    >> $var = $_GET['id'];
    >> echo $var;
    >> ?>
    >>
    >> This will output the variable value (10 or 20).
    >>
    >> Then you can use these values to outup different
    things:
    >>
    >> <?php
    >> $var = $_GET['id'];
    >> if ($var == 10){
    >> do_something();
    >> }
    >> if ($var == 20){
    >> do_someting_else();
    >> }
    >> ?>
    >>
    >> A typical example would be withy an image gallery,
    each thumbnail would
    >> have a link to the same page, but with a different
    variable:
    >> <a href="big_image.php?id=10"><img
    src="thumb10.jpg"></a>
    >>
    >> so each thumbnail would open the same page, but in
    this page, the
    >> approperiate bigger image would be outputted buy PHP
    according to the
    >> variable:
    >>
    >> <?php
    >> $big_image = $_GET['id'].'.jpg';
    >> echo '<img src="'.$big_image.'">';
    >> ?>
    >>
    >> this will output:
    >>
    >> <img src="10.jpg">
    >>
    >> --
    >> seb ( [email protected])
    >>
    http://webtrans1.com | high-end web
    design
    >> Downloads: Slide Show, Directory Browser, Mailing
    List
    >
    >

  • Web service problem: stub doesn't get created like it should.

    Our project uses a standard web service stub which has been created with Netbeans from a WSDl file. The project works OK and the the stub gets created on Nokias and
    SonyEricsson, but not on Palm. What could be the reason for this?

    AstralVisuals
    I haven't worked with Palm but it's likely a CDC device whereas the other two are probably CLDC.
    Try a build for CDC, with any necessary changes in your source in case of compiler errors.
    Don't know, really, but there's a chance that might sort things out.
    Darryl

  • Episode 2: Flexible Layouts Using Adobe Edge Animate and the Edge Commons Library | Create Like Crazy with Adobe Edge | Adobe TV

    With Adobe Edge Animate you can create flexible layouts easily. In this lesson you will learn how to use percentage values, alignment and several other layout presets to build flexible layouts that look great across all screens. You will also learn how to create different adaptive layouts for specific screen sizes using the Edge Commons library.
    http://adobe.ly/QnCdXY

    No ADOBE TV videos play. Not in the latest Firefox nor IE. The play icon appears - I click it  - and the frame remains black -- no error message, nothing. I even tried accepting 3rd party cookies- nothing.  I can play videos fine from othe sites, youtube .... etc ....

  • VI Store must be created like App Store

    Hello,
    I have a suggestion that there must be a centralized place of keeping all the VIs like the concept of App Store.
    This would defintely help the users and increase the utilization of LabVIEW

    Try the LabVIEW Tools Network.
    LabVIEW Champion . Do more with less code and in less time .

  • Creating like materials whose BOM is different by one or two ingredients

    Is there an easy way to clone an existing material and change two of the ingredients?  Or do the materials and routings have to be created from scratch?
    Thanks.

    Hi,
    Please look into the concept of Configurable materials with SUPER BOM.
    Regards,
    Narayana.

  • How do I create a title, that behaves like a button?

    Hi,
    I'm using XML to load data from asp to flash. Here's the XML
    example:
    1. <?xml version="1.0" encoding="iso-8859-1"?>
    2. <news>
    3. <item>
    4. <headline>Flash XML Based News reader out
    today!</headline>
    5. <date>05/09/1986</date>
    6. <message>Today my new xml based flash news reader
    came out, I am so excited!</message>
    7. </item>
    8. <item>
    9. <headline>One day until the Flash XML Based News
    reader is out!</headline>
    10. <date>05/08/1986</date>
    11. <message>Tomorrow my new xml based flash news
    reader comes out, I am so excited!</message>
    12. </item>
    13. <item>
    14. <headline>Two days until the Flash XML Based News
    reader is out!</headline>
    15. <date>05/07/1986</date>
    16. <message>The day after tomorrow my new xml based
    flash news reader comes out, I am so excited!</message>
    17. </item>
    18. </news>
    And here's the ActionScript part:
    1. // Initialize the xml object that our news will be loaded
    into
    2. var news_xml : XML = new XML();
    3. // ignore all whitespaces inside of our xml file
    4. news_xml.ignoreWhite = true;
    5. // when the xml recieves a return from the load() function
    call, execute this function
    6. news_xml.onLoad = function( success : Boolean ) {
    7. // if the xml file was successfully loaded
    8. if ( success ) {
    9. parseNews(this);
    10. }
    11. }
    12. // call the load function on the xml object, passing in
    the url of your xml file
    13. news_xml.load("xmlTutorial.xml");
    14. // this function will take our news xml object and parse
    it
    15. function parseNews( _xml : XML ) : Void {
    16. // first we create an array that holds all the values of
    the item nodes
    17. var items : Array = _xml.firstChild.childNodes;
    18. // now we want to iterate over every item in the items
    array
    19. // and parse the nodes as we see fit
    20. for ( var i : Number = 0 ; i < items.length ; i ++ ) {
    21. // here we set the text of the text field ( news_txt )
    22. // the first thing we add to the textfield is the
    headline then a line break
    23. news_txt.htmlText += "<b>" + items
    .childNodes[0].firstChild +"</b><br>";
    24. // next we add the string date followed by the date value
    in the xml file
    25. news_txt.htmlText += "Date: " +
    items.childNodes[1].firstChild + "<br>";
    26. // now we add the message, then two line breaks, only for
    formatting
    27. news_txt.htmlText += " " + items
    .childNodes[2].firstChild + "<br><br>";
    28. }
    29. }
    So far is everything clear to me. But what I want to do now
    is that after a user clicks on title, next happens:
    the current swf unloads
    the flash sends data to asp (ID of an article and ID of an
    author, which movie to load next).
    How do create a title/button?I know how to make a title to
    behave like a link (just add the
    http://... in the headline tag in XML
    document. But this,..... I just don't know how to do that.
    THX for any help

    2m, you are right. I should tell you about my concept. It's
    all on the paper yet, because this is how I work - first I write
    down everything on paper, study it and the next step in trying to
    make it work on computer.
    I have a main swf, I call it system.swf. System.swf receives
    the info about the swfs, it must be loaded from html tag
    <object><param>. The ID of the movies is send from
    flash to asp and then via <object>back to flash. Does that
    make sense? Is there a better way for that?
    So, the system.swf is loaded for the whole time - let's say
    it on level1. On level 2 are then loaded other swfs.It depends
    which content the user wants to see.
    About the article part:
    first the user sees the list of last articles (title, date
    and short description). When he/she clicks on the title, all the
    action happens:
    flash sends the data which article the user wants to read to
    asp, asp searches in data base for the requested article and
    creates xml, where are title, date and the whole content of the
    article.
    At the same time asp also sends via <object>tag in html
    the id of the swf that must be loaded and the id of the author of
    the article, so the swf, where the pictures of the all authors are,
    will know what picute must load (this is the second swf that is
    loaded on the article part - it's created like a gallery; the
    author of the active article is bigger and if the user wants to
    read the last article of other author, he/she just closes the
    picture and then the images are moving in a slider way and when
    he/she clicks on an image, it get larger and the last artcle of
    this author is loaded).
    And I wonder how can I make this all to happen: when the user
    clicks on a title, all the var action happens?
    If you have better idea how to create this, please, advice.
    THX for the help so far

  • CREATE A NEW TABLESPACE THAT IS LIKE AN EXISTING TABLESPACE?

    Hello,
    Does anyone know how to create a new tablespace, e.g, bk_USERS, based on an existing tablespace, say USERS tablespace? The EM has option 'create like' to accomplish this, but I'd like to use the statements from command line.
    Thank you for assistance,

    hi Anurag Tibrewal,
    I am using Oracle 10g Enterprise and would like to create a new tablespace based on the structure of the existing tablespace. In other word, is it possible to copy existing tablespace and have the newly created one under the new name?
    I tried something as follows but it does not work:
    CREATE TABLESPACE new_tablespace_name LIKE existing_tablespace_name DATAFILE '$ORACLE_HOME/oradata/datafle SIZE 10M;

  • CREATE A USER LIKE ANOTHER

    Hi,
    how can I create an oracle applications USER exactly like another oracle applications user ?
    Many thanks before.

    Thank hsawwan, I found this :
    procedure CreateUser (
    x_user_name in varchar2,
    x_owner in varchar2,
    x_unencrypted_password in varchar2 default null,
    x_session_number in number default 0,
    x_start_date in date default sysdate,
    x_end_date in date default null,
    x_last_logon_date in date default null,
    x_description in varchar2 default null,
    x_password_date in date default null,
    x_password_accesses_left in number default null,
    x_password_lifespan_accesses in number default null,
    x_password_lifespan_days in number default null,
    x_employee_id in number default null,
    x_email_address in varchar2 default null,
    x_fax in varchar2 default null,
    x_customer_id in number default null,
    x_supplier_id in number default null)
    is
    dummy number;
    begin
    dummy := fnd_user_pkg.CreateUserId(
    x_user_name,
    x_owner,
    x_unencrypted_password,
    x_session_number,
    x_start_date,
    x_end_date,
    x_last_logon_date,
    x_description,
    x_password_date,
    x_password_accesses_left,
    x_password_lifespan_accesses,
    x_password_lifespan_days,
    x_employee_id,
    x_email_address,
    x_fax,
    x_customer_id,
    x_supplier_id);
    end CreateUser;
    in that package, but how to use it and how to use it for create like ?
    Many thanks.

Maybe you are looking for

  • How do you configure the server in this situation?????????????

    Hi, We have Oracle 10.2 and Windows 2003. We have Oracle on Cluster (with Windows software). When the System are without cluster all it’s OK!!!!!! We have 2 Resources Cluster Group: Oracle and Applications. We have Oracle in Oracle cluster group. We

  • Spent Brass Flying Across The Room

    I just got some spent brass from Detonation Films. I need to simulate shells flying out of an M-16, I tried the replicator. That doesn't seem to help. I want it to repeat the action one round after another flying out of the gun. Any suggestions? How

  • JQUERY on a Custom Element Form

    Hi, I would like to know if it's possible to use the librairy jquery on a custom element form ( SSXA) . How to do a link to the jquery librairy stores in UCM ? I want to create a date picker with jquery . anyone have already done it before ? Thank yo

  • I can't find one of my downloaded games in manage purchased - Help!

    Hi All, I have one free game on my iphone I cannot see in my manage purchased (The game name is Kingdom age).  I would like to buy gems using itunes card but it's not possible. I would like to transfer it onto my Ipad, but it's not possible either. I

  • My last purchase (Creative Suite 3 back in 2007) is no longer listed in my order history

    I was able to re-download and re-install it after my last computer crash four years ago. I had to speak with a live person at Adobe to get a new registration code but I successfully installed it on my then new computer - the one that just crashed. Un