Enable the field in the list display and insert the new value and  save it.

Hi
In a report when I am in third list using ALV a field which is disabled should be enabled and  have to insert the new value in it and  save.
please tell me how to do it using classes and methods and also using ALV's.
Promise to reward points.
Regards
Mac

Hi madan,
Please find the code sample,
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/79b5e890-0201-0010-7f8e-b7c207edf7c2
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ec31e990-0201-0010-f4b6-c02d876ce033
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/117beb90-0201-0010-67a8-fff1482209ae
Regards
Kathirvel

Similar Messages

  • I "reply"ed to an e-mail message. The next time when I chose to write a new message and type the first letter of the person I replied to earlier, that name and e-mail address appears as a choice included in a pop up list of my contacts.

    I "reply"ed to an e-mail message. The next time when I chose to write a new message and type the first letter of the person I replied to earlier, that name and e-mail address appears as a choice included in a pop up list of my contacts. The persons name is not in my contacts and I would like to delete it from popping up. Do you know how I can do this?

    The Mail app on the iPad/iPhone/iPod Touch does have an option to clear previous recipients. You can learn to live with it.  But if you want to get rid of it, the only way to remove these cached email addresses from the Mail application is restoring the iPhone/iPod Touch as a new phone/iPod.  If you restore from backup, the cache is also restored.
    This article shows you the screens you will see during the restore:  http://support.apple.com/kb/HT1414

  • After getting a new desktop I downloaded iTunes and authorized my new computer and then de-authorized my old one,  When I try to update my 5S it says my phone is not authorized and list my wifes email address as the account holder and not mine.  How

    After getting a new desktop I downloaded iTunes and authorized my new computer and then de-authorized my old one,  When I try to update my 5S it says my phone is not authorized and list my wifes email address as the account holder and not mine.  How do I correct this. I am using Windows 8.1 .  My wife has never had an iTuunes account

    Hello Lakesidetom,
    It sounds as though you are experiencing an issue with an Apple ID and authorizations. Based on your post, it sounds like you are familiar with the authorizing and deauthorizing process. The Apple ID in question (your wife's email) may be originating from the iPhone you are attempting to update. Is it possible that your wife created an Apple ID or iCloud account which is signed in on that iPhone? Below, I have included links to some resources that may help you determine if your wife has created an Apple ID:
    How to find your Apple ID - Apple Support
    Use these steps if you forgot your Apple ID or aren't sure that you have one.
    Apple - My Apple ID
    If you can't remember your Apple ID, just provide us with some information and we'll find it for you. Then we'll help you reset your password.
    Thank you for contributing to Apple Support Communities.
    Cheers,
    Bobby_D

  • After reformatting my 1 Tb WD ext drive and tinkering with the "exclude these items" list, I now get the following error message from Time Machine:Are you sure you want to back up to the same device your original data is on? the WD disk has mounted??

    After reformatting my 1 Tb WD ext drive and tinkering with the "exclude these items" list, I now get the following error message from Time Machine: "Are you sure you want to back up to the same device your original data is on?"  I've reformatted in Disk Utilities...not sure what I did wrong.  Any help would be appreciated.

    Not sure what you mean by "booted" from it.
    If the Mac OS is installed on the external drive, then it's possible to start up from it, just as you do from your internal drive. Please open the Startup Disk preference pane in System Preferences, and verify that your internal drive is selected as the startup disk.
    Assuming that's the case, then it may be that your TM settings have been corrupted. Turn off TM, then move or delete the file /Library/Preferences/com.apple.TimeMachine.plist. Turn TM back on, recreate your settings, and try again.

  • HT203254 I bought my MacBook Pro since 2008. Now I live in Thailand, and my MacBook had the second symptom (No video on the computer screen (or external display) even though the computer is on). How can I get guarantee in Bangkok?

    I bought my MacBook Pro since 2008. Now I live in Thailand, and my MacBook had the second symptom (No video on the computer screen (or external display) even though the computer is on). How can I get guarantee in Bangkok?
    <Serial Number Edited by Host>

    "That's why I'm wondering whether they still can fix it as lifetime guaranty or not?"
    No, not lifetime.
    According to the referencd article:
    "If the NVIDIA graphics processor in your MacBook Pro has failed, or fails within four years of the original date of purchase, a repair will be done free of charge, even if your MacBook Pro is out of warranty."

  • How can I clear the browser pull down list, I have followed directions using options and it just won`t clear

    How can I clear the browser pull down list, I have followed directions using options and it just won`t clear

    Entries in the location bar drop down list with a yellow (blue on Mac) star at the right end are bookmarks.<br />
    You can remove such a bookmarked item that shows in the list if you open that url in a tab and click the yellow star in the location bar.<br />
    This will open the "Edit This Bookmark" dialog and you can click the Remove button to remove the bookmark if you want to remove such a bookmarked entry.<br />
    * [[Clearing Location bar history]]
    * [[Cannot clear Location bar history]]

  • Not able to retrieve and insert the value to Home_country filed in MDM

    Hi All,
    I am new to the JAVA API,
    I have creted one application in webdynpro using the JAVA API. I am able to search the data based on "Firstname" "Lastname" and "Email address".
    I need to basically two functionalities
    1) Search
    2) Insertion of new records
    *1) Search*__
    But searching based on the Country is not able to do it.
    we have two tables .
    1) Country table> Contains all the list of the country codes and County name.
    2) People table > Contains the country filed. So for this filed lookup table is country. also this country filed is drop down  not have opton edit in the MDM.
    I am sending the following used for searching the records based on the First Name and country.
    But based on the first name it is working fine but Country it is giving some code like "R100" "R12". It is not givng the actual name of the country.
    FieldSearchDimension sd1 = new FieldSearchDimension(fields[2].getId());
                   TextSearchConstraint sc1 = new TextSearchConstraint(First_Name,TextSearchConstraint.EQUALS);
                   sch.addSearchItem(sd1,sc1);          
    FieldSearchDimension sd4 = new FieldSearchDimension(fields[9].getId());
                   TextSearchConstraint sc4 = new TextSearchConstraint(Home_Country,TextSearchConstraint.EQUALS);
    //               TextSearchConstraint sc4 = new TextSearchConstraint("IN",TextSearchConstraint.EQUALS);
                   sch.addSearchItem(sd4,sc4);
    cmd = new RetrieveLimitedRecordsCommand(connections);
                   cmd.setResultDefinition(rdPeople);
                   cmd.setSearch(sch);
                   cmd.setSession(sessionId);
    try
                        cmd.execute();
                        catch(CommandException e)
                             e.printStackTrace();
                        recs = cmd.getRecords();
                        wdContext.nodeResult_Table().invalidate();
    //retreiving the Data from the resultset
    if(recs.getCount()!=0)
      for(int i=0;i<recs.getCount();i++)
           //First Name
         IResult_TableElement resEle=wdContext.nodeResult_Table().createResult_TableElement();
         if(!(recs.getRecord(i).getFieldValue(fields[0].getId()).isNull()))
         //wdComponentAPI.getMessageManager().reportSuccess("Network Id-->"+recs.getRecord(i).getFieldValue(fields[0].getId()).toString());
         resEle.setNetwork_ID(recs.getRecord(i).getFieldValue(fields[0].getId()).toString());
           //Country
          if(!(recs.getRecord(i).getFieldValue(fields[9].getId()).isNull()))
         resEle.setDisplay_Name(recs.getRecord(i).getFieldValue(fields[9].getId()).toString());
         wdContext.nodeResult_Table().addElement(i,resEle);
    By the above field is not giving the respective country name is avilable. it is giving some value"R100" rather giving of India.
    _ 2)  For creating the record in the  "people" table._
    I am able to insert the data all the information "firstname" "Last name", "email" except "Country" entered by the user by using the following code.
    //Insert
    First_Name=wdContext.currentPersonal_DetailsElement().getAttributeAsText("First_Name");
         Last_Name=wdContext.currentPersonal_DetailsElement().getAttributeAsText("Last_Name");
         Middle_Name_or_Initial=wdContext.currentPersonal_DetailsElement().getAttributeAsText("Middle_Name_or_Initial");
         Home_Country=wdContext.currentPersonal_DetailsElement().getAttributeAsText("Home_Country");
    CreateRecordCommand createRecordCommand =new CreateRecordCommand(connections);
         Record r1 = RecordFactory.createEmptyRecord(tables[0].getId());     
         try
    //               Retrieve Lookup Field Properties, when Field Properties is given as input.
    //           LookupFieldProperties lookupField = (LookupFieldProperties) fields[9];          
    ////     Retrieve Lookup Field Properties, when Field Properties is given as input.
    //           LookupFieldProperties lookupFieldSer = (LookupFieldProperties) fieldProp;
    //          //setting the values for firstname and lastname
            r1.setFieldValue(fields[0].getId(),new StringValue(Network_ID));
            r1.setFieldValue(fields[2].getId(),new StringValue(First_Name));
            r1.setFieldValue(fields[3].getId(),new StringValue(Last_Name));
    r1.serFieldValue(FieldValue(fields[9].getId(), new Stringvalue(Home_country));
            createRecordCommand.setSession(sessionId);
            createRecordCommand.setRecord(r1);
         try {
              createRecordCommand.execute();
          } catch (CommandException e2) {
    Let me know what are the changes need to be done for inserting the country information in people table.

    Hi Greg,
    Thanks for the reply,
    Actually,I  was doing the same thing what  you suggested. I am sending the piece of code . Can look it it .Is any thing wrong.
              //inserting the Country lookup filed to record object.
    *       if(Home_Country.length()!=0)*
    *     /when pass the int position number for the country by retreiving from the country table it is working fine. But we      cannot depend on position. Because People table internally refering the other db table while inserting the country      filed in the People table./     *
    *          r1.setFieldValue(fields[9].getId(),new LookupValue(new RecordId(12)));*
    *     //When i PAss the String to the following function i am getting the unsupportedFormat Exception          *
    *          r1.setFieldValue(fields[9].getId(),new LookupValue(new RecordId("Australia")));*
    InCountry . They have defined only two columns called.
    1) ISO-2 Code
    2) Country Name.
    Sample data
    ISO-2 Code  |   Country Name
    US                    United StatesOf America
    AU                    Australia
    Ar                     Argentina
    Like the above data we have 250 country names
    So , I displaying all the country list in my interface and holding in the Array.
    Ex: When the user chooses the Australia.  When I pass directly as an "Australia" to
    r1.setFieldValue(fields[9].getId(),new LookupValue(new RecordId("Australia"))).  it is giving me error.
    Then i try to pass the postion of the"Australia" in country table. Like if the Austrila is an 2 record. I am looping through my array and find the record position as "2".
    I am passing as
    r1.setFieldValue(fields[9].getId(),new LookupValue(new RecordId(2)));
    It is inserting into the people database. But not an Australia. It is inserting as "Argentina".
    When the record inserting in people table refering some table at the database level , that table called "A2i_16_TEXT" This contains three columns.
    A2i_16_TEXT(columns)
    1) Id
    2) LangId
    2) Field Id
    4) TextField
    Example Data
    Id  |  LangId  |  Textfield
    3       0            Australia
    2       0            Argentina
    4       0            United States Of America
    As i am showing the above table for "Argentina" Id is "2". When i pass the 2 for inserting the country filed.Instead of inserting "Australia". It is inserting the "Argentina" by refering this table.
    Through MDM API we are not able to access this " A2i_16_TEXT"  table. Because it is maintaining at the db level to find the perticular id for the respective country before inserting in to the people table.
    So kindly suggest me how to solve this problem. What i am doing in the code is correct or not.
    Regards
    Vijay

  • Editable field in alv list display

    i WANT TO GIVE COLOR FOR EDITABLE FIELD IN ALV LIST DISPLAY.i TRIED WITH EMPHASIZE IN FIELD CATALOGUE ASSIGNING.bUT,IT IS NOT WORKING.HOW TO DO.tHANX IN ADVANCE.........

    HI,
    Please refer the link below:
    http://www.****************/Tutorials/ALV/Edit/demo.htm
    http://www.****************/Tutorials/ALV/ColorSALV/Demo.htm
    Thanks,
    Sriram Ponna.

  • How do I create a 1d array that takes a single calculation and insert the result into the first row and then the next calculation the next time the loop passes that point and puts the results in thsecond row and so on until the loop is exited.

    The attached file is work inprogress, with some dummy data sp that I can test it out without having to connect to equipment.
    The second tab is the one that I am having the problem with. the output array from the replace element appears to be starting at the index position of 1 rather than 0 but that is ok it is still show that the new data is placed in incrementing element locations. However the main array that I am trying to build that is suppose to take each new calculation and place it in the next index(row) does not ap
    pear to be working or at least I am not getting any indication on the inidcator.
    Basically what I am attempting to do is is gather some pulses from adevice for a minute, place the results for a calculation, so that it displays then do the same again the next minute, but put these result in the next row and so on until the specifiied time has expired and the loop exits. I need to have all results displayed and keep building the array(display until, the end of the test)Eventually I will have to include a min max section that displays the min and max values calculated, but that should be easy with the min max function.Actually I thought this should have been easy but, I gues I can not see the forest through the trees. Can any one help to slear this up for me.
    Attachments:
    regulation_tester_7_loops.vi ‏244 KB

    I didn't really have time to dig in and understand your program in depth,
    but I have a few tips for you that might things a bit easier:
    - You use local variables excessively which really complicates things. Try
    not to use them and it will make your life easier.
    - If you flowchart the design (very similar to a dataflow diagram, keep in
    mind!) you want to gather data, calculate a value from that data, store the
    calculation in an array, and loop while the time is in a certain range. So
    theres really not much need for a sequence as long as you get rid of the
    local variables (sequences also complicate things)
    - You loop again if timepassed+1 is still less than some constant. Rather
    than messing with locals it seems so much easier to use a shiftregister (if
    absolutely necessary) or in this case base it upon the number of iterations
    of the loop. In this case it looks like "time passed" is the same thing as
    the number of loop iterations, but I didn't check closely. There's an i
    terminal in your whileloop to read for the number of iterations.
    - After having simplified your design by eliminating unnecessary sequence
    and local variables, you should be able to draw out the labview diagram.
    Don't try to use the "insert into array" vis since theres no need. Each
    iteration of your loop calculates a number which goes into the next position
    of the array right? Pass your result outside the loop, and enable indexing
    on the terminal so Labview automatically generates the array for you. If
    your calculation is a function of previous data, then use a shift register
    to keep previous values around.
    I wish you luck. Post again if you have any questions. Without a more
    detailed understanding of your task at hand it's kind of hard to post actual
    code suggestions for you.
    -joey
    "nelsons" wrote in message
    news:[email protected]...
    > how do I create a 1d array that takes a single calculation and insert
    > the result into the first row and then the next calculation the next
    > time the loop passes that point and puts the results in thsecond row
    > and so on until the loop is exited.
    >
    > The attached file is work inprogress, with some dummy data sp that I
    > can test it out without having to connect to equipment.
    > The second tab is the one that I am having the problem with. the
    > output array from the replace element appears to be starting at the
    > index position of 1 rather than 0 but that is ok it is still show that
    > the new data is placed in incrementing element locations. However the
    > main array that I am trying to build that is suppose to take each new
    > calculation and place it in the next index(row) does not appear to be
    > working or at least I am not getting any indication on the inidcator.
    >
    > Basically what I am attempting to do is is gather some pulses from
    > adevice for a minute, place the results for a calculation, so that it
    > displays then do the same again the next minute, but put these result
    > in the next row and so on until the specifiied time has expired and
    > the loop exits. I need to have all results displayed and keep building
    > the array(display until, the end of the test)Eventually I will have to
    > include a min max section that displays the min and max values
    > calculated, but that should be easy with the min max function.Actually
    > I thought this should have been easy but, I gues I can not see the
    > forest through the trees. Can any one help to slear this up for me.

  • How to Bing the Field of G/L A/c in the Reptative area of Outgoing Payment

    Hi, All Experts,
    I have a issue on PLD that I cant able to bring the field of G/L A/c in the rep area of Outgoing invoice... However I had tried it from the table Outgoing Invoice row but it is not coming Properly...
    The mail issue is that to make a PLD for the On A/c and Agst. Invoice together  for out going Invoice........
    Thanks
    Binod Sharma.

    Hi,
       I am preaparing PLD of Outgoing Payment (Account) for my Clint. He wants to display all the G/L A/c agints which the cash is paid Now, If he Pay for one G.L Account thent is can bring from the VPM4 Table. But when he make the Outgoing Invoice for 2 or more G/L Account then the Error massage is comming " the request acction is not supported for this object massage [131-171].
       Becouse the reason is the docment number that is genarated fropm the outgoing Invoice is   saved in Outgoing Payment- Account table[ VPM4] in two rows like row 0 and row 1...
    Now the Qustion is How I can bring the twon row from the VPM4 table to my PLD for Otgoing payment Account.
    Please Reply this it will great healp for me...

  • When I try to bookmark a page, the choose option dies not display any of the folders in my bookmark menu

    Question
    When I try to bookmark a page, the choose option dies not display any of the folders in my bookmark menu
    I have a new computer and download of Mozilla Firefox, but imported bookmarks from older computer. Could that be the problem?

    I'm not familiar with Windows 7, but... is it possible there is a permissions problem with your profile folder, or read-only set on any database files?

  • Query regarding the fields details in particular form for all the users in

    Dear All,
                  I have one query regarding the fields details in particular form for all the users in company.
    Let take an exapmle if i had created Purchase Order having fields in content tab as 1.Item No. 2.Quantity 3.Unit Proce   4.Total   5. Location.
    While Login in User manager i set these fields only for Purchase order , but when i login from other user and open the similar purchase order the defaults fields are also seen including  above 4 fieds .
    Now my question is how to set the User choice fiels for the particular form that are common to all users.
    Means whenever i login in any user and opens the same document the same fields should be seen....Thanksssss.........

    You have to login with each and every user and do the Form Settings of every forms, so that all the forms look same for all the users.
    This is a manual job and you have do do it with every user login.
    Alternately, you can try out this link that explains
    [How to Copy One Screen Layout to Another User|http://www.sbonotes.com/2008/03/how-to-copy-one-screen-layout-to.html]

  • RE: Pbm in alv for copying and inserting the record....

    Hi,
       I am developing alv gird  report...............what my issue is:
      while selecting a record...........he should copy the record and insert a new record
      below on which he selected....
      Regarding this if anybody helps me that will be appreciable...
    Regards,
    Naveen M.

    hai Do like This:
    at user command
    FORM PICK USING COMMAND LIKE SY-UCOMM SELFIELD TYPE SLIS_SELFIELD. "Pick is name  given in REUSE_ALV_GRID
    READ TABLE idata INTO wa_data INDEX SELFIELD-TABINDEX.
    CASE COMMAND.
    WHEN '&IC1'.
    Select second data according to your requirement in Another internal  table.
    newdata[] = idata[]. "Move ur first table display data to one new internal tabe.
    clear idata[].
    append wa_data to idata.
    now move data which was selected in select statement to idata table and append data. "it will add new data in idata table
    after this get previous data in idata
    READ TABLE newdata INTO wa_data INDEX SELFIELD-TABINDEX.
    clear wa_data.
    modify newdata index sy-tabix.
    delete newdata where "it is initial.
    loop at newdata.
    idata = newdata.
    append idata.
    endloop.
    after this call reuse_alv_grid_display.
    endcase
    endform.

  • [svn:fx-4.0.0] 13391: Updating OSMF for the ASDoc updates and taking a new SWC and RSL.

    Revision: 13391
    Revision: 13391
    Author:   [email protected]
    Date:     2010-01-08 16:12:48 -0800 (Fri, 08 Jan 2010)
    Log Message:
    Updating OSMF for the ASDoc updates and taking a new SWC and RSL.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Deepa
    Tests run: checkintests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/branches/4.0.0/frameworks/air-config.xml
        flex/sdk/branches/4.0.0/frameworks/flex-config.xml
        flex/sdk/branches/4.0.0/frameworks/libs/osmf.swc
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/audio/AudioElement.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/audio/AudioSeekableTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/audio/SoundAdapter.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/audio/SoundDownloadableTrai t.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/audio/SoundLoadedContext.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/audio/SoundLoader.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/CompositeAudibl eTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/CompositeBuffer ableTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/CompositeMetada ta.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/CompositePausab leTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/CompositePlayab leTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/CompositeSeekab leTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/CompositeSpatia lTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/CompositeTempor alTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/CompositeViewab leTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/ParallelSeekabl eTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/ParallelSpatial Trait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/ParallelSwitcha bleTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/ParallelViewabl eTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/SerialSeekableT rait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/SerialSpatialTr ait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/SerialSwitchabl eTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/composition/SerialViewableT rait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/content/ContentElement.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/content/ContentLoadedContex t.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/content/ContentLoader.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/display/MediaElementSprite. as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/display/MediaPlayerSprite.a s
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/display/ScalableSprite.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/display/ScaleMode.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/display/ScaleModeUtils.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/drm/DRMServices.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/AudioEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/BufferEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/ContentProtectionEve nt.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/DimensionEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/FacetValueChangeEven t.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/FacetValueEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/GatewayChangeEvent.a s
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/LoadEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/MediaError.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/MediaErrorEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/MediaPlayerCapabilit yChangeEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/MediaPlayerStateChan geEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/MetadataEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/NetConnectionFactory Event.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/NetNegotiatorEvent.a s
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/PausedChangeEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/PlayingChangeEvent.a s
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/PluginLoadEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/SeekEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/SwitchEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/TimeEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/events/ViewEvent.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/gateways/HTMLGateway.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/gateways/RegionGateway.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/image/ImageElement.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/image/ImageLoader.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/AbsoluteLayoutFacet. as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/AnchorLayoutFacet.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/DefaultLayoutRendere r.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/ILayoutContext.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/ILayoutRenderer.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/ILayoutTarget.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/LayoutAttributesFace t.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/LayoutContextSprite. as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/LayoutRendererBase.a s
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/LayoutRendererFacet. as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/LayoutUtils.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/MediaElementLayoutTa rget.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/PaddingLayoutFacet.a s
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/RegistrationPoint.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/layout/RelativeLayoutFacet. as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/logging/ILogger.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/logging/ILoggerFactory.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/logging/Log.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/logging/TraceLogger.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/logging/TraceLoggerFactory. as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/media/IContainerGateway.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/media/MediaElement.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/media/MediaPlayer.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/media/MediaPlayerState.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/media/URLResource.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/metadata/IFacet.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/metadata/IIdentifier.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/metadata/KeyValueFacet.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/metadata/MediaType.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/metadata/Metadata.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/metadata/MetadataNamespaces .as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/metadata/MetadataUtils.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/metadata/MetadataWatcher.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/metadata/ObjectFacet.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/metadata/ObjectIdentifier.a s
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/metadata/StringIdentifier.a s
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/metadata/TemporalFacet.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/metadata/TemporalFacetEvent .as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/metadata/TemporalIdentifier .as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetClient.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetConnectionCodes.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetConnectionFactory.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetLoadedContext.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetLoader.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetNegotiator.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetStreamAudibleTrait.a s
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetStreamBufferableTrai t.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetStreamCodes.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetStreamContentProtect ableTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetStreamDownloadableTr ait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetStreamPausableTrait. as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetStreamPlayableTrait. as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetStreamSeekableTrait. as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/NetStreamTemporalTrait. as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/StreamType.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/Droppe dFramesRule.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/Dynami cNetStream.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/Dynami cStreamingItem.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/Dynami cStreamingNetLoadedContext.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/Dynami cStreamingNetLoader.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/Dynami cStreamingResource.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/INetSt reamMetrics.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/ISwitc hingRule.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/Insuff icientBandwidthRule.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/Insuff icientBufferRule.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/Metric sProvider.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/NetStr eamSwitchableTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/Suffic ientBandwidthRule.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/Switch ingDetail.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/Switch ingDetailCodes.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/net/dynamicstreaming/Switch ingRuleBase.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/plugin/DynamicPluginLoader. as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/plugin/IPluginInfo.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/plugin/PluginClassResource. as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/plugin/PluginElement.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/plugin/PluginLoadedContext. as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/plugin/PluginLoader.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/plugin/StaticPluginLoader.a s
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/swf/SWFElement.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/swf/SWFLoader.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/tracking/Beacon.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/AudibleTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/BufferableTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/ContentProtectableTr ait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/DownloadableTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/IAudible.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/IBufferable.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/IContentProtectable. as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/IDisposable.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/IDownloadable.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/IPausable.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/IPlayable.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/ISeekable.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/ISpatial.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/ISwitchable.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/ITemporal.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/IViewable.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/LoadState.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/LoadableTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/MediaTraitType.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/PausableTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/PlayableTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/SeekableTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/SpatialTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/SwitchableTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/TemporalTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/traits/ViewableTrait.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/utils/BinarySearch.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/utils/FMSHost.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/utils/FMSURL.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/utils/HTTPLoader.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/utils/URL.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/video/CuePoint.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/video/CuePointType.as
        flex/sdk/branches/4.0.0/frameworks/projects/osmf/src/org/osmf/video/VideoElement.as
    Added Paths:
        flex/sdk/branches/4.0.0/frameworks/rsls/osmf_flex.4.0.0.13386.swf
    Removed Paths:
        flex/sdk/branches/4.0.0/frameworks/rsls/osmf_flex.4.0.0.13104.swf

    I recently updated my eMac from Panther (10.3.x) to Tiger and let it go ahead and update by downloading the 10.4.10 patch from Apple. It has been some weeks now and so far no issues to report. So it seems ok. And my eMac is a version before yours.
    Patrick

  • Bookmarks are saved yet after using the page icon is still displayed instead of the actual icon for the website. I have followed the directions for "Favicons do not display".

    My bookmarks, on a HP Pavilion dv-7-2273cl notebook, are saved yet the page icon is still displayed after using the bookmark instead of the actual icon for the website. I have followed the directions for "Favicons do not display" without any success. This problem is not experienced on my much older Gateway desktop.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_places-database-file

  • After Photoshop Elements quit working for the second time in three months, I uninstalled it and now cannot get it to reinstall from the disc. Nothing happens when I insert the disc. All I can do is look at the folders and files and see nothing that tells

    After Photoshop Elements quit working for the second time in three months, I uninstalled it and now cannot get it to reinstall from the disc. Nothing happens when I insert the disc. All I can do is look at the folders and files and see nothing that tells me how to start the installation. Clicking "open with Auto play" gives me irrelevant options, view photos, share, etc. I'm running Windows 8. This program has worked, although buggy, for the past year.

    reinstall by clicking setup on your disk or downloading and installing,
    Downloads available:
    Suites and Programs:  CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

Maybe you are looking for