Please help which link to follow ?

hello All,
I am trying to apply the applet caching mechanism to my applet. As with my company policy i am only allowed to use the
JRE 1.6.0_05 as the client side JRE.
Searching Sun's website i came up with these two links.
http://java.sun.com/javase/6/docs/technotes/guides/deployment/deployment-guide/applet-caching.html
http://java.sun.com/javase/6/docs/technotes/guides/plugin/developer_guide/applet_caching.html
I am totally confused so as to which link to use. Where can i read what technique is compatible with the JRE 1.6.0_05.
I know everywhere on sun website they are talking about JRE 6u10, but unfortunately until the corporate standards are set for it at my firm i cannot use it.
So can someone please help me to decide which options are available to me. As since the above links state different parameters for applet tag.
Please advise,
Thanks

Hello,
I understand the flexibility which web start provides.
But our project is almost completed and its more of an integration phase for the applet to other webpages.
So, disregarding the fact that WebStart is an option. Can you please advise the caching mechanism which i cam implement from links i posted. I have read applet caching has always been a buggy topic, but not sure if JRE 1.6.0_05 has improved on it or not?
Please advise,

Similar Messages

  • Please help me with the following two questions, very urgent

    Hi All,
    Please help me with some scenerios about what are the common problems when modifying a standard script such a standard Invoice script and how can we overcome them.
    What are the common problems encountered when working with SAP SMARTFORMS and how to overcome them?
    Please help me with these questions, its very urgent.
    Thanks in advance.
    MD.

    hi
    hope it will help you.
    reward if ehlp.
    How to create a New smartfrom, it is having step by step procedure
    http://sap.niraj.tripod.com/id67.html
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    Here is the procedure
    1. Create a new smartforms
    Transaction code SMARTFORMS
    Create new smartforms call ZSMART
    2. Define looping process for internal table
    Pages and windows
    First Page -> Header Window (Cursor at First Page then click Edit -> Node -> Create)
    Here, you can specify your title and page numbering
    &SFSY-PAGE& (Page 1) of &SFSY-FORMPAGES(Z4.0)& (Total Page)
    Main windows -> TABLE -> DATA
    In the Loop section, tick Internal table and fill in
    ITAB1 (table in ABAP SMARTFORM calling function) INTO ITAB2
    3. Define table in smartforms
    Global settings :
    Form interface
    Variable name Type assignment Reference type
    ITAB1 TYPE Table Structure
    Global definitions
    Variable name Type assignment Reference type
    ITAB2 TYPE Table Structure
    4. To display the data in the form
    Make used of the Table Painter and declare the Line Type in Tabstrips Table
    e.g. HD_GEN for printing header details,
    IT_GEN for printing data details.
    You have to specify the Line Type in your Text elements in the Tabstrips Output options.
    Tick the New Line and specify the Line Type for outputting the data.
    Declare your output fields in Text elements
    Tabstrips - Output Options
    For different fonts use this Style : IDWTCERTSTYLE
    For Quantity or Amout you can used this variable &GS_ITAB-AMOUNT(12.2)&
    5. Calling SMARTFORMS from your ABAP program
    REPORT ZSMARTFORM.
    Calling SMARTFORMS from your ABAP program.
    Collecting all the table data in your program, and pass once to SMARTFORMS
    SMARTFORMS
    Declare your table type in :-
    Global Settings -> Form Interface
    Global Definintions -> Global Data
    Main Window -> Table -> DATA
    Written by : SAP Hints and Tips on Configuration and ABAP/4 Programming
    http://sapr3.tripod.com
    TABLES: MKPF.
    DATA: FM_NAME TYPE RS38L_FNAM.
    DATA: BEGIN OF INT_MKPF OCCURS 0.
    INCLUDE STRUCTURE MKPF.
    DATA: END OF INT_MKPF.
    SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.
    SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.
    MOVE-CORRESPONDING MKPF TO INT_MKPF.
    APPEND INT_MKPF.
    ENDSELECT.
    At the end of your program.
    Passing data to SMARTFORMS
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting
    formname = 'ZSMARTFORM'
    VARIANT = ' '
    DIRECT_CALL = ' '
    IMPORTING
    FM_NAME = FM_NAME
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    if sy-subrc <> 0.
    WRITE: / 'ERROR 1'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function FM_NAME
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    CONTROL_PARAMETERS =
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS =
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    TABLES
    GS_MKPF = INT_MKPF
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5.
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    Smartform
    you can check this link here you can see the steps and you can do it the same by looking at it..
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    SMARTFORMS STEPS.
    1. In Tcode se11 Create a structure(struct) same like the Internal table that you are going to use in your report.
    2. Create Table type(t_struct) of stracture in se11.
    3. In your program declare Internal table(Itab) type table of structure(struct).
    4. Define work area(wa) like line of internal table.
    5. Open Tcode Smartforms
    6. In form Global setting , forminterface Import parameter define Internal table(Itab) like table type of stracture(t_struct).
    7. In form Global setting , Global definitions , in Global data define Work area(wa) like type stracture(struct).
    8. In form pages and window, create Page node by default Page1 is available.
    9. In page node you can create numbers of secondary window. But in form there is only one Main window.
    10. By right click on page you can create windows or Go to Edit, Node, Create.
    11. After creating the window right click on window create table for displaying the data that you are passing through internal table.
    12. In the table Data parameter, loop internal internal table (Itab) into work area(wa).
    13. In table there are three areas Header, Main Area, Footer.
    14. Right click on the Main area create table line by default line type1 is there select it.
    15. Divide line into cells according to your need then for each cell create Text node.
    16. In text node general attribute. Write down fields of your work area(wa) or write any thing you want to display.
    17. Save form and activate it.
    18. Then go to Environment, function module name, there you get the name of function module copy it.
    19. In your program call the function module that you have copied from your form.
    20. In your program in exporting parameter of function pass the internal table(itab).
    SAP Smart Forms is introduced in SAP Basis Release 4.6C as the tool for creating and maintaining forms.
    SAP Smart Forms allow you to execute simple modifications to the form and in the form logic by using simple graphical tools; in 90% of all cases, this won't include any programming effort. Thus, a power user without any programming knowledge can
    configure forms with data from an SAP System for the relevant business processes.
    To print a form, you need a program for data retrieval and a Smart Form that contains the entire from logic. As data retrieval and form logic are separated, you must only adapt the Smart Form if changes to the form logic are necessary. The application program passes the data via a function module interface to the Smart Form. When activating the Smart Form, the system automatically generates a function module. At runtime, the system processes this function module.
    You can insert static and dynamic tables. This includes line feeds in individual table cells, triggering events for table headings and subtotals, and sorting data before output.
    You can check individual nodes as well as the entire form and find any existing errors in the tree structure. The data flow analysis checks whether all fields (variables) have a defined value at the moment they are displayed.
    SAP Smart Forms allow you to include graphics, which you can display either as part of the form or as background graphics. You use background graphics to copy the layout of an existing (scanned) form or to lend forms a company-specific look. During printout, you can suppress the background graphic, if desired.
    SAP Smart Forms also support postage optimizing.
    Also read SAP Note No. 168368 - Smart Forms: New form tool in Release 4.6C
    What Transaction to start SAP Smart Forms?
    Execute transaction SMARTFORMS to start SAP Smart Forms.
    Key Benefits of SAP Smart Forms:
    SAP Smart Forms allows you to reduce considerably the implementation costs of mySAP.com solutions since forms can be adjusted in minimum time.
    You design a form using the graphical Form Painter and the graphical Table Painter. The form logic is represented by a hierarchy structure (tree structure) that consists of individual nodes, such as nodes for global settings, nodes for texts, nodes for output tables, or nodes for graphics.
    To make changes, use Drag & Drop, Copy & Paste, and select different attributes.
    These actions do not include writing of coding lines or using a Script language.
    Using your form description maintained in the Form Builder, Smart Forms generates a function module that encapsulates layout, content and form logic. So you do not need a group of function modules to print a form, but only one.
    For Web publishing, the system provides a generated XML output of the processed form.
    Smart Forms provides a data stream called XML for Smart Forms (XSF) to allow the use of 3rd party printing tools. XSF passes form content from R/3 to an external product without passing any layout information about the Smart Form.
    SmartForms System Fields
    Within a form you can use the field string SFSY with its system fields. During form processing the system replaces these fields with the corresponding values. The field values come from the SAP System or are results of the processing.
    System fields of Smart Forms
    &SFSY-DATE&
    Displays the date. You determine the display format in the user master record.
    &SFSY-TIME&
    Displays the time of day in the form HH:MM:SS.
    &SFSY-PAGE&
    Inserts the number of the current print page into the text. You determine the format of the page number (for example, Arabic, numeric) in the page node.
    &SFSY-FORMPAGES&
    Displays the total number of pages for the currently processed form. This allows you to include texts such as'Page x of y' into your output.
    &SFSY-JOBPAGES&
    Contains the total page number of all forms in the currently processed print request.
    &SFSY-WINDOWNAME&
    Contains the name of the current window (string in the Window field)
    &SFSY-PAGENAME&
    Contains the name of the current page (string in the Page field)
    &SFSY-PAGEBREAK&
    Is set to 'X' after a page break (either automatic [Page 7] or command-controlled [Page 46])
    &SFSY-MAINEND&
    Is set as soon as processing of the main window on the current page ends
    &SFSY-EXCEPTION&
    Contains the name of the raised exception. You must trigger your own exceptions, which you defined in the form interface, using the user_exception macro (syntax: user_exception <exception name >).
    Example Forms Available in Standard SAP R/3
    SF_EXAMPLE_01
    Simple example; invoice with table output of flight booking for one customer
    SF_EXAMPLE_02
    Similar to SF_EXAMPLE_01 but with subtotals
    SF_EXAMPLE_03
    Similar to SF_EXAMPLE_02, whereby several customers are selected in the application program; the form is called for each customer and all form outputs are included in an output request
    Advantages of SAP Smart Forms
    SAP Smart Forms have the following advantages:
    1. The adaption of forms is supported to a large extent by graphic tools for layout and logic, so that no programming knowledge is necessary (at least 90% of all adjustments). Therefore, power user forms can also make configurations for your business processes with data from an SAP system. Consultants are only required in special cases.
    2. Displaying table structures (dynamic framing of texts)
    3. Output of background graphics, for form design in particular the use of templates which were scanned.
    4. Colored output of texts
    5. User-friendly and integrated Form Painter for the graphical design of forms
    6. Graphical Table Painter for drawing tables
    7. Reusing Font and paragraph formats in forms (Smart Styles)
    8. Data interface in XML format (XML for Smart Forms, in short XSF)
    9. Form translation is supported by standard translation tools
    10. Flexible reuse of text modules
    11. HTML output of forms (Basis release 6.10)
    12. Interactive Web forms with input fields, pushbuttons, radio buttons, etc. (Basis-Release 6.10)

  • Please help me in APO following APO questions or functions.

    Hi gurus,
              I am BW consultant and i didnt work much on APO planning book areas side.. But i need to respond to my users on these explanations to solve the tickets and also we have limites resource team. They wanted to know what is Univariate Forecast (Ctrl+f8) is for.. his question is the second button from right looks like "z" like(Univariate Forecast) , he wants to know what is this for and can we lock it out... It actually comes in end user training, but i wanted to give some info and close this ticket, please help in this.
    2) What is the use of these "selected objects" area, Can it Go awa? When u select from the "selected objects" area, the reset button doesnt work and you must exit the spread sheet and reenter the data..
    Please help in the above 2.. as i didnt work much on APO i couldnt deliver..thanks in advance

    Karan, I empathize your position. You must ask your resource managers to correctly staff the project with right skills or ask for training. It is incorrect of your resource manager to expect you to solve tickets in an unknown area. Protest!
    Coming to your Q
    1. The icon is for doing forecasting based on historical sales or shipments as the case may be. there are authorization objects to block the icon for certain users (for that refer to Security team - refer link http://help.sap.com/saphelp_scm41/helpdata/en/de/6733c99b274f2db1f5706295c42e7e/content.htm). the other way is to go into the design button in the planning book and uncheck univariate forecasting.(under "Navigate to Views" section of first tab)
    2. I do not quite follow what you mean by selector area. Refer to help.sap.com
    http://help.sap.com/saphelp_scm2007/helpdata/en/95/a86039c9a5ae3be10000000a11402f/content.htm
    and
    http://help.sap.com/saphelp_scm2007/helpdata/en/73/3e116a347111d398290000e8a49608/content.htm
    for further clues

  • Please help me with the following questions

    Oracle 10g Administration Workshop II Examination
    3 Hours
    1.     Create a recovery catalog recodb. Register with reodb all available database service on the server machine.
    20 marks
    2.     Configure RMAN so that backups:
              a. run in two channels;
              b. are marked as obsolete if they are more than 2;
              c. have an automatic spfile and controlfile backup run whenever_____
              and ____ takes place in the database ( list the two factors)
    d.     are encrypted to prevent unauthorized access to the backup files
    through the OS.
    10 marks
    3.     Take a backup of the database naming it so that the name of the database, the backupset t belongs to and the backupset’s piece numbers are shown. Write the name of the file generated after the backup (its path inclusive).
    10 marks
    4.     Take another backup of the database, storing it in the default location and running it so that backup assumes a parallelism of 3 for the duration of the backup.
    10 marks
    5.     a. Create table called “price” as follows:
    PRICE
    WEEK     AMOUNT
    Feb 2 – 7, 2009     80.00
    This table belongs to the “Red as Blood” Palm Oil Company. The price of palm oil fluctuates wildly that every week. It moves N80 to N81.50 to N80.40 to N79.30 and finally to N78.00.
    b.     Update the table for each value that palm oil sold that week. (commit after every update).
    c.     Run a flashback versions query that shows all the variations of price.
    15 marks
    6.     Your company has grown large. The server is becoming overload and you cannot afford a new one.
    a.     Modify the system resource plan to contain a group ‘HRGROUP’ that shares equally with ‘SYSGROUP’ 100% of the CPU’s resources from 8:am -10:pm daily.
    b.     Ensure that sessions from other groups can use 50% of what HRGROUP and SYSGROUP have not used up.
         c.     Create a window HIGH_LOAD that activates SYSTEM PLAN.
    20 marks
    7.     a.     You have lost your orapwd file, but need to protect the database from remote logins. Re-create the orapwd file to allow only three remote logins as sys and a password ‘sysadmin’.
         b.     The database’s performance was degrading and in the course of your analysis you discovered that log switch takes places place faster than normal which result in high I/O. Get an advice on the appropriate size of your redolog files (Write down the size recommended for your own database).
    15 marks      
    the solution can be send to my mail via [email protected] and [email protected]
    thanks a lot

    Dear Prasanth
    You can many clients in a Server.Example in your dev server you can have 3 to 4 clients adn used for different pruposes like one for Functional devlopments , One for Technical devlopments and one as Sand box.
    One of the most basic concepts in SAP is that of "Client". A client is defined as a legally and organizationally independent unit within SAP R/3. One of the first things SAP asks for at the time of login is the client number. SAP R/3 comes inbuilt with three standard clients viz. 000, 001 and 066.
    <b>Client 000</b> - Client 000 is a special client in SAP since it has client independent settings. Client 000 in SAP R/3 comes with a simple organizational structure. It is a sort of test company. Client 000 contains all standard configurations, parameters, standard transactions, etc that are normally used in the SAP R/3 business environment.
    <b>Client 001</b> - Client 001 is a copy of client 000. Client 001 also includes a test company. Client 001 can be customized to prepare it to move it into the production environment. However, once client 001 is customized, it does not behave like client 000.
    <b>Client 066</b> - Client 066 is used to perform "Early Watch" service for customer systems.
    One important thing to remember is that during SAP R/3 implementation, once SAP is installed, the first thing to be done is copy a standard client included in SAP R/3 package. With the help of this, SAP users can start using SAP for creating tests, training, or even start using it for customization.
    Regards
    Ramakrishna

  • Can any one please help me resolving the following error while accessing online lync meeting portal

    When I am  try to access the Join
    Online Meeting link in a meeting portal in Lync Online, I am receiving the above of the following error messages in Microsoft Internet Explorer or Chrome browser.
    Can any one please suggest me how to overcome this issue.
    Thanks in advance
    Kiran Marri

    Hi,
    Did the issue happen only for you or for multiple users?
    You will need a valid conference for the URL to work. Please check if you did any typo for the URL. For example, in the format:
    https://meet.contoso.com/username/confID
    You can try to schedule a new conference from Outlook, check if the full URL like the example above and try to use this URL to join meeting.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Could someone please help me model the following circuit in Multisim?

    I have connected a BNC tee adapter to an oscilloscope. At one of the ends of the tee connector I have placed a 50 ohm terminator. At the other end of the tee I have placed a pulse generator with the following specs: a pulse amplitude of -0.8 V (for resistive loads of 50 ohms to 10 kilo ohms) that is 6-10 ns in duration with a 10 kHz repetition rate. The pulse generator also has a risetime of 1.5 ns and a fall time of 5 ns. Thank You    

    Hello,
    Here are some ideas to model this circuit. For the BNC terminator you could simply use a 50 ohm resistor; for the pulse generator I recommend you to take a look of the SIGNAL_VOLTAGE_SOURCES Family, Sources Group in the Multsim Master Database. The PULSE_VOLTAGE source could be an option since it allows you to configure many parameters (rise/fall time, pulse width, period, etc).
    Are you building a circuit to take a specific measurement (for instance: Time Domain Reflectrometry)?
    Hope this helps.
    Fernando D.
    National Instruments

  • I want to have iTune that can download photos into iPod,please help,which version is able to syncrionise photos,thanks

    I want to download iTune which able to synchronise with photos ,please tell me which version,thanks so much four help

    The latest version.

  • Please Help D-Link Router

    i just purchased a dlink WBR-1310 router i am having problems configuring it of course the quick setup wizard disc does not work and when i try to go to 192.168.0.1 page times out i have tried using safari firefox and explorer any suggestions i really don't feel like calling dlink and speaking to someone that does not speak english help please

    Have you checked out D-Link's website to make sure everything's connected correctly?
    http://www.dlink.com/products/resource.asp?pid=474&rid=1815&
    Once you're sure you have it hooked up correctly, choose the correct instructions from this Apple Knowledge Base article:
    http://docs.info.apple.com/article.html?artnum=153435
    Good luck!

  • Please Help. Serious Problems following 10.5.2 and graphics update

    I installed the 10.5.2 update and at first all seemed ok but a bit buggy and slow and more system crashes that I didn't used to have. Than I ran software update and saw the new graphics update which I installed thinking it might fix some of those problems but instead it has made things a lot worse! My main user account is now unusable. Finder is constantly relaunching and applications launch eventually but are stuck on the spinning beach ball and won't let you do anything. I did eventually discover that system preferences still worked ok but slow and tried creating a new admin account which is working fine but I still have no idea what has gone wrong with my main account and can't access all my files. I have tried repairing permissions and installing the combo update through the new user account but the old one is still unusable.

    My first guess would be to re-apply the 10.5.2 combo updater, but since you tried that it indicates something else is going on. From the good admin account, launch /Applications/Utilities/Terminal.app and type:
    +login <username of bad admin account>+
    it will ask for the password for the bad admin account. Enter it. It won't show any characters, so make sure you type it correctly. Then type:
    +cd /Users/<username of bad admin account>/Library/Preferences/+
    +rm com.apple.finder.plist+
    +killall Finder+
    When the Finder comes back up, quit Terminal and logout of the good admin account and log in as the bad admin. Hope that helps.

  • Please Help with linking buttons to media

    Hi,
    I'm creating a virtual tour of my site and i have a couple of
    things i'm stuck on. I've done an intro, and after that 6 buttons
    roll in which you can click on that open up videos. I need the end
    of the intro to now be 'frozen' or looped or something. How do i do
    that? I've worked out the action script so that you click on the
    button and the video plays, BUT how do i make the video invisible
    before you click the button? At the moment it's just on the screen.
    I also need each button to simultaneousy open up two mp3
    files...what's the action script for that? I've been using script
    assist and i'm stuck.
    Thank you.

    Hard to explain without seeing what you accomplished so far.
    For the intro either add a keyframe then add either a stop action
    or a gotoAndPlay action. For the video give the player an instance
    name, then use actionscript to make it invisible. There are
    tutorials on this forum for adding sounds to buttons:
    For the MP3 issue here are some tutorials (thanks Chris G):
    http://www.kennybellew.com/tutorial/
    and
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&catid=194&threadid =1106533&highlight_key=y&keyword1=attach%20and%20sounds%20and%20button

  • Please help, which internal hard drive is best for a MacBook Pro mid 2010?

    Hello,
    My hard drive on my macbook pro is done for it's 3 years old and I am getting the beach ball constantly, with loads of page outs. I can't afford a SSD so other than that whats the fastest drive I can get? I am guessing a 1TB 7200? Can anyone recomend any? These are the ones I found so far, any thoughts/ advice would be really apreciated.
    http://www.amazon.co.uk/MacBook-MB470LL-Laptop-Internal-7200rpm/dp/B00DF2GKO0/re f=sr_1_6?s=computers&ie=UTF8&qid=1381746696&sr=1-6&keywords=MTXtec
    http://www.amazon.co.uk/Samsung-Seagate-inch-5400RPM-Drive/dp/B007NVGWV0/ref=dp_ return_2?ie=UTF8&n=340831031&s=computers
    http://store.apple.com/uk/product/MC729ZM/A/1tb-sata-hard-disk-drive-kit-for-mac -pro - this is so much more expensive and doesn't give the spec. I would like to avoid that markup if poss, without having an inferior product.
    Many thanks.

    My personal experience is as follows.  I initially installed 1 TB HGST 5400 rpm HDDs and then were replaced by 1 TB HGST 7200 rpm HDDs.  Both performed satisfactorily.
    Currently I have 1 TB Seagate SSHDs (Hybrid) in my MBPs and they have reduced the boot and shutdown times by over 50%.  They are also satisfactory.
    Note that there will be cheerleaders and detractors for all brands of HDDs.  I merely report my empirical results.
    Ciao.
    Note that I also have a 2010 MBP as well as a 2011 MBP.

  • Please Help - about linking different pages

    I want to create a registration page which asks for registration the already taken user name and passwords that are already used for logging in the school account on the school webpage, and when the user fills the username and password boxes, registration button secretly controls if such a username and password is correct in the school webpage, and then continues the registration process. The aim of doing this is that i want only the school users could log into my website. There should be and is a way of doing this i know, but couldn't find in spite of a deep search on google.
    Thanks for any help

    You need a server-side database with the user names and passwords stored in it.  Also server-side scripts to collect and compare entered data with that in the database.  Which programming languages & databases are you planning to use for this?
    Nancy O.

  • Once again, the dredded exclamation point has popped up next to several of my songs. I have not deleted anything, have not moved anything; all I did was try to sync my phone, which I have not done in a few months. Please help

    I have found that the exclamation point is back next to several of my songs. I have not moved any files, or deleted any files. I need help so that I can figure this out and have my music back on my iPhone. I can play it on my Mac just fine, and it says it is all on my phone, but I see this ! Next to most of the songs and I have about 8 GB less than before. Someone please help me solve this issue, something that I thought Apple would have been rid of by now. Again, please help me.

    Okay, I followed the step from another support community:
    1. Open Finder
    2. From the side bar, click the home folder
    3. Go to MUSIC>iTUNES>iTUNES MEDIA
    4. Open the corresponding folder for the folder type you're looking for. The contents of the folder will be listed in alphabetical order. Depending on the folder, the files will be sorted by author, artist, or title.
    Now, I found the files, and I can play my music through this and even in my iTunes library, where the info on each song is still available. Why can't this information transfer to my iPhone?

  • I have a macbook pro 1175 its a 2006 model which boot camp will work i tried 4.03 but it says this boot camp is not for this machine thats the oldest one i found here please help i have windows 7 32 bit installed but need drivers for the sound

    i have a 2006 mackbook pro running windows 7 32 bit i need drivers for the sound and the earliest bootcamp on here is 4.03 my machine says its not for this system please help which version of boot camp can i use

    Read this. You need to be running Snow Leopard or later.
    http://support.apple.com/kb/ht3986

  • Error Posting IDOC: need help in understanding the following error

    Hi ALL
    Can you please, help me understand the following error encountered while the message was trying to post a IDOC.
    where SAP_050 is the RFC destination created to post IDOCs
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIAdapter</SAP:Category>
      <SAP:Code area="IDOC_ADAPTER">ATTRIBUTE_IDOC_RUNTIME</SAP:Code>
      <SAP:P1>FM NLS_GET_LANGU_CP_TAB: Could not determine code page with SAP_050 Operation successfully executed FM NLS_GET_LANGU_CP_TAB</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error: FM NLS_GET_LANGU_CP_TAB: Could not determine code page with SAP_050 Operation successfully executed FM NLS_GET_LANGU_CP_TAB</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Your help is greatly appreciated.............Thank you!

    Hi Patrick,
      Check the authorizations assigned to the user which you used in the RFC destinations, If there is no enough authorizations then it is not possible to post the idocs.
    Also Refer this Note 747322
    Regards,
    Prakash

Maybe you are looking for

  • Video Chat doesn't work

    My ichat Video chat sometimes works, yet usually doesn't The error message: Date/Time: 2009-03-28 23:40:49.446 +0800 OS Version: 10.5.6 (Build 9G55) Report Version: 4 iChat Connection Log: 2009-03-28 23:40:26 +0800: AVChat started with ID 1038444205.

  • Exception in setting up message-driven bean container: [MQJMS1010: not impl

    Problem ======= We are trying to configure and deploy a Message Driven Bean to listen on a WebSphere MQ queue, using LDAP to share knowledge of the Queue & Connection Factory. But when we start the Sun One domain we get an exception: javax.jms.JMSExc

  • After Effects CS4 Rendering Error

    Every time I try to render a small loop I get the error message of :After Effects Error: Creating file "comp1.mov"- Access denied (-5000) (3::3) can any body help me out here?

  • Free VU and EQ animation plugins now available

    Hi there I've just released VeeYou: Four completely free fxplug plugins which generate animated VU and EQ effects from the audio in your project using audio behaviors in Motion 3. details on CoreMelt VeeYou: http://www.coremelt.com/products/products-

  • Premiere CS4 "Save As" for Avid or FCP

    Hello, Is there a way to save my composition or sequence for Avid or FCP . My buddy works with Avid and FCP and he wants me to send him my composition or sequence so can work on it. I use Premiere CS4. Thanks