Extra column in iCal discussion

I don't think this has been mentioned before ...
In the iCal discussion there is a column headed "Forum", in which the content is always "iCal". None of the other discussions I visit have it.
Do people browsing a discussion need to be told on every line which discussion they are browsing?
AK

Austin: The same situation applies in the Safari area. As to terminology, the following is taken from Help & Terms of Use——
How is the content organized?
The content in our forums is structured as follows:
Forum Categories—Categories represent a collection of topical forums as well as other categories, and are used to organize forums to help you easily find the information you seek. Our categories are generally defined by a product name, such as "iPod," "iMac," or "Mac OS X v10.4 Tiger."
Forums—Forums are the areas where individual discussions take place. The discussions are displayed as a list of topics. For example, if you're looking for conversations about searching your Mac with Spotlight, click the Mac OS X v10.4 Tiger link on our Discussions homepage, then click the Spotlight link in the resulting Tiger page to visit the Spotlight forum.
So the hierarchy is Topics within Forums within Categories. In the case of iCal and Safari, there is only one Category.

Similar Messages

  • Extra column in Crosstab report

    Hi Experts,
    We are designing a cross tab report (using CR 2008) and got stuck at one point. If we want to add an extra column in cross tab, what is the way to insert the same?
    Currently our cross tab is designed using 3 elements: Country, Month and Sales. We would like to add an extra column u201Clast year salesu201D before Month data. This element is present in database.
    Any help / suggestions would be appreciated.
    Regards,
    Chinmay

    Right click Cross tab - -> Cross tab expert
    Drag field into columns and the position with up/down arrows
    Ian

  • Extra columns in ALV report

    Hi there,
    I added a column to an existing alv report which uses method 'set_table_for_first_display' to display the output.
    The method is called via:
    grid1              TYPE REF TO cl_gui_alv_grid,
        CALL METHOD grid1->set_table_for_first_display
              EXPORTING
                        i_structure_name     = 'MAT_DATA'
                        is_layout            = lt_layout
                        is_variant           = lt_variant
                        i_default            = lt_default
                        i_save               = 'A'
                        it_toolbar_excluding = lt_exclude[]
               CHANGING it_outtab            = mat_data[]
                        it_fieldcatalog      = w_fieldcat[]
             EXCEPTIONS
                        program_error        = 1.
    The extra columns are in the field catalog and mat_data.
    The lt_variant-report field has the report name in it.
    When I run the report the new column does NOT appear.
    I cleared out the lt_variant-report value and now the new column DOES appear.
    Any idea why this is happening?
    Is there some way I can leave the report name in there and see the new columns?
    Thanks.

    thanks.
    no_out is initial.
    But, in this case, I am not passing any variant.
    It works if I don't pass the report name in the
    is_variant-report
    field.The columns will not display if I pass the report name.

  • How do I remove right 'reminders' column in iCal 5.0

    How do I remove rightside 'reminders' column in iCal 5.0

    Roger Wilmut1 wrote:
    Command-option-t does in Snow Leopard - does it in Lion?
    Cmd-Opt-T works on 10.7.1 here. From the View menu select Hide Reminders.
    John M

  • R12 Payment Process Request Status Report adding extra columns to XML data.

    In 11i, we had modified the Preliminary Payment Report to include extra columns ( invoice distributions). In r12 , that report is obsolete and Oracle introduced a new report "Payment Process Request Status Report". This request uses BI Publisher to generate the final report output. I am unable to modify the template since the XML output of the report does not
    contain the invoice distribution account data. We need to know how can we modify the XML data to include the extra columns.
    For Funds Disbursement Process ( Payment Instruction File) , Oracle provides IBY_FD_EXTRACT_EXT_PUB extensibility package to construct custom XML element structure that can be added to the payment XML extract generated by Oracle Payments. Do we have something similar for this report ? Are there any other options available ?
    Thanks

    Hi
    The same package "IBY_FD_EXTRACT_EXT_PUB" works for payment process request status report also. Please add the logic to get the distribution data in this package and you will see the new XML tags in this report also.
    Hope this helps.
    Vinit

  • Deleting an extra column in the resultset of genericsearch page

    Hello E-Commerce Experts,
    we have a requirement where we need to delete a column in the resultset of the quicksearch trasactions in the genericsearch page.
    In order to hide this column we placed a condition in the action class from where we are getting the contents in the column.
    Now, we are unable to see the contents in the column but we are getting an empty column.
    As the genericsearch page gets genereted dynamically,we are unable to place any condition on that extra column.
    Can anyone suggest how to prevent this column from appearing on the screen. Do we need to set any parameters or anything.
    Thanks and regards,
    venkatesh Saini.

    Hi Venkatesh,
    You do not need to modify Action class for just hiding Trash column.
    Put below lines of code as I have suggested in *genericsearch.jsp* file you will able to hide *Trash* column without modifying Action class.
    You need to do 2 things to achieve your goal.
    First remove Header cell for Trash column and then remove trash icon cell from each row.
    First Search *<%-- // +++++++++++++++ RESULT LIST START +++++++++++++ --%>* comment.
    1) First Hide cell from Header Row.
    <% if ( ! "hidden".equals(listheader.getType())) { %>
         <% if ( listheader.getWriteUnderProperty() == null  ||  listheader.getWriteUnderProperty().length() <= 0  || baseui.isAccessible) { %>
              <% if ( ! firstPty) { %>
                 </th>
              <% }
                  firstPty = false;
              %>
         <%  //Custom Line
              if (!(ui.writeResultListHeader(listheader) == "" || ui.writeResultListHeader(listheader) == null)){  //Custom line
         %>  //custom Line
          <th scope="col" <%=ui.getTabIndex(true)%>>
                   <%=ui.writeResultListHeader(listheader)%>
         <% }%>     //Custom Line
    <% } else { %>
         <br /><%=ui.writeResultListHeader(listheader)%>
    <% } %>
    <% } %>
    2) Now Remove Trash cell from row. Below code with close <TD> tag properly
    <% if ( (! isWriteUnderProperty)) { %>
       <% if((iconPath == null) || (iconPath == "")){%> // Custom line
         <td <%=ui.writeResultTitlePerTD(rowfields)%> <%=ui.getTabIndex(true)%> <%=(iconPath !=null && iconPath.length() > 0 ? "style=\"text-align: center\"": "")%>>
      <% } else {%> // Custom Line
          </td>
      <%}%> //Custom Line
    <% } else { %>
          <br />
    <% } %>
    3) Now hide Cell with Trash icon.
    <% if (iconPath != null && iconPath.length() > 0) { %>
      <% if((iconPath == null) || (iconPath == "")){%> //Custom Line 
    < imge src="<%=iconPath%>"  alt="<%=outField.getString("ICONTITLE")%>"  border="<%=outField.getString("ICONBORDER")%>" width="<%=outField.getString("ICONWIDTH")%>" height="<%=outField.getString("ICONHIGHT")%>" />
      <% } %> //Custom Line
    <% } else { %>
         <%=ui.writeResultlistValue(rowfields , fieldValue)%>
    <% } %>
    I have written //Custom Line where I have added it in standard code.
    I have tested on my local and working fine.
    Let me know if you face any problem.
    eCommerce Developer

  • How to Load data for extra columns exist in the dest schema....

    Hi Experts,
    Please help me.
    I need to replicate data from SchemaA to SchemaB.
    SchemaB has 3 extra columns. Two are varchar2 type and other is Integer type.
    I need to replicate the data from SchemaA to SchemaB in the same database.
    When ever i inserted the data in SchemaA, The extra columns should be populated with some default data.
    And if we did any update on SchemaA then the extra columns on SchemaB should be populated with other Data.
    I wrote some DML_HANDLER but it always populating same data.
    I dont know ow to handle this type of situation.
    my Handler is:
    CREATE OR REPLACE PROCEDURE dml_handler(in_any in sys.anydata)
    IS
    lcr SYS.LCR$_ROW_RECORD;
    rc PLS_INTEGER;
    object_owner VARCHAR2(30);
    BEGIN
    rc := in_any.GETOBJECT(lcr);
    object_owner := lcr.GET_OBJECT_OWNER();
    IF lcr.get_object_owner() = 'SchemaB' THEN
    lcr.add_column('new','SHIP_DATE',sys.anydata.convertvarcahr2('N'));
    lcr.add_column('new','SHIP_ZONE',sys.anydata.convertvarchar2('N'));
    lcr.add_column('new','SHIP_REACH_BY_DATE',sys.anydata.convertnumber(1));
    lcr.EXECUTE(TRUE);
    END IF;
    END;
    BEGIN
    DBMS_APPLY_ADM.SET_DML_HANDLER
    (object_name => 'SchemaB.TAB_TEST',
    object_type => 'TABLE',
    operation_name => 'INSERT',
    error_handler => FALSE,
    user_procedure => 'STRMADMIN.DML_HANDLER');
    END;
    On extra columns in SChemaB
    if its a first insert then the default values are (N,N,1).
    If we did any update the values should be (Y,Y,2)
    Post any script or give me some idea.
    Thanks,
    Ray
    Edited by: user7423698 on Mar 3, 2009 6:12 PM

    CREATE OR REPLACE PROCEDURE dml_handler (
    in_any IN SYS.ANYDATA
    IS
    lcr sys.lcr$_row_record;
    rc PLS_INTEGER;
    cmd_type VARCHAR2 (30);
    BEGIN
    rc := in_any.getobject (lcr);
    cmd_type := lcr.get_command_type;
    IF cmd_type = 'INSERT'
    THEN
    lcr.set_values ('new', lcr.get_values ('new', 'N'));
    lcr.add_column ('new', 'type', sys.anydata.convertchar ('I'));
    lcr.set_values ('old', NULL);
    lcr.add_column ('new', 'time', sys.anydata.converttimestamp (systimestamp));
    lcr.execute (TRUE);
    END IF;
    END;
    Set the DML handler for INSERT and write a similar one for UPDATE.

  • KSB1 user exit & extra column.

    Hi
    How do I add my own extra column on the report "Display actual cost line items for cost centers' - SAP transaction KSB1.
    Thanks
    Rendani

    Hi,
    Pls find the user exits available for the tcode :KSB1 below:
    COCCA001  Customer enhancement to cost center authorization checks
    COCCA002  Customer Functions for Organizational Authorization Checks
    COOMEP01  CO-OM: Information system -> line item reports
    COOMKA01  Customer Fields for Cost Element Master Data
    COOMKS01  Customer Fields for Cost Center Master Data
    COOMKS02  Cost Center: Checks When Saving
    COOMKS03  Cost Center: BAPI Enhancements
    COOMLA01  Customer Fields for Activity Type Master Data.
    Pls reward if helpfull.
    Regards,
    Sharath

  • KSB1  extra column or user exit to add extra fiel on report.

    Hi
    How do I add my own extra column on the report "Display actual cost line items for cost centers' - SAP transaction KSB1.
    Thanks
    Rendani

    Hi,
    Please search for OSS note in market place.
    I have worked on it, but I donot remember the OSS note number.
    Thanks,
    Sriram Ponna.

  • Using SAP Tokens & showing extra columns to choose

    I have a Crystal Report where I have a SAP token parameter to select a budget scenario to run the report based on.
    My token is selecting the 3 columns I need to display inorder to select the correct scenario - AbsID, Name & FinancYear.
    Budget@Select AbsID, Name,FinancYear  from OBGS order by 3
    When I preview in SAP my drop down box only gives me AbsID and name - which is of course a list diplaying "Main Budget" repeated for the number of financial year I have in the database.
    As these Main Budgets can (and have) been created in any order, it is impossible toexpect the users to select the correct budget from the displayed data.
    As there is no direct join from OBGS to OFPR on financial year, I can't work out how to either display the additional column in the choose from list, or filter my selection statement so it will only give scenarios that relate to the financial year for the period I have selected
    Any sensible suggestions welomed!

    Hi Julie,
    Remember that combo box controls in SAP can only display two values, a code and description, or in the case of report tokens the first two columns you specify in the token query. Seeing as you need the third column to distinguish between the first two sets of values a combo box is no use to you on it's own.
    The following is off the top of my head and untested but what about either replacing the combo box with a CFL that shows as many columns as you need (and by nice coincidence the first column in that table is the value you want selected, AbsID), OR, created two report parameters the first displays the Financial Year and the second displays the AbsID and Name values for the selected FinYr?
    Remember I'm writing this free hand so you'll need to test to make sure it's ok.
    Replace Cbo with CFL
    Budget@Select * From OBGS order by 3
    This should display a CFL where you can add any extra columns needed from the form settings.
    Two Cbo Parameters
    FinYr@ SELECT F_RefDate FROM OFPR
    Budget@Select AbsID, Name from OBGS WHERE FinancYear = ('FinYr@') order by 3
    So you can reference one parameter name inside another to limit the results displayed by the second parameter.
    One of the above or some variation should get you what you need.
    Regards,
    Andrew.

  • Adding extra column in FSG

    How can we add extra column beyond 20 in FSG report ?Is it possible through standard functionality ?
    Regards
    Jogendra

    >
    Doesn't it depend on the width of each column rather
    than # of columns? (afterall all those columns need
    to fit as per the paper size right?)
    Thanks,
    ChiruHi
    As per GL User Guide the limit is given for 20 columns and when we tried to add one more it poped up with a message stating the limitations.So,is there any other work around available?
    Thanks
    Jogendra

  • Extra column in CS12

    Hi!
    I would like to show a new column from material master in the list generated in transaction CS12.
    I have checked these links but I cannot solve my problem:
    user exit for CS11, CS12, CS13 (BOM ALV browser)
    Add Extra Columns into Multi-Level Explode BOM (List Report)  - CS12
    Regards,
    Imanol Dehesa

    The problem started when I added my cycle count to the data file. I'm getting a cycle count but it seems like it's in the form of x,y. The data looks like this.  ,1,1.2,1.2,1.2,1.2
                                                          ,1,1.2,1.2,1.2,1.2
    This represents the first cycle. The numbers looks good, other than that leading "comma", like there's a phantom value there.
    Attachments:
    snip1.png ‏30 KB

  • Extra columns in report by pl/sql

    Hi,
    In my application (about wheater data) I need a report with an undefined number of columns. E.g. a user wants data about temperature and wind. Another user may want to see temperature, wind, humidity en may-be more.
    I've build a collection with the result of the chosen parameters. After a submit I try to fill in a report according to the following PL/SQL-block:
    declare
    q varchar2(4000);
    cursor c1 is
    select c001 from htmldb_collections
    where collection_name = 'ROEL'
    order by c001
    begin
    q := ' select datum, tijd_code';
    q := q||', sum(decode(kanaal,15,gemiddelde,0)) as gem_15';
    q := q||', sum(decode(kanaal,33,gemiddelde,0)) as gem_33';
    for cc1 in c1
    loop
    q := q||', sum(decode(kanaal,'|| cc1.c001||', gemiddelde,0)) as gem_'||cc1.c001;
    end loop;          
    q := q||' from meteo_data where 1=1 ';
    q := q||' and datum between nvl(:p1_startdatum,''01-jan-03'') and nvl(:p1_einddatum,''31-dec-99'')';
    q := q||' and tijd_code = 3';
    q := q||' group by datum, tijd_code';
    htp.p(q);
    return (q);
    end;
    When I make no selections (collection empty) then everything works correct.
    But when I do make some choices, then a "report error: ORA-01403: no data found" is displayed.
    I think this has to do with the extra columns that are defined in the FOR-Loop.
    What am I doing wrong??
    And can someone help me to solve this problem??
    Thanks in advance,
    Roel

    Something wrong ??
    I posted this message 4 september 2004
    Roel

  • Add Extra Columns into Multi-Level Explode BOM (List Report)  - CS12

    Hi Experts,
    I wish to add extra columns into the list report generated from program RCS12001 (calling from t-code: CS12). The current layout will be AS-IS and the only way i wish is to add-in few new columns in the report.

    Hi
    declare select-options instead of parameters
    for converting a report to ALV
    create a field catalog.
    for this two option declare a itab with       
    fcat    TYPE slis_t_fieldcat_alv
    and pass the field name,descr etc to fcat and append the same.
    or create structur same as your itab and pass the same with FM
    'REUSE_ALV_FIELDCATALOG_MERGE'
    use either <b>reuse_alv_grid_display or reuse_alv_list_display</b> .
    and pass the itab.
    thanks
    Shiva

  • Af:table. How to add extra column.

    Hi,
    On my page I have a table that is generated from a view object. The attributes from the VO are coming from a entity object.
    table looks fine on my page. But now I need to add a extra column on the table and the value for that is coming from a other table then of the entity object.
    How can I make tis?
    Is it possible to have a entity object for more then 1 table?
    Should I make a VO that is filled with a query instead of a entity object?
    The VO is used on many pages, so can't change to much on that.
    Hope you have some good suggestions.
    thanks in advance.

    Hi:
    You can have VO with more one entity.
    I recomended to add attribute from entities and use which need.

Maybe you are looking for

  • HI there, need help in thinking of a logic.

    Good Day! I'm having trouble thinking of the logic in this simple (but tediously hard for me) problem. I've got two internal tables, say table A and table B. I need to output records from table A that do not match records from table B. and vice versa

  • Can send but not reply or forward on all mobile devices

    Hi all, I have a 2013 environment with MDM also in place. Just recently all mobile devices (iOS, Android, Windows OS) have stopped being able to reply or forward to emails on their mobile device. Nothing has changed in the environment that I'm aware

  • Acrobat Reader on Windows 2008 Server

    hello, I am setting up Windows 2008 servers which are 64-bit versions and I cannot get the reader to install. It will download but it will just disappear at the very end. I had the same problem on 2003 64-bit and then someone else got it to work (but

  • Numeric keyboard problems

    can anyone help with advice regarding my keyboard problem. Basically, I have tried two different apple keyboards and neither of them will work on the numeric keypad. Does anyone know what is wrong?

  • IBook Space Bar

    I have a refurbished iBook G4 with a space bar that is not responding when pressed on either end, although it does work when pressed in the center. Is this just wear on a key that is weighted from the center or is this typical of the keyboard.