Broadcaster setting format issue

Hi experts,
I am facing an issue after upgrade to EHP1 and would like your help: when we braodcast a report (PDF format), the first page is related to filters and all value from the variables. The issue is that part of the report result stays in the FIRST page.
Quesiton: how can I start my query result session in the SECOND page?
Is this related to 0ANALYSYS_PATTER template? if so, where exactly I make query result to jump to the second page?
Users are telling me before EHP1 upgrade, it used to be that way but now all come in the first page.
Thanks a lot for your help.
C

The movie appears to be squished and the files imported at BOTH wide and standard. Any thoughts on the file names and if that is somehow the answer.
iMovie '08 uses the flagged aspect ratio for pixel display. Some applications or actions can cause this flag to be "lost." For instance, if you import a widescreen clip to iMovie '08 and then perform some form of destructive editing, the files seem to be re-written without their proper flags. Additionally, some work flows may create files without their proper flags. In iMovie HD this could be corrected by simply resetting the "Current Display" setting and saving the file. Unfortunatly, this does not work in iMovie '08 and you usually end up haveing to re-convert the file to properly re-set the aspect for iMovie '08 editing.

Similar Messages

  • Formatting issues: when I open a msg, the font is sooo small you need a magnifier to read it. How can I set the font size to one I can easily read?

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    I have various formatting issues:
    a. When I open a msg from my web browser (Cablevision), the font is sooo small I need a magnifier to read it. How can I set the font to a size I can easily read?
    b. When I forward msgs, the text gets all distorted and I need to clean it up (some symbols, lots of spaces between words). How can this be fixed?
    c. When I want to tell someone about a website, I cannot type the URL in so that all they have to do is click on it. How can this be fixed?
    d. When I open messages, the text opens in a small window and covers the "Show Images" button. Why?
    == This happened
    ==
    Every time Firefox opened
    == Ever since I started using Firefox (a few months ago)
    ==
    '''Troubleshooting information'''
    I didn't find any results
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows 7
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
    == Plugins installed
    ==
    *-nphpclipbook
    *Office Plugin for Netscape Navigator
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Default Plug-in
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *The Hulu Desktop Plugin allows Hulu.com to integrate with the Hulu Desktop application.
    *Shockwave Flash 10.0 r45
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *iTunes Detector Plug-in
    *3.0.40624.0
    *NPWLPG
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers

    The text editor is the text area that you use on the webmail (Yahoo, Hotmail) website to create a new mail.
    You can compare that with the ''Post new message'' text area that you use to create a new post on this forum.
    Just above the text area that you use to enter the message text there is usually a button bar with buttons that allows some text formatting like Bold and Italic and can also include a button to make a clickable hyperlink.
    Check the tooltip of each button by hovering with the mouse over each button.
    Make Link - https://addons.mozilla.org/firefox/addon/142

  • Format issue in opening an XLS attachment sent through email by ABAP2XLSX

    I have downloaded the ABAP2XLSX nuggets and tried to send an attachment in the email using the SAP. But when opening the attachment it is giving up an format issue and not able to view the content. I am able to save the XLSX file on the PC and able to read it but when I  send it to email it doesn't open correctly and it is in a non readable format. Please find the code that I have been using. Can someone help me on this.
    TYPES: BEGIN OF tp_zzrule,
             zzprog     TYPE zzfunc,
             zzdata     TYPE zzcri1,
             zzseq      TYPE zzseq,
             zzkey1     TYPE zzkey1,
             zzkey2     TYPE zzkey2,
         END OF tp_zzrule.
    DATA: w_zzrule   TYPE tp_zzrule,
          t_zzrule   TYPE TABLE OF zzourule.
    TYPE-POOLS: abap.
    DATA:   v_document            TYPE REF TO cl_document_bcs,
            v_recipient           TYPE REF TO if_recipient_bcs,
            v_main_text           TYPE bcsy_text,
            v_send_request        TYPE REF TO cl_bcs,
            v_msub                TYPE so_obj_des,
             v_size               TYPE so_obj_len,
            v_string2             TYPE string,
            v_attsub              TYPE sood-objdes,
            v_mailid              TYPE ad_smtpadr,
            v_sent(1)             type c,
            v_sent_to_all         TYPE os_boolean,
            v_string              TYPE string,
            v_repid               TYPE sy-repid,
            v_title               TYPE so_text255,
            v_dochead             TYPE so_text255.
    DATA lt_test TYPE TABLE OF sflight.
    DATA: lo_excel                TYPE REF TO zcl_excel,
          lo_excel_writer         TYPE REF TO zif_excel_writer,
          lo_worksheet            TYPE REF TO zcl_excel_worksheet,
          column_dimension        TYPE REF TO zcl_excel_worksheet_columndime.
    DATA: ls_table_settings       TYPE zexcel_s_table_settings.
    DATA: lv_file                 TYPE xstring,
          lv_bytecount            TYPE i,
          lt_file_tab             TYPE solix_tab,
          t_objtxt  like solisti1   occurs 0 with header line,
          t_objbin  like solisti1   occurs 0 with header line,
          t_objpack like sopcklsti1 occurs 0 with header line,
          t_reclist like table of somlreci1 with header line.
    DATA: lv_full_path      TYPE string,
          lv_workdir        TYPE string,
          lv_file_separator TYPE c.
    CONSTANTS: lv_default_file_name TYPE string VALUE 'multi sheet test.xlsx'.
    PARAMETERS: p_path  TYPE zexcel_export_dir,
                p_empty TYPE flag.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_path.
      lv_workdir = p_path.
      cl_gui_frontend_services=>directory_browse( EXPORTING initial_folder  = lv_workdir
                                                  CHANGING  selected_folder = lv_workdir ).
      p_path = lv_workdir.
    INITIALIZATION.
      cl_gui_frontend_services=>get_sapgui_workdir( CHANGING sapworkdir = lv_workdir ).
      cl_gui_cfw=>flush( ).
      p_path = lv_workdir.
    START-OF-SELECTION.
      IF p_path IS INITIAL.
        p_path = lv_workdir.
      ENDIF.
      cl_gui_frontend_services=>get_file_separator( CHANGING file_separator = lv_file_separator ).
      CONCATENATE p_path lv_file_separator lv_default_file_name INTO lv_full_path.
    SELECT *
        INTO TABLE t_zzrule
       FROM zzourule
      WHERE zzprog  = 'RV63A999'.
        SELECT * FROM sflight INTO TABLE lt_test.
      " Creates active sheet
      CREATE OBJECT lo_excel.
    For first Sheet in the excel workbook
      " Get active sheet
      lo_worksheet = lo_excel->get_active_worksheet( ).
      lo_worksheet->set_title( ip_title = 'Test sheet one').
      ls_table_settings-table_style  = zcl_excel_table=>builtinstyle_medium2.
      ls_table_settings-show_row_stripes = abap_true.
      lo_worksheet->bind_table( ip_table          = lt_test
                                is_table_settings = ls_table_settings ).
      lo_worksheet->freeze_panes( ip_num_rows = 3 ). "freeze column headers when scrolling
      column_dimension = lo_worksheet->get_column_dimension( ip_column = 'E' ). "make date field a bit wider
      column_dimension->set_width( ip_width = 20 ).
    For second Sheet in the excel workbook
      lo_worksheet = lo_excel->add_new_worksheet( ).
      lo_worksheet->set_title( ip_title = 'Second sheet' ).
      lo_worksheet->set_cell( ip_column = 'B' ip_row = 2
               ip_value = 'This is the test for second sheet by Pavan' ).
      ls_table_settings-table_style  = zcl_excel_table=>builtinstyle_medium2.
      ls_table_settings-show_row_stripes = abap_true.
      lo_worksheet->bind_table( ip_table          = t_zzrule
                                is_table_settings = ls_table_settings ).
    This will create excel.
    CREATE OBJECT lo_excel_writer TYPE zcl_excel_writer_2007.
      lv_file = lo_excel_writer->write_file( lo_excel ).
    " Convert to binary
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer        = lv_file
        IMPORTING
          output_length = lv_bytecount
        TABLES
          binary_tab    = lt_file_tab.
    Save the file on to the PC
      cl_gui_frontend_services=>gui_download( EXPORTING bin_filesize = lv_bytecount
                                                        filename     = lv_full_path
                                                        filetype     = 'BIN'
                                               CHANGING data_tab     = lt_file_tab ).
    *--Create and set document with attachment.
    v_main_text-line  = 'This is the main text not sure where this would print'.
    append v_main_text.
      TRY.
        v_send_request = cl_bcs=>create_persistent( ).      "#EC .., bzw.
        CATCH cx_send_req_bcs . "#EC NO_HANDLER
      ENDTRY.
      v_msub       = 'Test excel with multi sheets.XLS'.
      TRY.
          v_document = cl_document_bcs=>create_document(
          i_type     = 'RAW'
          i_text     = v_main_text
          i_subject  = v_msub ).
        CATCH cx_document_bcs . "#EC NO_HANDLER
      ENDTRY.
        v_size = lv_bytecount.
    *--Add the attachment.
      TRY.
          v_document->add_attachment(                          "#EC .., bzw
                i_attachment_type    = 'EXT'
               i_attachment_type    = 'XLS'
               i_attachment_type    = 'RAW'
                i_attachment_subject = v_attsub
                i_attachment_size    = v_size
               i_att_content_hex    = lt_file_tab ).    "#EC .., bzw.
               i_att_content_hex    = lt_file_tab ).    "#EC .., bzw.
        CATCH cx_document_bcs . "#EC NO_HANDLER
      ENDTRY.
    *--Add document object to send request.
      TRY.
          v_send_request->set_document( v_document ).         "#EC .., bzw.
        CATCH cx_send_req_bcs . "#EC NO_HANDLER
      ENDTRY.
    *--E-mail recipent list
      t_reclist-rec_type = 'U'.
      t_reclist-receiver = <email Id here>.
      APPEND t_reclist.
      CLEAR t_reclist.
      LOOP AT t_reclist.
        CLEAR v_mailid.
        v_mailid = t_reclist-receiver.
    *--Create mail recipient object.
        TRY.
          v_recipient = cl_cam_address_bcs=>create_internet_address( v_mailid ). "#EC .., bzw.
           CATCH cx_address_bcs . "#EC NO_HANDLER
          ENDTRY.
    *--Add recipient object to send request.
        TRY.
            v_send_request->add_recipient( v_recipient ).     "#EC .., bzw.
          CATCH cx_send_req_bcs . "#EC NO_HANDLER
        ENDTRY.
      ENDLOOP.
    **--Add recipient object to send request.
      TRY.
        v_sent_to_all = v_send_request->send( i_with_error_screen = 'X' ).
    CATCH cx_send_req_bcs . "#EC NO_HANDLER
      ENDTRY.
    *--Send document.
      COMMIT WORK.
      IF sy-subrc = 0.
       MESSAGE s999(zou01) WITH text-020.
        v_sent = 'X'.
      ENDIF.

    I realize this is an old post, but am wondering if you ever resolved this.  I'm having the same issue.  Download an xlsx file locally opens fine, but attaching the seemingly exact same file throw errors/warnings when trying to open via an email attachment.

  • FCP and Motion formatting issues with DVCPro 50?

    The material is DVCPro 50 NTSC 48khtz. (Item properties indicate that I initially digitized it properly.) My sequence settings are DV50 NTSC 48khtz.
    I wanted to create a vignette effect so I exported my clips as a Quicktime (current settings) sequence to Motion. When I was done there I exported the sequence from Motion back to FCP as a DV NTSC movie.
    Some of the Motion effected clips will play, look great and then all the sudden I see a black band appear on the East side of the frame. I can stretch it in Motion some but it just degrades the image so I'd rather not.
    I'm surely grateful if someone can steer me in the right direction here.

    Thanks for the workflow tips and suggestions. I backtracked to my original sequence and found the problem originates there. I have narrow black lines on both sides of all these clips. Since I resized a few clips with moves, I didn't recognize the problem. Now that I'm closer the root of it, any suggestions?
    By the way, these problematic clips are intercut with no problem library footage that was also shot on DVCPro 50 and I took in on the same deck.
    I cruised the forum for any occurence of a similiar issue and most replies seem to suggest a formatting issue. I don't get it since I think I have everything set up correctly. As a precaution, I also tossed out my preferences using FCP Rescue 5.
    Welcome to the discussions, splotch.
    Not sure what is causing this, but I might propose an
    alternate workflow. Have your clips on the timeline
    as you wish, ctrl/right click on them and select
    Send To Motion.... Click the
    embedded and open Motion ticks, give it a name, then
    continue. Do your work in Motion, save, quit, and
    fall back into FCP. Your clips may lose their
    "anamorphicness" on their round trip, but just
    ctrl/right click on the clip and select Item Properties/Format..., then
    click on the anamorphic button.
    Try this and see if you are still getting the same
    problem...
    Patrick

  • Excel Export Formatting Issue

    HI,
    I am working with CR XI R2 and asp.net2.0.
    I am facing some formatting issue when the report is exported to excel.
    I have to maintain the same formatting as in the crystal report ,when the data is exported to excel.
    My report is a tabular report.I tried exporting the report from Crystal report designer.Not via web application.
    I have used the data only option.When i used the other option (Excel 97-2000(xls)) the text was getting rotated at 90 degree but other formatting was not exported correctly.So i found data only option was more appropriate in my case.
    I hope same things can be achieved by asp.net also one we get it in the designer.
    while exporting from the designer,the main issues i am facing are
        1) In the report some headings i have put at 90 degree rotation.
            When it gets exported to excel the headings are getting exported with 0 degree rotation.
    2) I have applied some back groud color for groupfooter and page header.
         This setting is also not getting exported .the report is getting exported with out any back ground color formatting
    Is there any way to attach the exported pdf and excel file ,so that the issue would be more clear for you all.
    Please let me know if you require more information.
    Regards,
    smitha
    Edited by: smitha thomas on Jul 3, 2009 6:12 AM
    Edited by: smitha thomas on Jul 3, 2009 7:43 AM

    Hi Smitha,
    Use the  other option of Microsoft Office Excel Workbook(*.xls) instead of (Excel 97-2000(xls))
    *Close the thread if issue solved.
    Regards
    Jambulingam.P

  • Formatting Issue When Switch to Computer Display

    I recently upgraded to a cinema display that I use with dual screen with my MacBook Pro display.  When I unplug it from my MacBook Pro the windows and documents are way too big when transferred to my laptop display.  Is there any way to fix this?  I didn't have this issue with my old non-Apple monitor.

    Hi Joemon,
    What patch level are you using for CR2008? With SP3 there were a number of fixes for design\formatting issues, so I would recommend use of a current patch level.
    Also can you test with different viewers - is the issue specific to the CR2008 Viewer?
    I did find an open Enhancement Request (ER) ADAPT01458705, and wonder if it may be a related issue:
    Current Functionality:
    When a Crystal Report is uploaded to the (XI R1, R2, R3) enterprise, if the report contains fields with data entries that exceed the field length, the data will overrun, vice truncating as it does in the Crystal Reports application. If selecting the HTML preview,
    this should also show the data field overrun before publishing. The known workarounds documented for this are to either format the fields in question to "can grow" and limit the number of lines to 1, or create a registry key TruncateClippedFieldStrings and set the value to Yes.
    Requested Functionality:
    Since the customer does not have any scenarios in which it would be desirable to have the data truncate in the designer, yet overrun in the published report, they request that the TruncateClippedFieldStrings key be included in the install and be set to Yes as a default.
    Ultimately if it's something that you can easily reproduce it might be a good idea to pursue this with SAP Support, it could be a bug.
    I hope this is a very helpful answer to you.
    Kind regards,
    John

  • Formatting issues in iBooks on the iPad

    Hello,
    I'm creating iBooks to publish on the iBookstore, but am having some formatting issues, or so I think at least.
    I have already created one iBook (http://itunes.apple.com/gb/book/id387336687, apologies for the morbid subject matter), which I tested on my iPhone (iOS 4.0) before publishing, and everything appeared correctly. Since then I've purchased an iPad, and have noticed that some of the formatting, namely text alignment, has lost it's formatting. This formatting issue only seems to effect the text, as all images look fine.
    I'm creating the iBooks in InDesign CS5 and Sigil, of which I've checked the CSS and everything seems correct.
    I'm wondering whether this is an issue with the current iPad iOS, and will be fixed once iOS 4.2 is released. But if anyone can shed some light on why this might be occurring, it would be much appreciated.
    Many thanks

    Omnipress wrote:
    I'm wondering whether this is an issue with the current iPad iOS, and will be fixed once iOS 4.2 is released.
    I don't think anyone knows. It could even create a new set of issues by disabling many of the hacks floating around on blogs.
    But if anyone can shed some light on why this might be occurring, it would be much appreciated.
    Typical iBooks CSS issues coupled with overly complex InDesign source. I took a different route and reformatted my source into super-simple XML and then generated my ePub from that. I still have all the same iBooks and CSS issues, but I am in complete control of my content.
    It is always best to test books on the target device. That shouldn't be a problem now that you have an iPad. However, if you are making decent money, it might be a good idea to keep one iPad on 3.2.2 for testing. That would be the ideal. I don't see the iPhone as being a really big iBooks market. I would focus on testing on the iPad.

  • Error 10000 Date format issue

    Hi all,
    Has anyone seen the following error please or has a troubleshooting hint: -
    "[NT AUTHORITY\SYSTEM (15/10/2012 18:35:12) - Service request cancelled due to an error.
    Error Code: 10000
    Error Description: Failed to create lease requisition.
    Fault code: soap:Server
    Fault string: Service Form Field: 'WarningDate2' has Date format issue.
    Fault details: REQ_0024Service Form Field: 'WarningDate2' has Date format issue.
    CIAC = 3.01
    Date and Time format on the CCP, CPO, vmware and SQL servers all Italian (dd/mm/yy)
    This only happens when we add a Lease Time on the request.
    Do they all have to be set to the US format for this to work?
    If this is a regional setting thing, do I have to change the format on all of the servers (CIAC components)?
    Cheers
    md

    This test program might help...
    import java.util.*;
    import java.text.*;
    public class ExpandYear
        public static void main(String[] args) throws ParseException
         SimpleDateFormat sdf_2dyear = new SimpleDateFormat("MM/dd/yy");
         SimpleDateFormat sdf_4dyear = new SimpleDateFormat("MM/dd/yyyy");
         String test1 = "3/21/00";
         System.out.println("test1: " + test1 + " to : " +
                      sdf_4dyear.format(sdf_2dyear.parse(test1)));
         String test2 = "4/9/99";
         System.out.println("test2: " + test2 + " to : " +
                      sdf_4dyear.format(sdf_2dyear.parse(test2)));

  • Copy Broadcast Setting

    Hi,
    We are facing issue while copying the broadcast settings. Since I am in support I have admin access and I can view any broadcast setting created by others. I can do a save as and created a copy under my ID.
    But when an end user is trying to save a broadcast setting under his/her ID it throws an authorization error saying
    "No authorization to display ABCD setting(owner xyz)"
    Is there  a way an admin can do a copy of the broadcast setting from one end user to another.  Or is there an alternative was a user can themselves create a copy of the setting.
    Any inputs on this would be really helpful.
    Thanks

    Hi,
    As the error says user do not have the proper authorization, if you give that authorization to users then they will be able to create the copy of existing settings.
    Regards,
    Durgesh.

  • Unable to load broadcast setting in Production system

    Hi,
    I have transported a broadcast setting from DEV to PRD system. When I select the web template for which this broadcast setting has been created, I am able to see the setting in PRD, but when I try to edit the setting, I get a message that it cannot be loaded. There is nothing more in the message to help in identifying the problem.
    Thanks.

    Hi Sanjeev,
    Check transaction SU53 for authorization errors.
    Also check ST22 for a dump. Or SLG1.
    Looks like an authorization issue...
    Hope this helps.
    Regards,
    Diego

  • How to change query navigational state in broadcast setting

    Dear experts,
    I have a question information broadcasting in BW 3.5
    We have the following usage of broadcast settings
    - open query with bex web
    - add special filters, drill-downs etc.
    - add this as a new broadcast setting with Mail recipients etc. - the format is "html-file"
    - schedule the setting
    This works fine.
    But, if I have to make changes to the navigational state (e.g. set additional filter) of the broadcasted query for the future - how can I do that?
    How can I open the "view" behind the setting directly?
    Best wishes
    Gregor

    I have not found a solution yet but currently I have a workaround:
    Before switching to Broadcaster I generate a bex-web-bookmark.
    Then i add this bookmark in the text of the broadcasting seeting.
    Gregor

  • Formatting issue related to SAP Scripts

    Hi All,
    I have a formatting issue related to SAP Scripts.
    Issue is i have a variable declared as:
    <b>v_kbetr LIKE BSET-KBETR.</b>
    I will fetch some value into this v_kbetr in SE38.
    Then in SE71[Layout set] i have put it as &v_kbetr&
    Now i have written code in SE71 as below:
    IF &v_kbetr& EQ '          0.00'
    0
    ELSE
    &v_kbetr&
    ENDIF
    like wise i am displaying 2 fields with same condition.
    now if value for v_kbetr is 6.75 then it is getting displayed as right aligned.
    Otherwise 0 will be displayed as left aligned
    Now what i want is &v_kbetr& to be left aligned if value present. though i have declred as &v_kbetr(L)& it is not working.
    Is there any solution for this.
    Thanks,
    Kumar.

    Hi.
    Symbol values other than numeric values are normally formatted left-justified.so define this variable other than Numeric.
    If you write Field(L) this will only for output,

  • How to programmatically set formatted javascript dates for validation?

    How does one programmatically set formatted javascript dates for validation?
    "12/31/2011" does not seem to work?

    ourDate.rawValue = "2011-12-31";  // works
    NOTE:  if you have a hierarchy issue you may need something like
    root.body.table.detail.ourDate.rawValue = "2011-12-31";

  • CSV formatting issues

    I have tried different things but I still have formatting issues with CSV. I ran my query in Toad and it displays the comma delimted values accurately. But when I run the report, the data is displayed in random cells. I am using vertical elasticity-expand, horizontal elasticity-fixed. Another report with the same input runs just fine. Any suggestions are welcome. Is there something I have to do in the layout editor or in the wizard?
    Thanks

    Hi,
    What version of reports are you using? Are you running the report to extract the values into a file? Are you using the srw.run_report feature? If so, try setting the delimiter=','.
    Martin

  • Error While executing a broadcast setting in BW 7.4

    hi dear BEx Gurus,
    I am using BEx Broadcaster to a great extent, many of our critical reports are being sent to the users though BEx Broadcaster. Everyday around 700 triggers are executed automatically. These were working perfectly before we upgraded our system to BW 7.4. I am seeing this error message(Please refer to the screenshot) while I execute the broadcast setting manually from the BEx Query designer --> Publish --> Boradcaster.
    Your suggestions/guidance will be highly appreciated. Thanks in advance
    Regards
    Ranjan Jinka

    Hi Brendon,
    Hope you are doing great !
    I think I need your help again... Your previous solution to my problem worked perfectly last time. But, this time, it is not solving my problem. we applied the latest patches in our BW System (BW 740 SP9) and after this update, BEx broadcaster is returning the same error(Please refer to the below screenshot). And, as per your suggestion, I have activated the web template  0BROADCASTING_TEMPLATE.
    But again, it is returning the same error. Your help will be highly appreciated.
    Activation of 0BROADCASTING_TEMPLATE
    Thanks & Regards,
    Ranjan Jinka

Maybe you are looking for

  • Custom Reports Library ?

    Hello, Have you ever heard about somebody (or a company) that has developped some custom reports to improve OEM ? My need is that I want to extend the standard reporting, especially the performance follow-up (on metrics such as Buffer Cache Hit Ratio

  • Error for ERS settlement of frieght POs

    Hello All We have an issue where user is trying to settle Automated Freight POs with search criteria as (company code US20) and GR posting date (From- Blank/ To - till date) through MRRL transaction. Errors: 1.Posting date is initial for few of them

  • Yosemite made my MacBook Pro 17" so slow. Need help.

    Just updated and installed Yosemite to my MBP 17" and its gone on a major go slow... keep shrinking about things, loading apps slow etc almost unworkable when I'm a graphic designer and use this daily to earn my income!! is there anything i can do to

  • Songs playing on one computer, but not on others.

    I use my iPod on three different computers (Home/Work/brand new laptop). I recently upgraded my iPod from original 80gb to new Classic 160gb. Before I purchased my new iPod, I transferred my whole library (about 50gb)from my iPod onto my new laptop(u

  • ISE on Integrated Management controller - setup

    Hi all, I just got my 2 x 3415 controllers. It's running the Integrated Management controller - when connecting via the KVM console i get a login screen ise-server-1 login: Now form what I saw it does not have a default password - that's done while i