Checkbox in Tabular Form (Solution to span multiple pages)

Hi,
We had a case where a large report needed to have check boxes. These check boxes would populate a list of id's which we then processed for a specific task. By default APEX doesn't support this.
After spending some time on this, I thought I'd post my solution to help any others who experience the same problems. For this example we will use P10
1. Create a new "normal" report.
SELECT e.*, APEX_ITEM.CHECKBOX(1,e.EMPNO,'onClick="updateList(this);"',:P10_LIST, ',') AS Cancel,
FROM emp e
2. Create a hidden item called P10_LIST
3. Add an HTML region to the page whose template is "No Template" (do this so it doesn't show up. Call the region "JavaScript". Set its sequence to 1
4. Add the following in the JavaScript region:
<script src="http://SERVER_NAME/String.js" type="text/javascript"></script>
<script src="http://SERVER_NAME/Ajax.js" type="text/javascript"></script>
<script type="text/javascript">
function updateList(pObject){
vItem = 'P10_LIST';
myAjax = new Ajax();
vList = myAjax.getItemValue(vItem);
//Determine to remove or add from list
if (pObject.checked) {
//Add item
vList = vList.listAppend(pObject.value);
else{
//Remove from list
vList = vList.listRemoveItem(pObject.value);
}//if
//Set the session value
myAjax.setItemValue(vItem,vList);
//Set the HTML value
document.getElementById(vItem).value = vList;
</script>
This script:
- Loads the List from the session
- Modifies the list
- Stores it in the session
5. The JavaScript region references 2 files, which you'll need to add to your server. They are as follows:
Ajax.js
function Ajax(){
// TODO: Enter proper names etc.
this.appProcessNameNull = 'AJAX_null';
this.appProcessNameReturnItem = 'AJAX_ReturnItem';
this.tempItem = 'P0_AJAX_TEMP';
* TODO: Document
* Sets Item in session
Ajax.prototype.setItemValue = function(pItem,pValue,pAppProcess){
if (pAppProcess == null)
pAppProcess = this.appProcessNameNull;
var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=' + pAppProcess,0);
get.add(pItem,pValue);
gReturn = get.get();
* TODO: Document
* @param pItem Name of item to get
* @param pTempItem Name of temp item
* @param pAppProcess Application Process to call which will return item
* @return session value
Ajax.prototype.getItemValue = function(pItem,pTempItem,pAppProcess){
if (pTempItem == null)
pTempItem = this.tempItem;
if (pAppProcess == null)
pAppProcess = this.appProcessNameReturnItem;
var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=' + pAppProcess,0);
get.add(pTempItem,pItem);
gReturn = get.get();
return gReturn;
String.js
// From http://www.somacon.com/p355.php
String.prototype.trim = function() {
     return this.replace(/^\s+|\s+$/g,"");
// From http://www.somacon.com/p355.php
String.prototype.ltrim = function() {
     return this.replace(/^\s+/,"");
// From http://www.somacon.com/p355.php
String.prototype.rtrim = function() {
     return this.replace(/\s+$/,"");
* Appends value to list
* @param pValue Value to add to list
* @param pDelimeter Defaults to comman
String.prototype.listAppend = function(pValue, pDelimeter){
if (pDelimeter == null)
pDelimeter = ',';
vStr = this;
if (vStr.length == 0)
vStr = pValue;
else
vStr = vStr + pDelimeter + pValue;
return vStr;
* Removes a value from list
* @param pValue Value to remove from list
* @param pDelimeter Defaults to comman
String.prototype.listRemoveItem = function(pValue, pDelimeter){
if (pDelimeter == null)
pDelimeter = ',';
vStr = this;
vStr = pDelimeter + vStr + pDelimeter;
// Remove value
vStr = vStr.replace(pDelimeter + pValue + pDelimeter, pDelimeter);
//Remove prefix and suffix items
if (vStr.length > 0 & vStr.charAt(0) == pDelimeter){
vStr = vStr.substring(1);
if (vStr.length > 0 & vStr.charAt(vStr.length-1) == pDelimeter){
vStr = vStr.substring(0,vStr.length - 1);
return vStr;
6. On Page 0 Create a hidden Item called: P0_AJAX_TEMP
(Note: this is can be used for all your AJAX calls)
7. Create an Application Process called: "AJAX_null". Process Text: null;
8. Create an Application Process called: "AJAX_ReturnItem". Process Text:
begin
htp.prn(v(v('P0_AJAX_TEMP')));
end;
If you look at the Ajax.js you'll notice points 6,7, and 8 are all customizable etc... I just put it in so you can test right away.
Now the user can select items on multiple pages (if pagination applies). Once they hit a submit button you can use P10_LIST to process your values.
Hope this helps.
Martin

Hi Martin,
I was trying to use your funda in my App. But i dont know why it is not doing anything.
Also i'm facing a very small but severe problem with one of my report. I am using checkbox. So that user will be able to select all those records he/she wants. but the problem is that when i'm selecting few records with the help of the check boxes, selections are there. When moving to other page and coming back to that page, selections are gone. I think selections should not go like this. Otherwise the user will get confused.
Can you tell me how can retain the check box selections??
Thanks
Sudipta

Similar Messages

  • Issue with checkbox on tabular form

    Hi (to all my friends in deperate times),
    I have a tabular form on a page, which i use for addition of record only. So it always displays me a blank row, which is ready to be inserted after user has filled in data and clicked submit button.
    Now I have a checkbox field on this tabular form. Since all the columns i show as null, I also show this checkbox as unchecked when page shows up. Here is the query for the source region of this form:
    SELECT null "Client",
    null "Currency",
    HTMLDB_ITEM.CHECKBOX(40,'YES',null) critical_box,
    FROM dual
    I have used 'YES' as return value of this checkbox( when user has checked it, else i assume it will be not equal to 'YES').
    I have my own update process, which gets fired on click of 'Submit'.
    this is my insert clause in this update process:
    INSERT INTO table1
    (client, currency,critical_level)
    values
    (APEX_APPLICATION.g_f01(i), APEX_APPLICATION.g_f02(i), decode(APEX_APPLICATION.g_f40(i),'YES','YES','NO')
    Now problem is that when i click checkbox and save it, it adds record correctly. But when i dont click checkbox during insertion, at that i get error message that no data found. It should insert 'NO' for 3rd column when checkbox is not clicked.
    Please help here. Not sure why its giving no data found error when checkbox on tabular form is unchecked.
    Thanks and Regards,
    Rave.

    Hi,
    In the linked thread, the solution was to provide a second, hidden, item that always returned a known value. This item, also created using the APEX_ITEM package, uses the same index number as your checkboxes - so, if your checkboxes use index 40 (to get "f40"), then the hidden item uses 40 as well. This way, we always get at least one value for each row and the last possible value in a row will be known.
    So, assume that the hidden item values are "NO", you have 10 rows on the page and the user ticks items 1, 2 and 5. The f40 items submitted would be:
    YES:NO:YES:NO:NO:NO:YES:NO:NO:NO:NO:NO:NO
    so, there will ALWAYS be 10 "NO" items and the YES item immediately before it will be the checkbox on the same row. So, if we loop through all f40 items, the YES values mean the checkbox and the NO values mean end-of-row - and, if we keep track of the NO values, we know which row we are on.
    So, the code to find the data in f01 and f02 relating to the the YES values (the checked checkboxes) would be something like:
    DECLARE
    vROW NUMBER;
    vF01VALUE VARCHAR2(100);
    vF02VALUE VARCHAR2(100);
    BEGIN
    vROW := 1; // current row number
    FOR x IN 1..APEX_APPLICATION.G_F40.COUNT
    LOOP
      IF APEX_APPLICATION.G_F40(x) = 'NO' THEN
       vROW := vROW + 1; // end of the row, so move to next row
      ELSE
       // found a checkbox, so get related data
       vF01VALUE := APEX_APPLICATION.G_F01(vROW); // f01 item on the same row as the checked item
       vF02VALUE := APEX_APPLICATION.G_F02(vROW); // f02 item on the same row as the checked item
      END IF;
    END LOOP;
    END;Andy

  • Empty pages being generated when report spans multiple pages

    hi folks
    I have a problem when generating my pdf form that I hope you can shed some light on.
    Firstly, I have a table within a table.
    Eg. For each line of Table_1, a new page must be displayed.
    Then for Table_2 a list of employees with the matching criteria in line_1 of Table_1 are displayed on page 1. For the next line of Table_1, the same, and so on.
    My problem comes in when there are too many employees in Table_2 to fit on a single page, they span onto the next page (as they should), but the pdf form also now displays blank pages at random.
    Something like this:
    Page 1
    --empty
    Page 2
    -Table_1-Line_1
    -Table_2 (lines 1 - 30 of 35)
    Page 3
    -Table_1-Line_1
    -Table_2 (lines 31-35 of 35)
    Page 4
    -Table_1-line_2
    -Table_2 (lines 1 - 10 of 10)
    Page 5
    --empty
    Why the empty pages? Any help will be much appreciated.
    thanks.
    Also worth noting. If Table_2 doesn't span multiple pages, then I don't get the empty pages.
    thanks in advance
    Anton Kruse

    Hello,
    it is clear why your first page is blank. That is because you set "top of next page" (tab binding) for every line of the outer table so every "section" starts on the new page. That is why even the first page starts on the second page (top of NEXT page for the first line is SECOND page).
    About the last page... I have experienced problems when I used margins - when your page content is long, but not that long to break the page and you use a margin so the last row + margin should break the page, the last row is left on the last-1 page and the margin "appears" on the last page.
    Hope this helps a bit, Otto

  • How can I copy text spanning multiple pages in iBook?

    I like to drop sections of text from i
    books into letters, journal entries etc and for the life of me I cannot figure out the functionality of grabbing text that spans multiple pages.

    Hi James,
    Thank you so much for taking the time to help me out.  You actually solved the problem.  I am able to select as much text as I want now.  The bummer is the lame feature where you cannot take more than a couple hundred words at a time.  The section I wanted was about one and a half pages and it took me 3 separate copy pastes to get it all.  Does anyone know of software or a trick to overcome this limitation?
    James thanks again.  I really appreciate your help.

  • Creating a dynamic table that spans multiple pages

    Hi guys,
    I have a script that is able to add rows to a dynamic table.
    The issue I am having now is I want this dynamic table to span multiple pages.
    I'm not exactly sure how to do this. It looks like to me that the table stops once it reaches the height of the text frame enclosing it.
    How do you create a table / text frame that expands to it's contents and not the size of the text frame enclosing it. Ideally I want this table to span multiple pages.

    OK, I have 3 screenshot to see if that will help.  My book is a transcription of some old county records around 1800. I have a section of my book that had a list of items in text separated by a right tab.
    I highlighted that text and converted it to a table.  In portrait mode I can scroll and see all the table.
    When I switch to landscape mode the table is cut off and does not wrap to the next page.
    The text after the table appears on the next page.  The preview on the ipad is the same. 
    Thanks for any help on figuring this out. Also, I enjoy your podcasts.
    MB

  • Checkbox in Tabular Form

    Hi,
    I am fairly new to APEX and need some help please.
    I am nrunning Apex 4.1 on 11g database.
    I have a tabular formrunning off the rowid which needs to show a checkbox for several columns which contain Y or N.
    When I set the field type to simple checkbox, none of the checkboxes are ticked for any columns with a Y.
    Can someone please tell me what I need to do to get a simple checkbox on a tab form to work without too much effort?
    I can use a select list OK, but really just want a tickbox to reflect the Y or N in the column (ticked, unticked).
    I have tried using the apex_item.checkbox() in the query, but that doesn't seem to work.
    Example of select statement:-
    select
    "ROWID",
    "DEPARTMENT_REFERENCE_U",
    "NAME",
    "AUTHORITY_FLAG", -- tickbox
    "AUTHORITY_NAME_CODE",
    "DEFAULT_VALUE", -- tickbox
    "ROADS", -- tickbox
    "ANSWER_SET", -- tickbox
    from ....
    I tried apex_item.checkbox(1, rowid, decode(roads,'Y', 'checked','unchecked')) "ROADCHECK", but just get missing right parantheses
    If someone can give me some pointers I would be really grateful.
    Thanks,
    Carl.

    Hi,
    Thanks for the info.
    The whole SQL statement for the tabular form now reads:-
    select apex_item.checkbox(1, rowid, decode(roads,'Y', 'checked',null)) "ROADCHECK",
    "ROWID",
    "DEPARTMENT_REFERENCE_U",
    "NAME",
    "AUTHORITY_FLAG",
    "AUTHORITY_NAME_CODE",
    "DEFAULT_VALUE",
    "ROADS",
    "ANSWER_SET"
    from ....
    ... And returns error of missing right paranthesis. As soon as I take out the apex_item, the query runs.
    I don't really want to use apex_item if I don't have to (or any other complex coding to make things work) and have been instructed to let Apex do all the work through its automatic functionality (probably for anyone else picking it up in the future. I am in the process of evaluating Apex so we can change over from Oracle Forms). All I want is for the checkboxes to be ticked if the column contains Y. Historically, the columns will contain Y or N, but it seems in Apex/HTML the unticked default is null, which we can live with. I have tried the 'checkboxes the easy way' as in URL earlier in this thread and it seems OK, but don't really want to have to go down that road, just for a tickbox, especially on this form where I need 4 of them.
    In my tabular column attributes for the column I want as a tick box I have:-
    Display As Simple Checkbox, render form field without template, LOV = STATIC:;Y (the Named LOV drop down box is greyed out and disbaled).
    When I run the form, all tickboxes for this column are displayed as unticked, where as in the database they are all Y.
    Is there something obvious that I have done wrong/need to do?
    Regards,
    Carl

  • Checkbox in tabular form - help needed

    I'm trying to build a tabular form, with a checkbox for a field that can have value 'Y' or 'N'. Adding the checkbox is no problem, with the htmldb_item.checkbox API.
    However, processing it is.
    On this forum I found a way to process the checkboxes, by looping through all the records (with the help of htmldb_item.hidden in which the id is stored) and reading the value from the checkboxes and updating the column if the checkbox is checked. (see Re: Report with updateable checkbox)
    however, as soon as I add a htmldb_item.hidden item, I receive the following error when I submit the tabular form to the Multi Row Update process:
    "Error in mru internal routine: ORA-20001: Error in MRU: row= 1, ORA-20001: ORA-20001: Current version of data in database has changed since user initiated update process. "
    My query:
    Select id
    ,htmldb_item.hidden(1,id)
    ,htmldb_item.checkbox(2,id, decode(field, 'Y', 'CHECKED', NULL))
    from table
    What am I doing wrong?
    is there a better way to process a tabular form with checkboxes?
    Or should I process all the rows manually by updating every record even if it hasn't changed (with a loop through all the records)?

    Tonnie, did you ever get an answer to this question?
    Michael Cunningham

  • Solution for scanning multiple pages from inside the form6i/10g

    Hi All,
    I need to scan multiple pages from Oracle forms (6i/10g) using a scanner which is scanning multiple pages per minute. Can any one post a solution for me.
    Hafeez

    here are the two ways I use to scan images.
    1) if the image is a single TIF image then d2kwutil can upload the image into a BLOB field on the database (but it is limited to only SINGLE-page TIFs).
    2) if the image is a single or multi-page PDF, then your forms client must copy the image to a filesystem location known by the database (where the filesystem location is a directory on the database), and then the database can import the image into a BLOB field within the database.
    either solutions work pretty fast for me (<10 seconds per image)
    Chris

  • Capturing data from a dynamic table that span multiple pages

    I created a PDF form that contained a dynamic table that can span across multiple pages. Additional rows in the table can be created by the person filling the form as and when needed.
    The PDF form is distributed to the receipient using Adobe LiveCycle Designer.
    However, when the form is "Submitted" back to the originator of the form, only data in the first row of the table is captured in the Response file. All the other rows are left out.
    I would be grateful if anyone can advise me as to how do I or what shall I do to get all the data in all the rows in the table into the Response File?
    Thank you.

    Hi
    Attached are the saved completed PDF-Form and the response file after the completed form has been submitted. I have copied this message to your gMail account.
    Only data in the first row of the table is captured in the Response file.
    If it is working correctly on your side, please let me know what could have gone wrong on my side.
    Thank you.
    Best regards,
    Kim-Siang Ng
    http://www.tipstoenrichyourlife.com/parenting
    With the wish to help all beings, may all my thoughts,words,and actions be void of attachment and ego.
    May they arise from compassion and wisdom.
    May they be imbued with patience and joy.
    The information contained in this transmission may contain privileged and confidential information and is intended only for the use of the person(s) named above. If you are not the intended recipient, any review, dissemination, distribution or duplication of this communication is strictly prohibited. If you received this email in error, please contact the sender immediately by reply e-mail and destroy all copies of the original message. This email is not intended as an offer or solicitation for the purchase or sale of any financial instruments.
    This email is forwarded automatically to a selected list of my buddies for enjoyment. Contents come from various sources and none of the materials I claim as my property. If any belongs to you, please consider it an honor that the content was worthy enough to be shared. No copyright infringement intended!. If any material is not appealing to you DELETE immediately.
    When forwarding this email, please have the courtesy to respect the privacy and confidentiality of the sender by deleting all previous email trails and addresses before you proceed to forward this email to others.

  • Requisition line description (lengthy) span multiple pages

    All,
    I have a requirement to print a Requisition that has multiple lines and multiple rolled up distributions (for the first six segments) in a fixed area of the template. Each line item description appended with an attachment text must print in a confined area. Further, the bottom part contains some fixed text and a table printing rolled up distributions. The distributions could run into multiple pages as the space to print in the confined area is just 4 lines. An average scenario is a requisition with three lines (each line's item description is about 2500 characters) and maybe eight distributions.
    Data relationship in the layout: One master (Requisition Header) and two details (one for lines and the other for distributions).
    Layout (Font for the most part is Arial size 7)
    Requisition Header information prints some fixed text and some dynamic text spanning 15 physical lines. The dynamic text in this section of the layout from header contains limited text that will fit in the layout.
    Requisition Lines information prints line details in a confined area spanning 24 physical lines.
    Part of the requisition header information print in a confined area spanning 25 physical lines.
    Requisition Distribution information prints in a confined area spanning 4 physical lines.
    At the bottom, three more physical lines of text from Requisition header information are expected.
    I have been trying to use RTF template and I have not been able to achieve the above requirement. Any help is greatly appreciated.
    Thanks in advance
    Gopal

    I don't know if this will be of any help or not but let me explain what I did to a form to get the text in some of the fields to continue on to the next page.
    On my first page I have a sub form I call MainPage and within that sub form I have several sub forms that each contain a title bar and some descriptive text and an expandable text field. The specs for the MainPage sub form is as follows,
    Object tab > Subform tab > Type: = Flow Content.
    Object tab > Subform tab > Allow Page Breaks within Content is checked.
    Object tab > Subform tab > After: = Continue Filling Parent.
    Object tab > Binding tab > Repeat Subform for Each Data Item is checked and Min Count is set to 1.
    Layout tab > Auto-fit for the Height is checked.
    The specs for one of the subforms inside the MainPage sub form are,
    Object tab > Subform tab > Type: = Position Content.
    Object tab > Subform tab > Allow Page Breaks within Content is checked.
    Object tab > Subform tab > After: = Continue Filling Parent.
    Object tab > Binding tab > Repeat Subform for Each Data Item is checked and Min Count is set to 1.
    Layout tab > Auto-fit for the Height is checked.
    The specs for the expandable text field are,
    Object tab > Field tab > Allow Multiple Lines and Allow Plain Text Only check boxes are both checked.
    Layout tab > Expand to fit check box for the Height is checked only.
    This set up works for me and I get a text field that continues onto the next page but I have noticed some strange things going on that make it work rather awkward. The scroll bars are odd and some times after adding a bunch of text and then I move out of the field a text overflow symbol shows up at the bottom of the continued field on the next page. When you come back and click on the field to add more text the scroll bar appears and you need to scroll to the end of the value that is allready in the field to continue typeing.

  • How to paginate the Report output spanning multiple pages

    Hello,
    We have a Report that has a custom Layout and it shows invoice information.
    Our system has to generate an Invoice per day.
    This Report is printed fine for single day.
    But our users have 2 requests:
    1. To print all the invoices for 1 month
    2. To save them to file.
    At least printing will do for now.
    The problem I got is pagination.
    When I made Month&Year as parameter and user selects 2001-OCT
    to print all invoices in Oct,2001, the Report is unable to print one invoice per page. In between the layout is rolling over to multiple pages.
    Is there a way I can control pagination or any settings?
    Thank you much.
    Madhav

    Hello,
    We have a Report that has a custom Layout and it shows invoice information.
    Our system has to generate an Invoice per day.
    This Report is printed fine for single day.
    But our users have 2 requests:
    1. To print all the invoices for 1 month
    2. To save them to file.
    At least printing will do for now.
    The problem I got is pagination.
    When I made Month&Year as parameter and user selects 2001-OCT
    to print all invoices in Oct,2001, the Report is unable to print one invoice per page. In between the layout is rolling over to multiple pages.
    Is there a way I can control pagination or any settings?
    Thank you much.
    Madhav

  • Having some trouble with hidden and checkboxes on tabular forms

    My query is as follows:
    select distinct tt.name tasktype,ct.name costtype,htmldb_item.checkbox(3,1,NULL,'Y:N',':') "Add Cost", htmldb_item.text(4,defabscost,9) defabscost,
    htmldb_item.hidden(5,tt.tasktypeid) tasktypeid, htmldb_item.hidden(6,ct.costtypeid) costtypeid
    from acct.defabscost d
    inner join work.tasktype tt
    on d.tasktypeid = tt.tasktypeid
    inner join acct.costtype ct
    on d.costtypeid = ct.costtypeid
    I have it wrapped within a function, which works fine. My issues are that I want to have the checkboxes function as row selectors. Basically, not pointing to primary keys (I have a compound primary key on this table). If selected, fill in the table, if not selected, erase from table. Also, My hidden items kinda contain the "primary keys". When I set these as hidden, I see the column, but there is no data. I don't want to see the columns at all, but when I set these to "hidden" in the attributes, I can't reference them with htmldb_application.g_FXX. Any suggestions?

    I actually figured out how to get the htmldb_item.hidden part working properly. I misread the guide, thought it was a comma between fields and not a concatenation. Works fine. But I still need to get the checkbox to work like I want.

  • How do I make a table span multiple pages?

    Hello,
    My team and I use a Pages doc with several tables in it. The size of these tables (i.e. the number of rows in the table) change every week. Before upgrading to Yosemite, whenever a table extended beyond one page it would continue on the next with the same headers as the original table. For some reason, the tables now instead"shift" to the next page once the number of rows becomes too much for the current page.... That is unless it is the only table on on the page, in which case it will perform in the desired manner. However, if there are multiple tables on a page, the table will move to the next page, leaving a big blank space where it used to be. I have tried playing with the "Arrange" area to no avail. I can make the table float and create a new table on the next page once the rows become too numerous, but this is not ideal. Has this feature been removed from the new pages or am I just not looking in the right place?
    Thanks,
    mFuture

    Use Pages '09. Pages 5.5.1 is a lost cause.
    Peter

  • Problem with tables spanning multiple pages

    I have used Pages early on before Numbers to track my small business expenses vs income. I use tables to manage this by clicking outside the page so it can be unrestricted by text fields but it creates a problem.
    Problem: free floating tables when rows continue past the footer, don't auto format onto another page.
    Needed solution: How do I format the table so it automatically formats the total bar onto the next page without changing my existing layouts?

    I have used Pages early on before Numbers to track my small business expenses vs income. I use tables to manage this by clicking outside the page so it can be unrestricted by text fields but it creates a problem.
    Problem: free floating tables when rows continue past the footer, don't auto format onto another page.
    Needed solution: How do I format the table so it automatically formats the total bar onto the next page without changing my existing layouts?

  • How do I use Page Grouping to make my form/subforms flow across multiple pages?

    I have every text box set to flow, but one page is not flowing into the next. For one thing, it stops entirely. For another, the content is interfering with the Master Page. I read than Page Grouping can alleviate this issue, but I have no clue how to enact it. Any ideas would be appreciated.
    Thanks so much!

    Please check the subform which is the container of all these text boxes. Please see this : https://groups.google.com/forum/?fromgroups=#!topic/livecycle/yq8FauqHD3w
    Thanks,
    Wasil

Maybe you are looking for

  • Adobe Forms in a Bsp

    Hi All Can you use Adobe interative forms in a Bsp application i.e. can you imbed an adobe form in a bsp view ? Any information on this would be of great help. Thank you Darren

  • Itunes stopped working, missing MSVCR80.dll

    Suddenly, my itunes stopped working. It told me to reinstall. however, when i try, it fails to reinstall. It gets as far as 'startign services' then stops, saying I don't hav eprivileges to continue (on my own laptop!!). Then when I try to open itune

  • Web Dynpro ALV grid totals

    Hi, I have created an application that uses a web dynpro alv grid.  I want to display totals - is there a setting that can do this automatically - if so, can you please tell me how to do this?    Thanks,

  • Help-iPod Software messed up!!!!

    I connected my iPod over USB 1.1, after realizing it was formatted for windows. iPod Software updater wont restore it over USB or something and quits when I try to update it. So I went to Disk Utility and erased the iPod for Mac OS Extended. Now it w

  • Safari can't load any web pages

    I just installed Safari on a WinXP Pro machine and it shows a Can't Open Web Page error when trying to access any web page, while FireFox and IE function without problem. There are no proxies; local firewall is disabled; tried re-installing and clear