Drill down using more than three items

Is it possible to supply more than three parameters to the column link?
I am making a drill down from summary report to the detail report, and I need to pass five parameters to the detail report. The list of items under
Application Builder > Application X > Page Y > Report Attributes > Column Attributes > Link
is limited to three items. Is there a way around this limitation?
Thanks,
Tim

You need to change you link type from <b>Page In This Application</b> to <b>URL</b>. You'll then need to encode each parameter name and it's value into the last two elements of the f?p format. You can use a two or three parameter URL as an example and just modify from there. <br>
<br>
For example (from one of my applications):<br>
<br>
f?p=101:13:::NO::P13_NAME,P13_SEQ_ID:Lee%2C396<br>
<br>
The relevant part is the last colon (or the fields on either side of it more specifically). The first set of fields <b>P13_NAME,P13_SEQ_ID</b> are my page item names on the destination page (where we're going) and the last two <b>Lee%2C396</b> are their values from the source page (where we're coming from). The %2C is an encoded comma. In order to get this in your output, you want to set your URL to something like:<br>
<br>
f?p=101:13:::NO::P13_ITEM1,P13_ITEM2:&P12_ITEM1.,&P12_ITEM2.<br>
<br>
I'm doing this from memory since I can't find a good example for you, but I think I'm pretty close in the syntax.<br>
<br>
Hope it helps.<br>
<br>

Similar Messages

  • Can't concatonate more than three items in a portal select statement ?

    I'm running a Report from SQL query
    as Far as I can tell you can't do;
    select 'blah1'||name||'blah3'||'blah3'
    from scott.emp
    as soon as you put in a 4th item it fails.
    It also fails using select concat (,)
    I'm trying to run a report which selects a web address stored in a database table ie. http://www.yahoo.com and wrap it in html tags so it will appear as a link.
    I've got to do it with more than three items because the only way to display the < in <ahref is to quote it seperately.
    ie
    '< '||'ahref='||ADDRESS FROM DATABASE||etc.etc.
    anyone any ideas?
    should i do it another way?

    Let me explain a bit further.
    If I want to display;
    www.yahoo.com as a link I need add the html tags
    Yahoo
    www.yahoo.com is an entry in a database.
    I want to select the entry www.yahoo.com from the database and concatonate it with the html tags.
    ideally;
    select 'Visit
    This does not work
    To concatonate characters like > in a select statement within portal you need to concat. seperately;
    select '< '||'a href="'||ADDRESS FROM DATABASE||'"> '||'Visit< '||'/a> '
    This does not work as you can't concat more than three items.
    Could I write a trigger to add in the html tags to the data stored in the database, when data is entered via a portal form?
    Again my problem is In need to add text to the start and end of the data being stored ie.
    user enters www.yahoo.com in a form
    a trigger or two converts that into;
    Visit

  • Report - Drill Down and more than one evdre (problems)

    Hi people!!!
    I am trying to do a report with 3 evdre's. The report has some columns that are expanded using AfterRange.
    The areas of expansion of the evdre's are one under the other.
    The 3 evdre's works fine until I use the drill down.
    After I do the drill down, just the area of my first evdre looks fine.
    For my last two last evdre's, my AfterRange stops working and no drills happens.
    Somebody already faced this same problem and can assist me?
    Thanks a lot!!

    Hi Sandro,
    thanks a lot for your answer.
    I understand that SLD works like a DNS - but why do I have an ExchangeProfile in the SLD?
    I checked SAPSLDAPI - OK.
    SLDCHECK is OK too! ... but in IB - Repository I get an error while importing SWCV: no connection to SLD.
    I think I have to check the connection between  IB-Repository and SLD ... bad think
    Regards
    Wolfgang

  • Since performing the latest update I can no longer use more than three displays.

    Does anyone know of a fix for the problem where you can only run 3 monitors?  I was running 4 displays before the update but now only three can run.  Apple support recognizes the problem but does not have a answer.  Anybody else haveing this problem?

    Yes, see:
    https://discussions.apple.com/thread/6224241?tstart=0
    10.9.3 kills third monitor: Apple Support Communities

  • Entering more than one item using bapi_salesorder_createfromdat1

    Hi,
    I am connecting a CRM system with SAP, I have got the xml file for Sales Order with all the data's and i want to create a sales order in sap system using bapi_salesorder_createfromdat1.
    My question is I am able to enter one item to the sap sales order. for inputing more than on items what should i do. Please help me.
    thanks

    Hi,
    Then there must be some problem with the appending of the data in the ITEM table.
    just see in the debugging.
    Regards,
    Atish

  • How to insert more than 12 items using BDC for MB1C

    Hi,
    When we use LSMW for data transfer of MB1C transaction, more than 12 items can be  inserted in a document.
    But using BDC only 12 and below is possible, if the flat file system has more that 12 item, then the document is not created.
    How to insert more than 12 item in a document.
    Regards

    Hi Gow,
    I have uploaded the MB1C through a BDC and it is working fine for n no of items.
    Here is the code. May be this will be of your help.
    *& Report  ZMB1C
    report ZMB1C
           no standard page heading line-size 255.
    type-pools : slis.
    tables : t100.
    data: begin of record,
            MATNR(018),
            ERFMG(017),
            EXBWR(016),
          end of record.
    data : itab like table of record with header line.
    data : w_bdcdata type bdcdata.
    data : t_bdcdata type standard table of bdcdata initial size 1.
    data : messtab type standard table of bdcmsgcoll with header line.
    data : mstring(300).
    data : vf_index type i,
           no_lines type i,
           count type i value 0.
    data : v_bldat(20),
           v_budat(20).
    *Excel Sheet Data Upload Details
    data : vf_start_col type i value '1',      "start column
           vf_start_row type i value '2',      "start row
           vf_end_col   type i value '100',    "maximum column
           vf_end_row   type i value '10000'.  "maximum row
    */ Internal Table For Excel Data
    data : it_excel type  kcde_cells occurs 0 with header line.
    */ Field symbol
    field-symbols : <fs>.
    data : begin of it_messtab occurs 0,
           plant(10) type c,
           status(10) type c,
           message(90) type c,
           end of it_messtab.
    *Data for ALV display
    data : wa_fcat type slis_fieldcat_alv,
           colcnt type i.
    data : it_fieldcat type slis_t_fieldcat_alv,
           i_events type slis_t_event.
    data : l_title type sychar70.
    data : l_repid like sy-repid.
    * Selction Screen
    selection-screen begin of block b1 with frame title text-000.
    parameters : p_file like ibipparms-path obligatory,
                 p_mode like ctu_params-dismode default 'A'.
    selection-screen end of block b1.
    selection-screen begin of block b2 with frame title text-001.
    parameters : p_bldat like MKPF-BLDAT obligatory,
                 p_budat like MKPF-BUDAT obligatory,
                 p_bwart like RM07M-BWARTWA obligatory,
                 p_werks like RM07M-WERKS obligatory,
                 p_lgort like RM07M-LGORT obligatory.
    selection-screen end of block b2.
    * At Selction Screen
    at selection-screen on value-request for p_file.
      call function 'F4_FILENAME'
        EXPORTING
          program_name  = syst-cprog
          dynpro_number = syst-dynnr
          field_name    = ''
        IMPORTING
          file_name     = p_file.
    *Start of Selection Event
    start-of-selection.
      call function 'KCD_EXCEL_OLE_TO_INT_CONVERT'
        EXPORTING
          filename                = p_file
          i_begin_col             = vf_start_col
          i_begin_row             = vf_start_row
          i_end_col               = vf_end_col
          i_end_row               = vf_end_row
        TABLES
          intern                  = it_excel
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          others                  = 3.
      if sy-subrc <> 0.
    * MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    *         WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
      if it_excel[] is initial.
        MESSAGE I000(ZCL_TCSABAP).
      else.
        sort it_excel by row col.
        loop at it_excel.
          move : it_excel-col to vf_index.
          assign component vf_index of structure itab to <fs>.
          move : it_excel-value to <fs>.
          at end of row.
            append itab.
            clear itab.
          endat.
        endloop.
      endif.
      if not itab[] is initial.
        DESCRIBE TABLE itab LINES no_lines.
        clear messtab.
        refresh messtab.
        CONCATENATE p_bldat+6(2) '.' p_bldat+4(2) '.' p_bldat(4) into v_bldat.
        CONCATENATE p_budat+6(2) '.' p_budat+4(2) '.' p_budat(4) into v_budat.
        perform map_rec.
        call transaction 'MB1C' using t_bdcdata mode p_mode update 'A'
        messages into messtab .
        clear t_bdcdata.
        refresh t_bdcdata.
        loop at messtab where msgtyp = 'E' or msgtyp = 'S' .
          select single * from t100 where sprsl = messtab-msgspra
                                    and   arbgb = messtab-msgid
                                    and   msgnr = messtab-msgnr.
          if sy-subrc = 0.
            mstring = t100-text.
            if mstring cs '&1'.
              replace '&1' with messtab-msgv1 into mstring.
              replace '&2' with messtab-msgv2 into mstring.
              replace '&3' with messtab-msgv3 into mstring.
              replace '&4' with messtab-msgv4 into mstring.
            else.
              replace '&' with messtab-msgv1 into mstring.
              replace '&' with messtab-msgv2 into mstring.
              replace '&' with messtab-msgv3 into mstring.
              replace '&' with messtab-msgv4 into mstring.
            endif.
            condense mstring.
            it_messtab-message = mstring(300).
            it_messtab-plant = p_werks.
            if messtab-msgtyp = 'E'.
              it_messtab-status = 'Error'.
            else.
              it_messtab-status = 'Success'.
            endif.
            append it_messtab.
            clear it_messtab.
          endif.
        endloop. "messtab
        if not it_messtab[] is initial.
          perform buildcatalog.
          perform display.
        endif.
      endif.
    *&      Form  Map_Rec
    *       text
    form  map_rec.
      perform bdc_dynpro      using 'SAPMM07M' '0400'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'RM07M-WVERS3'.
      perform bdc_field       using 'BDC_OKCODE'
                                    'NPE'.
      perform bdc_field       using 'MKPF-BLDAT'
                                    v_bldat.
      perform bdc_field       using 'MKPF-BUDAT'
                                    v_budat.
      perform bdc_field       using 'RM07M-BWARTWA'
                                    p_bwart.
      perform bdc_field       using 'RM07M-WERKS'
                                    p_werks.
      perform bdc_field       using 'RM07M-LGORT'
                                    p_lgort.
      perform bdc_field       using 'XFULL'
      perform bdc_field       using 'RM07M-XNAPR'
                                    'X'.
      perform bdc_field       using 'RM07M-WVERS2'
      perform bdc_field       using 'RM07M-WVERS3'
                                    'X'.
      loop at itab.
        count = count + 1.
        perform bdc_dynpro      using 'SAPMM07M' '0410'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'MSEG-EXBWR'.
        if count <> no_lines.
          perform bdc_field       using 'BDC_OKCODE'
                                        '=NPE'.
        elseif count = no_lines.
          perform bdc_field       using 'BDC_OKCODE'
                                        '=BU'.
        endif.
        perform bdc_field       using 'MSEG-MATNR'
                                      itab-MATNR.
        perform bdc_field       using 'MSEG-ERFMG'
                                      itab-ERFMG.
        perform bdc_field       using 'MSEG-EXBWR'
                                      itab-EXBWR.
      endloop. "itab
    endform. "Map_Rec
    **      Form  BDC_DYNPRO
    form bdc_dynpro using program dynpro.
      clear w_bdcdata.
      w_bdcdata-program  = program.
      w_bdcdata-dynpro   = dynpro.
      w_bdcdata-dynbegin = 'X'.
      append w_bdcdata to t_bdcdata.
    endform.                    "bdc_dynpro
    **      Form  BDC_FIELD
    form bdc_field using fnam fval.
      if fval <> space.
        clear w_bdcdata.
        w_bdcdata-fnam = fnam.
        w_bdcdata-fval = fval.
        append w_bdcdata to t_bdcdata.
      else.
        clear w_bdcdata.
        w_bdcdata-fnam = fnam.
        w_bdcdata-fval = fval.
        append w_bdcdata to t_bdcdata.
      endif.
    endform.                    "bdc_field
    *       FORM buildcatalog                                             *
    form buildcatalog.
      clear wa_fcat.
      clear it_fieldcat.
      colcnt = colcnt + 1.
      wa_fcat-col_pos      = colcnt.
      wa_fcat-fieldname    = 'PLANT'.
      wa_fcat-tabname      = it_messtab.
      wa_fcat-seltext_l    = 'PLANT'.
      wa_fcat-key          = 'X'.
      wa_fcat-outputlen  = '10'.
      append wa_fcat to it_fieldcat.
      clear wa_fcat.
      colcnt = colcnt + 1.
      wa_fcat-col_pos      = colcnt.
      wa_fcat-fieldname    = 'STATUS'.
      wa_fcat-tabname      = it_messtab.
      wa_fcat-seltext_l    = 'STATUS'.
      wa_fcat-outputlen  = '10'.
      append wa_fcat to it_fieldcat.
      clear wa_fcat.
      colcnt = colcnt + 1.
      wa_fcat-col_pos      = colcnt.
      wa_fcat-fieldname    = 'MESSAGE'.
      wa_fcat-tabname      = it_messtab.
      wa_fcat-seltext_l    = 'Message'.
      wa_fcat-outputlen  = '90'.
      append wa_fcat to it_fieldcat.
    endform.                    "buildcatalog
    *       FORM display                                                  *
    form display.
      l_title = text-002.
      l_repid = sy-repid.
      call function 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = l_repid
          i_grid_title       = l_title
          it_fieldcat        = it_fieldcat
          it_events          = i_events[]
        TABLES
          t_outtab           = it_messtab
        EXCEPTIONS
          program_error      = 1
          others             = 2.
      if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    endform.                    "display
    Regards,
    Amit

  • Can you use more than one email address on one account as to enable two or three devices to use imsg????

    Can you use more than one email address on one account as to enable two or three devices to use imsg as when i add new email address's in settings it just says veriyfying and nothing happens????

    If I read your question right, yes.
    My pad has two e mail addresses, and my phone has a phone number as well as a e mail address.  For each device you can add additional 'receive at' addresses in settings.
    Note, when you add a new address, apple will send an e mail to that new address that you need to respond to, to show that it is a valid address.  So look in the inbox of that e mail account for the verification e mail.  Note further, some spam filters think that the verification e mail might be spam, so if it does not show up in your in box, look in any spam file you might have.
    in my case, the verification e mail came within a few minutes of declaring the new address.
    The multiple address are useful if you have more than one device under your apple id, and want to be able to send stuff to that particular device.

  • Cannot get more than 8 item in list component

    Hi,
    I can't get more than 8 items in list component using getItemAt(), it returns null. I will search more for this but no result.
    Please Help me here to move to next step.
    Thanks
    Sureshkumar G

    If you're asking if you can overall, yes you can:
    http://help.adobe.com/en_US/as3/components/WS5b3ccc516d4fbf351e63e3d118a9c65b32-7f41.html
    If you're asking if you can do this in the same context, off-screen, no you still get the same error as the .enabled property.
    I hate to throw a hunch but I feel as though Adobe is employing something I'm used to in native iOS programming (Apple Devices). In lists they have something called "dequeue". It's the reason an extremely long list scrolls smoothly. What it does is render ONLY the rows that are in view. When a row is about to scroll off view it deallocates it from memory and then recreates the next row. They do this so you only ever have the current amount of viewable rows in memory and it speeds up scrolling. Although, I can make property changes to items in an iOS list that's off-screen so they don't have this issue ;(.  Just food for thought.
    I'd submit it to the bugbase and see what Adobe states. They may say they intend you to get the item in view, alter it and then go back to your previous position. That would be silly but at most I can tell you I definitely get errors trying to access an element outside my view. They're probably not used to items needing visual toggles when you can't even see them.
    edit:
    On a further note I tried the scrollToIndex() method, tried to disable, that much worked fine. The second I then scrolled back to the previously selected index the list screwed up.
    I even daisy chained functions a second apart (30 frames worth of wait). I scrolled down and that worked so I waited 1 second. I disabled the visible item I wanted to and that worked so I waited another second. I scrollToIndex(0) to get back to the top of the list, the list blew up. Random items (several items) were disabled and the one that I explicitly disabled was enabled.

  • Change "Recent Places" to more than 5 items?

    I really like the "recent places" dialog box when saving items across applications. But I wish I could see more than five items in the list.
    Is there a way to change it to 10 or 15 places?

    DavidM3, any luck?
    Wondered if you ever found a solution to this, or if anyone can direct me to a thread revolving around this conversation in particular?
    I've been searching for an answer to this functionality for months with no avail, and with not being able to find anyone even asking the same questions as me. I like that you are able to expand the recent places drop down with the aforementioned Terminal command, but that's only in the Save As / Open dialogs. I'm interested in that same functionality for a basic Finder window (not within an application). What's interesting is that in the image below, you can see that Apple has included a feature similar to what we want, but only contains the breadcrumb trail to what folder we are in currently. As you know, that is what composes the top half of any drop down menu in Save As / Open dialog windows. But the bottom half is recent folder locations, including network (server) AND local folders. This is crucial and would be a super speedy improvement to my workflow. I know people say to use Smart Folders/ Smart Searches but that doesn't include network locations—only local.
    If anyone has any knowledge of how to maybe get a Finder hack or 3rd party app to create this functionality, I would be eternally grateful! Maybe this is a feature I could request of the noble people behind the app XtraFinder (a great little app for those looking for expanded Finder functionality).

  • How can i put more than one item in a same row of a form?

    guys!
    it seems item is positioned in a single row one by one each time item is appened to a form. i can't append more than one item in same row.
    i'm using sun wtk and default colored phone emulator.
    xxxx

    Hi,
    It is not possible to have more than one combo in the source frame. This is because frame drivers can take only
    two columns in the sql query, one is the display value and the other the return value.
    Thanks,
    Sharmila

  • How can i get more than 1000 items in Custom List Displaying Items?

    http://.....sites/_vti_bin/listdata.svc/AddressBook(List) allows 1000 items Only my AddressBook List, but i have more than 1000 items in my AddressBook list. I want to get items
    from AddressBook list and bind in another place using Autocomplete method like this.
    =======>>>>listurl=http://.....sites/_vti_bin/listdata.svc/AddressBook.
    and my coding in camel like below
    protected void btnpopulatedetails_Click(object sender, EventArgs e)
    SPSite objSite = SPContext.Current.Site;
    SPWeb objWeb = objSite.OpenWeb();
    objWeb.AllowUnsafeUpdates = true;
    SPList list = objWeb.Lists["Address Book"];
    SPQuery query = new SPQuery();
    query.QueryThrottleMode = SPQueryThrottleOption.Override;
    query.Query = "<Where><Eq><FieldRef Name='Title'/><Value Type='Text'>" + txtcustomer.Value + "</Value></Eq></Where>";
    query.RowLimit = 500;
    SPListItemCollection items = list.GetItems(query);
    function fnCustomerSearchBind() {
    if ($("input[id$='txtcustomer']").length != 0) {
    var collcustomer = searchCustomers('', urlTo, fieldto);
    $("input[id$='txtcustomer']").autocomplete({
    source: collcustomer,
    //maxLength:10,
    select: function (event, ui) {
    //debugger;
    event.preventDefault();
    $("input[id$='txtcustomer']").val(ui.item.value);
    $("input[id$='btnpopulatedetails']").click();
    return false;
    minLength: 0,
    function searchCustomers(value, listurl, fieldto) {
    var collcus = new Array();
    var custresults;
    var url =listurl + "?$filter=startswith('" + fieldto + "','" + value + "')";
    //debugger;
    $.ajax({
    cache: true,
    type: "GET",
    async:false,
    dataType: "json",
    url: url,
    success: function (data) {
    custresults = data.d.results;
    //alert(listurl);
    // alert(data.d.results);
    for (var x = 0; x < custresults.length; x++) {
    //alert(custresults[x]['To']);
    collcustList.push(custresults[x]['To']);
    //debugger;
    //debugger;
    return collcustList;
    In my research listurl=http://.....sites/_vti_bin/listdata.svc/AddressBook has 1000 items in 1st Page by default, So how to change 1st Page by default to All Pages through
    code. I think you understand my environment by look above coding, if you don't I am using office 365 sandbox solution. One more thing i know through my research Pages can be change by using Ado.Net Data Service, i tried this one but this one support windows
    server 2008 r2 only but i am using Windows Server 2012 r2. Please help me if you know the answer.

    Hi,
    Here is a blog would be helpful:
    ADO.NET Data Services returns 1000 items
    https://gilleslauwers.wordpress.com/2010/12/08/ado-net-data-services-returns-1000-items/
    Best Regards,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Is it possible to place more than one Item on same line on the FORM

    Can we placed more than one Item on the form?
    for ex: I want to use TextFields to input the Date of birth in form of DD/MM/YY
    I want to put on the form like
    Enter DOB :- DD MM YYYY
    Please suggest if it is possible any way in J2ME

    It will depend on the phone. There is no way of knowing if the items actually will be on the same line or not. On a phone with a small screen, the items are likely to end up on two lines.
    You can however make sure that the lines will occupy two lines by using the setLayout(int layout) method which belongs to the Item class.

  • [VIA] Via K7-266 Pro2 - System crashes if use more than 512 MB of memory

    Cannot use more than 512 MB of memory or system crashes. After running without a problem for over 2 years with 1 GB of memory installed, system started intermittent crashing, generally after 5 to 30 minutes of use.  I worked with the system manufacturer's tech support and they determined that it must be a motherboard problem.  I am hoping to find another fix rather than replacing motherboard.  System details:
    MB: Via K7-266 Pro2 (MS 6380)
    OS: MS Windows XP Update 1
    Bios: V3.6
    I've used Norton Systemworks and Norton Anti-Virus to keep system clean, and SpyBot and Adaware to clean adware
    During troubleshooting, we found that it will run with 512 MB of memory without problems, but not with the 1 GB I had installed.  My memory was 2 x 256 MB installed with the machine and 512 MB I purchased from Crucial and installed.  Computer ran over 2 years with all memory installed without a problem.  After the problem started and during troubleshooting, we found that any combination of 512 MB worked fine (either the 2 x 256 MB or the one 500MB chip), apparently in any arrangement of slots.  But as soon as I went to higher memory, I was subject intermittent crashes.
    Could not ID the source of the crash.  It sometimes happened when I was working with a single program open (various programs from IE to Excel to playing at GameSpy), had multiple programs open in background, or even when computer was sitting idle with only the startup programs active.
    During troubleshooting we also did a complete re-install of Windows XP, updated the bios to V3.6, and checked bios settings, but the problems persists. 
    What else could be the problem?

    I am beginning to suspect a PSU problem.  I neglected to mention in my first post that when the system crashes, it does not freeze but has intermittent reboots.
    I ran the memtest86+ test first on the two old sticks of memory then on just the one new 512 MB stick; both passed the test.  I also used the Prime95 stress test on both sets, and both ran without incident.
    I used PC Alert to report CPU and case temperatures during the stress test.  The results maxed at 54 and 41 degrees respectively during the first stress test and 46 amd 39 degrees during the second test (I think part of the difference was due to a lower ambient, room temperature during the second test.)  The voltages reported during both tests were similar and were: Vcore1: 1.71v;  Vcore2: 1.26v; +5v: 4.76v; 3.3v: 3.31v; +12v: 11.60v; and -12v: 12.60v.  I am not sure if that information is meaningful, PCAlert showed all measurements as within the required range.
    I periodically have cleaned the dust out of my computer, so I don't think that is the problem.
    I used 2 power calculators with major differences in the reported status of the system. The test from pcpowercooling reported minimum and maximum requirements for my system (with the full 1 GB of memory installed) of 300w and 510w.  The alternate I found at jscustompcs (from a recent article about power supplies at Extreme Tech) reported a minimuum of 256w (no maximum is calculated with their tool.  The two tools had significant differences for memory, CPU, and PCI cards.  Off particular relevance to my problem was the difference in memory requirements; Pcpowercooling calculated memory requirements at 8w per 128MGB while jcustompcs used 12.5 per stick, resulting in different totals of 64w vs. 21w.  Which is right?
    One item that makes me think it is not the PSU, however, is that the problem would occur with the 1 GB of memory while the system was idle, thus I was not using any of the hardware devices.  However, I never experienced the problem while using a device (e.g. DVD, CDRW, or tape drive) - either with 500MB or 1GB of memory.
    My power unit is a Power Man #FSP 300-60BTV with 300w output, including +3.3v: 28amps; +5v: 30.0 amps; +12v: 15 amps; +5vsb: 20amps; -5v: 0.3amps; -12v: 0.8amps.  It also notes max output of +3.3v and +5v of 200amps.
    My system also includes a Leadtek nVidia Geforce 3 Ti400 graphics card, DVD, CDRW, HP 14 GB tape drive, 1 case fan, and 4 PCI cards (modem, network, USB2.0, and Audigy 1).  The USB card is connected only to a bus in my Dell monitor and I have not used other USB devices.
    Any thoughts or suggestions?  Do I need to replace the PSU?

  • GR-GI printout for more than one item in one document

    Hi Friends,
    In my GR document, there are more than one materials receipted in one document. I am taking the printout of GR slip by assigning the printer in MB02 T-Code. And then through MB90 i am taking the printout. But in MB90 in the print preview, I can see only one item at a time. where as I have receipted more than one item in one document. In MB02 I have to assign the printer one by one to each item and in MB90 also i can see only one item in the GR slip. How can I take the printout of the of all the items in the GR document all at a time??????
    Same is the case for Goods Issue slip. Here also i can see the print preview of only one item at a time.
    Please advice.
    Thanks & Regards
    Satya

    Satyabrata,
    <b>In transaction "OMBR" define print version indicator as "3" for the transactions through which you are creating this material document</b> this basically defaults when performing the transaction. You can also set the indicator to collective in the intial screen of the transaction.
    Defination of print version:
    Version for printing of GR/GI slip, Specifies the version of the goods receipt/issue slip.
    You can print out three different versions of a GR/GI slip:
    <b>Individual slip (version 1)</b>
    In this case, one GR/GI slip is printed out for each item.
    <b>Individual slip with inspection text (version 2)</b>
    In this case, one GR/GI slip is printed out for each item. In addition, a quality inspection text is printed if there is one in the material master record.
    <b>Collective slip (version 3)</b>
    In this case, a collective slip including all the items in a document is printed.
    Hope this helps...
    Regards,
    Prasobh

  • Multiple AirPort Express units - use more than one at a time?

    If I connect three Airport Express units in three different rooms, can I use more than one at a time?
    Can I choose to only use 2 out of the 3 at one time?
    Thanks.

    Yes. With iTunes 6.0.2 or later, you can send an AirTunes stream to multiple remote AirPort Express units, provided that each AirPort Express has the latest AirPort firmware. The maximum number of remote AirPort Express units is three to six in typical conditions. The number that works for you will depend on your environmental conditions (such as building composition and local radio interference), distance to the remote AirPort Express units, and available network capacity relative to your other usage.

Maybe you are looking for