Opportunity Closed/Won error

In attempting to test a workflow, I must be able to change an opportunity to Sales Stage Closed/Won. Now, when I try to do this, I get the following error from internet explorer:
The following fields are required for sales stage Closed/Won: ZText_4(SBL-ODS-50260).
This is obviously some sort of field validation, but every field in the particular opportunity that is available is filled in. I would like to know where the ZText_4 field is. Even if it is a custom field(which I highly suspect is the case), where can I find the field definition? If it is NOT a custom field, what is it?

Hi
This is a Custom Field of Type Text and which you created at fourth number.
Siebel give such identifiers.
If you are good in understanding HTML you can check which field this belongs to
Open a new Opportunity page > see Source code and search for the ZText_4
Else Contact customer care

Similar Messages

  • Adding product to opportunity must be mandatory if stage is closed/won

    Hi,
    We have a requirement where the user must associate a product to an opportunity before changing the sales stage to closed/won.
    We are unable to find any such association between Opportunity and product or revenue where such a validation might be implemented. No such provision is there in the Sales stage process either.
    Is this even possible in CRM OD?
    Any suggestions would be appreciated.

    I don't think that will work. What field are you pulling from what object on the joinfieldvalue?
    You can't do a joinfieldvalue from an opportunity to a product revenue, it doesn't work that way.
    The only thing I can think of is to make 'Revenue' a read-only field on the layout. That will force users to create product revenues and click the 'update opportunity totals' button.

  • Closed Won/Closed Lost report

    Hi,
    I need to run 2 reports. One on when an opporunity was changed to closed lost and one when an opportunity was changed to closed won.
    Does anyone know a way of doing this?
    Thanks in advance,
    Darren

    Darren,
    There are 6 reporting webinars I suggest you do which will help you get started. To open the report click on the report tab then Design anaylses, this will pop up a second window and on the left are the historical reports and includes the sales stage history report mentioned.
    cheers
    alex

  • Bug Report : Upgraded to Firefox v10. Holding CTRL+ [F4] too long after all tabs are closed causes error. "Exc in ev handl: TypeError: this.oPlg.onTabClosed is not a function"

    Bug Report :
    Upgraded to Firefox v10. Holding CTRL+ [F4] too long after all tabs are closed causes error.
    "Exc in ev handl: TypeError: this.oPlg.onTabClosed is not a function"

    What extensions do you have? (Go to Firefox > Customize > Add-ons to see or Help > Troubleshooting info for a copy-pasteable list)

  • Using time warner road runner. when I try to open up safari to home page I get error message that this version does not support the "community toolbar" can't proceed until closing the error message. sick of seeing it

    using time warner road runner. when I try to open up safari to home page I get error message that this version does not support the "community toolbar" can't proceed until closing the error message. sick of seeing it

    That toolbar/ct plugin seems to cause problems for all who install it!
    Close Safari, then locate and delete the following files and it should be gone:
    /Library/Application Support/Conduit
    /Library/InputManagers/CTLoader
    /Library/Receipts/ctloader.pkg
    /Library/Receipts/<Toolbar name>.pkg
    /Library/Application Support/SIMBL/Plugins/CT2285220.bundle
    /Users/<User name>/Library/Application Support/Conduit
    where / is the root library on your Hard Disk.
    If you are running Snow Leopard you should also look here:
    Library/launchAgents/com.conduit.loader.agent.plist
    Library/Application support/conduit plugins
    Also, as mentioned by Gilli2000:
    Library/Receipts - If you read it, it has information in it at the bottom referring extensively to "CT" and "community toolbar".
    Maybe it is harmless, but trash those items anyway!
    Note: Safari does not support any third-party toolbars except those supplied as an extension to Safari via the Extension Gallery.

  • Underlying connection was closed unexpected error on send...

    I am creating the auto hosted app for office 365.few days back it was working fine.Since few days back i am raninto one issue i.e "underlying connection was closed unexpected error on send".I tried in my local office 365 and trial version of
    office365 also, it is working in both the places.Please provide the solution for this issue...Thanks in Advance....

    It is a generic error message, 
    Can you pleas share details from ULS log and Event logs for analysis.
    If this helped you resolve your issue, please mark it Answered

  • Closed connection error when connection isn't being closed

    Hi,
    Currently I am trying to connect to an Oracle 11g database via JDBC. However, everytime I run the code I get the following error:
    java.sql.SQLException: Closed Connection
    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:110)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:171)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:227)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:439)
    at oracle.jdbc.driver.T2CConnection.checkError(T2CConnection.java:653)
    at oracle.jdbc.driver.T2CConnection.logon(T2CConnection.java:338)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:490)
    at oracle.jdbc.driver.T2CConnection.<init>(T2CConnection.java:133)
    at oracle.jdbc.driver.T2CDriverExtension.getConnection(T2CDriverExtension.java:53)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:474)
    at java.sql.DriverManager.getConnection(DriverManager.java:582)
    at java.sql.DriverManager.getConnection(DriverManager.java:185)
    The error comes from running the below code.
    public static Connection connect(String url, String username, String password) {
    Connection conn = null;
    //String url = "";
    // Load the driver
    try {
    Class.forName("oracle.jdbc.driver.OracleDriver");
    } catch (ClassNotFoundException cnfe) {
    System.err.println("Oracle driver class cannot be found");
    cnfe.printStackTrace();
    System.exit(1);
    // Get the connection
    try{
    conn = DriverManager.getConnection(url, username, password); *// This is the offending line*
    } catch (SQLException sqle) {
    System.err.println("Problem connecting, possibly incorrect " +
    "username/password or problem communicating with the database");
    sqle.printStackTrace();
    System.exit(1);
    }java.sql.SQLException: Closed Connection
    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:110)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:171)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:227)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:439)
    at oracle.jdbc.driver.T2CConnection.checkError(T2CConnection.java:653)
    at oracle.jdbc.driver.T2CConnection.logon(T2CConnection.java:338)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:490)
    at oracle.jdbc.driver.T2CConnection.<init>(T2CConnection.java:133)
    at oracle.jdbc.driver.T2CDriverExtension.getConnection(T2CDriverExtension.java:53)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:474)
    at java.sql.DriverManager.getConnection(DriverManager.java:582)
    at java.sql.DriverManager.getConnection(DriverManager.java:185)
    // Turn auto commit off
    try{
    conn.setAutoCommit(false);
    } catch (SQLException sqle) {
    System.err.println("java.sql.SQLException: Closed Connection // This is the offending line
    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:110)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:171)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:227)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:439)
    at oracle.jdbc.driver.T2CConnection.checkError(T2CConnection.java:653)
    at oracle.jdbc.driver.T2CConnection.logon(T2CConnection.java:338)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:490)
    at oracle.jdbc.driver.T2CConnection.<init>(T2CConnection.java:133)
    at oracle.jdbc.driver.T2CDriverExtension.getConnection(T2CDriverExtension.java:53)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:474)
    at java.sql.DriverManager.getConnection(DriverManager.java:582)
    at java.sql.DriverManager.getConnection(DriverManager.java:185)Problem turning off auto commit");
    sqle.printStackTrace();
    System.exit(1);
    return conn;
    but the connection is never closed, this is the first time connect is called so it is never opened either.
    // This is the offending line
    The URL I am using to connect is:
    jdbc:oracle:oci8:@mydatabase:1158
    The database is stored on a server. I have previously tested the code on a machine with the database stored locally and had no problems. However, ran into this problem now when the database is external. Incase this information helps the software is being run under Linux via Netbeans. The previous testing was performed using Netbeans under Windows.
    Any help would be much appreciated.
    Thanks,
    Martin

    Hi i am using the following code and i am getting the same error ....
    public class DBConnection {
         private static Connection con=null;
         public DBConnection() {
                   System.out.println("In db Connection..");
         public static Connection getConnectionObj(){
              if(con==null){
                   con= new DBConnection().getConnection();
                   System.out.println("In db Connection.. if");
                   return con;
              else{
                   System.out.println("In db Connection..else");
                   return con;
         private Connection getConnection(){
              Properties prop=new Properties();
              FileWriter fw=null;
              FileInputStream fis=null;
              try{
                           File file=new File("Connection.properties");
                   fis=new FileInputStream(file);
                   prop.load(fis);
                   System.out.println(prop.getProperty("DriverName"));
                   System.out.println(prop.getProperty("URL"));
                   Class.forName(prop.getProperty("DriverName"));
                   System.out.println(prop.getProperty("DriverName"));
                   System.out.println(prop.getProperty("URL"));
                   con=DriverManager.getConnection(prop.getProperty("URL"),prop.getProperty("UserName"),prop.getProperty("Password"));
                   fis.close();
              }catch(Exception e){
                   e.printStackTrace();
                   if(fw!=null){
                        try {
                             fw.close();
                        } catch (IOException e1) {
                             // TODO Auto-generated catch block
                             e1.printStackTrace();
                   if(fis!=null){
                        try {
                             fis.close();
                        } catch (IOException e1) {
                             // TODO Auto-generated catch block
                             e1.printStackTrace();
              return con;
    }I am not using the connection pool.
    For the first request it is working fine but later request's it is giving the closed connection error.
    Thanks in advance.
    Edited by: EJP on 10/10/2011 20:28: added {noformat}{noformat} tags: please use them                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Skype freezes on closing, won't force close. (Solv...

    Skype freezes on closing, won't force close. I reinstalled, removed  temporary files etc.(In safe mode)
    I'm pretty sure that as administrator I should be able to close the process! But I can't. Why can't I close it?
    I can't sign in because the process is still running telling that I'm still online on my own computer.
    ===Solution===
    If you have the internet explorer feature disabled on your system try enabling it
    ===========
    Solved!
    Go to Solution.

    Reboot your computer in Safe mode and try again to reset all Skype settings.
    Quit Skype or use Go to Windows Start and in the Search/Run box type %appdata% and then press Enter or click the OK button. The Windows File Explorer will pop up. There locate a folder named “Skype”. Rename this folder to something different, e.g. Skype_old.
    Next go to Windows Start and in the Search/Run box type %temp%\skype and then press Enter or click the OK button. Delete the DbTemp folder.
    Reboot in normal mode and try to restart Skype.
    N.B. If needed, you will still be able to re-establish your call and chat history. All data is still saved in the Skype_old folder.

  • Closing tag error

    I have an extremely broken page.
    When I validate it I get a lot of closing tag errors but I don't understand in what way I have not closed them properly as I have not had this issue before.
    Can anyone help?
    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.tavcafe.com%2Fevents.php&charset=%28det ect+automatically%29&doctype=Inline&group=0

    Thanks guys, that is all really helpful, unfortunately there is a problem.
    I have just realised that when I validate the document it is including all of the code that is created through perch outside of the core document.
    as you can see from bellow many of the errors are not present because they are created somehow by perch.  I create the perch tags and templates and then I or my client enter in the information we required to be displayed within the perch admin panel and the code is automatically created, which is where those missing <ul> and <li> tags are occuring as well as the multiple nested span tags and the error on line 1139.  As you can see I do have my css in a seperate document linked as you said and my
    <doctype>
    <html>
    <head>
    is in the format you suggest.
    So how do I fix these code problems when it is autmated by Perch and there is no said document???
    The document I am working on looks like this:
    <?php include('perch/runtime.php');?>
    <!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">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <head>
    <title>TAV Cafe - Events</title>
    <link rel="stylesheet" type="text/css" href="MyFontsWebfontsKit.css"/>
    <link rel="stylesheet" href="colorbox.css" />
    <link rel="stylesheet" href="gallery.css" />
    <link rel="stylesheet" href="events.css" />
    <style type="text/css">
    @font-face {font-family: 'CallunaSans-Regular';
    src: url('webfonts/23937E_0_0.eot');
    src: url('webfonts/23937E_0_0.eot?#iefix')
    format('embedded-opentype'),
    url('webfonts/23937E_0_0.woff')
    format('woff'),
    url('webfonts/23937E_0_0.ttf')
    format('truetype');
    body {
        background-image:url(background_image.jpg);
        background-repeat:no-repeat;
        background-color:black;
        background-attachment: scroll;
        background-position:top left;
        background-size: 1024px 800px contain;
    #hours { position:absolute;
    left:10px; top:10px;
    width:300px;
    height:30px;
    z-index:1;
    font-family: Skia, CallunaSans-Regular;
    font-size:13px;
    font-weight:bold;
    color:#a76d2f;
    line-height:140%;
    word-spacing:1px;
    #title_bar { position:absolute;
    left:0px; top:55px;
    z-index:0;
    .rollover a{
        display: block;
       text-indent: -9999px;
       margin: auto auto auto auto;
       cursor: pointer;
       outline: transparent solid 0px;
    #title a{ position:absolute;
    left:10px; top:70px;
    height:86px;
    width:325px;
    z-index:1;
    background: url('title.jpg') no-repeat left top;
    #title a:hover{
       background-position: left 0px;
    #about a{
    position: absolute;
    top: 55px; left: 440px;
    height: 50px;
    width: 128px;
    background: url('about_tab.png') no-repeat left top;
    #about a:hover{
       background-position: left -50px;
    #gallery a{
    position:absolute;
    top: 55px; left: 655px;
    height: 50px;
    width: 168px;
    background: url('gallery_tab.png') no-repeat left top;
    #gallery a:hover{
       background-position: left -50px;
    #venue a{ position:absolute;
    left:910px; top:55px;
    height: 50px;
    width:215px;
    background: url('venue_tab.png') no-repeat left top;
    #venue a:hover{
       background-position: left -50px;
    #shop a{
    position:absolute;
    left:550px; top:115px;
    height: 50px;
    width:128px;
    background: url('shop_tab.png') no-repeat left top;
    #shop a:hover{
       background-position: left -50px;
    #restaurant a{
    position:absolute;
    top: 115px; left: 770px;
    height: 50px;
    width: 190px;
    background: url('restaurant_tab.png') no-repeat left top;
    #restaurant a:hover{
       background-position: left -50px;
    #bar a{ position:absolute;
    left:350px; top:115px;
    height: 50px;
    width:120px;
    background: url('bar_tab.png') no-repeat left top;
    #bar a:hover{
       background-position: left -50px;
    #events a.events-link{ position:absolute;
    left:50px; top:180px;
    height: 50px;
    width:140px;
    background: url('events_tab.png') no-repeat left top;
    #events a.events-link:hover{
       background-position: left -50px;
    #events .events-calendar{ position:absolute;
    left:50px; top:230px;
    #pop_up_background { position:absolute;
    left:340px; top:190px;
    height:580px;
    width:650px;
    z-index:2;
    div.scroll
    background-color:transparent;
    position:absolute;
    left:380px; top:200px;
    width:600px;
    height:550px;
    z-index:3;
    font-family: Skia, CallunaSans-Regular;
    font-size:16px;
    color:#a76d2f;
    line-height:140%;
    word-spacing:1px;
    overflow:scroll;
    #contact_bar { position:absolute;
    left:0px; top:635px;
    z-index:1;
    #contact a{
    position:absolute;
    top: 640px; left:0px;
    height: 50px;
    width: 190px;
    z-index: 2;
    background: url('contact_tab.png') no-repeat left top;
    #contact a:hover{
       background-position: left -50px;
    #copyright_background { position:absolute;
    left:1020px; top:650px;
    z-index:1;
    #copyright { position:absolute;
    left:1045px; top:755px;
    font-family: Arial Black;
    font-size:14px;
    color:#340000;
    line-height:110%;
    z-index:2;
    #webdesign { position:absolute;
    left:1045px; top:660px;
    font-family: PrestigeEliM-Reg;
    font-size:18px;
    color:#340000;
    line-height:110%;
    z-index:2;
    .rollover a{
        display:block;
       text-indent:-9999px;
       margin: auto auto auto auto;
       cursor: pointer;
       outline: transparent solid 0px;
    .rollover .events-calendar a{
       display:inline;
       text-indent:-9999px;
       margin: auto auto auto auto;
       cursor: pointer;
       outline: transparent solid 0px;
    #website_link a{
    position:absolute;
    left:1020px; top:675px;
    height: 76px;
    width: 150px;
    z-index:2;
    background: url('website_link.png') no-repeat left top;
    #website_link a:hover{
       background-position: left 0px;
    #fb_icon a{ position:absolute;
    left:280px; top:650px;
    height: 36px;
    width: 36px;
    z-index:2;
    background: url('fb_icon.jpg') no-repeat left top;
    #fb_icon a:hover{
       background-position: left 0px;
    #fb-root {position:absolute;
    left:190px; top:655px;
    z-index:2;
    table.calendar {
        width:200px;
        height:200px;
        border-collapse: collapse;
        margin: 10px;
        clear: left;
        background-color:#eb5604;
    table.calendar td {
        border: 1px solid #ccc;
        vertical-align: top;
    table.calendar td.today {
        background-color:#483229;
        opacity:70%;
    table.calendar td.today span.day {
        font-weight: bold;
        color: #bc5000;
    table.calendar td.weekend {
        background-color: #483229;
    table.calendar td.notinmonth {
        border: none;
        background-color: transparent;
    table.calendar td.past {
        text-decoration: line-through;
    table.calendar td.notinmonth.weekend {
        background-color: transparent;
    table.calendar td span.day {
        display: block;
        color: #ccc;
    table.calendar td div.event {
        display: block;
        background-color: #ffffff;
        color: #a76d2f;
        padding: 3px;
        border-radius: 5px;
        border: 1px solid #fff;
    ul.calendar-nav {
        width: 200px;
        list-style: none;
        margin: 10px;
        padding: 0;
    ul.calendar-nav li {
        width: 33.3%;
        list-style: none;
        margin: 0;
        padding: 0 0 10px 0;
        display: block;
        float: left;
        text-align: center;
    ul.calendar-nav li:first-child {
        text-align: left;
    ul.calendar-nav li:last-child {
        text-align: right;
    /* --- LISTING --- */
    ul.events {
        width: 200px;
        list-style: none;
        margin: 10px;
        padding: 0;
        border-top: 1px solid #bed6ec;
    ul.events li {
        border-right: 1px solid #bed6ec;
        border-bottom: 1px solid #bed6ec;
        vertical-align: top;
        background-color: #bed6ec;
        clear: left;
    ul.events li ul {
        list-style: none;
    ul.events li li {
        border: none;
        border-bottom: 1px dotted #999;
        min-height: 0;
        margin-left: 25px;
        padding: 10px;
        background-color: #fff;
        clear: none;
    ul.events li li:last-child {
        border-bottom: 0;
    ul.events li li span.time {
        color: #999;
        font-style: italic;
        font-size: 90%;
        width: 60px;
        text-align: right;
        display: inline-block;
    ul.events li li div.description {
        margin: 5px 0 0 63px;
        font-size: 86%;
        color: #555;
    ul.events li li div.description p {
        margin: 0 0 1em 0;
    ul.events li span.day {
        font-weight: bold;
        font-size: 250%;
        float: left;
        color: #0a86d2;
        text-align: right;
        width: 50px;
        margin: 0 0 0 1px;
        padding: 0 15px 0 0;
        line-height: 1;
        border-top: 1px solid #fff;
    ul.events li:first-child span.day {
        border-top-color: #bed6ec;
    ul.event-listing-nav {
        width: 200px;
        list-style: none;
        margin: 10px;
        padding: 0;
        clear: both;
    ul.event-listing-nav li {
        width: 33.3%;
        list-style: none;
        margin: 0;
        padding: 0 0 10px 0;
        display: block;
        float: left;
        text-align: center;
    ul.event-listing-nav li:first-child {
        text-align: left;
    ul.event-listing-nav li:last-child {
        text-align: right;
    ul.event-listing-nav:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    ul.custom-listing {
        margin: 0;
        padding: 0;
        list-style: none;
        width: 200px;
    ul.custom-listing li {
        padding: 0 0 1em 0;
        margin: 0 0 1em 0;
        border-bottom: 1px solid #ccc;
    table.calendar td div.event {
        position: absolute;
        display: none; /* keeps the popup hidden if no JS available */
    table.calendar td {
        position: relative;
    </style>
    <script src="http://code.jquery.com/jquery-1.8.2.min.js" type="text/javascript"></script>
        $(function () {
            $('table.calendar td').each(function () {
                // options
                var distance = 10;
                var time = 150;
                var hideDelay = 100;
                var hideDelayTimer = null;
                // tracker
                var beingShown = false;
                var shown = false;
                var trigger = $(this);
                var popup = $('div.event', this).css('opacity', 0);
                // set the mouseover and mouseout on both element
                $([trigger.get(0), popup.get(0)]).mouseover(function () {
                    // stops the hide event if we move from the trigger to the popup element
                    if (hideDelayTimer) clearTimeout(hideDelayTimer);
                    // don't trigger the animation again if we're being shown, or already visible
                    if (beingShown || shown) {
                        return;
                    } else {
                        beingShown = true;
                        // reset position of popup box
                        popup.css({
                            'z-index': 1000,
                            top: 30,
                            left: 10,
                            display: 'block' // brings the popup back in to view
                            // (we're using chaining on the popup) now animate it's opacity and position
                                .animate({
                                    top: '-=' + distance + 'px',
                                    opacity: 1
                                }, time, 'swing', function() {
                                    // once the animation is complete, set the tracker variables
                                    beingShown = false;
                                    shown = true;
                }).mouseout(function () {
                            // reset the timer if we get fired again - avoids double animations
                            if (hideDelayTimer) clearTimeout(hideDelayTimer);
                            // store the timer so that it can be cleared in the mouseover if required
                            hideDelayTimer = setTimeout(function () {
                                hideDelayTimer = null;
                                popup.animate({
                                    top: '-=' + distance + 'px',
                                    opacity: 0
                                }, time, 'swing', function () {
                                    // once the animate is complete, set the tracker variables
                                    shown = false;
                                    // hide the popup entirely after the effect (opacity alone doesn't do the job)
                                    popup.css('display', 'none');
                            }, hideDelay);
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-35744229-1']);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    </script>
    </head>
    <body>
    <div id="fb-root"></div>
    <script>(function(d, s, id) { type="text/javascript"
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    <div id="hours">
    <strong>Open:<br />Tuesday-Sunday (二~日)<br /> 11:30am - 2:00am (3:00am 五 &amp; 六)</strong>
    </div>
    <div id="title_bar">
    <img src="title_bar.jpg" alt=""/>
    </div>
    <div class='rollover' id="title">
    <a href="index.php">
    </a>
    </div>
    <div class='rollover' id='about'>
    <a href="about.php">
    </a>
    </div>
    <div class='rollover' id='gallery'>
    <a href="gallery.php">
    </a>
    </div>
    <div class='rollover' id='venue'>
    <a href="venue.php">
    </a>
    </div>
    <div class='rollover' id='shop'>
    <a href="shop.php">
    </a>
    </div>
    <div class='rollover' id='restaurant'>
    <a href="restaurant.php">
    </a>
    </div>
    <div class='rollover' id='bar'>
    <a href="bar.php">
    </a>
    </div>
    <div id="pop_up_background">
    <img src="pop_up_2.png" alt=""/>
    </div>
    <div class="scroll">
    <?php
    $opts = array(
    'filter'=>'eventDateTime',
    'match'=>'eqbetween',
    'category'=>array('gigs', 'Events'),
    'sort'=>eventDateTime,
    'sort-order'=> ASC,
    'display'=>date,
    'value'=>$_GET['id'],
    'template'=>'events/listing/event-day.html',
    perch_events_custom($opts);
    ?>
    </div>
    <div id="contact_bar">
    <img src="contact_bar.png" alt=""/>
    </div>
    <div class='rollover' id='events'>
    <a class='events-link' href="events.php">
    </a>
        <div class='events-calendar'>
            <?php
                 * setting options for the calendar. Change the categories listed to one or more which exist in your admin.
                $opts = array(
                    'template'=>'calendar.html',
                    'past-events'=>true,
                    'category'=>array('gigs', 'Events')
                perch_events_calendar($opts);
            ?>
        </div>
    </div>
    <div class='rollover' id='contact'>
    <a href="contact.php">
    </a>
    </div>
    <div id="copyright_background">
    <img src="copyright_bgrd.png" alt=""/>
    </div>
    <div id= "webdesign">
    Webdesign
    </div>
    <div id= "copyright">
    &#169; TAV Cafe
    </div>
    <div class='rollover' id='website_link'>
    <a href="http://www.renflannery.com/" target="_blank">Visit W3Schools</a>
    </div>
    <div class='rollover' id='fb_icon'>
    <a href="https://www.facebook.com/TAVCafe" target="_blank">Visit W3Schools</a>
    </div>
    <div class="fb-like" id="fb-root" data-href="http://www.tavcafe.com" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false" data-font="verdana"></div>
    </body>
    </html>

  • Workflow to update Account and Contact Type based on Closed/Won Opportunity

    Hi,
    I’d like to create a workflow that updates the Account Type and Contact Type fields on the respective records from “Prospect” to “Customer” whenever a related opportunity is closed as Won. I've looked into using the JoinFieldValue function but I don't think that will work. Is there a way to do this?
    Thanks.

    Currently we do not have cross object workflows. I do not think this is possible. I understand its part of R17 roadmap. Bobb can you let us know if thats correct and what is the expected timeline on R17

  • Installed update to different program - Foxfire 5 closed - won't reopen.-Get Mozilla Crash Report-uninstalled-reinstalled twice-still get same error msg.

    FireFox 5 was working fine. Got a message about one of my other programs had an update available. I installed the update and it needed to shutdown the system to take effect. I clicked OK. The system shut down and restarted and a Mozilla Crash Reporter message came up when it tried to reload FireFox. I've tried totally uninstalling FireFox (twice) and re installing it but I still get the same error message when I try to start the program.
    Don't know what else I can do???

    Google ATI Firefox crash. You'll see ATI video cards have multiple problems with Firefox and also internet videos. Also, note the dates these problems occurred - many are 2011...

  • Opportunity Closing Date - Upon Status Change, Retain Existing Closing Date

    Hello,
    When an Opportunity is set to Won or Cancelled, the system automatically updates the Closing Date to today's date (i.e., the date in which the Opportunity was changed to Won or Cancelled).
    Does anyone know how to override this functionality?  The requirement is to retain the existing Closing Date, and to NOT automatically set the Closing Date to today's date.
    I cannot seem to find anything in config to override this functionality.  I'm guessing I'll need to implement a BADI - just not sure which one...
    Thanks,
    Matt

    Prasenjit,
    Thanks for the reply, I more than appreciate it!  Per your recommendation, after some debgging, I was able to locate the event :-).  I have awarded you points!
    In case anyone comes across this issue, here's how I resolved it:
    In T-Code CRMV_EVENT, for Transaction Category BUS2000111 (i.e., Opty), Object Name STATUS, Event AFTER_CHANGE, and Attribute I1005, I specified my custom Function Module ZCRM_OPPORT_H_EXPECTEND_CMPD, which is simply a copy of the out-of-box Function Module CRM_OPPORT_H_EXPECTEND_CMPD_EC.
    In my custom FM, I simply commented out the code that defaults the EXPECT_END date to today's date.
    In addition, I had to make the following entry in table CRMC_FUNC_ASSIGN:
    FUNC_NAM = ZCRM_OPPORT_H_EXPECTEND_CMPD
    FUNCTION = CRM_OPPORT_H
    An entry is required in table CRMC_FUNC_ASSIGN in order for t-code CRMV_EVENT to recognize the custom Function Module.
    Thanks!

  • When cursor is not closed what error will occur.

    when many cursors are in open and no cursor is closed means what error will occur..

    ORA-01000
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1041031921901
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:685336504294
    etc...

  • Cannot access a closed file error on adding a file to a library

    I am trying to copy the attachments from a list to a document library. When I try to write into a document library, occasionally I am getting following error "The remote server returned an error: (500) Internal Server Error.  Cannot access
    a closed file.  Cannot access a closed file.  "
    Any ideas on what is causing the problem. The code is specified below, The error message is specified after the code. Can you please let me know if I am missing anything. I cant find anything wrong in the code or in the library. The code is running as WCF
    Service and the call to process this is made from Infopath form.
    try
    SPSecurity.RunWithElevatedPrivileges(delegate()
    string siteURL = "Site URL";
    using (SPSite site = new SPSite(siteURL))
    SPWeb oWeb = site.OpenWeb();
    SPList oList = oWeb.Lists["List Name"];
    SPList docDestination = oWeb.Lists["Destination Library on same site"];
    SPFolder fldRoot = oWeb.Folders["Destination Library on same site"];
    SPFileCollection flColl = null;
    SPQuery oQuery = new SPQuery();
    oQuery.Query = "<Where><Eq>" + "<FieldRef Name=\"ID\"/><Value Type=\"Number\">" + RequestID + "</Value></Eq></Where>";
    SPListItemCollection oItems = oList.GetItems(oQuery);
    foreach (SPListItem lstItem in oItems)
    if (lstItem["ID"].ToString() == RequestID)
    if (lstItem.Attachments != null && lstItem.Attachments.Count > 0)
    foreach (String strName in lstItem.Attachments)
    flColl = fldRoot.Files;
    SPListItem listtem = docDestination.Items.Add();
    SPFile FileCopy = lstItem.ParentList.ParentWeb.GetFile(lstItem.Attachments.UrlPrefix + strName);
    SPQuery oQueryDest = new SPQuery();
    oQueryDest.Query = "<Where><Eq>" + "<FieldRef Name=\"Name\"/><Value Type=\"Text\">" + FileCopy.Name + "</Value></Eq></Where>";
    SPListItemCollection collListItems = docDestination.GetItems(oQuery);
    string destFile = flColl.Folder.Url + "/" + FileCopy.Name ;
    if (collListItems.Count > 0)
    String strFileNamePrfix = FileCopy.Name.Substring(0, FileCopy.Name.Length - 3);
    strFileNamePrfix = strFileNamePrfix + "_" + collListItems.Count.ToString();
    strFileNamePrfix = strFileNamePrfix + FileCopy.Name.Substring(FileCopy.Name.Length - 3,3);
    destFile = flColl.Folder.Url + "/" + strFileNamePrfix;
    byte[] fileData = FileCopy.OpenBinary();
    Trace.WriteLine("Board Services dest file" + destFile + " Count = " + collListItems.Count.ToString());
    SPFile flAdded = flColl.Add(destFile, fileData,true);
    SPListItem item = flAdded.Item;
    flAdded.Item.Update();
    catch (Exception ex)
    string strLogEntry = ex.Message.ToString() + ex.StackTrace.ToString();
    finally
    Form submission failed. (User: xxxxx, Form Name: Template, IP: , Request: http://Site Url/Lists/List name/Task/editifs.aspx?List=e6647e38-cb01-46b3-8bee-308357045532&ID=116&Source=http://Site URL/Lists/List Name/AllItems.aspx?View={CB9F3C2B-49DF-4D75-9720-1E7E000FD229}&FilterField1=Status&FilterValue1=Completed&IsDlg=1&Web=706d51c9-e509-40f3-884a-7d40e126ff14,
    Form ID: urn:schemas-microsoft-com:office:infopath:list:-AutoGen-2013-12-06T16:11:54:747Z, Type: DataAdapterException, Exception Message: The remote server returned an error: (500) Internal Server Error.  Cannot access a closed file.  Cannot
    access a closed file.  
     at System.IO.FileStream.Write(Byte[] array, Int32 offset, Int32 count)    
    The remote server returned an error: (500) Internal Server Error.)

    Hi Dimitri,
    Thank you, I tried increasing the timeout on web.config file of the wCF service and reloaded the config file.
    <httpRuntime executionTimeout="90" maxRequestLength="20000" useFullyQualifiedRedirectUrl="false" requestLengthDiskThreshold="8192"/>
    As the error
    Form submission failed. (User: , Form Name: Template, IP: , Request: http://site /editifs.aspx?List=e6647e38-cb01-46b3-8bee-308357045532&ID=102&Source=http://site List/AllItems.aspx?View={cb9f3c2b-49df-4d75-9720-1e7e000fd229}&SortField=Status&SortDir=Asc&IsDlg=1&Web=706d51c9-e509-40f3-884a-7d40e126ff14#,
    Form ID: urn:schemas-microsoft-com:office:infopath:list:-AutoGen-2013-12-06T16:11:54:747Z, Type: DataAdapterException, Exception Message: The remote server returned an error: (500) Internal Server Error.  Cannot access a closed file.  Cannot access
    a closed file.  
     at System.IO.FileStream.Write(Byte[] array, Int32 offset, Int32 count)    
    is happening at following line
    SPFile flAdded = flColl.Add(destFile, fileData,attachmentPropertiesHashTable ,true);
    I only modified the timeout on the wcf service.
    I dont think I need to change the timeout on the Webapplication which has this site?
    Regards
    Nate

  • Java.sql.SQLException: Closed Connection error when invoking web service

    Hi
    I've assembled a simple web service for an Oracle PL/SQL package and deployed it on a Standalone OC4J, when I come to invoke it on the Oracle Enterprise Manager screen I'm getting the following returned within the envelope body:
    <env:Body>
    <env:Fault>
    <faultcode>env:Server</faultcode>
    <faultstring>Internal Server Error (serialization error: java.sql.SQLException: java.sql.SQLException: Closed Connection)</faultstring>
    </env:Fault>
    </env:Body>
    The function that is called within the database returns a user defined object that consists of a RAW value and an XMLTYPE. The function takes a string as a parameter, when I enter a string that I know will not return an object there is no error in the envelope body, only when there is an object to return does the error appear.
    Anyone have any suggestion as to why this is?

    I'm no further forward with this: has anyone assembled, deployed and invoked a web service that returns a XMLTYPE?? I know this should be possible but I think there's maybe some manual intervention required with the classes created with webservicesassembler: I'd really appreciate it if anyone with any experience of this kind of thing could help me think this through.

Maybe you are looking for

  • How do I change the pixel size of my photos?

    Hello, Please give me step by step instructions on how to change the pixel size of my photos from the time I log in. Thank you.

  • Verizon Customer Service?

    Verizon Customer Service? A Verizon Supervisor just told me on 1/08/2011 and I quote: “ You can't expect first class service if your only paying for coach.” and So  I'm writing this to express my dissatisfaction with Verizon home phone and internet s

  • How do I change my default file reader from Preview to Adobe in Firefox 3.6.28

    I have always used Preview as my default download reader, however now some documents such as utility bills can only be opened using Adobe 9 reader. My question is this, how do I change my default reader to Adobe 9 in Firefox 3.6.28, Mac OSX 10.4

  • Error trying to start wmii 3.5

    I receive the following error when trying to run wmii as a  non-root user: Cannot creats ns_path /tmp/ns.<userName>  Permission denied. Looks like something in wmii is trying to create a file  in /tmp.   What do I need to do to  run wmii as a normal

  • Developing with ADF BC or TopLink

    We are a Higher Education PeopleSoft Student Administration, Financial and HR shop and are interested in gaining expertise with technology that will benefit us for when we implement Fusion Application technology. We are in the process of developing a