How to show af:table / af:column footer ?

It is possible at all ?
Here is what doc says:
footer - the component used to render the table footer. This facet existed in 10.1.3, but is currently not supported in RichTable and RichTreeTable
Nor I can show af:column footer facet
Any help ?!?

Hi,
This issue is present in TP3, but I couldn't reproduce it in one of the latest build so this is fixed for upcoming releases.
Juan C.

Similar Messages

  • How to show a table in Excel as it is.. in Siena? PLZZ ANSWER!

    My Excel sheet has a table named 'Compliance' with 5 columns....'S. No.' , 'Specifications', ....(so on).... , 'Remarks' and data entered in rows.
    Now.. I want to show this table as it is in my Siena App. How do I do this??
    Also.. I want to add another column(6th) in the app which contains checkboxes ...such that I can Check some of the rows (from Compliance table in app) I want, and add them to a separate Collection that can be viewed on another screen.
    Please Help!!!!

    Just a quick example if needed.
    Create a Custom Gallery (Visuals < Galleries < Custom Gallery (choose the one on the right).
    Move the Gallery to wherever you want it on the page.
    Change the following:
    Design < Template Size: 40
    Design < Template Padding: 5
    Data < Items: Compliance
    Assuming you selected the Custom Gallery on thr right, Template Size refers to the height of the Template, I just used 40 as a quick example.
    The Temnplate Padding refers to the empty space between each template, and the space between the templates and the Gallery.
    Click inside the top template on the Gallery:
    Add a Label: Visuals < Label
    Set its Text to 'S. No.'
    Data < Text: ThisItem!'S. No.'
    Assuming you clicked inside the top template in the Gallery, you will see the lable repeated in each of the templates below it.   If it didn't, delete it, then re click inside the template, ad add it.
    Adjust the width of the label to the widest useage expected, as it will not grow automatically.
    Add another Label: Visuals < Label
    Set its Text to Specifications
    Data < Text: ThisItem!Specifications
    Notice the difference between the two data sources.  Since S. No contains a space, you have to put a set of ' around it.   The other does not have a space, so it soesn't use the '
    Drag the Label to the right of the first label.
    Repeat for the remaining fields.
    After all of the fields are in the Gallery, add a CheckBox:
    Visuals < CheckBox
    Change the text next to the TextBox with its Text property.
    To use the CheckBox to Collect that specific record to Collection2, use:
    Behavior < OnChecked: Collect(Collection2, ThisItem)
    It is usually usefull to also remove the item if UnChecked:
    Behavior < OnUnChecked: Remove(Collection2, ThisItem)
    -Bruton

  • How to show original table in table format from Power Pivot?

    Hi 
    I am using Excel 2013 Power Pivot to import data from LOB SQL database. I have Sales table as follow.
    The table is loaded into Power Pivot data model to produce various reports and charts. One of the report is to show the table as it is with selected columns. The business also want using Slicers to view a sub set of the rows in the table.
    Is there anyway in Excel to show the tables with selected columns from the Power Pivot date model table without Power View? 
    Regards
    Joe Lee
    jl

    the simplest thing would be to use a pivot table and set its layout to Tabular Form
    1) select your Pivot Table
    2) go to Design --> Report Layout --> Show in Tabular Form
    4) set Design --> Report Layout --> Repeat All Item Labels to true
    3) add the necessary fields to the Rows-section of your pivot table
    4) remove all subtotals
    5) connect the existing slicers to your Pivot Table
    hth,
    gerhard
    Gerhard Brueckl
    blogging @ http://blog.gbrueckl.at
    working @ http://www.pmOne.com

  • URGENT!!! how to render af:table af:column as checkbox in ADF faces

    Hi!!
    How i can render table column as checkbox.
    I used <af:selectBooleanCheckbox id="my CheckBox"
    value="#{row.CheckBox}" />
    and it is visualizied az checkbox in table but value is not set.
    I mean that when i make setAttribute("CheckBox", "Y") checkbox is not checked.
    My attribute CheckBox is transient String attribute with default value "N".
    i will appreciate if you give ideas how to render colomn or some links to read about it, because i didn't find anything in internet.

    Hi Timo,
    Thanks for info, But I am not using any Business components in my case, Also this article explains about re-Querying , Is there any way without re-querying we can apply the filter with '>& < ' operators on date columns?
    Thanks

  • How to show next set of columns in a adf table

    hi,
    i want to display 999 no of columns in a adf table. since it is not a better way to show all the columns in the adf table at a time, we want to show 10 columns at first and by using the next and previous links the user can see the next and previous set of columns. i dont know how to do this. please help me.
    parameswaran

    You have to put table name in Capital letters
    Like
    SELECT COUNT(1)
      FROM user_tab_columns
    WHERE table_name = 'EMP';
    or
    SELECT COUNT(1)
      FROM user_tab_columns
    WHERE table_name = UPPER('Emp');Regards
    Arun

  • How to show icon in a column of a table?

    How to display an icon in a column of a table UI element and this icon is to be displayed based on values in the table row?

    I normally use a calculated attribute inside the table's data source node for this.
    Add an attribute "Icon", type=string, calculated=true, read-only=true, under the data source node.
    (If the data source node uses structure binding and does not allow to add an attribute, add a helper value node instead, cardinality=1:1, selection=1:1, and add the attribute to this node.)
    In the get-method for the calculated attribute, you get the node element corresponding to the table row as parameter. Depending on other attributes in this node element, select an icon URL and return it.
    If you put your icons inside the src/mimes/<component> folder, you can simply return the file name of the icon.
    Don't use a Button as table cell editor but rather an Image or LinkToAction.
    Armin

  • How to show the LOV display column in a field of type ''popup''

    Hi All,
    I've defined a form (no matter table/master-details/procedure) with a text item of type "popup", and have chosen a specific LOV.
    At runtime, after the user chooses a value within that field, He sees the return column, (not the display column) of the LOV.
    This behavior is different in field type combobox,
    where the user sees the display column, ( this is the expected behavior when dealing with LOVs ).
    How can I, in a popup type field, show the user the LOV display column rather than its code ?
    Any help will be appreciated !

    I had a Tar on this a while ago. Oracle's response is that's the way it is, but :
    The problem is that form is storing the ID in the table but when customer queries the form, the ID is displayed, which means nothing to the user.
    This is working as it should by design.
    An alternative is to add a non-database field to the form to display the name based on the ID fetched from the table or to build the form in a manner that it will query
    from both tables, the one storing the ID and the one storing the name, as a loookup table.
    Suggested review Notes: 125272.1, 124072.1, 263923.1.
    I believe Note:125272.1 would work for you if you have a primary LoV displaying the name but populating the ID from the first table. The second LoV can query from the table storing the name (instead of making it a non-database column). When the first LoV is used, the second will be refreshed, displaying the actual name on the for
    m on your non-database field, just for display purposes.

  • How to know a table's column name and its types

    if there has one table called "myEmp" stored in my database, it uses to hold employees' information. when a newcomer is hired, the HR will use a register page to register his/her information. for the flexible purpose, i couldn't know how many columns in this table, since it may be added two columns or deleted one column in one day, all i should do is show all fields in the register page and get all data to insert into this table.
    so, how can i know one table's structure in java? i know there has a method in DatabaseMetadata class: getTables(catalog, schema, tablename, tabletype), it's return is resultset . i wrote a code below:
    DatabaseMetaData md = conn.getMetaData();
    ResultSet md.getTables(null, null, tablename, types);
    i set catalog and schema both are null since i don't know what else can i set?
    the ResultSet doesn't contain the information i want.
    is there anyone can tell me where i am wrong and the right method? thanx a lot!
    sincerely
    Jasmine

    use ResultSetMetaData to get Column names

  • How to show or Hide Generic Column in a regular report

    Hi All,
    I have created report based on "SQL query (pl/sql function body returning sql query). It returns columns based on some conditions. I have total 60 generic columns like (COL1,COL2....COL60) but it returns 18 or 20 columns based on my conditions, how can I hide the columns that I don't needed. My column heading is based on function return by ':' separated. My function returns number of columns also. Is there any we I can show only those columns which contains data. My report is exactly similar to the default "SQL query (pl/sql function body returning sql query). I didn't find any logic how they are doing this show and hide. I appreciate any ones help.
    Thanks,

    Hi there,
    Somehow you need to find out how many columns your dynamic select will return (by what you said it seems that your procedure returns this information). Then store that number in a hidden page item, say Pnn_COUNT.
    Then, for the 19th and 20th columns in the report add these conditions:
    Column 19: :Pnn_COUNT >= 19
    Column 20: :Pnn_COUNT >= 20
    I hope this helps.
    Luis

  • How to show a value in column when condition is true?

    Assume I have the following simplified SELECT statement:
    SELECT a, b, ???
    FROM tab;
    In the third column a value of "yes" should appear when the following condition is true:
    tab.c = tab.d
    Otherwise the value should be "no" (or even blank).
    How can I achieve this?
    The solution should be more general for situation if many tabs are involved,....
    Peter

    How can I achieve this?
    The solution should be more general for situation if many tabs are involved,....So do you expect a generalized SQL statement that handles are arbitrary number of tables with arbitrary column names?
    It would be helpful if you provided DDL (CREATE TABLE ...) for tables involved.
    It would be helpful if you provided DML (INSERT INTO ...) for test data.
    It would be helpful if you provided expected/desired results & a detailed explanation how & why the test data gets transformed or organized.

  • How to disable Oracle table NUMBER column type auto round-up

    Below is an example,
    SQL> create table a
    a_col1 NUMBER(8, 2)
    SQL> update a set a_col1=1.999 where ...
    I found column 'a_col1' of table 'a' value will be 2.00, but the application is for some financial calculation and doesn't allow any difference of the amount value (like, 1.999 <> 2.00), what I want to achieve is to disable the Oracle NUMBER type auto round-up and make above 'update' SQL fail with error, so I can trap the error and handle it in the program.
    Could anyone advise me how to achieve above or any good suggestion ? Thanks.

    user12317666 wrote:
    Below is an example,
    SQL> create table a
    a_col1 NUMBER(8, 2)
    SQL> update a set a_col1=1.999 where ...
    I found column 'a_col1' of table 'a' value will be 2.00, but the application is for some financial calculation and doesn't allow any difference of the amount value (like, 1.999 <> 2.00), what I want to achieve is to disable the Oracle NUMBER type auto round-up and make above 'update' SQL fail with error, so I can trap the error and handle it in the program.
    Could anyone advise me how to achieve above or any good suggestion ? Thanks.Oracle does not auto-round.
    you have data presentation problem; not data storage problem.

  • How to create tree table with column headers

    hi,
    when i drag and drop a view object onto my .jspx page as a af: tree table ,
    am not able to get the column header of each column. all the columns in the table are just clubbed together not separated as in af:table.
    can anyone say how the column headers are created for the columns when we drop a view object as a tree table?

    Hi,
    this is not an option with the treeTable as it gets rendered by default when dragging and dropping the collection to the page. I haven't tried it, but I think you will have to check which node is getting rendered and based on this information add your own row layout . Sounds like a bit of coding work
    Frank

  • How to show another table's field with LOV??

    Hi all!
    On my JSP application I'm using an LOV based on 2 tables (datasources). I take the EMP and DEPT tables as an example:
    The user can click on the LOV button to select a department for a specific employee. I use the following code for the LOV:
    <jbo:DataSource id="dsEmp" appid="am" viewobject="EmpView" />
    <jbo:DataSource id="dsDept" appid="am" viewobject="DeptView" />
    <jbo:InputSelectLOV datasource="dsEmp" dataitem="DeptId" displaydatasource="dsDept" displaydataitem="Id,Dname" displayvaluedataitem="Id" formname="my_form" />
    So, the LOV windows shows the ID and Department Name from the DEPT table and returns Dept.Id into Emp.DeptId. This works fine but in the Edit JSP I want to display the Department Name instead of the Department Number. I don't know how I can pick the Department Name from the DEPT table. I tried to change the displayvaluedataitem="Name" but, as I thought, this didn't work.
    Is there any possibility to handle this problem?!
    Thanks a lot!

    Hi all!
    On my JSP application I'm using an LOV based on 2 tables (datasources). I take the EMP and DEPT tables as an example:
    The user can click on the LOV button to select a department for a specific employee. I use the following code for the LOV:
    <jbo:DataSource id="dsEmp" appid="am" viewobject="EmpView" />
    <jbo:DataSource id="dsDept" appid="am" viewobject="DeptView" />
    <jbo:InputSelectLOV datasource="dsEmp" dataitem="DeptId" displaydatasource="dsDept" displaydataitem="Id,Dname" displayvaluedataitem="Id" formname="my_form" />
    So, the LOV windows shows the ID and Department Name from the DEPT table and returns Dept.Id into Emp.DeptId. This works fine but in the Edit JSP I want to display the Department Name instead of the Department Number. I don't know how I can pick the Department Name from the DEPT table. I tried to change the displayvaluedataitem="Name" but, as I thought, this didn't work.
    Is there any possibility to handle this problem?!
    Thanks a lot! PS: I'm using JDeveloper9i

  • How to show all table fields in correct alv disply

    Hi all,
    This is my report that disply in ALV . but this is only displying the join table (t_p0001_p0002) fields.i want to disply the other two table fields i.e t_pa0315 and t_pa0007.what is the logic to ALV disply the other two table fields like the table t_pa0001_pa0002.pls help me regarding this.
    send me the code its urgent.
    thanks!
    Vipin
    pls find the code below:->
    REPORT Y_WP03 .
    DEFINE m_fieldcat.
      add 1 to ls_fieldcat-col_pos.
      ls_fieldcat-fieldname   = &1.
      ls_fieldcat-ref_tabname = &2.
      append ls_fieldcat to lt_fieldcat.
    END-OF-DEFINITION.
    TYPE-POOLS: slis.                      " ALV Global types
    tables:pa0001,
           pa0315,
           pa0007,
           disvariant.
         Selection-Screen
    SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001.
    *SELECTION-SCREEN SKIP 1.
    SELECT-OPTIONS: s_pernr FOR pa0001-pernr.            " Personnel No
    SELECT-OPTIONS: s_orgeh FOR pa0001-orgeh .           " Organization unit
    SELECT-OPTIONS: s_werks FOR pa0001-werks.            " Personnel Area
    SELECT-OPTIONS: s_plans FOR pa0001-plans.            " Position
    SELECT-OPTIONS: s_ebeln FOR pa0315-ebeln.            " Purchase order
    SELECTION-SCREEN END OF BLOCK blk1.
    SELECTION-SCREEN BEGIN OF BLOCK b2k2 WITH FRAME TITLE text-002.
    *SELECT-OPTIONS: s_var FOR disvariant-variant.
    PARAMETERS: p_disva1 LIKE disvariant-variant.
    SELECTION-SCREEN END OF BLOCK b2k2.
                     Type Definition                                     *
    TYPES :
    BEGIN OF ty_pa0001_pa0002,
        pernr TYPE pa0001-pernr , " Personnel no.
        endda TYPE pa0001-endda , " end date
        begda TYPE pa0001-begda , " start date
        bukrs TYPE pa0001-bukrs , " company code
        werks TYPE pa0001-werks , " Personnnel area
        persg TYPE pa0001-persg , " Employee group
        persk TYPE pa0001-persk , " Employee subgroup
        btrtl TYPE pa0001-btrtl , " Personnnel subarea
        abkrs TYPE pa0001-abkrs , " Payroll area
        kostl TYPE pa0001-kostl , " cost center
        orgeh TYPE pa0001-orgeh , " Organizational Unit
        plans TYPE pa0001-plans , " Position
        nachn TYPE pa0002-nachn , " Last name
        vorna TYPE pa0002-vorna , " First name
        midnm TYPE pa0002-midnm , " Middle name
      END   OF ty_pa0001_pa0002 ,
    BEGIN OF ty_pa0315,
       pernr TYPE pa0315-pernr , " Personnel no.
       kostl TYPE pa0315-kostl , " Sending cost center
       lstar TYPE pa0315-lstar , " Activity type
       werks TYPE pa0315-werks , " Plant
       lifnr TYPE pa0315-lifnr , " Vendor number
       ebeln TYPE pa0315-ebeln , " Sending pruchase ord
       ebelp TYPE pa0315-ebelp , " Sending PO item
       lstnr TYPE pa0315-lstnr , " Activity number
    END   OF ty_pa0315,
    BEGIN  OF ty_pa0007,
      pernr TYPE pa0007-pernr,
      schkz TYPE pa0007-schkz,
    END  OF ty_pa0007.
    *BEGIN  OF ty_pa0002,
    pernr TYPE pa0002-pernr,
    nachn TYPE pa0002-nachn,
    vorna TYPE pa0002-vorna,
    midnm TYPE pa0002-midnm,
    *END  OF ty_pa0002.
                     Data Declaration                                    *
    DATA :
      t_pa0001_pa0002 TYPE STANDARD TABLE OF ty_pa0001_pa0002 ,
      w_pa0001_pa0002 TYPE ty_pa0001_pa0002 ,
      t_pa0315 TYPE STANDARD TABLE OF ty_pa0315 ,
      w_pa0315 TYPE ty_pa0315 ,
      t_pa0007 TYPE STANDARD TABLE OF ty_pa0007 ,
      w_pa0007 TYPE ty_pa0007 .
    t_pa0002 TYPE STANDARD TABLE OF ty_pa0002 ,
    w_pa0002 TYPE ty_pa0002 .
    START-OF-SELECTION .
      SELECT a~pernr
             a~endda
             a~begda
             a~bukrs
             a~werks
             a~persg
             a~persk
             a~btrtl
             a~abkrs
             a~kostl
             a~orgeh
             a~plans
             b~nachn
             b~vorna
             b~midnm
             INTO TABLE t_pa0001_pa0002
             FROM pa0001 AS a INNER JOIN pa0002 AS b
             ON apernr = bpernr
             WHERE a~pernr IN s_pernr
             AND   a~werks IN s_werks
             AND   a~orgeh IN s_orgeh
             AND   a~plans IN s_plans.
      SORT t_pa0001_pa0002 BY pernr .
      IF NOT t_pa0001_pa0002[] IS INITIAL .
        SELECT pernr
               kostl
               lstar
               werks
               lifnr
               ebeln
               ebelp
               lstnr
               FROM pa0315
               INTO TABLE t_pa0315
               FOR ALL ENTRIES IN t_pa0001_pa0002
               WHERE pernr = t_pa0001_pa0002-pernr
               AND   kostl = t_pa0001_pa0002-kostl
               AND   ebeln IN s_ebeln.
        SELECT pernr
               schkz
               FROM pa0007
               INTO TABLE t_pa0007
               FOR ALL ENTRIES IN t_pa0001_pa0002
               WHERE pernr = t_pa0001_pa0002-pernr.
        SELECT pernr
               nachn
               vorna
               midnm
               FROM pa0002
               INTO TABLE t_pa0002
               FOR ALL ENTRIES IN t_pa0001
               WHERE pernr = t_pa0001-pernr .
      ENDIF.
    PERFORM f_display_data.
    FORM f_display_data.
      DATA:
        ls_fieldcat TYPE slis_fieldcat_alv,
        lt_fieldcat TYPE slis_t_fieldcat_alv.
    Build the field catalog
      m_fieldcat 'PERNR' 'PA0001'.
      m_fieldcat 'NACHN' 'PA0002'.
      m_fieldcat 'VORNA' 'PA0002'.
      m_fieldcat 'MIDNM' 'PA0002'.
      m_fieldcat 'BUKRS' 'PA0001'.
      m_fieldcat 'WERKS' 'PA0001'.
      m_fieldcat 'PERSG' 'PA0001'.
      m_fieldcat 'PERSK' 'PA0001'.
      m_fieldcat 'BTRTL' 'PA0001'.
      m_fieldcat 'ABKRS' 'PA0001'.
      m_fieldcat 'ORGEH' 'PA0001'.
      m_fieldcat 'PLANS' 'PA0001'.
      m_fieldcat 'SCHKZ' 'PA0007'.
      m_fieldcat 'KOSTL' 'PA0315'.
      m_fieldcat 'LSTAR' 'PA0315'.
      m_fieldcat 'WERKS' 'PA0315'.
      m_fieldcat 'LIFNR' 'PA0315'.
      m_fieldcat 'EBELN' 'PA0315'.
      m_fieldcat 'EBELP' 'PA0315'.
      m_fieldcat 'LSTNR' 'PA0315'.
      m_fieldcat 'BEGDA' 'PA0001'.
      m_fieldcat 'ENDDA' 'PA0001'.
    Display the list
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program      = sy-cprog
          i_callback_user_command = 'USER_COMMAND'
          it_fieldcat             = lt_fieldcat
        TABLES
          t_outtab                = t_pa0001_pa0002.
    ENDFORM.                               " F_DISPLAY_DATA_VBAK
          FORM USER_COMMAND                                             *
    FORM user_command USING u_ucomm     TYPE syucomm
                            us_selfield TYPE slis_selfield.     "#EC CALLED
      CASE u_ucomm.
        WHEN '&IC1'.
          READ TABLE t_pa0001_pa0002 INDEX us_selfield-tabindex INTO
    w_pa0001_pa0002.
          CHECK sy-subrc EQ 0.
      ENDCASE.
    ENDFORM.                               " USER_COMMAND

    Hey,
    Look at ur code.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = sy-cprog
    i_callback_user_command = 'USER_COMMAND'
    it_fieldcat = lt_fieldcat
    TABLES
    t_outtab = <b>t_pa0001_pa0002</b>.
    Here you're passing only the join table t_pa0001_pa0002. If you want to display the other tables as well, then u must have an internal table that has the columns of all the 3 tables. Then u need to buil;d the fieldcatalog accordingly and then display that table,
    Cheers,
    Sam

  • How to hide the table control column in module pool

    Dear Experts,
    Please help me on this
    I have 2 screens 9000 and 9001 . In screen 9000 I have 2 radio buttons if I select the 2nd radiobutton then the screen  9001 should display inthat some column has to be hide inthe table control. I have used this code but still it is not hiding please help me on that
    I used this code in PBO of 9001 screen
    LOOP AT SCREEN.
        IF wopr = 'X'.
          IF screen-group2 = 'ABC'.
            IF screen-name = 'ZMMT_EKKO-MATNR' or screen-name = 'ZMMT_EKKO-BANFN'.
            screen-active = ''.
              screen-invisible = '1'.
              screen-input = ''.
              MODIFY SCREEN.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDLOOP.
    Even I tried this code also in the same screen 9001
    loop at tbl_rfq-cols into cols.
    IF wopr = 'X'.
    IF screen-group2 = 'ABC'.
    IF cols-screen-name = 'ZMMT_EKKO-MATNR' or cols-screen-name = 'ZMMT_EKKO-BANFN'.
    cols-screen-input = '0'.
    cols-invisible = '1'.
    endif.
    MODIFY tbl_rfq-cols FROM cols INDEX sy-tabix.
    endif.
    endif.
    endloop.

    Hi Balaji,
    To hide a column in a table control on screen.
    In the PBO of the screen, inside
    loop with control <tab_ctrl_name>.
    module modify_tab.
    endloop.
    Say for a column, you take group1 as 'ABC'.
    In this module you can use the group for the input/output fields and the display/hide them as per your requirements.
    if <condition>.
    loop at screen.
      if screen-group1 = 'ABC'. "say textbox (column for a table) has group1 as ABC
       screen-invisible = 'X'. "hide a column
       screen-active = ' '.
      endif.
      modify screen.
    elseif <condition>.
    loop at screen.
      if screen-group1 = 'ABC'. "say textbox (column for a table) has group1 as ABC
       screen-invisible = ' '. "display a column
       screen-active = 'X'.
      endif.
      modify screen.
    endif.
    Similarly, you can use this code for other columns also.
    Hope this solves your problem.
    Thanks & Regards,
    Tarun Gambhir

Maybe you are looking for

  • Get site collection url, site url and list url from a full uri?

    If I have incoming: only URI's of the format http://a.b.c/d/e/f/g/h/i/j/k/l/m/n/o/p.docx (And these are coming from multiple farms and multiple site collections) (and i have a web api on some remote server) (and have all the authentication details) A

  • Using albums to share photos

    I need to share photographs in an online photography class I am taking by setting up an album and giving the class access to look at them with an URL link. Can I do this using Photoshop Elements?

  • Would like Table Continuation Variable added to a paragraph style, such as to a table title

    My groups uses both Frame 7.2 and Frame 9 and we would like to include the Table Continuation variable to our table title paragraph tag definition so that we don't have to manually add the variable. Is this possible now? If so, how? Thanks Sherri McC

  • Billing messages in chinese...why?!?!

    My profile clearly shows an adress in Sweden, and language set to Swedish, yet whenever I auto-purchase and get skype and email purchase notifications the messages are in Chinese.  I tried to look at my profile settings and other options, but I am cl

  • Vocal Transformer great but makes warble, impossible to remove?

    The male to female is great . But i don't like that it makes a warble sound. and there doesn't seem t obe a way to remove it. I have soundTrack program too, is there a way i could take a Garageband made sound of my voice with Voice changer aplied to