Excel View Problem

Hello,
I have an ALV report.  The output of the report is OK.  But, when I see it in Excel view(Ctrl + Shift + F7), then also data output is coming in the proper format.  But, the only problem is I don't see my Header informations(Report Headings/Subheading) in any of the sheet even not in the RAWHEADER sheet also.  Does anybody have any idea why the Header  informations are not coming in Excel view.
Thanks and regards,
Ajay Ahuja

hi ajay,
           In the EXCEL VIEW u have the HEADER as the FIRST ROW IN EXCEL SHEET..
           i have sent a sample code of mine..u can check it also... hope u will have ur problem solved..
TYPE-POOLS slis.
TYPES  :BEGIN OF ty_mm,
        sl_no type i,
        werks TYPE marc-werks,
        matnr TYPE mara-matnr,
        maktx TYPE makt-maktx,
        mtart TYPE mara-mtart,
        volum TYPE mara-volum,
        ntgew TYPE mara-ntgew,
        ersda TYPE mara-ersda,
        laeda TYPE mara-laeda,
        END OF ty_mm.
DATA :       it_mm TYPE TABLE OF ty_mm,
             wa_mm TYPE ty_mm.
field catalog declaration, only if u do so u can display heading in alv            
DATA :       it_fc TYPE slis_t_fieldcat_alv,
             wa_fc TYPE slis_fieldcat_alv.
PARAMETERS : p_werks TYPE marc-werks.
SELECT  marc~werks
        mara~matnr
        makt~maktx
        mara~mtart
        mara~volum
        mara~ntgew
        mara~ersda
        mara~laeda
FROM marc
INNER JOIN mara  ON marcmatnr = maramatnr
INNER JOIN makt  ON maramatnr = maktmatnr
INTO CORRESPONDING FIELDS OF TABLE it_mm
WHERE marc~werks = p_werks and spras = 'EN'.
loop at it_mm into wa_mm.
wa_mm-sl_no = sy-tabix.
modify it_mm from wa_mm transporting sl_no .
endloop.
this is how u append the header to an alv grid
wa_fc-col_pos = 1.
wa_fc-seltext_l = 'SLNO'.
wa_fc-fieldname = 'SL_NO'.
wa_fc-tabname = 'IT_MM'.
wa_fc-hotspot = 'X'.
APPEND wa_fc TO it_fc.
CLEAR wa_fc.
wa_fc-col_pos = 2.
wa_fc-fieldname = 'WERKS'.
wa_fc-tabname = 'IT_MM'.
wa_fc-ref_fieldname ='WERKS'.
wa_fc-ref_tabname = 'MARC'.
wa_fc-hotspot = 'X'.
APPEND wa_fc TO it_fc.
CLEAR wa_fc.
wa_fc-col_pos = 3.
wa_fc-fieldname = 'MATNR'.
wa_fc-tabname = 'IT_MM'.
wa_fc-ref_fieldname ='MATNR'.
wa_fc-ref_tabname = 'MARA'.
wa_fc-hotspot = 'X'.
APPEND wa_fc TO it_fc.
CLEAR wa_fc.
wa_fc-col_pos = 4.
wa_fc-fieldname = 'MAKTX'.
wa_fc-tabname = 'IT_MM'.
wa_fc-ref_fieldname ='MAKTX'.
wa_fc-ref_tabname = 'MAKT'.
wa_fc-hotspot = 'X'.
APPEND wa_fc TO it_fc.
CLEAR wa_fc.
wa_fc-col_pos = 5.
wa_fc-fieldname = 'MTART'.
wa_fc-tabname = 'IT_MM'.
wa_fc-ref_fieldname ='MTART'.
wa_fc-ref_tabname = 'MARA'.
wa_fc-hotspot = 'X'.
APPEND wa_fc TO it_fc.
CLEAR wa_fc.
wa_fc-col_pos = 6.
wa_fc-fieldname = 'VOLUM'.
wa_fc-tabname = 'IT_MM'.
wa_fc-ref_fieldname ='VOLUM'.
wa_fc-ref_tabname = 'MARA'.
wa_fc-hotspot = 'X'.
APPEND wa_fc TO it_fc.
CLEAR wa_fc.
wa_fc-col_pos = 7.
wa_fc-fieldname = 'NTGEW'.
wa_fc-tabname = 'IT_MM'.
wa_fc-ref_fieldname ='NTGEW'.
wa_fc-ref_tabname = 'MARA'.
wa_fc-hotspot = 'X'.
APPEND wa_fc TO it_fc.
CLEAR wa_fc.
wa_fc-col_pos = 8.
wa_fc-fieldname = 'ERSDA'.
wa_fc-tabname = 'IT_MM'.
wa_fc-ref_fieldname ='ERSDA'.
wa_fc-ref_tabname = 'MARA'.
wa_fc-hotspot = 'X'.
APPEND wa_fc TO it_fc.
CLEAR wa_fc.
wa_fc-col_pos = 9.
wa_fc-fieldname = 'LAEDA'.
wa_fc-tabname = 'IT_MM'.
wa_fc-ref_fieldname ='LAEDA'.
wa_fc-ref_tabname = 'MARA'.
wa_fc-hotspot = 'X'.
APPEND wa_fc TO it_fc.
CLEAR wa_fc.
fn module to display alv grid
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
  EXPORTING
    i_callback_program = sy-repid
    i_grid_title       = 'PLANT'
    it_fieldcat        = it_fc[]
  TABLES
    t_outtab           = it_mm
  EXCEPTIONS
    program_error      = 1
    OTHERS             = 2.
IF sy-subrc <> 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
regards
Rajkumar.G

Similar Messages

  • ALV Excel View Problem

    Hi All,
        I have a problem with the ALV display problem.
        When I click on the 'Microsoft Excel View' button at the top of the ALV display, I can view the data in Excel View.
        However, when my user click it on his computer, he saw the excel view is blank without data (even there are data at the initial ALV display screen).
        May I know what is the root cause of this problem? I've no idea of how to investigate it or solve it.
        Many Thanks.

    HI try with this code------
    *& Report  ZTEST_DOWNLOAD1
    report  ztest_download1.
    tables : trdir.
    type-pools: slis.
    types: begin of gt_output,
            progname type progname,
            strct_type(14) type c,
            strct_name(50) type c,
            serial(8) type c,
            mainfieldname(50) type c,
            offset(17) type c,
            leng(8) type c,
            decimals(8) type c,
            inttype(15) type c,
            datatype(9) type c,
            scrtext_m type scrtext_m,
            tabname type tabname,
            fieldname type fieldname,
            rollname type rollname,
            domname type domname,
            default(100) type c,
            end of gt_output.
    types: begin of gt_header,
            name(300) type c,
    end of gt_header.
    data : gi_output type standard table of gt_output,
           wa_output type gt_output,
           gi_header   type standard table of gt_header.
    data: d_filename like ibipparms-path,
          gi_fieldcat type slis_t_fieldcat_alv,
          wa_fieldcat type slis_fieldcat_alv,
          wa_header type gt_header.
    selection-screen:
    begin of  block b1 with frame title text-001.
    parameter: program(150) type c default 'ZTOOL_TEST'.
    select-options so_incl for trdir-name default 'ztool_test' no intervals .
    selection-screen begin of line.
    parameters :pa_check as checkbox default 'X'.
    selection-screen comment (29) text-t01.
    parameters :pa_path type rlgrap-filename default 'D:\TRIAL.XLS'.
    selection-screen end of line.
    selection-screen end of block b1.
    at selection-screen.
      perform download_excel_template.
    at selection-screen on value-request for pa_path.
      perform f4_file_help.
    *&      Form  F4_file_help
          text
    -->  p1        text
    <--  p2        text
    form f4_file_help .
      call function 'KD_GET_FILENAME_ON_F4'
        exporting
          program_name  = sy-repid
          dynpro_number = syst-dynnr
          field_name    = pa_path
        changing
          file_name     = d_filename
        exceptions
          mask_too_long = 1
          others        = 2.
      if sy-subrc <> 0.
       MESSAGE ID gv_msgid TYPE 'I' NUMBER 000.
      endif.
    endform.                    "f4_file_help
    form download_excel_template .
      refresh gi_header.
      wa_header-name = text-t01.
      append wa_header to gi_header.
      wa_header-name = text-t02.
      append wa_header to gi_header.
      wa_header-name = text-t03.
      append wa_header to gi_header.
      wa_header-name = text-t04.
      append wa_header to gi_header.
      wa_header-name = text-t05.
      append wa_header to gi_header.
      wa_header-name = text-t06.
      append wa_header to gi_header.
      wa_header-name = text-t07.
      append wa_header to gi_header.
      wa_header-name = text-t08.
      append wa_header to gi_header.
      wa_header-name = text-t09.
      append wa_header to gi_header.
      wa_header-name = text-t10.
      append wa_header to gi_header.
      wa_header-name = text-t11.
      append wa_header to gi_header.
      wa_header-name = text-t12.
      append wa_header to gi_header.
      wa_header-name = text-t13.
      append wa_header to gi_header.
      wa_header-name = text-t14.
      append wa_header to gi_header.
      wa_header-name = text-t15.
      append wa_header to gi_header.
      wa_header-name = text-t16.
      append wa_header to gi_header.
      wa_output-strct_name = 'abc'.
      append wa_output to gi_output.
      call function 'MS_EXCEL_OLE_STANDARD_DAT'
        exporting
          file_name                 = pa_path
          data_sheet_name           = 'Structure details'
        tables
          data_tab                  = gi_output
          fieldnames                = gi_header
        exceptions
          file_not_exist            = 1
          filename_expected         = 2
          communication_error       = 3
          ole_object_method_error   = 4
          ole_object_property_error = 5
          invalid_pivot_fields      = 6
          download_problem          = 7
          others                    = 8.
      if sy-subrc <> 0.
       MESSAGE ID gv_msgid TYPE 'E' NUMBER 002.
      endif.
    endform.                    " DOWNLOAD_EXCEL_TEMPLATE
    regards
    prashant

  • IPad - excel viewer problem

    Hi
    I have a serious problem with my iPad.  I'm going to the Olympics in London and I receive a lot of excel documents in email and I use the excel viewer to go through time results etc.  Here is the problem: On a PC using latest version of MS Excel we use custom format for time results in swimming.  There we use the format hh:mm:ss,00 which return normal times in swimming like 24,79 or 1:01,97 - we use , (comma) as a decimal seperator. On my iPad these times comes in excel viewer as 24.00 and 1:01.00.
    I don't have to explain further, this is absolutely a turnoff.  I can't use my iPod on the OL with this "error" so I', trying to push forward an enhancement request.
    Thanks,
    Ragnar +354 896 0609

    If you wish to report this issue to Apple, use their feedback page:
    http://www.apple.com/feedback/ipad.html
    It's unlikely that anyone at Apple in a position to do anything about such an error will see your post here. Do not expect this to be corrected quickly, if at all.
    For now, you may want to try one of the third-party apps that support Excel documents. Apple makes an iOS versions of Numbers which can import Excel documents. There are also 3rd party combined suites that cost less than the separate Apple apps. Ones often recommended include Documents 2 Go,  Quickoffice and Office2 HD. Whether any of them can handle custom time formats I don't know, but you could ask the developer.
    Regards.
    P.S. It's usually not a good idea to post your phone number in an open forum. The only calls you'll get when you do so are from scammers and telemarketers.

  • Excel viewer not installed problem

    Dear all,
    i am getting error message  "excel viewer not installed"  with error code UMC030  .
    Getting this error message when running a report under management cockpit walls.
    Any help?
    thanks
    john

    ok its sorted

  • ALV Grid and Excel view

    Hi,
    I'm searching anywhere on this forum for a solution but up to now I did only partial progress.
    I've already seen dozens of sap notes about this problem.
    When I pressed "view in Microsoft Excel" (code &VEXCEL) on an ALV grid list, a popup appeared noticing that no template was found. Looking around on this forum I managed to discover how to load these templates from local (BC_ALVEXCEL_SAP_TEMPL, BCALV_BDS_MAINTENANCE) or from client 000 (BCALV_BDS_IMPORT_SAP_TEMPLATE).
    Anyway, I managed to restore the templates on the system, but excel view still doesn't work:
    wheh I press the button now I only see a blank screen in place of the excel; if excel was already open (not in sap), then an excel view is actually shown, but the sheet is empty, no data in it.
    Any hints?
    thank you

    Hi,
    Just open Excel, then Goto Menu -> Tools -> Options -> Security Tab -> Macro Security ->Set Medium and in Trusted publisher tab select the checkbox Trust Access to Visual Basic Project Now Press Ok.
    This will solve your problem.
    Regards
    Karthik D

  • Excel view-very urgent

    Hi
    In my alv grid display i am not able to view the content in excel view .how to solve this problem?

    Hi
    There will be something wrong with the PF status which you are using
    Take some STd ALV report and copy its status to your report and use that
    it will come
    Regards
    anji

  • Microsoft Excel is not installed; install Microsoft Excel Viewer

    When executing BW reports from the GUI, the following error is received.  Reports run directly from excel seem to work fine.
    "Microsoft Excel is not installed; install Microsoft Excel Viewer"
    This error is occuring on machines that were recently upgraded to SAP GUI 7.20 patch 7 and BW 3.5 patch 5.  In some cases  but not all, running a repair on Excel resolves the issue.  However, we do not want to have to run a repair on all machines that will be upgraded.    Does anyone no the root cause and an easier solution for this issue?

    Hi,
    Please refer simmilar discussion at Please Install Excel as Viewer
    I hope this will solve your problem.
    Thanks,
    Chandra

  • Remote Control and Remote View Problem

    Hi,
    I work at a High School running Netware 6.0 SP5 and Zen works 4.01 ir7.
    Remote Control and Remote View works great but I noticed one problem.
    We have a logo of the school that is forced down on to the desktop when a
    user logs in through group policies. This logo works perfect for the
    desktop wall paper and loads every time a user logs in.
    When I Remote Control or Remote View a computer the users desktop wall
    paper turns from the logo being forced down through group policies to the
    desktop to a blue desktop wall paper.
    I would prefer the desktop wall paper staying the schools logo when I
    Remote Control or Remote View because if the desktop wall paper changes to
    the blue color I mentioned above when I Remote Control or Remote View the
    users computer, they will know that someone is taking over their computer
    which sometimes we dont want them knowing.
    We have Windows 98SE computer running Novell Client 3.4 and we have some
    computers running Windows XP Professional SP1 and Windows XP Professional
    SP2 both running Novell Client 4.91 SP2.
    The Remote Control and Remote View problem of the desktop wall paper
    changing on the users computer occurs on all operating systems mentioned
    above.
    Is there a solution to my above problem? When Remote Controlling and
    Remote Viewing someone's computer I don't want the desktop wall paper to
    change.
    Thanks!

    Bpilon,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Excel Viewer: Class not registered (error -214722116​4)

    Hello,
    I am using the Excel examples shipped with Labview 8.21 to read from an Excel file and this works well. Now I need to do the same but on a PC that does not have Microsoft Office or Excel installed but only the free XLVIEWER (Microsoft Office Excel Viewer). When I try to change the ActiveX class of my reference to feed the 'Automation Open' vi I get the Class not registered (error -2147221164) although I can browse down to the XLVIEWER.exe and select it. Then I thought that maybe XLVIEWER had no ActiveX to communicate with other application; I thus installed a package called excelocx.exe, rebooted the PC but that did not change anything. I am still stuck with the same error.
    What am I doing wrong?
    Thanks a lot,
    Christophe

    Please find attached the VI I am using together with the XLS file that I try to read with Labview on a Pc that does not have MS Excel installed, only the XLVIEWER.
    OpenOffice is not supported in our company so cannot be considered as a valid solution.
    Thanks,
    Christophe
    Attachments:
    Read Excel File with Labview 820.zip ‏31 KB

  • Issue using SharePoint 2010 with IE10 with MS Office Excel Viewer

    Hello,
    We are experiencing an issue with MS SharePoint 2010 Foundation and computers who have Internet Explorer 10 and the Microsoft Office Word Viewer 2003.  When opening Word documents from SharePoint, the Word Viewer opens, but no document is displayed.
     The MS Excel Viewer 2007 works and does open the Excel documents.
    Computers with MS Word Viewer 2003 and IE 9 works fine, it's just the IE10 PCs.  PCs that have the full version of Office it works fine with both IE9 and IE10.
    We have a segment of our PCs that need only read-only access to the Word and Excel files.  We tried Office Web App but found functionality issues (printing, etc.) and issues where the other segment of our PCs that have MS Office had to open the files
    in a specific way to manipulate them.
    Does anyone know of something that would be affecting the MS Word Viewer with IE10 with SharePoint?  Or know of an alternate viewer? 
    Thanks in advance.

    Hello Anthony,
    In IE10, please click F12 to open the DEV toolbar.
    Now search for Browser- and Document Mode.
    Set Browser Mode to Internet Explorer 8, that should work.
    This setting can be edited in your Masterpage.
    This is what you should put in:
    <meta
    http-equiv="X-UA-Compatible" content="IE=8" />

  • Maintenance view problem "No data maintenance Authorization; Display only"

    Maintenance view problem
    <b>Question 1>>>></b>
    > I have created a table with Display/maintenance allowed and technical setting Data class - APPL0 (master data, transparent tables).
    >> Then I have created a maintenance view thought utilities->table maintenance generator where i have specified the Authorization group as &NC& (w/o auth. group)
    ->and also created a function group and specified in the maintenance screen-> I have selected maintenance type as one step-> i have given the overview screen number->and in Recording routine i have selected - no, or user ,recording routine.
    >>> Now when i go to transaction SM30  and put the table name and press on maintain button I get a information box saying "<b>No data maintenance Authorization; Display only"....</b> and it only displays the data.
    my problem is I want to enter data through maintenance view (SM30).
    <b>2nd Question >>>></b> once i create a function group for maintenance view how can i assign a transaction for this. <i>(as if i do it as we do for a module pool program it gives me error)</i>Thank you.
    kailash

    SE93.  Enter a transaction name.  Create.  In the pop up enter a title and select 'Transaction with parameters'.
    Next screen fill the following;
    Transaction 'SM30'
    Check 'Skip first screen'
    In the table control at the bottom of the screen
    Name of screen field 'VIEWNAME'
    Value <your table name>
    Name of screen field 'SHOW'
    Value 'X'
    Save.
    Job done.

  • Adobe Content Viewer problem. Please Help me...

    Hi after updating online. Folio, I tried to update the trial version of the publication on my iPad but I get this message: "the issue isavailable for dowload, but new signing for an application version. Update the application from the App Store. "I went to the AppStore and was not any update of the Content Viewer ... I deleted the version on my iPad I downloaded again ... but without success gives me the same problem ... Please help me ... how can I do??
    thanks

    Hello Bob and thank you for responding so quickly ... Would you be kind enough to send me the link where I can download older versions of Folio Builder and Folio Producers Panel tools for InDesign 5.5. I'm looking for them but I can not find them.
    Thank you for your patience.
    Il giorno 21/gen/2012, alle ore 16:18, Bob Levine ha scritto:
    Re: Adobe Content Viewer problem. Please Help me...
    created by Bob Levine in Digital Publishing Suite - View the full discussion
    As discussed in numerous threads already, the new viewer has not been approved by Apple yet.
    If you’re a pro or enterprise customer you can create your own viewer app. If not, you’ll have to wait or roll back to the older tools.
    Bob
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4155907#4155907
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4155907#4155907. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How to open an ALV (the OO way) in Excel-View  right away?

    Dear experts,
    i'm creating an ALV Grid by using method set_table_for_first_display and I wonder if I can initially choose the Excel-view for it as if the user had switched over to it by using the standard "view" function. I figured that this might be posible by using the "FRONTEND" field in the Layout-structure, but this has no efect. Does anybody know how to do that? (if possible without creating an instance of the office integration class).
    regards
    Andreas

    Yeah, it is possible
    Check this code
    *   Container auxiliar
        create object g_o_container
          exporting
            container_name              = 'G_D_CONTAINER'
          exceptions
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            others                      = 6.
        create object g_d_grid
          exporting
            i_parent          = g_o_container
            i_parentdbg       = cl_gui_custom_container=>default_screen
          exceptions
            error_cntl_create = 1
            error_cntl_init   = 2
            error_cntl_link   = 3
            error_dp_create   = 4
            others            = 5.
      endif.
      perform layout.
      perform fieldcat.
      call method g_d_grid->set_table_for_first_display
       exporting
          is_layout                     = gs_layout
    *     is_print                      =
    *     it_special_groups             =
    *     it_toolbar_excluding          =
        changing
          it_outtab                     = g_t_alv
          it_fieldcatalog               = g_t_fieldcatalog
        exceptions
          invalid_parameter_combination = 1
          program_error                 = 2
          too_many_lines                = 3
          others                        = 4
    The key is using the i_parentdbg parameter when creating the ALV Grid, it's kind of a trick, but it worked for me.

  • Excel view in ALV Grid---- Urgent

    Hi,
    On executing sample porgram BCALV_FULLSCREEN_DEMO, we get ALV grid display. After that, on Clicking "<b>Microsoft Excel View(controlshiftF7)</b>" we are getting blanck Excel screen view instead of the field values.
    I have the same scenario requirement in real time. I want the excel screen with values from ALV Grid.
    Thanks in Advance.
    -Mohan.

    Hi Mohan,
    Try this:
    Download Data in EXCEL from ALV list display
       1) Once you have alv report displayed in the screen.
       2) Click button 'View' ( next to print button) on application toolbar
       3) Select Excel in Place
       4) This will download the same format as of Report
    I hope your ALV have all the Standard functions in Toolbar. If not copy the status from and get the function as mentioned above.
    <b>Program - SAPLSALV
    Status  -  STANDARD</b>
    Reward points if this Helps.
    Manish

  • Flash Player viewing problems

    I'm having full screen video viewing problems on facebook which I hope to get resolved.When selecting a video to view on Facebook the video goes to about a 2" high strip across the bottom of the player. When this happens I have to click the full screen icon on the bottom right corner of player to view the video, so far this problem is only happening on FB. I would like to know what's causing this problem and how to get it resolved. I've got the current player version and all my Computer Software and Drivers are up to date
    My System Info
    Gateway Laptop
    Windows 7 HP w/SP1
    IE11
    Flash player current 15.0.0.233
    Norton 360

    Yes, it says it is enabled:
    Name:              
    Shockwave Flash Object
    Publisher:         
    Adobe Systems Incorporated
    Type:              
    ActiveX Control
    Version:           
    10.1.82.76
    File date:         
    Date last accessed:
    Today, March 08, 2012, 20 minutes ago
    Class ID:          
    {D27CDB6E-AE6D-11CF-96B8-444553540000}
    Use count:         
    24711
    Block count:       
    0
    File:              
    Flash11e.ocx
    Folder:            
    C:\WINDOWS\system32\Macromed\Flash

Maybe you are looking for

  • ITunes Duplicate Artwork

    I'm running 10.7.1 and iTunes 10.4 (64-bit). When adding artwork to selected items within iTunes via the get info window, the artwork is added TWICE for each item when double-clicking on the artwork box and navigating to the art. However, when select

  • How to input a number of scientific notation in equations

    On new version of Numbers, I try to input a equation, such as "=A1 x 6.02E+23" , but I cannot input the equation, because "E" regarded as "columnE". Please tell me how to imput a a number of scientific notation in equations.

  • OWSM Configuration Assistant failed

    Hi! I have OracleAS 10g (10.1.3.1) with the J2EE Server, Web Server, and SOA Suite installed. I have trying to apply 10g Release 3 (10.1.3) Patch Set 4 (10.1.3.4.0), but the OWSM Configuration Assistant fails and it's registred in the logs: In $ORACL

  • Norwegian spell sheck, how to get in pages?

    I have no norwegian spellchecker in Pages. How do I solve that? best regards Bjørn

  • Changing color on the title to an individual slide

    I am preparing a slide show with titles and descsriptions showing on the slide.  On most slides white is acceptable.  There is one slide where another color would be necessary as the title appears on a white background.  I have gone into the menu to