Getting "Method 'sign_in' does not exist" Error (using Charles)

This may be a bit off the FLEX field, and have to do with Zend Framework's ZEND_AMF class. Unfortunately I haven't been able to dig anything up, and comments posted on Wade Arnolds site have not received any responses, so I thought I'd give it a go here.
My ServiceController Class:
public function loginAction()
     $this->_helper->viewRenderer->setNoRender();
     $server = new Zend_Amf_Server();
     $server->setClass('LoginAmfService', 'LoginService');
     $server->setClassMap('CurrentUserVO', 'CurrentUserVO');
     $server->setProduction(false);
     print($server->handle());
My LoginAmfService class:
class LoginAmfService
      * Main login function.
      * @param  string        $name
      * @param  string        $password
      * @return CurrentUserVO
     public function sign_in($name, $password)
          $authAdapter     = new Zend_Auth_Adapter_DbTable(Zend_Registry::get('db'), 'users', 'user_name', 'password', 'PASSWORD(?) AND active = 1');
          $returnValue     = new CurrentUserVO();
          $authAdapter->setIdentity(htmlspecialchars($name))
               ->setCredential(htmlspecialchars($password));
          $authResult = $authAdapter->authenticate();
          if ($authResult->isValid())
               $userArray                          = $authAdapter->getResultRowObject(array('id', 'first_name', 'last_name', 'title', 'photo'));
               $returnValue->first_name     = $userArray->first_name;
               $returnValue->last_name          = $userArray->last_name;
               $returnValue->title               = $userArray->title;
               $returnValue->photo               = $userArray->photo;
               $returnValue->token               = $userArray->id;
          return $returnValue;
      * Function used to log people off.
     public function sign_out()
          $authAdapter = Zend_Auth::getInstance();
          $authAdapter->clearIdentity();
My SignIn FLEX module (the relevant portions):
     <mx:RemoteObject
          id="LoginRemote"
          destination="login"
          source="SignIn"
          showBusyCursor="true"
          fault="parentDocument.handleFault(event)"
     >
           <mx:method name="sign_in" result="signin_handle(event)" />
           <mx:method name="sign_out" result="signout_handle(event)" />
     </mx:RemoteObject>
     <mx:Script>
          <![CDATA[
               import mx.rpc.events.FaultEvent;
               import mx.utils.ArrayUtil;
               import mx.rpc.events.ResultEvent;
               import mx.controls.Alert;
               import com.brassworks.ValueObjects.CurrentUserVO;
               import mx.events.VideoEvent;
               [Bindable]
               private var this_user:CurrentUserVO = new CurrentUserVO();
               private function mdl_init():void
                    focusManager.setFocus(txt_username);
               private function signin_handle(event:ResultEvent):void
                         this_user = event.result as CurrentUserVO;
                         if (this_user.token == null) {Alert.show("Supplied login credentials are not valid. Please try again.");}
                         else
                              this.parentApplication.setUser(this.this_user);
               private function signout_handle(event:ResultEvent):void
               private function sign_in(event:Event):void
                    try
                         //Alert.show(txt_name.text + "|" + txt_password.text);
                         LoginRemote.sign_in(txt_username.text, txt_password.text);
                    catch (error:Error)
                         this.parentDocument.handleFault(error);
               private function sign_out(event:Event):void
               private function show_error(error:Error, s_function:String):void
                    Alert.show("Method:" + s_function + "\nName: " + error.name + "\nID: " + error.errorID + "\nMessage: " + error.message + "\nStack Trace: " + error.getStackTrace() + "\nError: " + error.toString());
               private function handleFault(event:FaultEvent):void
                    Alert.show(event.fault.faultDetail, event.fault.faultString);
          ]]>
     </mx:Script>
Now, all this is great and good, as it works with Zend Framework 1.7.6. However, when I try to upgrade to 1.7.8 (to take advantage of session management and other bug-fixes), I get the following error (using Charles):
#1 /var/web/htdocs/core/library/Zend/Amf/Server.php(390): Zend_Amf_Server->_handle(Object(Zend_Amf_Request_Http))
#2 /var/web/htdocs/core/application/default/controllers/ServicesController.php(73): Zend_Amf_Server->handle()
#3 /var/web/htdocs/core/library/Zend/Controller/Action.php(503): ServicesController->loginAction()
#4 /var/web/htdocs/core/library/Zend/Controller/Dispatcher/Standard.php(285): Zend_Controller_Action->dispatch('loginAction')
#5 /var/web/htdocs/core/library/Zend/Controller/Front.php(934): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
#6 /var/web/htdocs/core/application/bootstrap.php(39): Zend_Controller_Front->dispatch()
#7 /var/web/htdocs/core/public/index.php(5): Bootstrap->runApp()
#8 {main} ?Method "sign_in" does not exist
I have no idea why this would not work anymore. My assumption is that I am not correctly setting up Zend_Amf (but then again, my counter-argument is that it worked before, so ..... ????)
Thanks for any help!
-Mike

For those that are also fighting this issue:
The problem appears to be that the RemoteObject needs to specify the class containing the methods as a source parameter. According to this bug report (http://framework.zend.com/issues/browse/ZF-5168) it is supposed to have been addressed, but apparently has re-emerged in Zend_Amf since version 1.7.7.
Using my example above, I would have to specify the RO as:
<mx:RemoteObject
          id="LoginRemote"
          destination="login"
          source="LoginAmfService"
          showBusyCursor="true"
          fault="parentDocument.handleFault(event)"
     >
           <mx:method name="sign_in" result="signin_handle(event)" />
           <mx:method name="sign_out" result="signout_handle(event)" />
     </mx:RemoteObjecct>

Similar Messages

  • Getting Cost Center Does not exist error when executing BAPI_ACC_GL_POSTING

    Hi Champs,
    I am getting Cost Center Does not exist error when executing BAPI_ACC_GL_POSTING_CHECK.
    But when I checked for the particular Cost center, it is mapped to the same company code the program has got executed.
    Example:
    Cost center 1000/150402 does not exist on 17.11.2009.
    Cost center 1000/150402 does not exist
    Cost center 1000/150402 does not exist on 17.11.2009.
    Cost center 1000/150402 does not exist on 17.11.2009.
    Please let me know if you have any guess on this. It is very critical issue for me.
    Thanks for all your help in advance.
    With Best Regards,
    Ravi kanth Yechuri

    Use 0000150402 not 150402 .
    Rob

  • "List does not exist" error using cfsharepoint

    I am trying to retrieve the contents of a SharePoint list via the cfsharepoint tag. I used the following code:
    <cfset p = structNew()>
    <cfset p.listName = "{7A81F7A3-B6E9-4990-B54A-937F591A402B}">
    <cfsharepoint
         action="getlist"
         params="#p#"
         domain="www.mysite.com"
         name ="SPList"
         password="mypassword"
         userName="myusername" />
    The server returns
    Cannot perform web service invocation getlist.
    The fault returned when invoking the web service operation is:
    AxisFault
    faultCode: {http://www.w3.org/2003/05/soap-envelope}Receiver
    faultSubcode:
    faultString: Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown.
    faultActor:
    faultNode:
    faultDetail:
        {http://schemas.microsoft.com/sharepoint/soap/}errorstring:
        List does not exist.
        The page you selected contains a list that does not exist.  It may have been deleted by another user.
        {http://schemas.microsoft.com/sharepoint/soap/}errorcode:0x82000006
    The list does exist, and the user account has access to it. I can access the list data from an RSS feed using cfhttp, I just thought it might be easier to work with the data if I accessed it using cfsharepoint instead. Any suggestions are appreciated.
    (On a side note, when I searched the Adobe Forums for "SharePoint getlist" it asked me if I meant to search for "harpoon gels." Harpoon gels!)

    I didn't know that about wget - interesting!
    I don't think there are any user-specific settings for Basic vs NTLM Auth, though. I suspect there's some other setting in SharePoint to control this. Unfortunately, SharePoint isn't a typical IIS web app.
    I'm glad I could help!
    Dave Watts, CTO, Fig Leaf Software
    http://www.figleaf.com/
    http://training.figleaf.com/
    Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
    GSA Schedule, and provides the highest caliber vendor-authorized
    instruction at our training centers, online, or onsite.

  • "SAP_PAYSLIP_US does not exist" error in Salary statement iView of ESS

    Hi all,
    We have SAP EP7.0 (NW 2004s) with the ESS business package for MySAPERP 2005.Most of our iViews of the business package are working fine,but some are givig problems.
    When we try to launch the Salary Statement iView under BEnefits and Payments Workset we get the "SAP_PAYSLIP_US does not exist" error.
    The form name SAP_PAYSLIP_US is active and also we have specified the form name in the SPRO settings.
    If we change the form name (for e.g.UF01) then the error displayed is "UF01 does not exist".
    Can anyone point out as to what the problem is.
    Is there any settings we are missing?
    Thanks,
    Pradeep Shetty

    Hi To all!
    The Form SAP_TIMESLIP doesn't exist. The correct form to use in the feature HRFOR is SAP_TIM_99_0001 or SAP_TIM_99_0002.
    Activate the form in transaction HRFORMS.
    SAP didn't release the form SAP_TIMESLIP.
    Hope this information is usefull.
    Sónia

  • Tried to add JUnit Test in Eclipse -- "Test type does not exist" error

    Hi guys,
    I'm developing an assignment whose details I won't bother going into -- it's enough to say that we were introduced to JUnit testing a couple of weeks ago in university tutorials, and I've stupidly tried to add one to my project without fully understanding it all. This is in eclipse 3.1.1.
    Basically, I followed eclipse's built-in tutorial called "Writing and running JUnit tests ".
    1) Created class "TestFailure" with method "testFailure".
    public void testFailure() throws Exception {
        fail();
    } 2) This then appeared as a .java file in my project (as well as on my UML diagram, courtesy of Omondo's UML plugin).
    3) I decided it was too risky mucking around with this stuff in a "live" project, so went ahead and deleted the TestFailure icon on my class diagram.
    4) I closed down eclipse.
    5) I went ahead and deleted TestFailure.java and TestFailure.class from my project folders.
    6) I opened my project again, and tried to execute...
    ... and now I keep getting a Test type does not exist error when I try and run it.
    How on earth do I get rid of this?
    Any advice/guidance is greatly appriciated -- oh, how I wish I'd not started messing with JUnit testing!!! :)

    Um, okay -- I fully hold my hands up and admit that I don't know what I'm doing with JUnit testing (we only had a half hour intro to it) but figured I may as well learn by using the official tutorials. It's always a good place to start! Although obviously using a current assignment isn't the best idea ;)
    I was executing my main class (obviously with my main method in there) to execute the program after I'd deleted test case classes, but strangely I've just shut down my machine and restarted and it's working fine. I'm not sure what the deal is here -- lesson learnt though, study new topics on a dummy project! :)
    Anyway, if I waited until I understood the software and code I'm producing to its fullest, I think hell'd freeze over before I executed any code! :) Using a tutorial to learn a new aspect of software I'm already familiar with wasn't a bad move, IMHO. Just using it on this particular project was... Needless stress and all that.

  • 10gLiteR3 publishing ORA-00942: table or view does not exist error

    Hi All,
    I am encountering table or view does not exist error while publishing using the api.
    Below is the code:
    try {
    consolidatorManager.openConnection("MOBILEADMIN","PASSWORD", ADMIN_JDBC_URL);
    mobileResourceManager = new MobileResourceManager("MOBILEADMIN","PASSWORD",ADMIN_JDBC_URL);
    consolidatorManager.createPublicationItem(EXT_CONN, "RMT_TEST_TABLE" , "MOBILEADMIN","RMT_TEST_TABLE", "F", "SELECT * FROM MOBILEADMIN.RMT_TEST_TABLE", null, null);
    consolidatorManager.addPublicationItem(mobileResourceManager.getPublication("/mobileApp"),"RMT_TEST_TABLE",null, null, "S", null, null);
    } catch (Exception e) {
    e.printStackTrace();
    When I execute the above code it does not throw any exceptions but I see the below error in err.log. I,U,D triggers are getting created on the remote table, CMP, CFM, CVR,CLG tables are also created, I also see primary key for this table in VPKS. Publishing seems to be fine but I see the below error in err.log.
    java.sql.SQLException: ORA-00942: table or view does not exist
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:180)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:208)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:543)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1451)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteDescribe(TTC7Protocol.java:651)
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2117)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2331)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:422)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:366)
         at oracle.lite.sync.Subscription.getVirtualTablePrimaryKey(Subscription.java:7522)
         at oracle.lite.sync.Subscription.getTablePrimaryKey(Subscription.java:7365)
         at oracle.lite.sync.Subscription.CreatePublicationItem(Subscription.java:2334)
         at oracle.lite.sync.Subscription.CreatePublicationItem(Subscription.java:2157)
         at oracle.lite.sync.Subscription.CreatePublicationItem(Subscription.java:2129)
         at oracle.lite.sync.Subscription.CreatePublicationItem(Subscription.java:2108)
         at oracle.lite.sync.Subscription.CreatePublicationItem(Subscription.java:2093)
         at oracle.lite.sync.Subscription.CreatePublicationItem(Subscription.java:2079)
         at oracle.lite.sync.ConsolidatorManager.createPublicationItem(ConsolidatorManager.java:1253)
    I am not able to figure out what table it is looking for. Any ideas why this is happening?

    check the MGP compose process, is it also showing the error?
    If it is them at some point in 10.2 Oracle introduced a 'feature' (ie: bug) that causes problems to the housekeeping routines when new versions of publication items are published
    In 10.0 and early 10.2 when making changes to publication items VIEWS called CPV$.. were created to log the column list for each version of a publication item, and check if you are making changes when you publish. In the case of old versions, once all clients have synchronised and been moved to the latest version it tries to delete this view.
    at some point the publish started creating TABLES instead of views (but using the same naming convention ie: CPV$..). This works fine as far as the logging of changes and old column lists, but the housekeeping called at the end of the publish and GP process still trieds to do a DROP VIEW and this causes the error.
    The only way of clearing this i have found is to look at the log file to get the name of the object that it is trying to drop, set up a view script to create a dummy view with the list of columns in the table, drop the table and then create the view. It then gets dropped on the next MGP cycle and the error goes away
    If the error is not showing up in the MGP process, only in the publish, and your changes appear to be publishing OK, then the problem is likely to be with a snapshot definition AFTER the change you have made - real pain to identify on re-publish - possibly missing schema name in the snapshot definition

  • Field does not exists Error - INSTALLATION TABLE

    We have applied ML MP9 on system database for our eRecruit Instance. We are getting a "Field does not exists" (for eg., INSTALLATION.GL) error for the components which refers to INSTALLATION table.
    The error gets resolved if we introduce a .value in PeopleCode.
    Note: Our Dev Instance is working fine which has ML MP9 applied on it.
    Please find the PeopleBooks Comments for the .value Property:
    Considerations Using INSTALLATION or OPTIONS Tables
    When using the INSTALLATION or OPTIONS table, you cannot use the Value property. You must use the old style format, not the field object format. For example, the following code is invalid:
    If %Page = Page.GP_RUN_TYPE And
    INSTALLATION.TL.Value = "N" Then
    &RS2.HideAllRows();
    Thanks & Regards
    Sudha

    Hello,
    You have to populate the same in the fieldcatalog as well, i think you have not maintained this field there.
    BR,
    Suhas
    PS: Also make it a point to follow-up on your previous post: [Error in ALV : Field Symbol not been assigned.|Error in ALV : Field Symbol not been assigned.]

  • ORA-02289: sequence does not exist Error

    When add Entity Attribute Value : adf.object.nextVal('DenialCommentId')
    Value Type: Expression
    Iam getting ORA-02289: sequence does not exist Error in 11g 1.1.3.0 version .How to Solve it .Any solutions please suggest me .Thanx in advance
    Ravi

    try using adf.object.nextValue('DenialCommentId') to find out whether the compiler is looking for a sequence named object in schema adf or not.
    Regards
    Etbin

  • DBCA in silent mode gives "template does not exist" error

    We successfully created a database using the DBCA in silent mode like this:
    dbca -silent -responseFile dbca.rspThen, attempting to create a second database on the same machine with a slightly different response file, we get the following error:
    dbca -silent -responseFile dbca.rsp2
    Template General Purpose does not exist. Please specify an existing template for database creation.The "General Purpose" template was used in the original database creation. It does exist. No logfile is created. Any ideas what could be causing this?

    We never did get to the bottom of the mysterious "template does not exist" error, but went with a solution that is better:
    1. we used the already-existing database to create a clone template:
    dbca -silent -createCloneTemplate -sourceDB OLD_SID -sysDBAUserName sys
       -sysDBAPassword XXXX -templateName old_sid_copy.dbc
      -maintainFileLocations true
      -datafileJarLocation /local/opt/oracle/product/10.2.0/assistants/dbca/templates (Note the use of the -maintainFileLocations switch)
    2. edited the template file, replacing all instances of OLD_SID with NEW_SID
    /local/opt/oracle/product/10.2.0/assistants/dbca/templates/old_sid_copy.dbc
    3. create the clone using the new template
    dbca -silent -createDatabase -templateName old_sid_copy.dbc
      -gdbname NEW_SID.MYHOST.COM -sid NEW_SID
      -datafileJarLocation /local/opt/oracle/product/10.2.0/assistants/dbca/templates
      -responseFile NO_VALUE -characterset WE8ISO8859P1

  • Map integration - message GAC: Method/property does not exist

    Hi
    In TM when using the Map function we get the message: GAC: Method/property does not exist
    Does anyone know what to do?

    Hi
    Yes i´m sorry you are right, but actually it´s more or less what i got... I have set up the Customizing and all i get when i use the Map function in the Transportation Cockpit is this:

  • Item does not exist error when updating item

    Hi,
    I have a list called "Deal" and I have a ItemUpdated event to update the item permission based on a list field "Owner".
    I find the code run well with site collection administrator account. If I use a regular user account to edit the item, it throws "Item does not exist" error after clicking save button. But the item is actually updated.
    I run the code under debug mode and it does not throw any exception. But the page shows "Item doex not exist" error.
    If I retract the solution, the item can be updated normally without any error.
    My code and the error message:
    public override void ItemUpdated(SPItemEventProperties properties)
    if (properties.ListTitle.Equals("Deal"))
    base.ItemUpdated(properties);
    try
    SPSecurity.RunWithElevatedPrivileges(delegate
    using (SPSite elevatedSite = new SPSite(properties.SiteId))
    using (SPWeb elevatedWeb = elevatedSite.OpenWeb())
    SPList elevatedList = elevatedWeb.Lists[properties.ListId];
    SPListItem elevatedListItem = elevatedList.Items.GetItemById(properties.ListItem.ID);
    // Get Lead owner
    SPFieldUserValue uValue = (SPFieldUserValue)elevatedListItem.Fields["Owner"].GetFieldValue(elevatedListItem["Owner"].ToString());
    SPUser owner = uValue.User;
    bool oldValue = elevatedWeb.AllowUnsafeUpdates;
    elevatedWeb.AllowUnsafeUpdates = true;
    elevatedListItem.ResetRoleInheritance();
    // Break inheritance and clear permissions on list item
    if (!properties.ListItem.HasUniqueRoleAssignments)
    elevatedListItem.BreakRoleInheritance(false);
    // Add permissions for current user
    this.SetPermissionsForUser(elevatedWeb, elevatedListItem, owner, "LeadsOwnerPermission");
    this.EventFiringEnabled = false;
    elevatedListItem.SystemUpdate();
    this.EventFiringEnabled = true;
    elevatedWeb.AllowUnsafeUpdates = oldValue;
    catch (Exception ex)
    COMException (0x81020016): Item does not exist.
    The page you selected contains an item that does not exist. It may have been deleted by another user.<nativehr>0x81020016</nativehr><nativestack></nativestack>]
    Microsoft.SharePoint.Library.SPRequestInternalClass.GetListItemDataWithCallback2(IListItemSqlClient pSqlClient, String bstrUrl, String bstrListName, String bstrViewName, String bstrViewXml, SAFEARRAYFLAGS fSafeArrayFlags, ISP2DSafeArrayWriter pSACallback, ISPDataCallback pPagingCallback, ISPDataCallback pPagingPrevCallback, ISPDataCallback pFilterLinkCallback, ISPDataCallback pSchemaCallback, ISPDataCallback pRowCountCallback, Boolean& pbMaximalView) +0
    Microsoft.SharePoint.Library.SPRequest.GetListItemDataWithCallback2(IListItemSqlClient pSqlClient, String bstrUrl, String bstrListName, String bstrViewName, String bstrViewXml, SAFEARRAYFLAGS fSafeArrayFlags, ISP2DSafeArrayWriter pSACallback, ISPDataCallback pPagingCallback, ISPDataCallback pPagingPrevCallback, ISPDataCallback pFilterLinkCallback, ISPDataCallback pSchemaCallback, ISPDataCallback pRowCountCallback, Boolean& pbMaximalView) +256
    [SPException: Item does not exist.
    The page you selected contains an item that does not exist. It may have been deleted by another user.]
    Microsoft.SharePoint.WebPartPages.DataFormWebPart.InsertCallback(Int32 affectedRecords, Exception ex) +24356360
    System.Web.UI.DataSourceView.Insert(IDictionary values, DataSourceViewOperationCallback callback) +4064980
    Microsoft.SharePoint.WebPartPages.DataFormWebPart.FlatCommit() +378
    Microsoft.SharePoint.WebPartPages.DataFormWebPart.HandleOnSave(Object sender, EventArgs e) +24
    Microsoft.SharePoint.WebControls.SaveButton.OnBubbleEvent(Object source, EventArgs e) +727
    System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) +70
    System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +29
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2981

    Can you try removing user permissions iteratively.
    The sample code will look like this.
    //get usernames
    string tempFieldValue = listItem["Assigned To"].ToString();
    string[] userNameArray = listItem["Assigned To"].ToString().Split(';');
    //remove permissions first
    web.AllowUnsafeUpdates = true;
    listItem.BreakRoleInheritance(false);
    SPRoleAssignmentCollection raCollection = listItem.RoleAssignments;
    //remove exisiting permissions one by one
    for (int a = raCollection.Count - 1; a >= 0; a--)
    raCollection.Remove(a);
    for (int i = 1; i < userNameArray.Length; i++)
    tempFieldValue = userNameArray[i].Replace("#", "");
    userName = web.AllUsers[tempFieldValue];
    toAddress = userName.Email;
    SPSecurity.RunWithElevatedPrivileges(delegate()
    //EMAIL USER
    bool result = SPUtility.SendEmail(web, appendHtmlTag, htmlEncode, toAddress, subject, message);
    //PERMISSIONS
    //grant permissions for specific list item
    SPRoleDefinition roleDefintion = web.RoleDefinitions.GetByType(SPRoleType.Contributor);
    SPRoleAssignment roleAssignment = new SPRoleAssignment(userName);
    roleAssignment.RoleDefinitionBindings.Add(roleDefintion);
    listItem.RoleAssignments.Add(roleAssignment);
    listItem.Update();
    i++;
    jaik

  • Why an "ORA-01006: bind variable does not exist" error when no dynamic SQL?

    Hi all,
    While running PL/SQL in SQL Developer 3.2.09, I got the following error after adding a section of code. Note that nothing I'm doing has anything to do with dynamic SQL (which is what 01006 is supposedly about).
    Error report:
    ORA-01006: bind variable does not exist
    01006. 00000 - "bind variable does not exist"
    *Cause:   
    *Action:
    After commenting out the new chunk of code that caused the error, the error persisted.
    After deleting the new code, the error went away.
    What the heck!?!? If you have any ideas, please lay 'em on me.
    Thanks so much,
    Kim
    P.S. It's a few hundred lines of code, so I didn't append it to this post and I don't see how to attach a file.

    Let's review a few facts:
    1. You post a question in the sql developer forum that has no apparent relation to sql developer. You could confirm this by doing the test using sql*plus or some other tool.
    2. You provide NO information about what database you are even using. The only clue is an ORA -xxx message that means SOME version of Oracle is involved.
    3. You provide NO information about what the four digit version of Oracle DB is being used.
    4. You provide NO information about what the code in general or what that specific section of the code is even doing. The code could be doing literally anything that Oracle is capable of doing.
    That's a bit like calling a mechanic you don't know, telling them your car is making a funny noise and asking them what the problem with your car is.
    >
    While running PL/SQL in SQL Developer 3.2.09, I got the following error after adding a section of code. Note that nothing I'm doing has anything to do with dynamic SQL (which is what 01006 is supposedly about).
    Error report:
    ORA-01006: bind variable does not exist
    01006. 00000 - "bind variable does not exist"
    *Cause:
    *Action:
    The error gives no indication of where the error occurred in the code.
    >
    Your first clue that your troubleshooting method is seriously flawed is when you make statements that aren't supported by any evidence at all but appear to be nothing but your opinion.
    Your second clue is when those statements appear to directly contradict what Oracle is telling you.
    I'm talking about these two statements you make; which you state as if they were universal truths
    >
    nothing I'm doing has anything to do with dynamic SQL
    (which is what 01006 is supposedly about).
    >
    If thoe were true then your 'unstated' conclusion appears to be that Oracle is wrong in saying 'bind variable does not exist'
    Sorry - but I would place my money on Oracle.
    I'm sure the above may sound harsh - it is intended to be. My four major rules (there are more) when troubleshooting Oracle problems.
    1. Assume that Oracle is CORRECT when it tells you there is a problem.
    2. Assume that you are WRONG if your opinion conflicts with what Oracle is telling you - see rule #1.
    3. Don't make ANY other assumptions. You can form hypotheses but don't state them as facts until they are proven.
    4. Your 'opinion' is only useful to the extent that it can help you form meaningful hypotheses - see rule #3.
    >
    To reiterate, there is no dynamic SQL in the code.
    >
    To reiterate - if, as you state, that error relates to dynamic SQL and bind variables then it can not be disputed that:
    ORACLE DOESN'T AGREE WITH YOU!
    So let's try it my way and hypothesize that Oracle is correct (see rule #1 above).
    Then by definition this statement by Oracle is correct
    >
    ORA-01006: bind variable does not exist
    >
    And that should immediately raise this question:
    1. where might there be a bind variable that does not exist?
    which leads to a prerequisite question:
    2. where are ALL of the bind variables that might be being used?
    Question #2 is where you need to start your search. Here are at least five possibilities (there are more)
    1. your code - this should be easiest to check and you state that your 'anonymous' block does not have any.
    2. a table trigger - triggers that use the :NEW, :OLD or :PARENT pseudocolumns. Those psuedocolumns are BIND variables and the trigger code that uses them is, by definition, dynamic sql.
    3. a pl/sql package/function/procedure - any of these might be being called from trigger code or a view that is involved in the transaction. Any of these could take a parameter and/or use bind variables and cause your problem if that bind variable does 'not exist'.
    4. a functional index - can also trigger code from #3 above
    5. an audit trigger that logs the audit activity that your user or your code is performing. This code could be trying to use a SYS_CONTEXT environment variable that has not been created and cause a 'bind variable does not exist' error.
    See rule #1 - Oracle is CORRECT. Until you have identified and examined ALL of the code (not just your anonymous block) being executed and ruled it out you should continue with the hypotheses that Oracle is CORRECT.
    In the (extremely) unlikely event that you can show that Oracle is NOT correct you should file a SOR with Oracle.

  • ESS Salary statemenr: Form Does not exist error

    Hi Experts,
    As mentioned in may threads, I have changed the form name for salary statement to the custom form name in SPRO- --> HRFOR
    But the portal displays "Form does not exist" error. Could not find a solution in any existing post on sdn.
    Urgent help needed.
    Thanks,
    Shobhit

    Hi,
    If your payslip form is desinged in PE51, then follow these steps.
    Employee Self-Service-> Service-Specific Settings-> Benefits and Payment-> Salary Statement-> Form Using HR Forms Editor (PE51)
    a. Edit Feature HRFOR: Maintain the constant $CEDT$ for MOLGA 40 RCLAS  +01(03).
    b. Enter Payslip variant in EDTIN feature
    c. Maintain smartform name in EDPDF
    If your payslip form is designed in HRFORMS, then enter the form name in HRFOR feature and enter the variant in EDTIN.
    Cheers!!
    Ashutosh

  • Package does not exist error-message

    When I try to compile a java servlet with the following piece of code I get a compilation error referring to the import statement.
    I have just included the initial import statements. A large number of errors follow, as a result of this 'package does not exist error-message'.
    Has anyone encountered this or any ideas?
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.* ;
    import java.io.* ;
    import java.sql.* ;
    import com.ericsson.snf.mps.mppapi.mtlr.*;
    The error messages come from the 'import com.ericsson.snf.........' statement.
    I am trying to integrate ericsson software, into my application.
    Thanks,
    java-mobile-user

    That's probably because you are trying to integrate j2me suff with j2se/ee. That won't work without los of extra work..

  • Time series does not exist, Error in Source System

    Hi friends,
    I am loading the data from APO system and i am getting the below error after scheduling the info Packs.. can you analyze and let me know your suggestions
    Error Message : Time series does not exist,
                             Error in Source System
    I have pasted the ststus message below
    Diagnosis
    An error occurred in the source system.
    System Response
    Caller 09 contains an error message.
    Further analysis:
    The error occurred in Extractor .
    Refer to the error message.
    Procedure
    How you remove the error depends on the error message.
    Note
    If the source system is a Client Workstation, then it is possible that the file that you wanted to load was being edited at the time of the data request. Make sure that the file is in the specified directory, that it is not being processed at the moment, and restart the request.
    Thanks,
    YJ

    Hi,
    You better search for the notes with the message ""Time series does not exist". You will get nearly 18 notes. Go through each note and see the relevence to your problem and do the needful as it is mentioned in the note .
    Few notes are:
    528028,542946,367951,391403,362386.
    With rgds,
    Anil Kumar Sharma .P

Maybe you are looking for

  • ImageIcons read from database don't appear

    Hi, I create a JavaBean to show images from filesystem and database (oracle9i) in a JTable. The ImageIcons loaded from filesystem appear fine whith my defined DefaultTabelModel. The ImageIcons read from database (jdbc2) with the same DefaultTabelMode

  • Assigning Static IP (not local static, internet) to server

    I use linksys router in my office. WRT54GS V4 I have T1 line and my ISP provides 5 Static IP address. DHCP option is turned on in my router. My server is connected to the router. If I configure my server with static IP that my ISP provided, my server

  • Calling multiple BPs from main BP

    Hi, I am using JCAPS 5.1.0. I'm trying to call multiple Sub BP through Main BP using event-based decision. I'm invoking 2 WSDL operations in the sub business processes. Now, only one subprocess is working and while testing the another , i'm getting t

  • Rules in Mavericks: Disappeared!!

    I've been having problems with rules for sometime but this is now then end of the road. I've set up the required rule and its sort of fine for a day, it then disappears totally from the list. The only rule visible is The Apple rule. I've sent feedbac

  • Trouble with dreamweaver templates

    I am modifying a site which is stored remotely. I'm having no problem working with the site generally (I've been uploading test pages and they run fine, can download pages onto the local machine etc), but when I try to use a template to design a page