SLIN warning message need to rectify

Hi All,
      TRY.
          CREATE OBJECT LR_0014
            EXPORTING
              TCLAS = 'A'
              INFTY = '0014'.
        CATCH CX_HRPA_VIOLATED_ASSERTION .
      ENDTRY.
for this code in SLIN it is showing warning message as
No Exception Handling After the CATCH Statement
Please suggest the Solution.

Hi Kumar,
check this link:
Re: Extended program check error for cl_salv_table=>factory
Regards,
Swarna Munukoti.

Similar Messages

  • To get the warning messages raised in determination

    Hi Expert,
    I am validaing the Root node using determination(on modify) and raising warning messages , and these warning messages needs to caprured onclicking save button. when clicking save button twice the warning messages goes off and displays "Save not required" I need to display the warning messages untill user modifyies the data...
    Cann anyone help me on this
    thanks in advance

    Dear Sasi,
    Are you able to display messages on application screen?
    Why do you want to double click on the SAVE button?
    Your issue is not clear.
    You can have validation class created where in you can validate certain conditions and raise messages if required criteria is not satisfied.
    May be some of the below related blogs helps you in this aspect.
    WKS: How To Avoid Message Flooding
    Message handling in BOPF
    Quick and Dirty (QAD) - 02 Implementing custom TM Conditions (Part 1 of 3)
    Thanks,
    Bharath.

  • Warning Message In SLIN

    Hi Folks,
                 I Have Encountered A Strange Warning Message In SLIN With The Field
    AUSP-ATWRT.
    " The field "ATWRT" used in the WHERE condition may contain NULL values.
    Internal Message Code: MESSAGE GYT
    (The message cannot be hidden using pseudo-comment "#EC .., bzw. durch SET
    EXTENDED CHECK OFF/ON) "
    This Field IS NOT Null Since In the where clause I have Written Where ATWRT IN S_PCODE & S_PCODE HAS DEFAULT Values Of NLZ 14 09 TO NLZ 14 11 .
    ATWRT IS NOT NULL IN AUSP .
    CAN YOU GUYS RESOLVE THIS PROBLEM .
    Regards,
    RAJIV KAUSHAL

    Hello Rajiv,
    do not use in where clause ,if you use then you will get warning message ..
    tables : ausp.
    select-options : s_atwrt for ausp-atwrt.
    data i_ausp like ausp occurs 0 with header line.
    start-of-selection.
    select * from ausp into table i_ausp.
                      where atwrt in s_atwrt.
    loop at i_ausp.
    <b>if i_ausp-atwrt = 'NA'.
    endif.</b>
    endloop.

  • Need to convert Error message to Warning message in MIGO

    Hi Guys,
                   I need a warning message instead of error message in MIGO.
    For example if a material is having shell life expiry when i am doing GR,if I dont enter the Manufacturing date.Its gives a error meesage.
    The error message is in program MM07MMHD, MESSAGE e018(12).
    In configuration when i press F4 its has only one value 'E'.
    So how to change this to warning (W) instead of 'E'.
    Thanks,
    Prasad.

    Hello,
    Check the message in these T.Code and change category from E to W.
    OPJB for production messages
    OBA5 for CO messages
    OMT4 for material master messages
    OMCQ Batch and quantity related.
    Also you can check SE91 for this.
    Regards,
    Pallavi

  • When I try to do financial transactions I get a warning message "You have requested an encrypted page that contains some unencrypted information. Information that you see or enter on this page could easily be read by a third party." How much do I need to

    When I try to process financial information such as log onto my banking account or my paypal account, or pay for something online I get a warning message "You have requested an encrypted page that contains some unencrypted information. Information that you see or enter on this page could easily be read by a third party." I also never get a padlock to show that I am on a secure site. How much do I need to worry or what should I do?
    == URL of affected sites ==
    http://

    I would not trust that on a banking site. If it were just a forum, no problem, but anything unencrypted during banking is suspicious.

  • HT5654 After updating iCloud application on Vista I am unable to access iTunes, I get the following message: (Need to reinstall application, APSDameon.exe, MSVCR80.dll cannot be found)    I need some help rectifying  this issue because I cannot reinstall

    Hello,
    I have installed the update that was sent on or around January 24th - 26th 2014, after the failure of the apple iTunes update the iCloud update was installed.  Ever since these 2 updates I am unable to open iTunes and I receive the following message: (need to reinstall iTunes application, APSDameon.exe and MISVCR80.dll cannot be found).  I have tried reinstalling iTunes and cannot do so, I really do not want and cannot afford to restore my pc to a previous date because of new data on my PC.  I am requesting assistance from support so that I can rectify this issue, thanks in advance for any assistance you may provide.    

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • My mac mini displays a green screen with 'mac os version not yet responded' and 'you need to restart your computer' as a warning message. Inspite of all my tries it doesnt run from the install dvd either.

    My mac mini displays a green screen with 'mac os version not yet responded' and 'you need to restart your computer' as a warning message. Inspite of all my tries it doesnt run from the install dvd either.
    Please help.

    Sounds like you may have a hardware problem since it won't read from DVD, and it is only a year and a half old.  Hopefully all it is, is bad RAM*:
    http://www.macmaps.com/badram.html

  • Slin overview - warning message

    Hi,
    In "SELECT SINGLE ...", the WHERE condition for the key field "EPCGKEY" does not  
    test for equality. Therefore, the single record in question may not be unique.  
    what does it mean?

    Hi,
    The Select will return more than one possible record but limiting with the single option in Select. 
    If you need to remove the warning then better declare one internal table and use into table <internaltable> instead of select single.
    sampe  code:
    Previoulsy the warning is due to:
    select-options : s_matnr for mara-matnr.
    data: l_matnr type mara-matnr.
    select single matnr from mara into l_matnr where matnr in s_matnr.
    This code will give warning message.
    Change the code as below:
    types: begin of t_mara,
                matnr type mara-matnr,
             end of t_mara.
    data: it_mara type standard table of t_mara.
    select matnr from mara into table it_mara where matnr in s_matnr.
    This code will not give any warning message.
    This is as per my understanding <<Text removed by moderator>>
    THANKS,
    Edited by: Matt on Nov 18, 2008 3:04 PM Do NOT ask for points

  • Need to suppress warning message while executing querywith conditions.

    Hi,
    I have created report in which I have two conditions in report I am showing report data only if keyfigure value is greator than 4. In characteristics I have calmonth and customer I want to suppress result row  so supress result row is always  but warning message comes while executing report.
    Warning : There is a condition on Calmonth result row suppress active.
                    There is acondition on Customer result row suppress is active.
    How to avoid this message permanantly.
    Thanks & Regards
    Deepak Chavan

    Dear Deepak,
    1. Open ur query in rsrt2.
    2. When the warning message occurs, click on the mesage. u ll find the Notification number of it. Note it down.
    3. come to rsrt2 screen again.
    4. click on messages tab. search for ur message with notification number, in various tabs like generation, hierarchy etc..
    5. click suppress message check box for ur message. Save. Come back.
    6. Re-xecute the query.
    Hope this solves the problem.
    All the best.
    -Guru

  • Need to remove "Budget warning Message"

    Hi friends,
    I have customer requirement that customer want that message should not display .
    no budget is maintained but still this warning message is comming in the shopping cart screen in additional specification .
    Can any body suggest me how to remove this message in nots for approval
    Path : SRM  5.0 in Monitoring shopping cart->define search -> select  any shopping cart-> additional Specification :
    Budget warning message
    This shopping cart may cause one or more budgets to be over
    committed:-
    Item     Description            Cost Centre  Financial Year
    Price     % Committed     Budget            Total Committed
        1    Test for Limit ch    SS0406
    0.00            999                0.00                0.00
    End of budget warning
    Thanks in advance.
    Edited by: Rashi on Feb 19, 2009 10:21 AM
    Edited by: Rashi on Feb 19, 2009 10:22 AM

    Hi ,
    I am still waiting for solution....
    I dont want to deactivate budget check.
    Problem is related that in the message is showing incorrect value of budget. While changing shopping card its not comparring the budget value from R/3 system.
    In R/3 FM is used to fetch budget information but every time its giving me same vale for diffrent GL account.
    Can any body helo me on this.
    Thanks

  • My cs4 mail list sign up has stopped functioning.  Need help to correct "warning" messages

    Don't know what's happening, but I do have a screen shot of the warning messages:
    I'm not code conversant enough to figure this one out.  Help!

    Here ya go:
    <?php require_once('Connections/innerchoice_books.php'); ?>
    <?php require_once('Connections/innerchoice_books.php'); ?>
    <?php require_once('Connections/innerchoice_books.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $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;
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $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;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO email_list (ml_fname, ml_lname, ml_email, ml_job, ml_state) VALUES (%s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['ml_fname'], "text"),
                           GetSQLValueString($_POST['ml_lname'], "text"),
                           GetSQLValueString($_POST['ml_email'], "text"),
                           GetSQLValueString($_POST['ml_job'], "text"),
                           GetSQLValueString($_POST['ml_state'], "text"));
      mysql_select_db($database_innerchoice_books, $innerchoice_books);
      $Result1 = mysql_query($insertSQL, $innerchoice_books) or die(mysql_error());
    mysql_select_db($database_innerchoice_books, $innerchoice_books);
    $query_rsSubscribers = "SELECT * FROM email_list";
    $rsSubscribers = mysql_query($query_rsSubscribers, $innerchoice_books) or die(mysql_error());
    $row_rsSubscribers = mysql_fetch_assoc($rsSubscribers);
    $totalRows_rsSubscribers = mysql_num_rows($rsSubscribers);
    mysql_select_db($database_innerchoice_books, $innerchoice_books);
    $query_rsStates = "SELECT * FROM states ORDER BY state_id ASC";
    $rsStates = mysql_query($query_rsStates, $innerchoice_books) or die(mysql_error());
    $row_rsStates = mysql_fetch_assoc($rsStates);
    $totalRows_rsStates = mysql_num_rows($rsStates);
    mysql_select_db($database_innerchoice_books, $innerchoice_books);
    $query_rsJobs = "SELECT * FROM jobs ORDER BY job_id ASC";
    $rsJobs = mysql_query($query_rsJobs, $innerchoice_books) or die(mysql_error());
    $row_rsJobs = mysql_fetch_assoc($rsJobs);
    $totalRows_rsJobs = mysql_num_rows($rsJobs);
    ?>
    <?php require_once("webassist/email/mail_php.php"); ?>
    <?php require_once("webassist/email/mailformatting_php.php"); ?>
    <?php
    if (!isset($_SESSION))session_start();
    if ((($_SERVER["REQUEST_METHOD"] == "POST") && (isset($_SERVER["HTTP_REFERER"]) && strpos(urldecode($_SERVER["HTTP_REFERER"]), urldecode($_SERVER["SERVER_NAME"].$_SERVER["PHP_SELF"])) > 0) && isset($_POST)))     {
      //WA Universal Email object="mail"
      set_time_limit(0);
      $EmailRef = "waue_mailList_signup_2";
      $BurstSize = 0;
      $BurstTime = 0;
      $WaitTime = 0;
      $GoToPage = "mailList_signup_thanks.php";
      $RecipArray = array();
      $StartBurst = time();
      $LoopCount = 0;
      $TotalEmails = 0;
      $RecipIndex = 0;
      // build up recipients array
      $CurIndex = sizeof($RecipArray);
      $RecipArray[$CurIndex] = array();
      $RecipArray[$CurIndex ][] = "".((isset($_POST["ml_email"]))?$_POST["ml_email"]:"")  ."";
      $TotalEmails += sizeof($RecipArray[$CurIndex]);
      $RealWait = ($WaitTime<0.25)?0.25:($WaitTime+0.1);
      $TimeTracker = Array();
      $TotalBursts = floor($TotalEmails/$BurstSize);
      $AfterBursts = $TotalEmails % $BurstSize;
      $TimeRemaining = ($TotalBursts * $BurstTime) + ($AfterBursts*$RealWait);
      if ($TimeRemaining < ($TotalEmails*$RealWait) )  {
        $TimeRemaining = $TotalEmails*$RealWait;
      $_SESSION[$EmailRef."_Total"] = $TotalEmails;
      $_SESSION[$EmailRef."_Index"] = 0;
      $_SESSION[$EmailRef."_Remaining"] = $TimeRemaining;
      while ($RecipIndex < sizeof($RecipArray))  {
        $EnteredValue = is_string($RecipArray[$RecipIndex][0]);
        $CurIndex = 0;
        while (($EnteredValue && $CurIndex < sizeof($RecipArray[$RecipIndex])) || (!$EnteredValue && $RecipArray[$RecipIndex][0])) {
          $starttime = microtime_float();
          if ($EnteredValue)  {
            $RecipientEmail = $RecipArray[$RecipIndex][$CurIndex];
          }  else  {
            $RecipientEmail = $RecipArray[$RecipIndex][0][$RecipArray[$RecipIndex][2]];
          $EmailsRemaining = ($TotalEmails- $LoopCount);
          $BurstsRemaining = ceil(($EmailsRemaining-$AfterBursts)/$BurstSize);
          $IntoBurst = ($EmailsRemaining-$AfterBursts) % $BurstSize;
          if ($AfterBursts<$EmailsRemaining) $IntoBurst = 0;
          $TimeRemaining = ($BurstsRemaining * $BurstTime * 60) + ((($AfterBursts<$EmailsRemaining)?$AfterBursts:$EmailsRemaining)*$RealWait) - (($AfterBursts>$EmailsRemaining)?0:($IntoBurst*$RealWait));
          if ($TimeRemaining < ($EmailsRemaining*$RealWait) )  {
            $TimeRemaining = $EmailsRemaining*$RealWait;
          $CurIndex ++;
          $LoopCount ++;
          session_commit();
          session_start();
          $_SESSION[$EmailRef."_Index"] = $LoopCount;
          $_SESSION[$EmailRef."_Remaining"] = round($TimeRemaining);
          session_commit();
          wa_sleep($WaitTime);
          include("webassist/email/waue_mailList_signup_2.php");
          $endtime = microtime_float();
          $TimeTracker[] =$endtime - $starttime;
          $RealWait = array_sum($TimeTracker)/sizeof($TimeTracker);
          if ($LoopCount % $BurstSize == 0)  {
            $TimePassed = (time() - $StartBurst);
            if ($TimePassed < ($BurstTime*60))  {
              $WaitBurst = ($BurstTime*60) -$TimePassed;
              wa_sleep($WaitBurst);
            else  {
              $TimeRemaining = ($TotalEmails- $LoopCount)*$RealWait;
            $StartBurst = time();
          if (!$EnteredValue)  {
            $RecipArray[$RecipIndex][0] =  mysql_fetch_assoc($RecipArray[$RecipIndex][1]);
        $RecipIndex ++;
      $_SESSION[$EmailRef."_Total"] = 0;
      $_SESSION[$EmailRef."_Index"] = 0;
      $_SESSION[$EmailRef."_Remaining"] = 0;
      session_commit();
      session_start();
      if ($GoToPage!="")     {
        header("Location: ".$GoToPage);
    ?>
    <!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=UTF-8" />
    <title>Join the Innerchoice Network</title>
    <link href="assets/Main.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    #apDiv2 {
        position:absolute;
        left:1033px;
        top:965px;
        width:63px;
        height:322px;
        z-index:1;
    -->
    </style>
    <style type="text/css">
    <!--
    a:link {
        color: #060;
        text-decoration: underline;
    a:visited {
        text-decoration: underline;
        color: #006900;
    a:hover {
        text-decoration: none;
        color: #C60;
    a:active {
        text-decoration: underline;
        color: #DC6100;
    #apDiv1 {
        position:absolute;
        left:790px;
        top:506px;
        width:80px;
        height:80px;
        z-index:1;
    #apDiv3 {
        position:absolute;
        width:200px;
        height:115px;
        z-index:1;
    #apDiv4 {
        position:absolute;
        width:200px;
        height:115px;
        z-index:1;
    #featuredCover {
        position:absolute;
        width:136px;
        height:174px;
        z-index:1;
        left: 20px;
        overflow: hidden;
    -->
    </style>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationSelect.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationSelect.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="specials">
      <p>Sign up for the FREE Monday Morning Sharing Circle and More!</p>
    </div>
    <div id="wrapper">
      <div id="header">
        <h1>INNERCHOICE Publishing</h1>
        <h2>Bringing Emotional Intelligence to Life!</h2>
        <!--begin main-nav element-->
        <div>
        <ul>
        <li id="home"><a href="index.html"></a></li>
        <li id="books"><a href="books.php" class="visited"></a></li>
        <li id="training"><a href="circleWorkshops.html"></a></li>
        <li id="resources"><a href="resources.html"></a></li></ul></div>
        <!--begn sub-nave element-->
    <div id="subNav">
             <form method="GET" action="/remsearch.cgi">
                <img src="assets/images/homePage/cart.png" alt="cart.gif" width="25" height="15" style="margin-bottom:-2px;">
                <a href="cart.php">CART</a> | 
                <a href="contactHelp.html">CONTACT US</a> | 
                <a href="contactHelp.html#help">HELP</a> | 
                <a href="aboutUs.html">ABOUT INNERCHOICE</a>  
              </form>
        </div>
        <div id="kids"><img src="assets/images/kids-sans-text.png" width="300" height="442" alt="Happy Kids" />
    </div>
    </div>
      <div id="selResources">
            <p><img src="assets/images/homePage/SELresources.png" width="691" height="66" alt="SEL Resources" /></p>
      </div>
      <div id="mainContent">
        <div id="mailList">
          <h1>Become part of the Sharing Circle Community. Join in the fun!</h1>
          <h2>Sign up now to start enjoying the <span class="free"><br />
          FREE</span> Monday Morning Sharing Circle</h2>
          <p class="introText">As our site  grows,you'll find more and more great resources to support your Social and Emotional Learning efforts. Right now, enjoy a weekly treat as we send  the <a href="circleMonday.html">Monday Morning Sharing Circle Topic</a> your way. This is a sample of the <a href="circleCentral.html">EQ Super Strategy</a> that you can use to bring another dimension to your SEL work with students. Here's this week's<a href="circleMonday.html"> Sharing Circle</a>.</p>
          <p class="introText"><strong>*</strong>Required fields</p>
          <form id="form1" name="form1" method="POST" action=<?php echo $editFormAction; ?>>
            <table width="99%" border="0">
              <tr>
                <td width="606" height="22" valign="bottom" nowrap="nowrap">Email Address: *</td>
              </tr>
              <tr>
                <td align="left" nowrap="nowrap"><span id="spryEmail">
                <label>
                  <input name="ml_email" type="text" id="ml_email" size="60" />
                </label>
                <span class="textfieldRequiredMsg">An email address is required.</span><span class="textfieldInvalidFormatMsg">Invalid format.</span></span></td>
              </tr>
              <tr>
                <td height="22" valign="bottom" nowrap="nowrap">First Name: *</td>
              </tr>
              <tr>
                <td nowrap="nowrap"><span id="spryFirstname">
                  <label>
                    <input name="ml_fname" type="text" id="ml_fname" size="60" />
                  </label>
                <span class="textfieldRequiredMsg">Your first name is required.</span></span></td>
              </tr>
              <tr>
                <td height="22" valign="bottom" nowrap="nowrap">Last Name: *</td>
              </tr>
              <tr>
                <td nowrap="nowrap"><span id="spryLastname">
                  <label>
                    <input name="ml_lname" type="text" id="ml_lname" size="60" />
                  </label>
                <span class="textfieldRequiredMsg">Your last name is required.</span></span></td>
              </tr>
              <tr>
                <td height="45"><p>To guide us in giving you the most useful resource please tell us a little more about your role in education and where you are located.</p></td>
              </tr>
              <tr>
                <td height="22" valign="bottom">Please select a category from the following: *</td>
              </tr>
              <tr>
                <td nowrap="nowrap"><span id="spryRole">
                  <label>
                    <select name="ml_job" id="ml_job">
                      <?php
    do { 
    ?>
                      <option value="<?php echo $row_rsJobs['job_id']?>"><?php echo $row_rsJobs['job_title']?></option>
                      <?php
    } while ($row_rsJobs = mysql_fetch_assoc($rsJobs));
      $rows = mysql_num_rows($rsJobs);
      if($rows > 0) {
          mysql_data_seek($rsJobs, 0);
          $row_rsJobs = mysql_fetch_assoc($rsJobs);
    ?>
                    </select>
                    <span class="selectRequiredMsg">Please select your role.</span><br />
                  </label>
                </span></td>
              </tr>
              <tr>
                <td height="22" valign="bottom">Please tell us the state in which you work: *</td>
              </tr>
              <tr>
                <td nowrap="nowrap"><span id="spryState">
                    <label>
                    <select name="ml_state" id="ml_state">
                      <option value="AA">select...</option>
                      <?php
    do { 
    ?>
                      <option value="<?php echo $row_rsStates['state_id']?>"><?php echo $row_rsStates['state_name']?></option>
                      <?php
    } while ($row_rsStates = mysql_fetch_assoc($rsStates));
      $rows = mysql_num_rows($rsStates);
      if($rows > 0) {
          mysql_data_seek($rsStates, 0);
          $row_rsStates = mysql_fetch_assoc($rsStates);
    ?>
                    </select>
                    <span class="selectRequiredMsg">Please select your state.</span><br />
                    </label>
                </span></td>
                </tr>
              <tr>
                <td height="40" valign="bottom"><label>
                  <input type="submit" name="submit" id="submit" value="Sign me up!" />
                You'll receive an acknowledgment email from Innerchoice shortly.</label></td>
              </tr>
            </table>
            <input type="hidden" name="MM_insert" value="form1" />
          </form>
          <p class="introText">In the coming weeks you'll find other exciting things to enhance your SEL experience. These will include articles and insights about making the most of Social and Emotional Learning, and right away, our new monthly newsletter with even more ideas and interesting, engaging, and fun things to do with your students. You probably get that we're inventing this along the way. So we hope to hear your ideas for broadening the impact of our site and its impact on SEL.  </p>
        </div>
      </div>
    <div id="mlQuote">
      <p>Over the years, Sharing Circles have been one of the best counseling interventions.  They are powerful tools for creating social and emotional learning.</p>
      <p> </p>
    </div>
    <div id="mlUpdate">
      <h5>Current Subscribers—</h5>
      <h5><a href="mailList_updateTrigger.php">Update your information</a></h5>
      <p><em>(Keep Your Email address current)</em></p>
      <h5><a href="mailList_deleteTrigger.php">Unsubscribe</a></h5>
    </div>
      <p> </p>
      <p> </p>
      <div id="events"><a href="icEvents.html"><img src="assets/images/homePage/training_button.png" width="460" height="99" /></a></div>
      <div id="bookBrowse"><a href="titleBrowse.php"></a></div>
      <!--begin for footer content-->
      <div id="footer">
        <div class="left">
          <h5>About Innerchoice</h5>
          <div class="footer-links"> <a href="index.html">Home</a>  |  <a href="aboutUs.html">Mission</a>  |  <a href="aboutUs.html#ourStory">History</a> |  <a href="aboutUs.html#ourCommitment">Commitment to You</a></div>
          <h5>Resources for</h5>
          <div class="footer-links"> <a href="contactHelp.html#writersAuthors">Writers and Authors</a>  |  <a href="resources.html">Those Who Educate</a></div>
        </div>
        <div class="right">
          <div class="icLinks">
            <p><a href="mailto:[email protected]">Send Us Your Ideas</a><a href=""></a></p>
            <p><a href="contactHelp.html">Contact Us</a>  |  <a href="contactHelp.html#help">Help</a>  |  <a href="privacyPolicy.html">Privacy Policy</a>  |  <a href="siteMap.html">Site Map</a>  |  <a href="contactHelp.html#internationalRights">International Rights</a></p>
          </div>
          <div class="copyright"> <a href="aboutUs.html#ourCopyright">Copyright &#169; 2010</a> by <a href="index.html">Innerchoice Publishing, Inc.</a> All rights reserved. </div>
        </div> 
            <hr class="clearing"/>
    </div>
    </div>
    <script type="text/javascript">
    <!--
    var sprytextfield1 = new Spry.Widget.ValidationTextField("spryEmail", "email", {validateOn:["change"]});
    var sprytextfield2 = new Spry.Widget.ValidationTextField("spryFirstname", "none", {validateOn:["change"]});
    var sprytextfield3 = new Spry.Widget.ValidationTextField("spryLastname", "none", {validateOn:["change"]});
    var spryselect1 = new Spry.Widget.ValidationSelect("spryRole", {validateOn:["change"]});
    var spryselect2 = new Spry.Widget.ValidationSelect("spryState", {validateOn:["change"]});
    //-->
    </script>
    </body>
    </html>
    <?php
    mysql_free_result($rsSubscribers);
    mysql_free_result($rsStates);
    mysql_free_result($rsJobs);
    ?>

  • Warning message in BW Report  through Portal

    Friends,
    I really need your help to remove the waring message.
    For the purpose of changing the description on the Selection screen from “Cost Cetnters (Authorised Values)” to “Funds Centers” I had changed the ZCCTRATI variable description to Funds Centers
    Issue:
    When we open the old report we see the following information message.
    " Value if variable ZCCTRAT1 is automatically converted
    I did go to TC RSRT as of Dinesh,Vijay advice ,Just want to know that what message i need to Click .because i could nt find the relevant message
    Can u help me how to remove this ?

    Hi Manohar,
    Edit to add: Here I assume you have a Web Application Designer (WAD) report.
    You can suppress system and warning messages in WAD. Try this and see if it helps.
    - Go to your WAD report
    - In the top part of the properties window there is a drop down box. Open this box and select the top level entry there. This should be the name of your report.
    - Click Web Item
    - Check the following two checkboxes: "Do not Display System Messages" and "Do not Display Warnings".
    Hope this helps,
    Regards,
    Petter
    Message was edited by: M Petter

  • Hi, I am getting a warning message on screen, saying that my iPad hasn't been backed up for 2 weeks, and saying under what circumstances the message appears. My problem is, is that I have backed up iCloud, but am unable to remove the warning.

    Hi,
    I am getting a warning message on screen, saying that myiPad hasn't been backed up to iCloud for two weeks, and advising under what circumstances the message appears. My problem is, is that I have backed it up, but am unable to remove the message, and whilst the message is there, the iPad is frozen, and I cannot do anything.
    Has any other user had such a problem, and if so, how did they rectify it.
    Any advice would be greatly appreciated.
    Thanks in advance.
    clarinet99

    Try this.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up

  • FV50-Park a G/L Account Document BDC Warning message in screen 1001

    I need some help with a BDC program.  I am working on a BDC program to process transaction FV50.   I went to SHDB and created a recording macro. When I test the recording with u201Csimpleu201D information the recording works correctly and the document is parked.  But, when I try to park a document with todays date for the Document Date and I use a date from a previous period I get a warning message which requires an extra screen to be displayed and u201Centeru201D has to pressed. My recording does not work when I get a warning message. I went back and re-recorded transaction FV50 and cause the u201Cwarningu201D message to be displayed so that I can add the extra screen to my BDC recording. I do not see the u201Cextrau201D screen in the new BDC recording.  Anyone know why? How can I make this BDC program handle this extra warning message?

    You will have to add some logic to your program to check the date. If it is from the previous period, process the warning screen; otherwise, do not.
    You may run into other problems as well. FV50 looks like an EnjoySAP transaction and not well suited to batch input.
    Rob

  • Warning message in mir4 while posting

    hi friends ,
    In miro while we post the parked document then it display the warning message as "RG23 Part II posting not yet done"  , when we click on enter , the document is posting . But the user wants that as an error message not the warning message. So please tell me in what way i can get the solution.
    with regards,
    prasad.

    Hi
    1. Setting up Vendor/Customer is OK to get net balance as you said
    2. Spl GL account to track share capital also seems OK
    3. For grants, there is a specific functionality under PSM (Public Sector Management) component of FSCM... I guess, this is added in EhP4.. I am not sure if it was there earlier as well
    Fund Mngt can also be tried for funds mngt, but am not too sure... Its better to use the specific functionality
    4. Regarding budgeting in CO, it can not be on individual GL accounts.. To have budget on GL accounts, you need to activate Funds MNgt.... Std budgetary control in CO is @ Internal Order Level
    Regards
    Ajay M

Maybe you are looking for

  • Can you trade in your ipod touch 5th gen for a ipod touch 6th gen

    I can't wait for the iPod 6 to come out, and I am wondering if you're able to trade in your 5th gen for the 6th gen? I've only had my iPod Touch 5g for a year and there are little to no scratches. How much of credit would I get for it? Also, I still

  • Switching from windows to mac question

    I am going to purchase a mac mini for my wife. Currently, she has a Dell PC. All of her programs are available for the Mac OS except for one financial software program which she must use. Does anyone have a suggestion as to how she can make the switc

  • Maintanence optimizer--terminating at step 1

    Hi, We have our maintanence optimizer in place & were initially able to download sp's. However,now; after selecting the system,it does not proceed to Step 2. Also, there is no error.It just displays "Procedure XXXXX saved" SAP-OSS & SAPOSS RFC's are

  • Help please: Issue setting up collecting payments using Pay Pal

    Our form is created, our Pay PAL account is created and banking info confirmed.  Pay Pal account was registered and permissions granted. Defined the purchased filelds(1) tied to total amount due...and added a fixed 2.00 handling charge.  Basically ev

  • Dirty dock = dead ipod touch?

    I just sent my iPod touch (2nd gen) in for repair because it froze on the Apple logo after powerup. Apple said the iPod was not eligible for warranty work because it was mistreated. When I called Apple to find out how it was mistreated, I was told th