How recalc buffered value in calculated attribute?

Hi everyone
I have created some calculated context attribute and set the Buffer Mode to Buffered. As I understand this means that the value of attribute will calculated once, will buffered in memory and next will recalc "on demand".
My question is - how can I invalidate the attribute value and call recalc function ?
P.S. NW CE 7.2

Hi,
You can find out more details of [Calculated Context Attribute|http://help.sap.com/saphelp_tm80/helpdata/de/7f/a0384162316532e10000000a1550b0/content.htm] and [Calculated Attributes in Web DynproJava|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/e093a9d8-c00e-2b10-7dae-b72c3a8c5536]
Hope this helps!!
Regards
Vijay K

Similar Messages

  • In import process,how excise base value is calculated in MIGO

    Hi expert's,
    In import process,how excise base value is calculated in MIGO,with what referance values get add to base value.
    waiting for your valuable response,
    Regards
    V.raj

    hi,
    we Tried with your following reply ! but still not finding exact value in base value .
    (MATERIAL PRICE* QTY IN MIGO * EXCHANGE RATE)
    thanks & regards
    V.Raj

  • How to get value of MA attributes on Contract Document phase change script

    Hi,
    I need to get value of Master Agreement attributes on Contract Document phase change.
    When Contract document phase changes to Supplier Draft, I want values of Master Agreement - Publish date, vendor visible, email.
    But I am unable to retrieve the same.
    I wrote IBean code to get but was not working.
    Please help me resolve this issue.
    Thanks,
    Saloni

    Hi Saloni,
    There is nothing different that you should do for this script.
    Use the getParentIBean() function on Contract Document to get the parent MA/SA. From there on it is as simple as using the correct getters to fetch the values.
    Hope this helps.
    Thanks
    Devesh

  • How to upload values for Territory attributes.

    Hi Is there any standard SAP practice to upload territory attribute values. i could see we can upload territory structure in sap. but attribute values is there any way ?
    thanks
    chap

    Hi Chap,
    If you are planning to create territory attributes via CRM GUI then please refer to the below link. This is what immediately I can suggest. Meanwhile I will let you know the programmatic approach if I find one.
    Re: To Add attribute in Territory Management
    <b>Reward if helps</b>
    Regards,
    Paul Kondaveeti

  • How Formatted values are calculated in WMI

    Hi,
    i am working on finding system resource information using WMI queries.
    i want to know how the Performance values are calculated, for example as follows
    find PagesInputPerSec from Win32_PerfFormattedData_PerfOS_Memory. 
    i tried to retrieve PagesInputPerSec, running on command line as "wmic path Win32_PerfFormattedData_PerfOS_Memory get PagesInputPerSec".
    most of the times i am getting 0(zero) as result.
    i would like to know how formatted values are calculated(formula to find) ?
    P.S:
    Win32_PerfRawData_PerfOS_Memory giving some value than zero e.g. 31908034
    Thanks,
    KMR

    i am working on finding system resource information using WMI queries.
    i want to know how the Performance values are calculated, for example as follows
    find PagesInputPerSec from Win32_PerfFormattedData_PerfOS_Memory. 
    i tried to retrieve PagesInputPerSec, running on command line as "wmic path Win32_PerfFormattedData_PerfOS_Memory get PagesInputPerSec".
    most of the times i am getting 0(zero) as result.
    i would like to know how formatted values are calculated(formula to find) ?
    P.S:
    Win32_PerfRawData_PerfOS_Memory giving some value than zero e.g. 31908034
    Thanks,
    KMR

  • How are calculable attributes influence on a performance

    Hi WD Experts
    I have recently faced with a small dilemma. Is it a good idea to use calculated attributes everywhere where it's possible? For example, I have a view with table. I can implement almost all logic in the view based on calculated attributes which will return values for icons, values for controls' visibility, values for textual labels in the table and so on.
    How does the approach influence on a overall performance of my UI when user interacts with such controls? Here I suppose that each calculated attribute itself does not take any valuable time.
    Thanx
    Sergei

    Roberto,
    They are recalculated on every access. Whenever UI should be rendered, they are recalculated.
    Some calculation are extremely cheap and do not impact performance:
    1.
    return element.getIsInProcessed() ? WDVisibility.VISIBLE : WDVisibility.BLANK;
    2.
    switch ( element.getSeverity() ) {
      case -1: return WDTextViewSemanticColor.DIMINISHED;
      case 0:  return WDTextViewSemanticColor.POSITIVE;
      case 1:  return WDTextViewSemanticColor.CRITICAL;
      case 2:  return WDTextViewSemanticColor.NEGATIVE;
      default: throw new IllegalArgumentException();
    3.
    final private static String[] STATE_ID2STATE_NAME = {"stopped", "starting", "running", "stopping"};
    return STATE_ID2STATE_NAME[ element.getState() ];
    On other hand, you have some large number of calculated attributes, that depends on the same condition, then it is better to create 1..1 non-singleton value sub-node, define all attributes here and populate them at once using supply function. Also you will not win a lot in terms of performance, the code will be far more maintanable while related calculations are not scattered across several methods.
    Valery Silaev
    SaM Solutions
    http://www.sam-solutions.net
    Message was edited by:
            Valery Silaev

  • How Can I Set a Javascript Value into an Attribute of BSP PAGE

    Hi
    Can anyone tell me.
    How Can I Set a Javascript Value into an Attribute of BSP PAGE

    Hi Mithlesh,
    javascript runs on client side and you cannot assign the value to a Page attribute directly.
    As a workaround,you can use an Inputfield,hidden if required,and set the value using javascript.Then the form will have to be submit to be able to read the value in onInputProcessing and then can be assigned to any variable.
    In Layout
    <head>
    <script language="javascript">
    function pass()
       txt1 = document.getElementById("ip_mrf");
       txt.value = "hello" ;
    </script>
    </head>
    <htmlb:inputField  id="ip_mrf"
                               value="<%=mrf_number%>"
                               visible="FALSE"/>
    in onInputProcessing
    cha1 = request->get_form_field( 'ip_mrf' ).
    where cha1 is the page attribute
    hope this helps,
    Regards,
    Siddhartha
    Message was edited by: Siddhartha Jain

  • How to change sql expression of SQL-Calculated Attribute of view object ?

    Hi
    jdev 11.1.1.5
    I have a view object with a SQL-Calculated Attribute (sumAnalytic) how can I change sql expression of this attribute in runtime?
    for example in application module method??

    Hi Mr Timo
    Thanks for your reply but I do not need dynamic vo because I can not change all of my vo
    I only need to change expression of SQL-Calculated Attribute of view object in run time.
    For this I set expression in view object something like this 'select 2 from dual' and in run time in my AM method I get the vo query and replace 'select 2 from dual' with something like 'selet sum(amnt) over (partition by 1)' and set new query.
    But I think the better solution must exist
    Thanks

  • How to pass a value to path attribute of jpf:forward at run time.

    Hi all,
    I have a public variable in my controller and I am getting a value from my jsp
    and assigning it to that variable.
    Now the question is how to pass that variable value to path attribute of jpf:forward.
    @jpf:forward name="success" path="promoLink"
    Here in this case promoLink is a public variable in my controller.
    Pls suggest.
    Thanks.

    Hi Vijay,
    You posted this a while ago -- not sure if you've found a solution already,
    but in case you haven't...
    If you want to construct the Forward dynamically, you can do it without
    annotations. There are constructors that take URI and URL, which you can
    use like this:
    * @jpf:action
    public Forward goSomewhere()
    return new Forward( new URI( promoLink ) );
    Does this address your question?
    Rich
    "Vijay Bijjargi" <[email protected]> wrote in message
    news:3f5739f8$[email protected]..
    >
    Hi all,
    I have a public variable in my controller and I am getting a value from myjsp
    and assigning it to that variable.
    Now the question is how to pass that variable value to path attribute ofjpf:forward.
    >
    @jpf:forward name="success" path="promoLink"
    Here in this case promoLink is a public variable in my controller.
    Pls suggest.
    Thanks.

  • How to define a Value for an Attribute of an Class

    Hi,
    How to define a Value for an Attribute of a Class ...
    ( I need to change the value of an Attribute of a class in standard program ....
    Ex...
       cl_hrce_masterswitches=>infotype_framework_is_active
    Here infotype_framework_is_active is the attribute .. its value in standard program is 'X'... Now i need to change it as '  '.
    How to define it and set value as ' '.

    Hello Surendar
    The static attribute INFOTYPE_FRAMEWORK_IS_ACTIVE is read-only and there is not SETTER method to manipulate its value.
    However, the attribute is filled in the CLASS_CONSTRUCTOR:
    METHOD class_constructor.
        IF ce_is_active                 = true OR
           global_payroll_is_active     = true OR
           mngmt_global_empls_is_active = true.
          infotype_framework_is_active = true.
          perid_infotype_is_active     = true.
        ELSE.
          infotype_framework_is_active = false.
          perid_infotype_is_active     = false.
        ENDIF.
    ENDMETHOD.
    Thus, you need to analyze how attribute CE_IS_ACTIVE, GLOBAL_PAYROLL_IS_ACTIVE and MNGMT_GLOBAL_EMPLS_IS_ACTIVE are filled in the CLASS_CONSTRUCTOR.
    For sure you will find customizing settings that are responsible for this.
    Regards
      Uwe

  • How to give  Value set for model attribute?

    Hi all,
           How to give value set for model attribute?
           plz explain me with some sample code.
    Regards,
    Srinu

    Hi Srinivasulu,
    An attribute (of basic data types like integer , string etc) holds a single values.
    Please clarify by what you mean value set ?
    Also, share the structure of context.
    Regards,
    Kartikaye

  • How to do arithmetic with two attribute values in a jsp in JDev 10.1.2?

    Hi!
    I need to compute Density value using two attributes being shown in my jsp (i.e. bindings.Spacing and bindings.Area), Density = bindings.Area/bindings.Spacing.
    How can I do this in JDev 10.1.2 in my jsp?

    Hello pino,
    Can you show me how to create a backing bean in JDev 10.1.2? What I usually work on is the DataForwardAction code in this version of JDev. Is this the "backing bean" you're talking about? If so, can you give me sample code?
    Thanks and hope you can help me!

  • How to set default value to user attribute in customized information tab

    Hi Experts,
    we created a custom attribute in Administration-managed custom attributes  and now we are getting that attribute under customized information tab in  user admin->identity management.
    This attribute is coming for all users and it is working fine and I can give value to this attribute also.
    Now the problem is we have more than 10000 users in the portal and we have to assign same value to this custom attribute to all the users.
    Is there any possiblity of setting the value to all the user without coding.
    If it is not possible then how can I proceed for coding.
    any help will be appreciated.
    Raghu

    Hi Michael,
    Yes my data source is LDAP.  This attribute is added in the portal itself and I don't think it is possible to set the value of custom attribute at LDAP.
    Shanta : We already created the custom attribute and it is also appearing in the Customized information
    Problem is we need to set a value to that attribute. This should be same to all the users coming from LDAP.
    My Basis people are asking the funtion module which calls when we click on the Customized information tab.  Is that possible to know?
    Or we can set this value by writing a piece of code in webdynrpo java?
    Appreciate your inputs
    Raghu

  • BOL: How to read the value of an attribut

    Hiii experts,
    I'm new in ABAP programming.
    My intention is to read the value of a context attribut.
    This attribut ist not in form of a struct attribut. To read an struct attribut, I know to get the value, for example:
    value ?= me->typed_context->BP_ADDR->collection_wrapper->get_current( ).
      CHECK value IS BOUND.
      value->get_property_as_value(
        EXPORTING
          iv_attr_name = 'CITY'
        IMPORTING
          ev_result    = value_city).
    But my problem is, that I have an attribut, which you can not find in the BOL browser, because it is not in form of a struct.
    Can anybody help me, how to read the value of this kind of attributs.
    Thank you very much in advance fpr your help,
    John

    Hii Clemens,
    first of all, my concern deals with WebUI.
    I expect to read the value of an attribut. I know how to read the value of an attribut, which can be found with the same description in the bol browser, as you know you can read it with:
    value ?= me->typed_context->BP_ADDR->collection_wrapper->get_current( ).
      CHECK value IS BOUND.
      value->get_property_as_value(
        EXPORTING
          iv_attr_name = 'CITY'
        IMPORTING
          ev_result    = value_city).
    Now, I have an attribut of an context node which has a different name as in bol browser. If I want to read the value with the code above I get an error message. Thatswhy I referenced a collection of the context node to read this attribut.
    Can anybody say me how the value of the attribut, can I use the methode get_property ?
    greetings,
    J

  • How  Kernel Parameters values calculated in 10g*

    Hi to all;
    *10g Orace installation on OEL*
    How  Kernel Parameters values calculated in 10g
    kernel.shmall = 2097152
    kernel.shmmax = 2147483648
    kernel.shmmni = 4096
    +# semaphores: semmsl, semmns, semopm, semmni+
    kernel.sem = 250 32000 100 128
    fs.file-max = 65536
    net.ipv4.ip_local_port_range = 1024 65000
    net.core.rmem_default=262144
    net.core.rmem_max=262144
    net.core.wmem_default=262144
    net.core.wmem_max=262144
    Run the following command to change the current kernel parameters
    /sbin/sysctl -p
    **  "/etc/security/limits.conf"  **
    *               soft    nproc   2047
    *               hard    nproc   16384
    *               soft    nofile  1024
    *               hard    nofile  65536
    My question I think 32 bit or 64 bit OS calculation will be same only.
    I want know how it was calculated ?
    Edited by: 969352 on Feb 9, 2013 7:02 AM

    Hi
    I suggest please review:
         Relationship Between Common Init.ora Parameters and Unix, Linux Kernel Parameters [ID 144638.1]
    Regard
    Helios

Maybe you are looking for

  • How to create a "cube" that rotates images

    hello Flash, I have seen some web sites that have a "cube" that has images displayed on the face of the cube. And it rotates - most of the ones I have seen rotate continuously. I would like to create a cube, that when I click a buttion (web browser b

  • DBMS_SPACE throwing exception

    Hi everyone, I was wondering if anyone can help me ? I'm trying to see how much my table is growing by calling this: SELECT *   FROM TABLE(DBMS_SPACE.object_growth_trend ('SCOTT','EMP','TABLE')) ORDER BY timepoint;And I'm getting this issue: ORA-0180

  • QT took over IE's mp3 file association

    Installed latest QuickTime and after that it changed some file assiciations for Internet Explorer 6. Before if i left clicked mp3 link in IE, it gave those "open", "save as" etc options, but now it want's to open that mp3-file for quicktime-plugin wi

  • Item being modifyed

    I keep geting "This item is being modifyed. Pleas try again later" every time I try to purchase an app... Does anybody know why or have a solution?

  • External Catalog in SRM...

    Hi ,   i am working in SRM 4.0 EBP 5.0. <b>i would like to know is there any WEBLOGS avaliable for developing EXTERNAL CATALOG BSP PAGES for SRM SHOPPING CART.</b> thanks in advance, Regards, Kannan.