Hide the value..

Hi,
How to hidden a value in standard report region record on page load?
for example below is my standard report region record.
A        B         C
1        2         3
4        5         6on page load i want to hide the value 1 and 2 from first record. i.e i want below output.
A        B         C
                   3
4        5         6i used apex item in select query(in region source) of report region(type:sql query)
i.e select apex_item.text(1,A,2),apex_item.text(2,B,2)....
How to achive this?

I would do it in the query, example:
Select Apex_Item.Text(p_idx,CASE WHEN your_logic THEN Your-Column-Value ELSE NULL END,rest of parameters), Next column,...
From...
Where...

Similar Messages

  • Hide the value of certain cells in ALV GRID

    Hello Gurus,
    i need to hide the value or show a icon instead ib certain cells in the ALV GRID for the users that don't have the corresponding rights. Can anyone help?
    Regards,
    Ioan Constantin.

    Check this example, you'll need to adjust it to your authority object to run it.
    TYPES: BEGIN OF t_alv,
             mandt TYPE s_mandt,
             carrid TYPE s_carr_id,
             connid TYPE s_conn_id,
             fldate TYPE s_date,
             price TYPE s_price,
             currency TYPE s_currcode,
             planetype TYPE s_planetye,
             seatsmax TYPE s_seatsmax,
             seatsocc TYPE s_seatsocc,
             paymentsum TYPE s_sum,
             seatsmax_b TYPE s_smax_b,
             seatsocc_b TYPE s_socc_b,
             seatsmax_f TYPE s_smax_f,
             seatsocc_f TYPE s_socc_f,
             planetype2 TYPE s_planetye,
           END OF t_alv.
    DATA: go_alv     TYPE REF TO   cl_gui_alv_grid,
          gt_sflight TYPE TABLE OF sflight,
          gt_alv TYPE STANDARD TABLE OF t_alv,
          wa_fl TYPE sflight,
          wa_fl2 TYPE t_alv,
          gt_fieldcat TYPE lvc_t_fcat,
          wa_fcat TYPE lvc_s_fcat.
    FIELD-SYMBOLS <gs_fcat> TYPE lvc_s_fcat.
    SELECTION-SCREEN BEGIN OF SCREEN 1001.
    SELECTION-SCREEN END   OF SCREEN 1001.
    START-OF-SELECTION.
      SELECT * FROM sflight INTO TABLE gt_sflight.
      LOOP AT gt_sflight INTO wa_fl.
        wa_fl2 = wa_fl.
        IF sy-tabix <> 5.
          wa_fl2-planetype2 = wa_fl2-planetype.
        ENDIF.
        APPEND wa_fl2 TO gt_alv.
      ENDLOOP.
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
       EXPORTING
          i_structure_name             = 'SFLIGHT'
        CHANGING
          ct_fieldcat                  = gt_fieldcat.
      LOOP AT gt_fieldcat ASSIGNING <gs_fcat>.
        wa_fcat = <gs_fcat>.
        IF wa_fcat-fieldname = 'PLANETYPE'.
          wa_fcat-fieldname = 'PLANETYPE2'.
          wa_fcat-col_pos = 7.
          AUTHORITY-CHECK OBJECT 'ZPERMISO16'
              ID 'ZPERMI' FIELD '01'.
          IF sy-subrc = 0.
            wa_fcat-tech = 'X'.
            wa_fcat-no_out = 'X'.
          ELSE.
            <gs_fcat>-tech = 'X'.
            <gs_fcat>-no_out = 'X'.
          ENDIF.
          APPEND wa_fcat TO gt_fieldcat.
        ENDIF.
      ENDLOOP.
      CREATE OBJECT go_alv
        EXPORTING
          i_parent = cl_gui_container=>screen0.
      CALL METHOD go_alv->set_table_for_first_display
        CHANGING
          it_outtab                     = gt_alv
          it_fieldcatalog               = gt_fieldcat .
      CALL SELECTION-SCREEN 1001.

  • How hide the value in combobox

    Hi all
    I add the vales and discrption to comboBox ,but I need to hide the value
    please help me

    Unforunately I do not think this can be done.
    You can set what the combobox will display after selecting from the drop down by setting oItem.DisplayDesc = true
    But to hide the values in the actual drop down list is not possible as far as I know - using the SDK at least. I know some combos are displayed like that by SAP, but this is not exposed to the UI.
    The only thing I can think of is a workaround:
    1. Move the existing combo box (combo1) off the form - set it to left=10000 or something
    2. Add a new combo box (combo2) where it was
    3. Add valid values to the new combo box (combo2); use the descriptions from the original combo (combo1) and set the value to be a number
    4. When someone selects a validvalue in the new combo (combo2), select the corresponding value in the original combo (combo1)
    This way, your databinding is preserved & to the user it looks nice and tidy.
    If you do not want to do something like this, I do not think you can do it.

  • [WPF] Use IValueConverter but hide the value in cell

    Hi, 
    I have a column with a range of age.
    I'm using a Convert to set a background color to a single cell of my column 'age'...
    I would color the cell but hide the numeric value.
    I can set a custom background, but I can't hide the value.
    How can I make this?
    This is my code:
    XAML:
                        <DataGridTextColumn Binding="{Binding Age}" Header="Age - Color Range" Width="200">
                            <!-- COLOR CELLA -->
                            <DataGridTextColumn.ElementStyle>
                                <Style TargetType="{x:Type TextBlock}">
                                    <Setter Property="Background" Value="{Binding Age, Converter={StaticResource ColorToCell}}"/>
                                </Style>
                            </DataGridTextColumn.ElementStyle>
                        </DataGridTextColumn>
    C#
    public class ColorToCell : IValueConverter
            public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
                int tempValue = int.Parse(value.ToString());
                string tempString = "Red";
                if (tempValue >= 0 && tempValue <= 20)
                    tempString = "#FF0000";
                if (tempValue > 20 && tempValue <= 40)
                    tempString = "#F09300";
                if (tempValue > 40 && tempValue <= 60)
                    tempString = "#EDDF00";
                if (tempValue > 60 && tempValue <= 80)
                    tempString = "#CC00FF55";
                if (tempValue > 80 && tempValue <= 100)
                    tempString = "#85AB00";
                SolidColorBrush brush = new SolidColorBrush();
                BrushConverter conv = new BrushConverter();
                brush = conv.ConvertFromString(tempString) as SolidColorBrush;
                return brush;
            public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
                return DependencyProperty.UnsetValue;
    Thanks.

    If you want to hide the value in the cell you could just set the Visibility of the TextBlock to Collapsed based on some converter logic:
    <DataGridTextColumn.ElementStyle>
    <Style TargetType="{x:Type TextBlock}">
    <Style.Triggers>
    <DataTrigger Binding="{Binding Age, Converter={StaticResource ageConverter}}" Value="True">
    <Setter Property="Visibility" Value="Collapsed"/>
    </DataTrigger>
    </Style.Triggers>
    </Style>
    </DataGridTextColumn.ElementStyle>
    Return true from the Convert method of the ageConverter to hide the TextBlock. You can then set the background of the cell using a CellStyle:
    <DataGridTextColumn.CellStyle>
    <Style TargetType="DataGridCell">
    <Setter Property="Background" Value="{Binding Age, Converter={StaticResource ColorToCell}}"/>
    </Style>
    </DataGridTextColumn.CellStyle>
    The other option is to set the Foreground property of the TextBlock to the same colour as the Background:
    <DataGridTextColumn.ElementStyle>
    <Style TargetType="{x:Type TextBlock}">
    <Setter Property="Background" Value="{Binding Age, Converter={StaticResource ColorToCell}}"/>
    <Setter Property="Foreground" Value="{Binding Age, Converter={StaticResource ColorToCell}}"/>
    </Style>
    </DataGridTextColumn.ElementStyle>
    Please remember to mark helpful post(s) as answer to close your threads.

  • Hide the value into report if the value is same

    Dear All,
    In my one of report the list now displaying as below:
    Item    Mat.Code         Qty         
    10       FAA001C          100 pcs
    20       FAA001C          200 pcs
    30       FAA001C          300 pcs
    But I need it should like as below:
    Item    Mat.Code         Qty         
    10       FAA001C          100 pcs
    20                                  200 pcs
    30                                  300 pcs
    If the material code is same only first It will show others will hide.
    Please advice me with given some example.
    Thanks with regards
    Bishnu/27-11

    Hi, Bishnu
    Test the following sample code.
    TYPES:  BEGIN OF ty_test,
            posnr TYPE posnr_va,
            matnr TYPE matnr,
            END OF ty_test.
    DATA: it_test TYPE STANDARD TABLE OF ty_test,
          wa_test LIKE LINE OF it_test,
          old_matnr TYPE matnr.
    wa_test-posnr = 1. wa_test-matnr = 'AAA'. APPEND wa_test TO it_test.
    wa_test-posnr = 2. wa_test-matnr = 'AAA'. APPEND wa_test TO it_test.
    wa_test-posnr = 3. wa_test-matnr = 'AAA'. APPEND wa_test TO it_test.
    LOOP AT it_test INTO wa_test.
      IF wa_test-matnr <> old_matnr.
        WRITE: / wa_test-posnr, wa_test-matnr.
      ELSE.
        WRITE: / wa_test-posnr .
      ENDIF.
      old_matnr = wa_test-matnr.
    ENDLOOP.
    Out Put
    000001 AAA
    000002
    000003
    Regards,
    Faisal

  • ALV Grid - Hiding the values of a feild and disabling checkboxs

    Hello,
    I have a report that requires the need to hide certain fields in an ALV report as well as checkbox in certain rows.
    So example I want to turn the ALV's output from ....
    PO Number
    PO Item
    450000001
    001
    450000001
    002
    450000001
    003
    450000002
    001
    450000002
    002
    [   ] = checkbox
    to the desired output below ...
    PO Number
    PO Item
    450000001
    001
    002
    003
    450000002
    001
    002
    so baically I want to do 2 things
    1. Hide the values of certain fields if the value from the previous row is identital and ...
    2. .... only include checkboxes for each new value of that column by either hiding (preferable) or disabling them.
    Hope to hear from all of you soon.
    Thank you all and good day.

    Hi Chad Cheng,
    U have a variable IT_SORT in the FM REUSE_ALV_GRID_DISPLAY.
    IT_SORT -fieldname = ur fieldname 1.
    IT_SORT-up = 'X' or IT_SORT-Down = 'X'.
    Append it_sort.
    IT_SORT -fieldname = ur fieldname 2.
    IT_SORT-up = 'X' or IT_SORT-Down = 'X'.
    Append it_sort.
    awrd points if helpful
    Bhupal

  • Hiding a table column and its contents yet reading the values

    Hi all,
    hope someone can help as i urgently need a solution for this although its probably more of a javascript and html forms question than a JSP - but i couldnt find a good javascript forum - if any one has come across a good JS and HTML - i would appreciate if you would let me have a url for it - in the meantime as i need this urgentely and most JS sites that i have visted and posted on seem to be useless, i havent got a reply back yet , and since i've always found java sun forum good and helpful thought would post it here - hope no one minds it too much . Thanks in advance for any help with resolving my urgent problem.
    overview of question:
    I need to, using an onclick() event read the contents of the 4th cell in the clicked row and set the value of a hidden element � (not sure what element to use here attribute tag? Or some other - but basically, this needs to also be hidden, as I�m going to use this as one of the parameters to send through as part of the form - )
    explanation of question
    So when I do :-
    <td><netui:label value="{container.item.TELECARERID}"/></td> And using javascript :-
    row.cells[4].innerText;I can read the value and print it to screen as :-
    alert('row.cells[4].innerText)) = ' + row.cells[4].innerText);although at this stage I�m not sure how to now set this value to an element in the form so that I can include this value as part of the submit action of the form.
    However when I do the following, which is closer to what I�m trying to achieve (ie hide the 4th column of the table and its values � but when I just hide the value as in:-
    <td><netui:hidden dataInput="{container.item.TELECARERID}" dataSource="" /></td> I can�t use the above (row.cells[4].innerText;), javascript syntax to get to the value although the value is still in the viewsource of the html page.
    How can I hide this forth column of the table yet get the values of the 4th column and also set it to some element of the form so that it can be submitted with the date range as part of a criteria to search against by the backend server.
    the full code (well... relevant parts)
    Here is all the code:
    <table id="table1" class="tablebody" border="1">
            <tbody>
             <tr>
               <th><rpb:columnHeader field="FIRSTNAME"><i18n:getMessage messageName="first_name"/></rpb:columnHeader></th>
               <th><rpb:columnHeader field="LASTNAME"><i18n:getMessage messageName="last_name"/></rpb:columnHeader></th>
              <th><rpb:columnHeader field="LOGONNAME"><i18n:getMessage messageName="logon_name"/></rpb:columnHeader></th>
              <th><rpb:columnHeader field="TEAM"><i18n:getMessage messageName="team"/></rpb:columnHeader></th>
               <th><rpb:columnHeader field="TELECARERID"><i18n:getMessage messageName="telecarer_id"/></rpb:columnHeader></th>
            </tr>
           </netui-data:repeaterHeader>
           <netui-data:repeaterItem>
            <tr bgcolor="#FFFFFF" onMouseOver="this.bgColor='gold';" onMouseOut="this.bgColor='#FFFFFF';" onclick="selectTeleCarer(this)">
            <td><netui:label  value="{container.item.FIRSTNAME}"/></td>
              <td><netui:label value="{container.item.LASTNAME}"/></td>
             <td><netui:label  value="{container.item.LOGONNAME}"/></td>
           <td><netui:label  value="{container.item.TEAM}"/></td> 
            <td><netui:label value="{container.item.TELECARERID}"/></td>
           </tr>
          </tbody>///////and then I�m trying to using the below sepertaely printed javascript set it to the below hidden attribute so that it can be submitted as part of the form
    <netui:hidden tagId="teleCarerId" dataSource="{actionForm.teleCarerId}" dataInput=""/>
                                 <div>
                             <i18n:getMessage messageName="created_between"/>
                                <netui:textBox tagId="data" dataSource="{actionForm.fromDate}"/>
                                <button id="trigger" onclick="jscalendar/calendar.js">...</button>
                               <i18n:getMessage messageName="and"/>
                                <netui:textBox tagId="data1" dataSource="{actionForm.toDate}"/>
                                <button id="trigger2" onclick="jscalendar/calendar.js">...</button>
                            </div>
                    <br />
                    <netui:button value="Submit" type="submit"/>
                </netui:form>/// the java script is :-
    function selectTeleCarer(row)
        if ( row.style ) {
    row.style.backgroundColor = ('gold' == row.style.backgroundColor)?
    'white' : 'gold';
    //document.form.teleCarerId.value = row.cells[4].innerText;
    alert('row.cells[4].innerText)) = ' + row.cells[4].innerText);
    }

    thanks for the reply,
    but i cant use just html like <input type hidden > as i'm using the struts like framework with the netui tags in weblogic where i need to link the tag value to the form bean to be passed to the server . thus i need to use the netui tag , which doesnt have a name but a tagId instead, so i'm using it like this :
    <netui:hidden tagId="teleCarerId" dataSource="{actionForm.teleCarerId}" dataInput=""/>and then in javascrpit doing:
    //document.form.teleCarerId.value = row.cells[4].innerText;but thats not my problem ()as it probably will work and its only an issue after i resolve the first part of my question:-
    which is how do i hide a cloumn in a table and its values so that when the user selects a row i can pass the hidden value of row as part of my form .
    as i mentioned before when i make the cloumn visible as in
      <th><rpb:columnHeader field="TELECARERID"><i18n:getMessage messageName="telecarer_id"/></rpb:columnHeader></th>and give it a visible value:
      <td><netui:label value="{container.item.TELECARERID}"/></td>
           </tr>i can pick up the value fine using the javascript syntax:
    row.cells[4].innerText;however when i hide only the value - which is only part of what i want to do as i want to also hide the column heading so that this part of the table isnt seen- as in:-
    <td><netui:hidden dataInput="{container.item.TELECARERID}" dataSource="" /></td>then i cant use
    row.cells[4].innerText;to pick up the value although it does hide the value and in viewsourec the value is there - is there some other syntax that i should be using here - and also how can i hide the cloumn heading so that the table looks asthtically good on the browser?
    ie. what should i change this line of code to?
      <th><rpb:columnHeader field="TELECARERID"><i18n:getMessage messageName="telecarer_id"/></rpb:columnHeader></th>thanks in advance for any help.

  • Clear the values in the ALV report after calculating Subtotals

    Hi All,
    In my ALV report, I am displaying subtotals by passing DO_SUM in the Field Catalog.
    Now my problem is in the display I do not want the individual values to be displayed, I want to hide the values in the column(Not the whole column) but I want to display the subtotal of these values in the Subtotal Row.
    Example:
    Item1   10   20
    Item2   20   30
    Item3   10   50
               40   100
    As per our requirements, the output should be
    Item1
    Item2
    Item3
              40   100
    How can this be done? Please suggest.

    Populate i_sort table for the fields for which u want subtotal as shown below:
    *&      Form  sub_populate_sort
          Populate ALV sort table
          No Parameter
    FORM sub_populate_sort .
    Sort on material
      wa_sort-spos = '01' .
      wa_sort-fieldname = 'MATNR'.
      wa_sort-tabname = 'I_EKPO'.
      wa_sort-up = 'X'.
      wa_sort-subtot = 'X'.
      APPEND wa_sort TO i_sort .
      CLEAR wa_sort.
    Sort on plant
      wa_sort-spos = '02'.
      wa_sort-fieldname = 'WERKS'.
      wa_sort-tabname = 'I_EKPO'.
      wa_sort-up = 'X'.
      wa_sort-subtot = 'X'.
      APPEND wa_sort TO i_sort .
      CLEAR wa_sort.
    ENDFORM.                    " sub_populate_sort
    Then when populating the field catalog tables use:
    wa_lfl_fcat-no_out         =  'X'.        "No output
    Then display ur data:
    This function module for displaying the ALV report
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program       = l_repid
          i_callback_top_of_page   = 'SUB_ALV_TOP_OF_PAGE'
          is_layout                = wa_layout
          it_fieldcat              = i_fieldcat
          it_sort = i_sort
          it_events                = i_event
          i_default                = 'X'
          i_save                   = 'A'
        TABLES
          t_outtab                 = i_ekpo
        EXCEPTIONS
          program_error            = 1
          OTHERS                   = 2.
    Regards,
    Joy.

  • Hide "All values" in input controls?

    Hey guys,
    I'm wondering that I could not find my question already in this forum but however - this is my question:
    Isn't it possible to hide the value "All values" in the input controls? In some cases it just doesn't make sense to leave that into the input-control-field.
    I.e. if I want to give the possibility to switch between Euro, kEUR and mEUR I need to hide the "All values" radio button (see screenshot).
    But how can I do that?
    Thanks for your help !
    Oliver

    Hi,
    That was a very useful answer!
    I have a quick question - I am in BO 4.0 (not 4.1) and I would like to default the "All values" selection to a specific value.
    I have defined the input control using Var_Currency_Type (dimension) and have assigned two values i.e. 'USD' & 'Local Currency'.   The default value is 'USD'.
    The input control works fine. When I select either USD or Local Currency.
    but, I do not see any table when I select 'all values'.  I would like it to display 'USD' when user selects 'All Values'.
    =======================================================================
    In the format table (two tables - one for USD and one for Local currency), I have put in the formula:
    x - Hide when following formula is true
    =ReportFilter([Var_Curency_Type])<>"USD" -- for USD table
    and = ReortFilter([Var_Currency_Type])<>"Local Currency" for Local Currency table.
    ======================================================================
    Does anyone have encoutered this situation.  Could you please share the solution?
    Thanks for your time.

  • Hide cost value in documents.

    Dear everybody,
    Someone knows, if there is some choice to hide the value in the field cost.   I dont know if I am wrong, but I heard its possible marke that value with asterisks to protect it.
    I was trying in general authorizations but the value is always visible.
    Thanks a lot.
    Daniel.

    Thanks a lot Gordon,
    This recomendation is to do it in every document, for example I should do it in the item master data and to all of every marketing documents too and after I have to make an Aditional Authorizations creator to the form settings? If I am wrong thanks for your future information.
    Is there other choice to do this topic general in the way to protect the cost value for all the users and documents.
    Thanks a lot for your help.
    Daniel

  • How hide the discriptions on list of comboBox

    Hi All
    I need to hide the discriptions on list of comboBox
    please help me

    Hi,
    You can check this: How hide the value in combobox
    Try oItem.DisplayDesc = false
    Thanks,
    Gordon

  • How to hide a field based on the value of a field in a different subform - null check doesn't work!

    I'm using Javascript to set the actions. I need to hide a text field if the value of a field in another sub-form is null.
    - tried checking the value of the other field for null - doesn't work
    - tried setting a variable str2 where I know the value of the other field is available then checking that variable when I initialize the text field - doesn't work
    What am I missing?

    Hi.
    Try this in the originating sub form referring to the text field (X). 
    if (this.rawValue = 1)
              X.presence = "visible";
    else if (this.rawValue = null)
              X.presence = "hidden";

  • Hide subtotal based on the values not the field.

    Hi,
    i am developing an ALV(FM) report to display the status of the Sale order (cleared and not cleared). my need in this is
    1. i need to show the subtotal of the cleared sales orders values only and hide the not cleared SO values.
    2. while sorting by status, i want to show the status for each rows rather than displaying on the whole.
    please provide me some hints for this.
    thanks in advance.

    Hi,
    Have you appended the fields to sort table like this:
    it_sort-fieldname = 'Item Field'.
    IT_SORT-TABNAME = 'GI_FINAL'.
    IT-SORT-SPOS = '2'.
    IT_SORT-SUBTOT = 'X'.
    IT-SORT-UP = 'X'.
    APPEND IT-SORT.
    it_sort-fieldname = "Header Field'.
    IT_SORT-TABNAME = 'GI_FINAL'.
    IT-SORT-SPOS = '1'.
    IT_SORT-SUBTOT = 'X'.
    IT-SORT-UP = 'X'.
    APPEND IT-SORT.
    HERE SPOS IS SORTING POSITION...
    LIKE IN YOUR ITAB..
    SORT ITAB BY Header-field and Item-field.
    THE PREFERENCE OF SORTING....
    Regards,
    Kumar.

  • Want to hide the drop down based on text field value

    Hi,
    I want to hide some of the values in drop down based on one text field value.
    I have the field called name which has the value A, B, C, D and also one drop down list which has the values 1,2,3,4,5,6. I want to hide the some of the values in drop down based on A or B or C. Let say, If it is A, drop down value should be 1,3,5. If it is B, Drop down value should be 1,2,3,4. Like this for every record.
    Can you please help me out.
    Thanks
    Ram

    Hi Robert,
    I am trying it in two different way. Please suggest which is the right one and feasible.
    1) I have the drop down list which has all the status. I am trying to hide the drop down values based on one text field value for all records.
    2) I have collected all the drop down values into table in webdynpro method. Rightnow I have two tables.
      one has line items details and another one have drop down values. both tables having common fields.
      I have to show second table values for that particular key, move all of them to drop down.
    Which is the best and feasible option.
    Thanks
    Ram

  • How to Visible/Hide an Item based on the value of another Item

    Hi
    I need to visible and hide a textitem based on the value of another item.This form has 3 blocks, and the both item is in the first Master Block.
    My code is:
    if :RECORDTYPE=7 then
         Set_Item_Property('BLOCK.ITEM',VISIBLE,PROPERTY_TRUE);
         Set_Item_Property('BLOCK.ITEM',ENABLED,PROPERTY_TRUE);
    ELSE
         Set_Item_Property('BLOCK.ITEM',VISIBLE,PROPERTY_FALSE);
    Set_Item_Property('BLOCK.ITEM',ENABLED,PROPERTY_FALSE);
    :BLOCK.ITEM:=NULL;
    end if;     
    I wrote the code in the Validate Trigger, but not working when moving Next Record & Previous Record
    Thanks in advance
    Rizly

    Read the 'Propagation of Property Changes' section towards the end of the page for Set_Item_Property in the online help. I'm not sure what you mean by locking automatically but perhaps it's because of this.
    You should also ensure the item you're setting to invisible is not the current item (check :system.cursor_item and go to a different item if necessary).

Maybe you are looking for

  • How do i Delete an email address on my computer

    I have an email account on my linux based computer. No longer a valid email address. and would like to remove it.

  • New Mavericks Install-Time Machine disk causes Wifi failure.

    Just recently upgraded to Mavericks and have encountered a strange problem.   When my Time Machine external disk is attached, my machine (MacBook Pro 15 Intel 2.53 i5) refuses to connect to my home Wifi (Airport Extreme), giving an error message want

  • Manually create --- Rebate Credit memo

    Hi Gurus, How Can I create a Credit Memo manually which can fuction like a Rebate Credit memo in posting the credit to the G/L Accounts for rebate expenses. we donot want to use the  Rebate agreements. As of standard SAP we cannot create any rebate c

  • SEARCHING FOR TUNSTEN E POWER SUPPLY REPLACEMENT

    I am working here in Baghdad, Iraq and need to know where to purchase a replacement AC adapter. Type is PalmOne  SAC MODEL R3W005-500 PALM PIN:  163-5877A-US INPUT:  120VAC  60HZ  100MA OUTPUT:  5.5VDC 500MA ITE power supply    I think the power supp

  • Filter by cube or by application

    Hi Experts, We want to filter in order that the chief of a shop could see only the stock of his shop, and to put similar filters Is it better to filter by cube or by application? Do you have any design about this issue? Any feedback will be really ap