Attributes to be used for calculation

Hi Experts,
I have a requirement for master data attribute calculation i.e. Vendor payment term's attributes like no of days. This needs to be used in a query for some calculation purpose. I wanted to know if the attributes of a master data can be used in the coulmns for calculation?
Thanks.
Points would be assigned

Hi Shridevi,
Thanks a lot this was very helpful and i am able to use the formula for calculation.
I just wanted a simple information. I have three key fig f1 f2 & f3 and i want a formula to check
if f1 is empty then
formula = f3-f2
else
formula = f3-f1.
Just wanted to know if this could be done in a formula or will i have to write some kind of exit?
Thanks.

Similar Messages

  • Design Table with no of columns used for calculating the total

    Hello,
    I need to design a table/s for calculating the column values based on the operators provided. Like I have a table say
    TableID, Col1 , Col2 ,Col3 ... Total Value
    Total Value Column is calculating Col1 (operator value provided by the user) Col 2 (operator value provided by the user) Col3 etc
    Although I m thinking to create another table which stores operator values, however not sure how to calculate the total.
    like it can be COl 1 +Col2 -Col3 %Col4 etc.
    Please help.

    Can you show some data example+ desired result?
    DECLARE @t TABLE(a INT,b INT,c INT);
    INSERT @t VALUES(1,2,3),(9,8,7),(4,6,5);
    SELECT *
    ,      (   SELECT  COUNT(val) 
               FROM    (VALUES (a)
                           ,   (b)
                           ,   (c)
                       ) AS value(val)
           ) AS  CountVal 
    FROM @t;
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • CPUSPEED - which instruction is used for calculation?

    Hi,
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_stats.htm#sthref6785
    >>
    cpuspeed - average number of CPU cycles for each second, in millions, captured for the workload
    >>
    CPU cycle is described more in details at http://en.wikipedia.org/wiki/CPU_cycle
    Question: Which instruction is used by Oracle kernel to arrive at this number?
    I have a server with two 2.8 GHz Xeon quad core processors running 10.2.0.4.0 on Windows 2003 Server SP1. 10053 event trace shows the CPU to be capable of doing 466 million operations per second. Is it referring to one CPU only or both CPUs combined?
    Excerpt from a 10053 event trace:
    >>
    SYSTEM STATISTICS INFORMATION
    Using NOWORKLOAD Stats
    CPUSPEED: 466 millions instruction/sec
    IOTFRSPEED: 4096 bytes per millisecond (default is 4096)
    IOSEEKTIM: 10 milliseconds (default is 10)
    >>
    How is this figure calculated?
    Regards,

    Question: Which instruction is used by Oracle kernel
    to arrive at this number? It is NOT the CPU clock speed. That would be ridiculous when comparing architectures.
    According to some sources, CPUSPEED and CPUSPEEDNW are 'representative of the CPU speed' by by running a piece of non-interruptible code written and controlled by Oracle. (Note:149560.1, Jonathan Lewis, Oracle Wait Interface: A Practical Guide to Performance Diagnostics & Tuning)
    If you want to discuss this further, please continue the discussion in the Database forum, as the question does not reflect a documentation bug.

  • To Read the processed subtotal and use for calculating tax.

    Hi,
    I calculated subtotal in REUSE_ALV_LIST_DISPLAY.
    I got the subtotal.
    After the subtotal i have a line to calculate the tax.
    Now I want to read the subtotal and get the sum(calculated total) and use it to process the tax.
    Thanks.
    Farid.

    TYPE-POOLS: slis.
    DATA: it_fieldcat TYPE slis_t_fieldcat_alv,
    wa_fieldcat TYPE slis_fieldcat_alv,
    it_events TYPE slis_t_event,
    wa_events TYPE slis_alv_event,
    it_sort TYPE slis_t_sortinfo_alv,
    wa_sort TYPE slis_sortinfo_alv,
    it_list TYPE slis_t_listheader ,
    l_layout TYPE slis_layout_alv,
    wp_type type SLIS_PRINT_ALV,
    tp_type type table of SLIS_PRINT_ALV.
    TYPES: BEGIN OF ty_itab,
    field2(10),
    field1(10),
    qty1(10),
    qty2 type i,
    qty3 TYPE i,
    Total type i,
    END OF ty_itab.
    DATA: itab TYPE STANDARD TABLE OF ty_itab WITH HEADER LINE,
          wa type ty_itab,
    itab1 TYPE slis_t_listheader.
    START-OF-SELECTION.
      CLEAR ITAB.
      itab-field2 = 'FIRST'.
      itab-field1 = 'FIRST'.
      itab-qty1 = '2'.
      itab-qty2 = 1.
      itab-qty3 = 5.
      APPEND itab.
      itab-field2 = ''.
      itab-field1 = 'FIRST'.
      itab-qty1 = '2'.
      itab-qty2 = 1.
      itab-qty3 = 5.
      APPEND itab.
      itab-field2 = 'FIRST'.
      itab-field1 = 'FIRST'.
      itab-qty1 = '2'.
      itab-qty2 = 1.
      itab-qty3 = 5.
      APPEND itab.
      itab-field2 = 'FIRST'.
      itab-field1 = 'FIRST'.
      itab-qty1 = '2'.
      itab-qty2 = 1.
      itab-qty3 = 5.
      APPEND itab.
      itab-field2 = 'SECOND'.
      itab-field1 = 'SECOND'.
      itab-qty1 = '2'.
      itab-qty2 = 1.
      itab-qty3 = 5.
      APPEND itab.
    itab-field2 = 'SECOND'.
      itab-field1 = 'SECOND'.
      itab-qty1 = '2'.
      itab-qty2 = 1.
      itab-qty3 = 5.
      APPEND itab.
    *  wa-field1 = ''.
    *  wa-qty1 = 'TAX'.
    *  wa-qty2 = 5.
    *  wa-qty3 = ''.
    *  insert wa into table itab.
      wa_fieldcat-fieldname = 'FIELD2'.
      wa_fieldcat-seltext_m = 'field2'.
      wa_fieldcat-no_out = 'X'.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR wa_fieldcat .
      wa_fieldcat-fieldname = 'FIELD1'.
      wa_fieldcat-seltext_m = 'field'.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR wa_fieldcat .
      wa_fieldcat-fieldname = 'QTY1'.
      wa_fieldcat-seltext_m = 'QUNTITY1'.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR wa_fieldcat .
      wa_fieldcat-fieldname = 'QTY2'.
      wa_fieldcat-seltext_m = 'QUANTITY2'.
      wa_fieldcat-do_sum = 'X'.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR wa_fieldcat .
      wa_fieldcat-fieldname = 'QTY3'.
      wa_fieldcat-seltext_m = 'QUANTITY3'.
      wa_fieldcat-do_sum = 'X'.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR wa_fieldcat .
      REFRESH it_sort.
      wa_sort-fieldname = 'FIELD1'.
    *  wa_sort-fieldname = 'FIELD2'.
      wa_sort-up = 'X'.
    *  wa_sort-group = '*'.
      wa_sort-subtot = 'X'.
      APPEND wa_sort TO it_sort.
      wp_type-no_new_page = 'X'.
      append wp_type to tp_type.
      CLEAR wa_sort.
      wa_sort-fieldname = 'QTY1'.
      wa_sort-up = 'X'.
      wa_sort-group = '*'.
    *  wa_sort-subtot = ' '.
      APPEND wa_sort TO it_sort.
      CLEAR wa_sort.
      PERFORM get_events .
    *  l_layout-subtotals_text = 'Subtotal'.
    *  l_layout-totals_text = 'Total text'.
      l_layout-no_totalline = 'X'.
      l_layout-max_linesize = '5'.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program = sy-repid
          it_fieldcat        = it_fieldcat
           I_SCREEN_END_LINE              = 3
          is_layout          = l_layout
          IS_PRINT = wp_type
          it_sort            = it_sort
          it_events          = it_events
        TABLES
          t_outtab           = itab
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
      ENDIF.
    FORM get_events .
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type = 0
        IMPORTING
          et_events   = it_events.
    *  READ TABLE it_events WITH KEY
    *  name = slis_ev_subtotal_text INTO wa_events.
    *  IF sy-subrc = 0.
    *    MOVE 'SUBTOTALS_TEXT' TO wa_events-form.
    *    MODIFY it_events FROM wa_events INDEX sy-tabix.
    *  ENDIF.
    *  CLEAR wa_events.
    *  READ TABLE it_events WITH KEY
    *   name = slis_ev_top_of_page   INTO wa_events.
    *  IF sy-subrc = 0.
    *    MOVE 'TOP_OF_PAGE' TO wa_events-form.
    *    MODIFY it_events FROM wa_events INDEX sy-tabix.
    *  ENDIF.
    READ TABLE it_events into wa_events WITH KEY name = 'BEFORE_LINE_OUTPUT'.
      if sy-subrc = 0.
        wa_events-form = 'BEFORE_LINE_OUTPUT'.
        MODIFY it_events FROM wa_events TRANSPORTING form WHERE name = 'BEFORE_LINE_OUTPUT'.
      ENDIF.
    READ TABLE it_events into wa_events WITH KEY name = 'AFTER_LINE_OUTPUT'.
      if sy-subrc = 0.
        wa_events-form = 'AFTER_LINE_OUTPUT'.
        MODIFY it_events FROM wa_events TRANSPORTING form WHERE name = 'AFTER_LINE_OUTPUT'.
      ENDIF.
    *read table it_events with key name = slis_ev_end_of_page into wa_events.
    *IF sy-subrc eq 0.
    *  wa_events-form = 'END_OF_PAGE'.
    *ENDIF.
    ENDFORM. " GET_EVENTS
    FORM before_line_output using p_c type slis_lineinfo.
      if p_c-subtot = 'X'.
          itab-field1 = ''.
          itab-qty1 = 'TOTAL'.
      endif.
    ENDFORM.
    FORM after_line_output using p_c type slis_lineinfo.
      if p_c-subtot = 'X'.
          ULINE AT (p_c-LINSZ).        "Dynamic Line Size
        FORMAT COLOR COL_TOTAL ON. "Setting the color
        WRITE :/
          sy-vline,
          15 'Tax',
          13 sy-vline,
          24 sy-vline,
          35 sy-vline.
        POSITION P_C-LINSZ.
        WRITE: SY-VLINE.
        FORMAT COLOR OFF.
      endif.
    ENDFORM.

  • What other things can the Note box in the Attributes panel be used for?

    ...if any? I'm aware that you can use it to record an action that selects certain objects. it just seems like it might be for other things too if only i could divine them from the ether.

    It's just a text field you can associate with a selection. Notes can be applied at the Object, Group, or Layer levels. Use it for whatever information you want. For example, working on an exploded parts diagram, one might choose to name objects (in the Layers palette) by their functional names (relay valve, clutch basket, etc.) and key their part numbers into the Note field. Or working on a die-cut layout, one might target the diecut Layer and key instructions into the note field.
    It's just another half-baked feature in Illustrator, half-heartedly duct-taped onto the program (like the poorly implemented Document Info grab-bag palette). A very lame version of object metadata features that other programs provide. For example, Canvas provides a tabular data feature in which you can store multiple columns of information about objects that have been illustrated.
    JET

  • Cannot select fields for calculating other fields~

    Help -- I am tryiing to get certain fiels in a form to calculate based on selection of other fields.  The fields to be selected already have values in them.  (The same format I have used for several years, just new set of forms)
    I get through the point of setting up the field properties to calculate and I select Sum of...   Then it simply will not let me select any fields to use for calculations -- unless I select all fields.
    Please -- this is time sensitive and urgent any help responses needed and welcome!

    Sounds like you are having issues with Acrobat and not FormsCentral. You would get a better help if you post your question on the Acrobat's forum
    http://forums.adobe.com/community/acrobat/forms
    Gen

  • How to  use data function using characterstics variable for calculation on

    how to  use data function using characterstics variable for calculation on  attribute as key figure

    Hi Gayatri
    Did you not see my answer for CASE because CASE does indeed offer the use of the BETWEEN clause, but DECODE does not. Let me give you a little synopsis of DECODE.
    In its most simple form it takes 4 values and looks like this: DECODE(A, B, C, D)
    This essentially means, IF A = B THEN C ELSE D
    The trick to solving BETWEEN in a DECODE is to work out algoriths where A = B. Because we don't know how many values are between 00 and 99, although I could guess there were 100 we could of course have 100 parts in the DECODE but that would be awful. How about if we look at it another way and say this:
    IF PART_NUMBER < 'SDK00' THEN pay_amount
    ELSE IF PART_NUMBER > 'SDK99' THEN pay_AMOUNT
    ELSE pay_amount + 100
    This statement only had 2 hard coded values, but how to make DECODE work with less than? Easy, we use the LEAST function. The LEAST function takes 2 values and returns the one with the lowest value. So I use LEAST(PART_NUMBER, 'SDK00') then whenever the PART_NUMBER is lower than SDK00 it will be true. A similar situation exists for the opposite function GREATEST. Putting all of this together then, you can do this:
    DECODE(PART_NUMBER, GREATEST(PART_NUMBER, 'SDK00'), DECODE(PART_NUMBER, LEAST(PART_NUMBER, 'SDK99'), PAY_AMOUNT * 100, PAY_AMOUNT), PAY_AMOUNT)
    In English this can be read as follows:
    IF the PART_NUMBER is greater than or equal to SDK00 and the PART_NUMBER is less than or equal to SDK99 THEN PAY_AMOUNT x 100 ELSE 0
    Best wishes
    Michael

  • Using Attribute views in Script based Calculation views

    I am trying to create a view for analysis on a fact table which has measure name as a dimension as opposed to having multiple measures. Here is an example of what the data looks like.
    #Customer, Product, Measure, Data
    Customer1, Product1, ASP, 4.2
    Customer1, Product1, Units, 100
    Customer2, Product2, ASP, 4.4
    Customer2, Product2, Units, 200
    ... and so on and so forth.
    I had build Attribute views with hierarchies for both customer and product dimensions and build analytic views. However now I have the need to flatten the Measures dimension and have the resulting Fact view look like:
    #Customer, Product, ASP, Units
    Customer1, Product1, 4.2, 100
    Customer2, Product2, 4.4, 200
    ... and so on and so forth.
    Now I want to build analytic views on this flattened view of my Fact table.
    I was able to create a calculation view using Script mode, on the fact table and write a SQL to flatten the Measure dimension. But I am not able to now join this calculation view with the attribute views. Is there a way to leverage the existing Attribute views and their hierarchies in this case?
    The only way I can see for now is to use manual SQL to build out the entire view, including joining the attribute views and re-build the hierarchies in the definition of the calculation view. This essentially wastes work I have already done in the attribute views and forces me to build the entire thing using SQL.
    Is there a better approach?

    It's extremely annoying that the FLD() command isn't yet availlable in NW, unless it's coming with 7.5 or has been included in one of the more recent support packs.
    As a an alternative you may be able to use the following MDX routine:
    Returns the value of a property of the current member of a dimension
    *function PRO(%DIMENSIONNAME%,%PROPERTYNAME%)
    %DIMENSIONNAME%.Properties("%PROPERTYNAME%")
    *endfunction
    Unfortunately I've never been able to use this with a When statement, so you may have to ask an ABAP resource to develop a BADI to achieve your required results.

  • Use of Checkbox in Report for calculation and determine checked records

    Dear All,
    Application Express 4.0.1.00.03
    I have a Report based on Invoice table which displays unpaid Invoices.
    Also I have added one check box (Not a column in Invoice field) to each row of the report query, the user will be check to pay the Invoice, on checking of the Invoices I need to
    1. Calculate the total of Invoice Amount for selected Invoices.
    2. After selection of Invoices User will click on a Button which will open the Payment Form (New Page or Same Page Region),
    but some way I need to know the Invoice No. of each Invoice row selected so that I can use all the selected Invoice No's for creating the Payment.
    3. Any way to add a button on each row of the Invoice that will be used for the Payment of that Invoice only.
    One way can be to create a column to save the check box value which I am aware of, but am looking for other alternate if possible.
    Hoping for some good solution.
    Thanks & Regards
    Arif Khadas

    vee wrote:
    You would need to make the amount column(the one which is used for total) editable so that its value can be accessed easily from JS. You can made it read-only if required ( apex_item.text(2,INV_RENT_VALUE + INV_OTHER_VALUE ) ?? ) .
    How can I make it read only, there is no such attribute which can be set for report column as it exists for Items.
    Also Now I have the following report query:
    SELECT  INV_LSE_NUM                      "Contract No.",
            INV_FROM_DATE                    "Collection Date",
            INV_FROM_DATE                    "From Date",
            INV_TO_DATE                      "To Date",
            INV_RENT_VALUE + INV_OTHER_VALUE "Invoice Amount",
            INV_AMOUNT_PAID                  "Amount Paid",
            INV_RENT_VALUE + INV_OTHER_VALUE
                           - INV_AMOUNT_PAID "Balance",
            INV_NUM                          "Invoice No.",
            'Pay'                            "Pay",
            APEX_ITEM.CHECKBOX (1, INV_NUM)  "CB_PAY",
            APEX_ITEM.TEXT (2, INV_RENT_VALUE + INV_OTHER_VALUE - INV_AMOUNT_PAID)
                                             "BAL"
    FROM    RE_INVOICE
    WHERE   INV_COM_NUM    =  :P0_COM_NUM
    AND     INV_RENT_VALUE + INV_OTHER_VALUE > INV_AMOUNT_PAID
    AND     INV_LSE_NUM    =(SELECT TO_NUMBER (C001)
                             FROM   APEX_COLLECTIONS
                             WHERE  COLLECTION_NAME = 'LEASE'
                             AND    SEQ_ID          = TO_NUMBER (:P24_SR_NO))The Next thing is the HTML Header for the Page:
    <script language = "JavaScript" type="text/javascript">
    total = 0;
    $('input[name=f01]:checked').each( function(){
      parent_row = $(this).parents('tr:first');
      amt = ( parent_row.find('input[name=f02]').val() == ' ') ? 0 : parseFloat(parent_row.find('input[name=f02]').val() );
      total += amt;
    $s('TEST',total);  -- Test is an Item on the Page.
    </script>Also I checked from the Page source "CB_PAY" and "BAL" have names f01 and f02 respectively.
    Even now when I check or un-check the Value in TEST item is not displayed as required.
    Anything more is required, what am I missing.
    Thanks & Regards
    Arif Khadas

  • Visible attribute does not work for af:showDetailItem using EL

    I cannot get the visible attribute to work using EL and ppr.
    Here is a simple test. I have a jspx with a button (cb1) that toggles a boolean (tab1visible) in a Backing Bean. The af:panelTabbed and af:showDetailItem have partialTriggers="cb1".
    The af:showDetailItem has visible="#{TabTestBk.tab1visible}" and the EL is also set in the title so that I can see how it's set.
    When I press the button (cb1) the visibility of the tab does not change but the title does.
    Any help would be greatly appreciated!
    Here is the code:
    ------------------------- JSPX -----------------------------------------------------
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document>
    <af:form>
    <af:spacer height="10"/>
    <af:commandButton text="Toggle Tab 1 - visible = #{TabTestBk.tab1visible}" binding="#{TabTestBk.cb1}"
    id="cb1"
    actionListener="#{TabTestBk.toggleTab1AL}"/>
    <af:spacer height="20"/>
    <af:panelTabbed id="detailNavPane" partialTriggers="cb1">
         <af:showDetailItem id="tab1" visible="#{TabTestBk.tab1visible}" text="Tab 1 visible = #{TabTestBk.tab1visible}" partialTriggers="cb1">
                                  <af:outputText value="Tab 1 Content"/>
    </af:showDetailItem>
    <af:showDetailItem id="tab2" text="Tab 2">
                                  <af:outputText value="Tab 2 Content"/>
    </af:showDetailItem>
    <af:showDetailItem id="tab3" text="Tab 3">
                                  <af:outputText value="Tab 3 Content"/>
    </af:showDetailItem>
    </af:panelTabbed>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    ------------------------- BACKING BEAN -----------------------------------------------------
    package com.riscs.ui.backing.jsp.claim;
    import javax.faces.event.ActionEvent;
    import oracle.adf.view.rich.component.rich.nav.RichCommandButton;
    public class TabTestBk {
    private RichCommandButton cb1;
    private boolean tab1visible = true;
         public void toggleTab1AL(ActionEvent event) {
              setTab1visible(!tab1visible);
         public void setTab1visible(boolean tab1visible) {
              this.tab1visible = tab1visible;
         public boolean isTab1visible() {
              return tab1visible;
    public void setCb1(RichCommandButton cb1) {
    this.cb1 = cb1;
    public RichCommandButton getCb1() {
    return cb1;
    Thanks!
    Matt
    Edited by: Matt Cannon IBI on Apr 3, 2010 2:45 PM
    Edited by: Matt Cannon IBI on Apr 5, 2010 12:20 AM

    Hi Frank,
    Thanks for the reply! When providing the simple example I left partialSubmit="true" off by mistake... I put it on and still does not work...
    Thanks,
    Matt

  • How to use FORMULA in ABAP for calculation

    hi all,
    i have to do some calculation in my report and because of this reason i want to use formula. Could any body tell me the best way to use of formula for calculation purpose in ABAP or any other way?
    Thansk,
    abapfk
    Moderator Message: You don't need to open a thread to know the answer for this basic question. A simple search or using ABAP Help will help in getting the answer.
    Edited by: kishan P on Oct 4, 2010 11:20 AM

    There is another option to do the same thing.
    What can be done is, create running total. You can create running total from field explorer by right clicking and then new. Create Running Total Field dialog box appears. In that, provide the following:
    i)     Field to summarize - provide the field to maximize (i.e. id)
    ii)     Type of summary u2013 Maximum
    iii)     Evaluate u2013 On change of field (provide the name)
    iv)     Reset u2013 Never
    Keep this Running total field on the details section and suppress if you do not want to show it in the details section. Place this field wherever you want in the report.
    Hope this helps you. Let me know your comments.

  • How to use the GPU for calculations?

    Hello everybody,
    I am working on a project at the Ruhr-University, where i have to determine the calculation speed of ActionScript, e.g. in calculating MD5 Hash values.
    Is it possible to use the GPU for the calculation? It would be the best, when i can use the GPU and the CPU for the calculations.
    I already know that ActionScript is running on the CPU und the GPU is used for video rendering.
    Is there a chance to use specifically the GPU for the calculation?
    Regards
    Patrick

    HOW TO USE Scroll Panes
    The JScrollPane API

  • How to calculate and save planning data in bex input-ready query using keyfigures for calculation from different infoproviders

    Hi Dear All,
    We have two real time infocubes and two aggregation levels based on these cubes in one multiprovider
    first cube1 is like
    char1| char2| keyfig_coefficient(single value for each combination of char1 and char2)
    same aggregation level1
    (we have input query to fill coefficients by one responsible user)
    second cube2 is like
    char1| char2| keyfig_quantity| keyfig_result
    same aggregation level2
    Input ready query should be like (for all other users of different org units)
    char1|char2|keyfig_coeff| keyfig_quant(for input) | keyfig_result = keyfig_coeff*keyfig_quant(calculated value, should be saved to cube2)
    And we don't have pregenerated lines in cube2, users have to add new lines themselves by wad.
    Question is, what is the optimal (easiest) way to make calculation and save result data to cube2 where keyfigures for calculation should be used from different infoproviders. I need just a hint.
    Appreciate any help.
    Nadya.

    I found decision, agregation levels sould be based on multiprovider, not included.

  • How AP behaves for withholding tax when vertax is used for tax calculation

    Hi,
    I am currently working on R12 implementation, I have requirement where business has to calculate the USE tax and withhold it from being paid to the supplier in case if use tax is not mentioned on the Invoice and pay it to tax authorities directly by business. Our client has Vertax third party tax engine. now the question is does it works same as it is in oracle payables in cases if client want to use vertax to calculate tax. How oracle behaves for withholding tax when vertax is used for tax calculations.
    Regards,
    Shashi.

    Hi
    Cheque Go to Menubar of  which document you have to  post for getting the WHT value  Menubar Settings - editing options -  remove the tick calculate tax on net amount.
    Rgds
    Vani

  • Change attribute used for calendar authentication in LDAP

    is it possible to change the attribute (default uid) calendar 2.1 or 5.0 uses for authenticating a user to LDAP

    Hello Titou,
    I don't know for your special case (this transaction) but in a user exit you can have access to global variables by using field-synbols.
    Declare a constant like this:
    constants : c_program3(30) TYPE c VALUE '(NameOfTheProgram)t_data'.
    You can dynamic assign of fiel symbols to get this global variable in your user exit.
    field-symbols : <k> type any,
                    <l> type any.
      ASSIGN c_program3 TO <k>.
      ASSIGN (<k>) TO <l>.
      if <l> is assigned.
      endif.
    So if in your program you have the all your items stored in a global variable, you can then modify all of them.
    Hope it helps.
    Olivier

Maybe you are looking for

  • Short dump while maintaining a database table

    Hi SAP experts, I have created a ZTABLE and a maintenance view for that.We have been maintaining the table since long.Today I opened the maintanence view( SM30) for that table.I clicked on the maintain button and went inside.I did slide the columns f

  • Is it possible to tell the resolution of images in a PDF?

    I'm curious if there's a way to figure out what resolution the photographs in a PDF are saved at. I receive lots of ads from different designers. Occasionally some designer has used a low-res image in an ad, but I don't find this out until I get the

  • Java Application as jar File cannot connect to SAP via JCO

    Hey guys, I wrote a test class to play a little with the java connector. Everything worked fine. Now I want to pack my java class and the JCO classes in one jar file. I have written a manifest file with the Main-Class statement and after I start the

  • Register level programing of the 6601 counter to connect signals to the rtsi bus

    I have need for more than 4 clocks and have several 6601 counter boards. I would like to use an additional board for the extra clock but need to send signals to the this board from the other. The most efficent way seems to be to use the rtsi bus to c

  • Go Pro HD Hero 3

    Go Pro HD Hero 3 and Mac Book Pro Can access micro sd card, but can not update. As far as I can tell from the Go Pro support site, USB 3.0 is not supported yet. Does anyone know of a way or device that i can downgrade USB 3.0 to update firmware on ca