Dynamically modifying the number of Form detail rows

Hi,
A challenge for you all!
I am building a product details system in Portal forms.
One of the screens is a Product Ingredients form with Product as the master block and ingredients as the Detail block. There can be between 1 and 20 ingredients in any 1 product and as these all have to sum to a volume percentage of 100% the client would like to see all ingredients for a product on 1 screen and not have to do Next/Previous to see them all.
As you increase detail rows on a master detail form the performance of the form decreases dramatically so I would like to minimise the number of detail rows displayed for each product to maximise performance.
To this end I wish to dynamically modify the number of detail rows displayed to match the number of ingredients on a product as that product is queried.
I can handle figuring out how many rows I want to set the page to but have not been able to figure out how to change the number of detail rows displayed at run time.
Anyone know how (or if!) this is possible ?
All help gratefully recieved
Andy

The rownum pseudo-column hold the number of the row but it doesn't work like you expect. It is assigned before sorting for example and it is not absolute. SQL conceptually deals with sets and sets have no inherent order. See http://www.oracle.com/technology/oramag/oracle/06-sep/o56asktom.html
If you want to have an absolute number in a row you will need to maintain it yourself with PLSQL code.

Similar Messages

  • In the new iOS-7 Safari, has the "reader" function been changed to eliminate the option to modify font size (and hence to modify the number of words per line), or is it just that I can't find how to do that?

    In the new iOS-7 Safari, has the "reader" function been changed to eliminate the option to modify font size (and hence to modify the number of words per line), or is it just that I can't find how to do that?

    iOS 7
    Seperate text size modification is no longer available in Safari Reafer.
    Use Settings.
    Settings >General > Text Size

  • Dynamically setting the number of collumns...

    Hi,
    I have a report that I need to build. In the requirements I need to dynamically set the number of columns based on the parameters given. I have some ideas on how to do this by building the layout to include all the columns. Then show or hide them based on the parameters passed. I was just wondering if anyone has tried to do something like this? If so, were you successful, and what were some of the major stumbling blocks you ran into. Or if you know of any links to documentation that would help would be great.
    On a side note, would doing something like this be handled better if done in Discoverer? I have not used Discoverer before, so I'm not sure myself.
    Thanks,
    Tom

    Hi Tom,
    You will find useful information in these notes on Metalink:
    261313.1: How to hide columns dynamically without blank spaces ?
    1074438.6: How to dynamically set labels based upon globals
    28533.1: How to create a dynamic report using lexical parameters for column names
    And a comprehensive guide to using lexicals (you will have to use lexicals for column names)
    115072.1: Complete Resource Reference for using Lexical Parameters in Oracle Reports
    Navneet.

  • Dynamically determining the number of cols in Select stmt

    Hi,
    I was wondering if it is possible to dynamically determine the number of cols in Select stmt.
    For example:
    If it had:
    Select empno, lname from emp where empno = 32
    then I'd like it to return 2.
    Thanks in advance.
    Sincerely,
    Nikhil Kulkarni

    Hi,
    I was wondering if it is possible to dynamically determine the number of cols in Select stmt.
    For example:
    If it had:
    Select empno, lname from emp where empno = 32
    then I'd like it to return 2.
    Thanks in advance.
    Sincerely,
    Nikhil Kulkarni

  • Dynamically use page number in form field on spawned pages?

    I have a form with spawned pages.  JS for spawning page(s) works fine.  However, one text field on template is driving me nuts.  I would like this field ("CaseNum") to dynamically display page number, since page number also corresponds to case number.  On templage ("getcase"), I can calculate value for CaseNum using custom calc script (event.value = this.PageNum).  But that doesn't work because every spawned page gets the same value (ie, whatever is last spawned page number). I also tried JS below, using P0.getcase.CaseNum as the field on the template in which I want the page number/case number to be displayed:
    var oPage = this.pageNum;
      this.getField("P" + oPage + ".getcase" + ".CaseNum").value = oPage;
    But, this doesn't work either, because the field on the spawned page automatically gets the prefix of P + page number + .getcase appended to the field name.  Is there any way to dynamically used page number in a form field on spawned pages?  If so, how? Note that while I am trying to use a dynamic case number on spawned pages, it presents the same issue as dynamically displaying page numbers on spawned pages.  I'm a JS newbie, so any help appreciated.  I've searched high and low on web and in forums and couldn't find the answer.  Thx.

    http://forums.adobe.com/thread/1160899
    7.George Johnson,
    28-Feb-2013 09:42   in reply to natelfo
    Is this what you mean?
    Also see:
    http://www.planetpdf.com/developer/article.asp?ContentID=6466
    http://www.wordwizardsinc.com/blog/finding-the-fieldname-prefix-on-acrobat-acroform-spawne d-template-pages-using-javascript-functions/

  • Is there a way to dynamically determine the number of out parameters for a server side procedure?

    Hi,
    Below is a helper method used for calling a server-side function which loops through the inbound bindVars parameter to populate the function's IN parameters. Is there a way to dynamically determine the IN/OUT parameters based on the procedure name in the stmt parameter? No members of the CallableStatement class seemed promising, but the getParameterMetaData() method in the PreparedStatement class seemed like it could be helpful lead. However, I have not found any detailed descriptions (yet) of how to use it.
    protected Object callStoredFunction(int sqlReturnType, String stmt,
      Object[] bindVars) {
      CallableStatement st = null;
      try {
      // 1. Create a JDBC CallabledStatement 
      st = getDBTransaction().createCallableStatement(
      "begin ? := "+stmt+";end;",0);
      // 2. Register the first bind variable for the return value
      st.registerOutParameter(1, sqlReturnType);
      if (bindVars != null) {
      // 3. Loop over values for the bind variables passed in, if any
      for (int z = 0; z < bindVars.length; z++) {
      // 4. Set the value of user-supplied bind vars in the stmt
      st.setObject(z + 2, bindVars[z]);
      // 5. Set the value of user-supplied bind vars in the stmt
      st.executeUpdate();
      // 6. Return the value of the first bind variable
      return st.getObject(1);
      catch (SQLException e) {
      throw new JboException(e);
      finally {
      if (st != null) {
      try {
      // 7. Close the statement
      st.close();
      catch (SQLException e) {}
    James

    The PreparedStatement.getParameterMetaData() object is exactly what you need for this task.
    Once you have the ParameterMetaData you can ask it how many parameters are present and which mode they are. The parameters are numbered from 1 to n and you can use ParameterMetaData.getParameterMode(1); to get the mode of the 1st parameter. The modes are defined as static values in the ParameterMetaData object. Check out the doc at http://docs.oracle.com/javase/7/docs/api/java/sql/ParameterMetaData.html
    Timo

  • How do I modify the "Number of Pages" setting for an existing Master Page via javascript?

    I'm learning javascripting for InDesign and I have been tinkering with the stock scripts in the tutorials. I'm developing the ability set properties and such, playing with how Javascript works, and I wanted to change the number of pages in a master page as part of an exercise. Does anyone know how to do this? I have been able to add new masters, controlling the number of pages in them with this:
    myDocument.masterSpreads.add( {pagesPerSpread:2,} )
    but what I really want is to modify the master that InDesign automatically generates with a new document, to have 2 pages. Granted, I can just start off with a document with facing pages, but I don't really see the fun in that...

    Jump_Over wrote:
    Hi,
    check this:
    var mSpread = app.activeDocument.masterSpreads[0],
    count = mSpread.pages.length,
    mSet = 2,
    run = mSet - count;
    // to avoid 0-page error
    mSet = Math.max(mSet,1);
    if (run > 0) {
              while (run --)
              mSpread.pages.add();
    else while (run) {
              mSpread.pages[-1].remove();
              run ++
    edit the variable mSet to modify pages length
    Jarek
    Message was edited by: Jump_Over I added Math.max filter to avoid errors
    Thanks, this is exactly what I wanted. Well, almost. I wish there were a way to simply set the number of pages in a master spread to a specific number the same way there is in the interface, but this will work just as well.

  • Dynamically modify the crystal report field size based on Paper size in C#

    Hi,
    I need to modify the Crystal Report field size dynamically based on the paper size using C# .Net. According to the paper size, crytal report field width should be increase or decreae.
    Kindly suggest any solution on this.
    Thanks

    Moved to .NET SDK forum
    See these RAS samples:
    http://wiki.sdn.sap.com/wiki/display/BOBJ/NETRASSDK+Samples#NETRASSDKSamples-Exporting%2FPrinting
    Don

  • Modify the number of dimention of a geometry

    Is it possible to modify, with a function, the number of dimension of a geometry?
    I'm able to change the gtype but not the sdo_elem_info and sdo_ordinates.
    ....thanks for your help

    Here is a function doing what you ask for.
    It is not very efficient or elegant, but I think it works for most geometries :
    Parameter Numd is the dimension you want of the returned geometry.
    good luck
    Hans
    FUNCTION Convert_to( Numd PLS_INTEGER, Geo IN Mdsys.Sdo_geometry )
    RETURN Mdsys.Sdo_geometry
    -- converts from 4D to 2D or 3D ...
    -- or converts from 3D to 2D ...
    IS
    Resultat Mdsys.Sdo_geometry;
    V_numdims PLS_INTEGER;
    V_numords PLS_INTEGER;
    V_numelem PLS_INTEGER;
    V_typeelem PLS_INTEGER;
    V_startpos PLS_INTEGER;
    V_startposnext PLS_INTEGER;
    V_endpos PLS_INTEGER;
    I PLS_INTEGER;
    P PLS_INTEGER;
    V_curpos PLS_INTEGER;
    V_is_multipolygon BOOLEAN;
    V_gtype PLS_INTEGER;
    V_count PLS_INTEGER;
    V_count_unknown PLS_INTEGER;
    V_ok PLS_INTEGER;
    BEGIN
    Resultat := NULL;
    IF ( Numd < 2 )
    OR ( Numd > 3 ) THEN
    RETURN Resultat;
    END IF;
    IF Geo IS NULL THEN -- no geometry to work with .
    RETURN Resultat;
    END IF;
    V_gtype := Geo.Sdo_gtype;
    IF MOD( V_gtype, 1000 ) = 0 THEN -- Spatial ignores this geometry .
    Resultat := Geo;
    RETURN Resultat;
    END IF;
    IF V_gtype > 1999
    AND V_gtype < 3000 THEN-- This is a 2D geometry - just exit FROM here ..
    Resultat := Geo;
    RETURN Resultat;
    END IF;
    IF V_gtype > 2999
    AND V_gtype < 4000
    AND Numd = 3 THEN
    -- This is a 3D geometry - AND that's want we want - just exit FROM here ..
    Resultat := Geo;
    RETURN Resultat;
    END IF;
    IF NOT Geo.Sdo_point IS NULL THEN -- single point ...
    Resultat := Geo;
    Resultat.Sdo_gtype := 2000 + MOD( V_gtype, 1000 );
    Resultat.Sdo_point.Z := NULL;
    RETURN Resultat;
    END IF;
    IF Geo.Sdo_elem_info IS NULL THEN
    RETURN Resultat;
    END IF;
    IF Geo.Sdo_ordinates IS NULL THEN
    RETURN Resultat;
    END IF;
    V_numdims := TRUNC( Geo.Sdo_gtype / 1000 );
    -- NUMBER of dimensions 2D, 3D OR 4D .
    V_numelem := Geo.Sdo_elem_info.COUNT / 3;
    -- NUMBER of elements in this geometry .
    IF ( MOD( V_gtype, 1000 ) = 1 )
    -- Point type - check for single point in sdo_ordinates .....
    THEN
    V_ok := 1;
    V_count := Geo.Sdo_ordinates.COUNT;
    V_count_unknown := 0;
    IF ( V_numelem = 2 ) THEN
    IF ( Geo.Sdo_elem_info( 2 ) = 0 )
    -- first element is : Unsupported element type. Ignored by the Spatial functions AND PROCEDUREs.
    THEN
    V_count_unknown := Geo.Sdo_elem_info( 4 ) - 1;
    -- num of ordinates in the unknown part ...
    ELSE
    V_ok := 0;
    END IF;
    END IF;
    IF (
    V_ok = 1
    AND V_numelem < 3
    AND V_count - V_count_unknown > 1
    AND (
    ( V_count - V_count_unknown < 5
    AND V_gtype > 3999 )
    -- 4d with one point in sdo_ordinates ..
    OR ( V_count - V_count_unknown < 4
    AND V_gtype > 2999 )))
    -- 3d with one point in sdo_ordinates ..
    THEN
    IF Numd = 2 THEN
    Resultat :=
    Mdsys.Sdo_geometry( 2001, -- GType 2D .
    Geo.Sdo_srid,
    Mdsys.Sdo_point_type( Geo.Sdo_ordinates( V_count_unknown + 1 ),
    -- X ..
    Geo.Sdo_ordinates( V_count_unknown + 2 ), -- Y ..
    NULL ), -- sdo_point_type(x,y,NULL) .
    NULL,
    NULL );
    ELSE
    Resultat :=
    Mdsys.Sdo_geometry( 3001, -- GType 3D .
    Geo.Sdo_srid,
    Mdsys.Sdo_point_type( Geo.Sdo_ordinates( V_count_unknown + 1 ),
    -- X ..
    Geo.Sdo_ordinates( V_count_unknown + 2 ), -- Y ..
    Geo.Sdo_ordinates( V_count_unknown + 3 )), -- Z ..
    -- sdo_point_type(x,y,NULL) .
    NULL,
    NULL );
    END IF;
    RETURN Resultat;
    END IF;
    END IF; -- END of Point type ....
    Resultat :=
    Mdsys.Sdo_geometry( Numd * 1000 + MOD( V_gtype, 1000 ),
    -- GType 2D eller 3D .
    Geo.Sdo_srid,
    NULL, -- sdo_point_type .
    Mdsys.Sdo_elem_info_array( ),
    Mdsys.Sdo_ordinate_array( ));
    IF V_numelem = 0 THEN
    RETURN Resultat;
    END IF;
    IF MOD( Geo.Sdo_gtype, 1000 ) < 7 THEN
    V_is_multipolygon := FALSE;
    ELSE
    V_is_multipolygon := TRUE;
    END IF;
    I := 1;
    V_curpos := 1;
    LOOP -- for all the elements ...
    V_startpos := Geo.Sdo_elem_info( ( I - 1 ) * 3 + 1 );
    -- StartPosition for the ordinates of this element
    V_typeelem := Geo.Sdo_elem_info( ( I - 1 ) * 3 + 2 );
    -- the pos after StartPosition, ie. eType ...
    IF I = V_numelem THEN -- is this the last element ?
    V_startposnext := Geo.Sdo_ordinates.COUNT( ) + 1;
    ELSE
    V_startposnext := Geo.Sdo_elem_info( ( I * 3 ) + 1 );
    END IF;
    Resultat.Sdo_elem_info.EXTEND( 3 );
    Resultat.Sdo_elem_info( ( I - 1 ) * 3 + 1 ) := V_curpos;
    -- StartPosition for the ordinates of this element
    Resultat.Sdo_elem_info( ( I - 1 ) * 3 + 2 ) :=
    Geo.Sdo_elem_info( ( I - 1 ) * 3 + 2 );
    -- eType ...;
    Resultat.Sdo_elem_info( ( I - 1 ) * 3 + 3 ) :=
    Geo.Sdo_elem_info( ( I - 1 ) * 3 + 3 );
    -- Interpretation ...;
    IF V_typeelem > 0 THEN -- ignore element
    IF (NOT V_is_multipolygon )
    OR ( V_is_multipolygon
    AND I > 1 ) THEN
    IF ( V_startposnext > V_startpos + 1 ) THEN
    P := V_startpos;
    -- p is now the position of the first ordinate for this element
    LOOP -- For all ordinates ...
    IF Numd = 3 THEN
    Resultat.Sdo_ordinates.EXTEND( 3 );
    ELSE
    Resultat.Sdo_ordinates.EXTEND( 2 );
    END IF;
    Resultat.Sdo_ordinates( V_curpos ) := Geo.Sdo_ordinates( P );
    -- X ...
    Resultat.Sdo_ordinates( V_curpos + 1 ) :=
    Geo.Sdo_ordinates( P + 1 );
    -- Y ...
    IF Numd = 3 THEN
    Resultat.Sdo_ordinates( V_curpos + 2 ) :=
    Geo.Sdo_ordinates( P + 1 );
    -- Z ...
    END IF;
    P := P + V_numdims; -- jump to the next x ordinate
    V_curpos := V_curpos + Numd; -- var +2 tidligere
    EXIT WHEN P = V_startposnext;
    END LOOP;
    END IF;
    -- ELSE : MULTIPOLYGON does not have its own ordinates
    END IF;
    ELSE
    -- Element has unknown geometry , must copy all ordinates
    Resultat.Sdo_ordinates.EXTEND( V_startposnext - V_startpos );
    P := V_startpos;
    -- p is now the position of the first ordinate for this element
    LOOP -- For all ordinates ...
    Resultat.Sdo_ordinates( V_curpos ) := Geo.Sdo_ordinates( P );
    P := P + 1; -- next ordinate
    V_curpos := V_curpos + 1;
    EXIT WHEN P = V_startposnext;
    END LOOP;
    END IF;
    I := I + 1;
    EXIT WHEN I > V_numelem;
    END LOOP;
    RETURN Resultat;
    EXCEPTION
    WHEN OTHERS THEN
    Resultat := NULL;
    RETURN Resultat;
    END Convert_t0;

  • Not able to modify the number of horizontal divisional lines in chart

    Hi,
    I have inserted a chart using BI publisher. Currently there are 5 horizontal divisional lines and the y-axis values are divided accordingly. I want to change the number of horizontal divisional lines (maybe 7). I tried to use LocalRelationalData with RowKeyCount but it didn't work.
    Thanks,
    Vijay

    Hi,
    I am facing the same issue for SC with multiple line items
    Rejetced line items can not be edited by requetser on the other hand approved items are appearing for in editable mode
    Any one managed to get solution for the same ??
    Please let me know the solution then..
    thanks
    Regards
    jayesh

  • Can we dynamically modify the Component Hierarchy?

    Is it possible to modify the component hierarchy in JSF when making an Ajax call to the server for information?
    I am interested in using Ajax with JSF to update the UI incrementally as needed.
    As an example, imagine a phone book which starts with a list of names. When one clicks on a name, Ajax is used to get the data for that name (i.e., address, phone numbers, etc), and the data is then returned to the client and inserted into the DOM in the client browser under the approprtiate user. This information could be editable. Clearly, as part of this process, I would like the component hierarchy in JSF updated with the new data, also.
    I konw that we could do a complete postback of the entire page plus the new data, and then diff it out on the client (as per the methods outlined by Jacobi and Fallows in Pro JSF and Ajax: Building Rich Internet Components). However, I am wondering if it is possible to update the Component Hierarchy with the new components associated with the new data during the Ajax call, so that we can focus our Ajax request on the needed data only, rather than having to regenerate the entire page.

    Hi wua22,
    For my case, I found that if an attribute called "userPassword" is added in the Schema Manager, after running the above codes which I quoted, it seems that nothing changes since next time when you log on, it can only be authenticated using the old password. However, in this case, actually, the change was made in the ADDED attribute, "userPassword". You'll find where the change made if you have the admin right to check the properties of the users' account using ConsoleOne (or similar tools).
    In addtion, for the exception I encountered in my case, I found that everythings go normally if that ADDED attribute "userPassword" is deleted. So, this time, it's the setting in my LDAP server which caused the problem, but not the programming error.
    BTW, someone suggested that using UnicodePwd attribute, instead of the userPassword for updating one's password. This UnicodePwd attribute is unicode converted. I've not tried on that actually, but will at a later time.
    Hope that helps to you.
    Regards,
    Mercury

  • Adding Controls dynamically in the Infopath/Web form with dynamic controls

    Hello,
    The client requirement is to create SharePoint solution for the below image. A web form/Info-path form will be created where user can enter the details and data will be submitted. I am looking for a solution to implement the requirements in SharePoint .
    if not possible then using customizations and SQL server.
    User can enter the Title , Overview in the form , which we can make Single line and multiple line of Text. The problem is with third , fourth and fifth fields.
    1) In third field , i.e. Qualification Summary , User can add/delete , dynamic text boxes..This can be achieved I think using repeating tables/sections in Infopath...How data will be saved in SharePoint columns as it is not fixed that how many
    columns user can enter , how columns(static) will be created in the list ??
    2) For fourth field , user will select one or many Project description title n descriptions which are there in the system..User will not write anything just select..But how many project descriptions they can select , again its not fixed..How
    we can manage it in SharePoint List OR any custom solution  ?  
    3) For fifth field , user will select one or many Awards which are there in the system.User will not write anything just select..But how many awards they can select , again its not fixed..How we can manage it in SharePoint List OR any custom
    solution  ?  
    Vipul Jain

    >Lets say , the data for user selection is stored in two separate lists
    secondary data connection is only for one list so you can get data from only single list by creating list connection. Later you can drag & drop that connection as repeating table or bind with any control so display in form. If you have mulitiple list
    then you may use lookup column or would need to create two seperate data connection.
    >Do you think its a right approach ?
    multi selection listbox is helpful if requirement is select multiple records or filter records. You can almost achieve most of the requirement but still depends on business need. Ofcource some limitation is also there.
    >I'm planning to propose a custom .net form
    Of course custom form is always better than OOTB in some cases but i always prefer OOTB solution if my requirement is being achieved by it.
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Dynamically changing the WHERE clause in detail VO in Master Detail

    Hi, I want to develop a search functionality, results will be in a table, which will have an inline table displaying the details per row found.
    I have a MD defined trough viewlink. I do change the master VO at runtime (set the entire SQL), based on the criteria entered by the user.
    Is there a way to change the VO at the detail end of the link at runtime - that is what I haven't been able to do.
    I have read that the ADF framework creates internal VO for each master row, whenever accessed trough accessor (which is not I am trying to do). I haven't been able to find a way to get a hold of the REAL VO at the detail end and have its WHERE clause changed.
    Changes to the "VO instance in AM" (same one used as a definition in the detail end in the ViewLink def) does not seem to reflect the detail VO.
    I have a MasterView, DetailView, MasterDetailLink (MasterView->DetailView).
    MasterDetailLink is used to create a table with inline detail table. At runtime:
    1.get MasterView (from AM), change query trough setQuesry() - works.
    2.get DetailView (from AM), change query trough addWhereClause() - does not work (no exceptions) - the results I am getting DO NOT reflect the conditions of the where clause, I mean the clause have not been addedd.
    I 've looked at the logs (debug enabled) and it seems to me that there no "activities" related to the detail VO, even after the where clause of the VO from step 2 is changed.
    Looks like there is a separate VO which I would like to get a hold of :)
    Thanks, and sorry for the long explanation

    After you have added a new where clause on the detail VO, try re-executing VO's query by DetailVO.executeQuery()
    If it doesn't work try re-executing the MasterVO's query after you have added the where clause on the detail

  • Modifying the number of records to skip after importing the flat file

    I imported a flat file and the first row was the column header. I also created an external table for that flat file. The sqlldr is skipping the first record during the load. Is there a way to change this in the flat file module or External table?

    If you marked this row as the header in the sample wizard then you will see the following in the External Table:
    ACCESS PARAMETERS (
    RECORDS DELIMITED BY NEWLINE
    CHARACTERSET WE8MSWIN1252
    STRING SIZES ARE IN BYTES
    NOBADFILE
    NODISCARDFILE
    NOLOGFILE
    SKIP 1
    So the external table is skipping this.
    Now the issue with changing it is interesting because you cannot change this after the sampling... I think this is a bug which I will file.
    Let me know if this answers the question,
    Jean-Pierre

  • How to get the number of hits ("returned rows") in read table statement

    Hi Experts
    I have the statement shown below, which seems not to work as I would like it to. My problem is that I would like to do two different things depending on weather or not a read table statement results in 0 hits or 1 (or more) hits.
        READ TABLE g_ship_item
            WITH KEY
         l_ztknum = DATA_PACKAGE-/bic/ztknum
         BINARY SEARCH.
          IF sy-subrc is initial.
          no hits found
            DATA_PACKAGE-/BIC/ZSTAGEERR = 1.
          ELSE.
          hits where found and we will do something else...
            DATA_PACKAGE-/BIC/ZSTAGEERR = 0.
    Hope someone can help me out of my problem...
    Thanks in advance, regards
    Torben

    Hi,
    As you are using READ statement with Binary search, check whether the internal table g_ship_item is sorted with field /bic/ztknum or not. If it is not sorted then the result of this READ statement is not correct.
    Below is the correct code.
    sort  g_ship_item by /bic/ztknum.
    READ table g_ship_item with key g_ship_item = xxx.
    Thanks,
    Satya

Maybe you are looking for

  • Removing the CORRECT iTunes files from a hard drive

    Help! Does anyone have any idea how to remove the old iTunes files. I want to delete them to free up space on my computer. I tried to move my library from this computer to a laptop. See below. I went through all the steps to move my iTunes library us

  • Audio/video delay when viewing (ex: youtube)

    whenever I try to view an online video for example on youtube or any online video lesson, there is a several second delay stammering through the whole thing. I dont have any updates needed. help?

  • Mac Book Pro -  The screen cannot display problem

    hi all, I have a very urgent problem with my Mac Book Pro Few days ago, when i were working with my laptop, suddenly the screen turned off but the hard drive still worked. I restarted but this problem still happen. Now when I turn on My laptop, i jus

  • Minus sign infront of number

    Hi,   I need the negative sign in front of a number of data type p. i tried with this function module 'CLOI_PUT_SIGN_IN_FRONT'   But it supports only char data type.   I want the final answer in packed data type only because iam using the statement:

  • Iphone storage - what is other?

    HI All On my 4S 32 GB it shows 16.4 GB other which is taking most of the space what is this other and how can I get rid of it, I have checked in usuage couldnt find anything that big? Thanks in advance