Error SBL-DAT-00215 modifying an opportunity?

I'm trying to modify a opportunity named "PRL_COLA_" and I can't do it. Siebel return this error:
This operation is not allowed when there are no records displayed.
Please execute a query that returns at least one record or add a new record.(SBL-DAT-00215)
I cannot delete it and I cannot modify it.
Any idea?

With WebServices: I try with opportunityId, opportunityName and the same result.
If i don't use WS: I go directly with the web interface, I find the opportunity, do click and Siebel open it. All ok, but when I try modify something and i have the same error message.
I don’t know how I can delete it

Similar Messages

  • Import Error(SBL-DAT-00215)

    I can't import account data from the Admin Page.
    I select some settings,set the csv file and set the mapping file.Then the following error is occured.
    This operation is not allowed when there are no records displayed. Please execute a query that returns at least one record or add a new.(SBL-DAT-00215)
    Does anyone know the answer?

    Hi,
    During Import of any data following points should be kept in mind.
    1.The spreadsheet should be in .CSV format.
    2.There should not be blank spaces between two columns.
    Please check this once again and try .
    Thanks,
    Kunal.

  • Error Access denied(SBL-DAT-00553)

    Hi
    Whenever i try to edit a contact by adding an account to a contact record by clicking on the lookup icon of Account field on the Contact detail page ,(Owner is another user) i get the error SBL-DAT-00553. but i am able to edit any other fields in that particular record.
    Has any one faced the same issue, Kindly help on this.
    Thanks in advance.

    Folks,
    We have encountered this issue as well and have worked through the recommended corrective steps above (excluding reimporting which is not a viable option with the number of users and contact records we have).
    We have also confirmed that any relative related information fields are not read-only on our page layouts; however, we have obtained no resolution. We will open a SR with customer care; however we are wondering if anyone on the forums here has a definitive corrective resolution for this specific access denied error.
    From the contact record level, the only way we are able to associate an account is to be the logged user whom also owns the contact record.
    We are able to associate the contact if we are under the account, even if we do not own the contact record. So, the reverse holds true as to associating a contact from the account while the user is NOT the record owner.
    Any additional insight would be appreciated.
    ~Jennifer~

  • Getting "Join in business component definition 'CG Opportunity My Accounts' has source fields that come from tables 'S_OPTY' and 'S_ORG_EXT'(SBL-DAT-00452)" error after upgradating to siebel Open UI 8.1.1.11

    Hello Team,
    We have upgraded from Siebel 8.1.1.3 to Siebel Open UI  8.1.1.11.
    But after up-gradation we are getting the below error in   "My Account Opportunity" View.
    We detected an Error which may have occurred for one or more of the following reasons:
    Join in business component definition 'CG Opportunity My Accounts' has source fields that come from tables 'S_OPTY' and 'S_ORG_EXT'(SBL-DAT-00452).
    Thanks,
    Tirupati Nanda
    Mob:-9742404115

    Hello Team,
    We have upgraded from Siebel 8.1.1.3 to Siebel Open UI  8.1.1.11.
    But after up-gradation we are getting the below error in   "My Account Opportunity" View.
    We detected an Error which may have occurred for one or more of the following reasons:
    Join in business component definition 'CG Opportunity My Accounts' has source fields that come from tables 'S_OPTY' and 'S_ORG_EXT'(SBL-DAT-00452).
    Thanks,
    Tirupati Nanda
    Mob:-9742404115

  • Opportunity - Access denied.(SBL-DAT-00284) Error

    I am getting error as Access denied.(SBL-DAT-00284) when I am trying to create a new opportunity record.
    I checked Roles and access profile. Setup looks correct there. Any idea of issue. Thanks VK

    I was access profile issue. I resolved. Thanks VK

  • Error in Account related information sections Access denied.(SBL-DAT-00553)

    Hi,
    I have 2 users, 1 from Spain and the other from Italy.
    The spanish user is the owner of an account and adds the user from italy to the account team section with full access to the account.
    The italian user is able to view the account. However the italian user is not able to view any of the custom objects in the related information sections below the account information.
    The error is as follows:
    Access denied.(SBL-DAT-00553)
    Both users have the same role. However, if he/she is not the owner of the account but only a 'Team' member, he's able to view the account but not the CO's below the account. I've checked the access profiles and roles and it all seems fine. Oracle support confirmed this as well as both users were able to search and view the CO records without any issues. It's just that it hits the error if it's in the related information section.
    I was just wondering if I'm missing any settings for customer team.
    Currently, I'm not even sure if Customer team functionality was built for use with custom objects in related information sections.
    Any help would be greatly appreciated!

    Hi, What i meant is, if you are using C04 - C015 objects, then ensure under related sections of Accounts in "Full" access profile, you set it as "View" or "Read-Only" instead of "No Access". "No Access" is what being set by OnDemand by default even though the access profile is named as "Full"
    -- Venky CRMIT

  • Siebel Smartscript errors: SBL-CSP-00230 // SBL-DAT-00398

    Hi all!
    We have two business components (parent and child).
    The first BC is Account. The other is Employee.
    We are trying to build a Smartscript to get info from the user which will be saved to the BCs.
    In our case we have one account and multiple employees.
    The Smartscript succeed to save the changes made to the Account BC (Parent) but when trying to add an employee (child) we got the following error message:
    [1] SBL-CSP-00230: Unable to save edits to BusComp '%1' specified for a question. Please notify your system administrator.
    [2] SBL-DAT-00398: Field <?> does not exist in definition for business component <?>.
    Even though we got this message, the first employee was saved successfully. However, when we tried to make a new record and add another employee, the message returned to appear and the changes were not saved.
    We tried to make two scripts: one is associated with the parent and the other with the child. In the child script, we used "SetFieldValue" to assign a value for the field that joining the two BCs. We used a previous existed ID and it works!!!
    When combining both it doesn't work! Not know why?!
    Anyone have any idea about what is going on?
    I will be grateful for your help.
    Thanks in advance.
    Kind regards,
    Tamara.

    We could find a way to handle the problem.
    We just put the following eScript code in the first and last questions located in the page associated with the child BC.
    The code is:
    function Question_Leave ()
    var BO = Script().CurrentQuestion().GetSaveBusObj();
    var ParentBC = BO.GetBusComp("Account");
    var fieldvalue= ParentBC.GetFieldValue("Id");
    with (ParentBC)
    ActivateField("Id");
    SetSearchSpec("Id", fieldvalue);
    ExecuteQuery(ForwardOnly);
    return (ContinueOperation);
    Not know what was exactly the problem and why this code solves it but it works! The problem was completely solved :-)
    May this will be helpful to whom facing similar problem.
    And I am open to hear any explanation :-)
    Kind regards,
    Tamara.

  • SBL-DAT-00222: An error has occurred creating business component 'Admin SEA

    Hello,
    I am also facing simillar issue.
    I am trying to create admin account through Siebel Data bean using Business object "Users" and business component "User";
    It works from Web client. but fails from siebel databean program.
    Following is an error in SCCObjManager log :-
    Please ask your systems administrator to check your application configuration.
    ObjMgrMiscLog Error 1 0000001650241a04:0 2012-08-13 14:26:48 (busobj.cpp (1666)) SBL-DAT-00222: An error has occurred creating business component 'Admin SEA Application' used by business object 'Users'.
    Please suggest.
    Siebel Environment details:-
    Siebel 8.2.2.0.0 - Windows 2008 R2 SP1
    Database - Oracle 11g
    We are using database as security adapter.

    I have never worked with Databeans and neither with Siebel 8.2.2.
    But when I look in Siebel 8.1.1.3 Tools at the Business Object 'Users', I don't see the business component 'Admin SEA Application'.
    The Business Component does exist, but in a different Business Object.
    Perhaps you should review the code of the Databean.
    If all else fails, you can try to add it through Business Object 'Employee' and Business Component 'Employee'.

  • Generate Report Get Data to Modify.vi produces an error code 97

    The "Generate Report Get Data to Modify.vi" produces error 97. I found some help regarding "font style.vi". The recommendation was to recompile the VI, but it didn´t work. Also to change the property node to a different property and back to the original didn´t work, too.

    You hit the big solutions. Have you been able to isolate where in the VI the problem occurs? You will probably have to dig in the subVIs. Also do you see this problem if you install on another computer? Consider also reinstalling LabVIEW and Office if you are using the toolkit.

  • Inser Contact SBL-DAT-00421 + SBL-EAI-04376 error

    Hi,
    I am trying to insert a Contact via the soap request but i get below error:-
    <siebelf:errormsg>Method 'SetFieldValue' of business component 'Contact' (integration component 'Contact') returned the following error:"An invalid assignment error has occurred.Please try again or ask your systems administrator to check your application configuration if the problem persists.(SBL-DAT-00421)"(SBL-EAI-04376)</siebelf:errormsg>
    Below is my request:-
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    - <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns9060="http://tempuri.org">
    - <SOAP-ENV:Body>
    - <ContactWS_ContactInsert_Input xmlns="urn:crmondemand/ws/contact/10/2004">
    - <ListOfContact xmlns="urn:/crmondemand/xml/contact">
    - <Contact>
    <MrMrs>Mr</MrMrs>
    <ContactLastName>Dan</ContactLastName>
    <ContactFirstName>Van</ContactFirstName>
    <stNRIC__Passport__FIN_No>S23245641</stNRIC__Passport__FIN_No>
    <plBrand_Customer>LR-Land Rover</plBrand_Customer>
    <stOwnership_Indicator>00/000</stOwnership_Indicator>
    <bPrime_Customer>N</bPrime_Customer>
    <stTarget_No>75062</stTarget_No>
    <Gender>Male</Gender>
    <DateofBirth>24/06/1971</DateofBirth>
    <AlternateAddress1>Addr 1</AlternateAddress1>
    <AlternateAddress2>Addr 2</AlternateAddress2>
    <AlternateCity>Addr 3</AlternateCity>
    <AlternateZipCode>989889</AlternateZipCode>
    <AlternateCountry>Singapore</AlternateCountry>
    <bStop_Mails>N</bStop_Mails>
    <bAddress_Status>Y</bAddress_Status>
    <HomePhone>68574958</HomePhone>
    <WorkPhone>69878621</WorkPhone>
    <WorkFax>66598787</WorkFax>
    <CellularPhone>97845364</CellularPhone>
    <plPreferred_Contact_Method>1-Home</plPreferred_Contact_Method>
    <stService_Contact_Person>motability</stService_Contact_Person>
    <ContactEmail>[email protected]</ContactEmail>
    <NeverEmail>N</NeverEmail>
    <JobTitle>job title</JobTitle>
    <plVIP_Status_1>V-VIP</plVIP_Status_1>
    <plVIP_Status_2>M-Multiple Owner</plVIP_Status_2>
    <ltRaised_byRemarks>loyality card no</ltRaised_byRemarks>
    <dLoyalty_Date>24/06/2012</dLoyalty_Date>
    <plJob_Category>ACC-Accountant</plJob_Category>
    <LeadSource>ADV-Dealer advertising</LeadSource>
    <plIndustry>ACC-Accountants</plIndustry>
    <ContactType>C-Customer - Active car owner</ContactType>
    <plDepartment>S-Vehicle sales department</plDepartment>
    <stATL_Date_Created>24/06/2011</stATL_Date_Created>
    <stATL_Created_By>kccit</stATL_Created_By>
    </Contact>
    </ListOfContact>
    </ContactWS_ContactInsert_Input>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Anyone have this issue before.
    Thank you.

    Many thanks for your answer Kdinesh,
    I already knew about the origin of the problem, what I really want to know is how to detect quickly which fielname is ZPick_N in my Lead entity, in order to give it the right value to insert the new registry without problems!
    Thank you very much again, and sorry if I'm not as fluently as I should be or my questions are expressed on a 'confusing' way...

  • SBL-DAT-00398 error msg for User Field Validation

    Hi All,
    I have created the following field validation on the User field "Division": Len([<Division>])>0 AND InStr([<ltValidation_OU_ITAG>],[<Division>])>0, As the "Division" field is free text, the porpuse of the validation is to prevent the user from entering in this field any value that is diffrent from the ones available in the custom field "Validation OU" via the User Owner Page Layout. The validation works OK for Admin Role via the User Admin Page Layout but a SBL-DAT-00398 error msg stating " Field '<Division>' does not exist in definition for business component 'Occam Current Employee' " appears when users with other roles are trying to update this field via the User Owner Page Layout.
    I have contacted OD Customer support and they validated this in several POD saying this "is most likely a defect in the application" and a CR will be submitted to dev team to fix it sometime in the future.
    I am wondering though if support isn't making life easy here stating the above...:
    1. Anyone encountered this error before? (couldn't find any trace for this on My Oracle Support)
    2. Anyone aware of field validation limitations for the 'User' entity?
    3. Workaround suggestions are welcomed
    10X for you help!
    Alex.

    Error(), fatal(), info() and warn() issue FacesMessages that get picked up by the MessageGroup component.
    By adding in the uicomponent you can target the facesMessage so that it gets picked up by the Message component associated with the field causing the error.
    But, to get the label to show the error as well, you need to throw a validationError. See this tutorial for more informaiton:
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/customvalidator.html
    Lark

  • Error Code SBL-DAT-00327

    Hi All
    What is Errot Code SBL-DAT-00327. How can i over come this to view Home Page for Siebel Hospitality Application in 7.7 version.
    If you have any idea about this please share with me.
    Thanks
    Venkat

    Hi
    The license keys you have does not allow you to view the Home Page view. You should login to supportweb and have a look at the details for the error number there:
    https://ebusiness.siebel.com/supportweb/
    Axel

  • SBL-DAT-00548

    Hi All,
    I hope someone can help......
    The sales staff for the last 2 weeks have had issues converting leads to an account as the below error message keeps appearing:
    'Either Occam Validation BC or Occam Validation Field or both user porperies are not defined for field 'Opportunity Id' in Business Component 'Account'. (SBL-DAT-00548).
    This error message has only started appearing recently, before a few weeks ago the users had no problems converting leads into accounts.
    Thanks in advance.

    Hi,
    Most likely you have locked a field on either the account or the opportunity (which is fine), but you did it at the DB level (i.e. in field management, as opposed to the layout level. When this is the case and your did not map a value from the lead, then you will get such errors.
    Best of luck

  • View 'CUT Home Page View (CME)' is not licensed for this site.(SBL-DAT-0032

    Hi Siebel guru,
    I am getting below error when i login in to sibel server.
    View 'CUT Home Page View (CME)' is not licensed for this site.(SBL-DAT-00327)
    can any one help me out to solve this issue ASAP.
    Regards
    Prabhat

    Hi Goud,
    In Installtion time it asked pls update your license key.
    then i updated my license key from http://licensecodes.oracle.com/siebel.html.
    Ifound ther is four row license key information.
    I updated only first row licencse key.
    Is there any workaround for updating license key.
    pls provide me steps.
    Regards
    Prabhat

  • Putting Date Last Modified on PDF

    Is there a way to put the date last modified on a PDF using Javascript? I am trying to organize a folder of PDF maps and the only way I can think of to do it is to print out each map with its file name and date last modified (so we can come back to the folder and delete the duplicates and the really old ones).
    The wonderful thread Print File Name with PDF Document has helped me figure out how to put the file name and current date into each pdf as a footer, but when I tried to edit the code to get the date last modified, I get an error.
    I will admit that I am a newbie when it comes to Javascript, so any suggestions would be extremely helpful.
    My code is as follows:
    // SetRemoveFooter
    app.addSubMenu({ cName: "Footer",cUser: "Set/Remove Footer", cParent: "File", nPos: 20 });
    app.addMenuItem({ cName: "Set Date Time (Filename)", cParent: "Footer", cExec: "SetFooter(1)"});
    app.addMenuItem({ cName: " -> Set Date .... centered", cParent: "Footer", cExec: "SetFooter(2)"});
    app.addMenuItem({ cName: " -> Set Date .... right", cParent: "Footer", cExec: "SetFooter(3)"});
    app.addMenuItem({ cName: "Set Page ", cParent: "Footer", cExec: "SetFooter(4)"});
    app.addMenuItem({ cName: "Set Both", cParent: "Footer", cExec: "SetFooter(5)"});
    app.addMenuItem({ cName: "-------------------------------", cParent: "Footer",cExec: "{}"});
    app.addMenuItem({ cName: "Remove Both", cParent: "Footer", cExec: "RemoveFooter(5)"});
    app.addMenuItem({ cName: "Remove Date Time (Filename)", cParent: "Footer", cExec: "RemoveFooter(1)"});
    app.addMenuItem({ cName: "Remove Page", cParent: "Footer", cExec: "RemoveFooter(4)"});
    //Set/remove Footer
    function SetFooter(ARG)
    var FileNM = this.documentFileName
    var AcDate = document.lastModified
    var AcDateFormat = "yyyy/mmm/dd HH:MM"
    var Box2Width = 50
    for (var p = 0; p < this.numPages; p++)
    var aRect = this.getPageBox("Crop",p);
    var TotWidth = aRect[2] - aRect[0]
    if (ARG<=3 || ARG==5)
    {var fd = this.addField("xftDate", "text", p, [30,15, TotWidth-30-30,30]);
    fd.value = util.printd(AcDateFormat, AcDate) + " (" + FileNM +")";
    fd.textSize=6; fd.readonly = true;
    if (ARG==1){ fd.alignment="left" };
    if (ARG==2){ fd.alignment="center" };
    if (ARG==3){ fd.alignment="right" };
    if (ARG==4 || ARG==5)
    {var bStart=(TotWidth/2)-(Box2Width/2)
    var bEnd=((TotWidth/2)+(Box2Width/2))
    var fp = this.addField(String("xftPage"+p+1), "text", p, [bStart,30,bEnd,15]);
    fp.value = "Page: " + String(p+1)+ "/" + this.numPages;
    fp.textSize=6; fp.readonly = true;
    fp.alignment="center";
    function RemoveFooter(ARG)
    if (ARG<=3 || ARG==5) {var x = this.removeField("xftDate");}
    if (ARG==2 || ARG==5) {for (var p = 0; p < this.numPages; p++)
    var x = this.removeField(String("xftPage"+p+1)); }
    Everything worked wonderfully until I added the line var AcDate = document.lastModified
    Is there a simple solution or is this a much more complicated problem?
    Thanks!

    You need to use:
    this.info.ModDate
    To get the date the opened PDF was last modified.

Maybe you are looking for

  • Import a jpeg sequence on 2's

    I had my first try at Stop Motion over the weekend. After finishing the shoot (a test really), I tried to import the sequence into AE? I've seen a few things about the sequences automatically coming in at 30fps? How do you import the footage on 2's a

  • Data Guard

    I have configured physical standby data guard on two different physical machines on oracle 10g. Log shipping is working fine. All the arch log generated on primary server is shipped to standby server successfully . On standby server, applied column s

  • What is SCADA and how to integrate with SAP

    Hi all, I am new to SCADA and i would like to know 1. what is SCADA 2. Purpose of SCADA 3. how to integrate SCADA with SAP 4. In SAP for which module we can use SCADA 5. Wether SCADA is used for only PM(Plant Maintanence) in SAP Thnx in advance, Vish

  • Adding a new search criteria in Web UI for Sales Order

    Hi, We have a requirement for Web UI as follows : We want to add the ID number (identification number in BP ) as search criteria for Sales Order simialr to search criteria available in Accounts with ID number . Can any one please give some inputs on

  • Anyone got advice on using Bluetooth to import contacts to new iPhone? Currently all my new phone just keeps searching!

    I have switched on Bluetooth but all I get is searching. My old phone can see the iPhone but the iPhone can't findy old phone. Any other suggestions on how to import contacts also appreciated!