Adding another option in the list option in the relation ship tab

Hi,
I am working on creating another option in the list of option for the relations ship tab for the account details of Org type.
I was able to create the new Option and i have create a another event which is assign int eh application set but and it is showing in the detail area1 of the relations but when I choose that option no even it is getting fired.  I have cloed the further relation ship option i cloned the structure and class and even but even then it is not getting fired. I have assigned the view linkkage ACC_REL but even then it is not getting fired.  Please send me the list of table in which we need to do the setting.
Thanks
naveen

Resolved

Similar Messages

  • Help !  The 'list view' for the Calendar app. on my Ipod touch is haywire..

    The 'list view' seems to be all wonky in Calendar on my iPod touch.
    The dates for a given day that's displayed don't make sense:
    i.e. Sunday Oct. 27 2030 followed by Saturday July 14 2001 followed by Tuesday Jan. 16 2001 are listed in consecutive order instead of today, tomorrow and next day (with correct dates).
    Also, the 'events' given for each day listed don't make sense and are often duplicated.
    The 'day' and 'month' views however, seem to be ok and not corrupted. The 'list' field in the month view also seems fine ?
    Has anybody experienced this ? Very frustrating, since I like the list view.
    I make most of my entries/changes to iCal on our main desktop (iMac 24") then sync. to my iPod. The list view seems ok on the desktop.
    Any help greatly appreciated.
    ps. not sure if the problem corresponded with an upgrade of the Ipod software to OS 3.1 from 2.x....
    ipod touch 16 GB 2nd generation iPhone OS 3.1 iPhone OS 3.1.1 (7C145)

    Attach the iPod and launch iTunes.
    Select it and goto Info tab / Advanced.
    Try using the "replace..." option and sync to see if it places the good data on there.

  • Invalid data has been used to update the list item. The field you are trying to update may be read only (Lookup Field).

    Hi.
    I am getting below error while adding value to look-up field.
    Invalid data has been used to update the list item. The field you are trying to update may be read only.
    I have tried many forums ans post but didn't come to know what's the root cause of issue. I am also posting Code for creating and adding lookup field.
    CAML to create lookup field (It works Fine)
    string lkproductNumber = "<Field Type='Lookup' DisplayName='Product Number' StaticName='ProductNumber' ReadOnly='FALSE' List='" + pNewMaster.Id + "' ShowField='Product_x0020_Number' />";
    Code to insert value to lookup field
    ClientContext client = new ClientContext(SiteUrl);
    client.Load(client.Web);
    client.Credentials = new NetworkCredential(this.UserName, this.Password, this.Domain);
    // Lookup Lists
    List pmList = client.Web.Lists.GetByTitle("Product_Master");
    //List Conatining Lookup Columns
    List piList = client.Web.Lists.GetByTitle("Product_Inventory");
    client.Load(piList);
    query.ViewXml = "<View/>";
    ListItemCollection collection = pmList.GetItems(query);
    client.Load(collection);
    client.ExecuteQuery();
    int prodid=0;
    foreach (ListItem item in collection)
    if (Convert.ToString(item["Product_x0020_Number"]) == ProductNumber)
    { prodid = Convert.ToInt32(item["ID"]); }
    ListItem piItem = piList.AddItem(new ListItemCreationInformation());
    piItem["Product_x0020_Number"] = new FieldLookupValue() { LookupId = prodid };
    piItem.Update();
    client.ExecuteQuery();
    Exception Detail
    Microsoft.SharePoint.Client.ServerException was caught
    Message=Invalid data has been used to update the list item. The field you are trying to update may be read only.
    Source=Microsoft.SharePoint.Client.Runtime
    ServerErrorCode=-2147352571
    ServerErrorTypeName=Microsoft.SharePoint.SPException
    ServerStackTrace=""
    StackTrace:
    at Microsoft.SharePoint.Client.ClientRequest.ProcessResponseStream(Stream responseStream)
    at Microsoft.SharePoint.Client.ClientRequest.ProcessResponse()
    at WebServiceProviders.ClientServices.NewProductInventory() in Z:\.............ClientServices.cs:line 889
    InnerException:
    Quick response is highly appreciated.
    Thanks
    Mehar

    Try some thing like below,
    your data value that needs to be update should be in this format "ID of the lookup";#"Title of the Lookup" 
    For example,
    listItem["Product_x0020_Number"]
    = "1;#iPhone";
    listItem["Product_x0020_Number"]
    = "2;#Mobile";
    Hope this helped you....

  • How do I get the list index for the selected list item

    How can I obtain the list index for the currently selected
    element in a list item? I'm trying to move the label and value
    from on list box to another by using the add_list_element built-
    in and it requires the list index.
    Thanks for your help...

    Hi,
    You can`t get the Index for the selected item..
    you can get the Value of then Tlist using :Block.ListName .
    maybe theis code will help you..
    PROCEDURE pr_PasarElementos(ls_Origen           varchar2,                    ls_destino          varchar2,          cValor                    varchar2 default null) IS
         nCont_Orig     number := 0;
         nCont_Dest     number := 0;
    begin
    nCont_Orig := GET_LIST_ELEMENT_COUNT(ls_Origen);          nCont_Dest := GET_LIST_ELEMENT_COUNT(ls_destino);
         Add_List_Element(ls_destino,nCont_Dest+1,cValor,cValor);
         for rec_Orig in 1..nCont_Orig loop
         if GET_LIST_ELEMENT_VALUE(ls_Origen,rec_Orig) = cValor then
         delete_list_element(ls_Origen,rec_Orig);
         end if;
         end loop;
    end;
    you can call the procedure with :
    pr_pasarElementos('control.ls_activos','control.ls_inactivos',:CONTROL.ls_activos);
    here I`m working with the Value equal to the Label... you would need to look for the Label of the origin (ls_Origen) list using the Value (cValor) you already have.
    I hope this help you.

  • Need to update the list item in the same sharepoint list with particular condition with Sharepoint Designer 2013.

    Hi All
    I have one sharepoint list with huge data i.e with 20columns and more than 200 records with the fields .
    Suppose lets consider there are A,B,C,D,E,F,G,H columns.
    Now i want to create one form with the fields A,C,E.
    When the user enter the existing data of list for columns A,C..based on C value the E column value should change and update that particular item in the list.
    Please guide me without visual web part can we acheive this by Sharepoint designer 2013 or what would be the preferable solution.
    Please help me on this as it is very urgent from me..
    Thanks in Advance
    Sowjanya G

    Hi,
    According to your post, my understanding is that you wanted to update the list item in the same sharepoint list with particular condition with Sharepoint Designer 2013.
    I recommend to create workflow associated to the list and then start the workflow automatically when an item is changed.
    In the workflow, you can add condition and actions as below:
    If current item: C equal to Test1
         Set E to Test2
    Then the value of the filed E will be changed based on the value of the filed C.
    In addition, if you create the form using InfoPath, you can add rule to the filed C as below:
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How to implement tooltip for the list items for the particular column in sharepoint 2013

    Hi,
    I had created a list, How to implement tooltip for the list items for the particular column in SharePoint 2013.
    Any help will be appreciated

    We can use JavaScript or JQuery to show the tooltips. Refer to the following similar thread.
    http://social.technet.microsoft.com/forums/en/sharepointdevelopmentprevious/thread/1dac3ae0-c9ce-419d-b6dd-08dd48284324
    http://stackoverflow.com/questions/3366515/small-description-window-on-mouse-hover-on-hyperlink
    http://spjsblog.com/2012/02/12/list-view-preview-item-on-hover-sharepoint-2010/

  • Invalid data has been used to update the list item. The field you are trying to update may be read only.

    Trying to follow Serge Luca's Step by Step Tutorial. Creating Workflows for Windows Sharepoint Services and MOSS2007.  http://sergeluca.spaces.live.com/blog/cns!E8A06D5F2F585013!859.entry
    I have an onWorkflowActivated, followed by an ifElse condition and a log to history.
    In the IfElse, each branch has a code segment, that trys to update the status column in the list that the workflow is attached to.
    private void Authorize_ExecuteCode(object sender, EventArgs e)
    // tried serveral methods
    WorkflowProperties.Item["Status"] = "Automatically Approved";
    // tried all of the following (one at a time)
    item.update();
    WorkflowProperties.Item.Update();
    WorkflowProperties.Item.SystemUpdate();
    //tried this as well.
    Microsoft.SharePoint.SPListItem item = WorkflowProperties.Item;
    item["Status"] = "Automatically Approved";
    item.Update() ;
    On the update call I keep getting "Invalid data has been used to update the list item. The field you are trying to update may be read only."
    Could someone explain how to update "Status" column of the list item that the workflow is working on?
    Thank you very much.
    Bill
     

    Hi:
    you can do the following:
    add the following code to the workflow.xml file (under the MetaData section)
    Code Snippet
    <ExtendedStatusColumnValues>
    <StatusColumnValue>Branch1</StatusColumnValue>
    <StatusColumnValue>Branch2</StatusColumnValue>
    </ExtendedStatusColumnValues>
    then add 2 SetState activities one in each branch of the IfElse.
    for the code behind of setState1 (branch1) write the following code:
    Code Snippet
    state = Convert.ToInt32(SPWorkflowStatus.Max);
    for setState2 (branch2) write the following:
    Code Snippet
    state = Convert.ToInt32(SPWorkflowStatus.Max) + 1;
    where state is the variable assigned to the field State in the properties of the SetState(design lever), or instead of state u can use the following code:
    Code Snippet
    ((SetState)sender).State
    where sender is the object sent through the function parameter.
    hope this answered your question
    Best Regards

  • How to create the list box in the selection screen.

    hai friends..
    i want to create the list box for the selection screen input boxes.
    thanks,
    velu.

    hi..
    1. There are two important things :
    a)PARAMETERS : a(10) TYPE c AS LISTBOX VISIBLE LENGTH 10.
    b) Fm VRM_SET_VALUES
    2. just copy paste
    3.
    REPORT abc.
    TYPE-POOLS : vrm.
    DATA : v TYPE vrm_values.
    DATA : vw LIKE LINE OF v.
    PARAMETERS : a(10) TYPE c AS LISTBOX VISIBLE LENGTH 10.
    INITIALIZATION.
    vw-key = '1'.
    vw-text = 'Jan'.
    APPEND vw TO v.
    vw-key = '2'.
    vw-text = 'Feb'.
    APPEND vw TO v.
    vw-key = '3'.
    vw-text = 'Mar'.
    APPEND vw TO v.
    CALL FUNCTION 'VRM_SET_VALUES'
    EXPORTING
    id = 'A'
    values = v
    EXCEPTIONS
    id_illegal_name = 1
    OTHERS = 2.
    regards,
    veeresh

  • Where do I find the list that loads the programs at start-up so that I can disable some.

    Where do I find the list that controls the program loading at start-up. Also how do I know which ones I can disable. I am trying to speed up the start-up process.

    See http://technet.microsoft.com/en-us/sysinternals/bb963902.aspx Autotruns

  • Have purchased Adobe CC today. How many more apps I can use apart from photoshop, illustrator and indesign. Can I use all the listed apps within the membership fees charged per month? Or I will be charged extra?

    Have purchased Adobe CC today. How many more apps I can use apart from photoshop, illustrator and indesign. Can I use all the listed apps within the membership fees charged per month? Or I will be charged extra?

    Cloud Plans https://creative.adobe.com/plans
    -and subscription terms http://www.adobe.com/misc/subscription_terms.html
    -what is in the entire Cloud http://www.adobe.com/creativecloud/catalog/desktop.html

  • Display the current item in the list without advancing the iteration using

    This is my directions.
    Display the current item in the list without advancing the iteration using only iterator methods.
    I can't seem to figure this one out when the only methods available are hasNext();, next();, hasPrevious();, previous();, add();, remove();. and set();, and nextIndex();. Can someone please give me advice on this one?
    Thanks a bunch!!!!

    After thinking briefly about an ugly megillah that would detect whether or not you've ever called Iterator.next(), which is what is required for a bulletproof solution, I've decided after looking at the documenation that in fact the problem is not valid.
    It's as simple as this: the Javadoc says 'a ListIterator has no current element'.
    Tell your professor.

  • How do I Find The List Of All The Questions I have Asked?

    Hello:
    I have asked this question once before and someone was able to give me a link to my profile where I quickly found the list of all the questions I have ever asked on the forum.
    I have not been on the forums for many months now and so I was just checking in and once again I cannot find that list of my questions.
    Sure, I am over tired tonight but still ... I would think there would be a .... HERE'S ALL YOUR QUESTIONS YOU EVER ASKED ... button or what have ya
    Can someone kindly point me to where in our Profiles the list of our questions is located?  sure would great appreciate it a bunch.
    Thanks for your time,
    Kara

    Click on your profile to get to https://forums.adobe.com/people/Kar209
    Click on Content to get a list of all your topics: https://forums.adobe.com/people/Kar209/content
    Click on Participated on the left to get anything you've ever posted: https://forums.adobe.com/people/Kar209/content?filterID=participated
    [topic moved to Forum Comments forum]

  • Required field, UPC, is missing. Please add UPC to the listing and retry the operation.

    What to do about this: "Required field, UPC, is missing. Please add UPC to the listing and retry the operation." ? We sell cassette tapes and sometimes they are are of a vintage that predates upc codes.

     forester_studios wrote:OK thanks for the input; but selecting 1 item leaves the other 4 or 5 unsearchable I would think.  Seems like a typical ebay answer (which is not much better than no answer as far as problem solving goes).   I have to wonder if ebay thought this new requirement through.  Often upc codes on Canadian items are not in ebays system at all.  So are these items which have upc codes un-listable  since ebay does not acknowledge they exsist? In that case, here is what I intend to do.... List the most important item's UPC in the actual required UPC field and then create as many other 'custom' item specific UPC fields as are allowed. You need to be on the long form selling form to do it. Call them Other UPC and Even More UPC or something. And then, just to be sure, I'll list all the UPCs in the item description.  Buyers probably won't search for UPC (unless they're standing in a retail store with their smartphone in hand and looking for cheaper pricing online) but search engines do. When I look for the products that I sell on google, I get amazon results 19 times before I see one from eBay. I'm certain that's the UPC talking there. We do need Product Identifiers on eBay. Implementing them is the difficulty. Ebay is aware that the UPC for Canadian packages may be different than the exact same in an American one. I've raised it and was told they were looking into it. Use the MPN identifiers too. Pretty much nothing I list can be found in the product catalogue on ebay.ca (is there one?) so I don't know what to expect for resolution there if and when the Catalogue version of the Product Identifiers are shown to be clearly wrong but I know it happens, here and elsewhere. The last order that I placed with Amazon had a new UPC pasted over an old, similar product. It was not what I ordered. Close but no cigar. Hopefully, when all of this becomes 'official' in two weeks, there will be a timely manner to address item misinformation within the Product Catalogue. In the meantime, I would state all the item properties in the Item Description area to cover my butt.   

  • In the Firefox Downloads dialog box, does the option "Remove from List" mean that the selected download will be deleted? (I want to delete it.)

    I am using Windows XP Professional, Version 2002, Service Pack 3, on a Dell_GX620. I went to the Addictedtoradio.com website that I had used on my Samsung phone yesterday for the first time. I was able to play 1980's music on the phone without any special adaptations to the phone. I tried to do the same on my home computer. I went to the website but when I tried to access the music, it directed me to download a file, Xvidinstall.exe, and I did that. It is described as 382 kb - totalvidplayer.com. I am using AVG Anti-virus free edition that is supposed to protect my computer when web browsing. However, once I had downloaded the file, I got the standard Windows message that it is an executable file that might contain viruses that could harm my computer. At this point I began to wish that I had not downloaded it, I don't want to take the risk. I'll get my music another way. I have not opened the download but I assume it is now on my computer and I want to get rid of it, without opening it. When I right-click on this file (in the Firefox downloads list), one of the options is "Remove from list". There is no "Delete" option. If I remove it from the list, will it be deleted? Or will it still be present on my computer but just not shown in the list? I would like to remove it from my computer because it might contain viruses. How can I be certain to remove it safely?

    The remove from list just removed it from Firefox's download list, the file will still be on your computer. You'll have to find wherever you download the file to on your PC (right click it in Firefox's download manager and click "Open Containing folder") and delete it there to remove it from your computer.

  • HT4061 iTunes will not open when my iPhone 4S is attached to my Mac Book Pro. iTunes will start up but as soon as my iPhone appears in the list of devices the program then quits and displays the message 'iTune Quit Unexpectedly'? Can anybody help?

    The Problem/s
    1. I am unable to sync my iPhone 4S with my Mac Book Pro, either by cable, wifi or bluetooth
    2. iTunes will initiall open and briefly identifies the iPhone in the Device section in iTunes.
    3. When iTunes starts to read the iPhone (displaying the spinning wheel), it immediately then quits and
    4. Opens a 'dialogue box' which displays the message "iTunes Quit Unexpectedly"
    5 The dialoge box offers the following button options to:-
    'Show Details'
    The 'Show Details' button will open and display a list of the 'Problem Details and System Configeration'. To the average user the information is useless, as one doesn't know what to look for to solve the problem. This is a long and detailed report (too long to include in this message), which includes information such as:-
    Crashed Thread:  20
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000000006f0
    'OK'
    The 'Ok' button simply quits and closes the dialogue box
    'Reopen'
    The 'Reopen' button will again reopen iTunes, briefly showing that it is trying to read the iPhone in the Devices section, but then returns again to display the same dialogue box.
    Other Information
    1. iTunes will still start normally once the USB cable is removed from the Mac book Pro, but crashes again once the USB cable is reattached to the computer
    Any advice or help offered would be greatly appreciated.
    Sincerely
    Rob
    Message was edited by: Robmanrico

    Hi there anaqeed,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/ht1926
    -Griff W.

Maybe you are looking for

  • Query problem with date range

    I have a query that needs to pull data between a date range. I've tried several things and nothing seems to work. Any help would be greatly appreciated. Here's the code: <cftransaction> <cfquery name="QryFollowUp" datasource="NBProdReports"> SELECT T

  • Stopping sql server services while applying Service pack On SQL server 2008 and 2008 R2

    Hi, I am planning to apply service pack 3 for SQL 2008 R2 and Service pack 4 for SQL server 2008. This is my first time and I am applying first QA and DEV environment. I have one confusion. In cluster once you fail over sql resources to active node a

  • Ipod Touch Stopped Working For No Reason!!

    Hi, First time post. Basically, until about a week ago my ipod was working perfectly. It ran out of battery so charged up over night as usual. When i tried to turn it on the next day nothing happened at all. I tried to plug it into charge in the wall

  • Authorizations for Z and Y queries in BI

    Hello everyone, I have a BI developer who needs to be able to create/save as BEx Y queries directly on our QA and Production systems. Right now they can do that on the DEV system because it is allowing changes to repository and cross-client customiza

  • Add gridlink datasource to Multi Datasource for failover in weblogic

    We have a RAC installation for which I have configured a Gridlink datasource. Also we have a single node DB which is used as a failover database in case RAC is down. Now I want to configure a Multi Datasource so that I can add the Gridlink datasource