How to activate and passivate member variables?

Hi
ViewObjects have methods like
public void passivateState(ViewRowImpl currentRow, Document doc, Element parent)andpublic void activateState(ViewRowImpl currentRow, Element elem)However, I can't find any example how to use them. Can anyone show me a code example how to use this methods? Can anyone point me to some documentation on this?
Thank
Frank Brandstetter

Sorry, I should have mentioned, that I want to use this methods to passivate some member variables stored in my View. BC4J JavaDoc says, that I must override this methods to do this. But how?
Thanks

Similar Messages

  • How to activate and install office 365

    How to activate and install molp office 365 pro plus
    I have tried all the way round but finally ended up in a mess 
    kindly guide me the right procedure on how to get started 
     

    Hi Vikash,
    Learn complete instructions on How to install office 365 on your PC:
    http://office.microsoft.com/en-in/office365-suite-help/install-office-on-your-pc-or-mac-with-office-365-for-business-HA102822111.aspx
    Note: If you found our answer as helpful, then please remark it.
    Thanks
    Clark Kent

  • How to activate and use Siri in ios 8

    My iphone 5 does not turn on Siri.  How do I find the information on 'how to activate and use Siri'?

    You can activate Siri following this steps on your iPhone 5:
    Settings > General > Siri
    There you can activate Siri and chose the language you want her to interact with you

  • Launchpad has disappeared from the Dock. Launchpad is present in Applications but refuses to activate. How to activate and make available in Dock? iMac 21.5 mid 2010. os X v10.7.2.

    Launchpad had disappeared from Dock. Launchpad is present in Applications but refuses to activate. How to activate and make available in Dock?
    iMac 21.5 mid 2010. os x v10.7.2.

    You should be able to put Launchpad back in the Dock by dragging it from the Applications folder to the left section of the Dock.  As to why it won't launch, run the Console utility, try to run Launchpad, and see if any messages appear in the Console window.

  • How to activate and deactivate the text fields in subscreens

    Hi  All,
    I have one requirement to activate and deactivate the fields in Sub screen.
    The requirement is initially the all screen fields are output field with some value .Suppose user want to edit the value, they choose the check box then automatically the sub screen fields are changed to input modeu2026
    How to validate these settings in the sub screens..
    Thanks & Regards,
    Samantula

    Hi,
      if it is report then use the both at-selection screen.
    if it is in dialog program  AT SELECTION-SCREEN OUTPUT instead of PBO and AT SELECTION-SCREEN instead of PAI
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF p_chk <> 'X' AND screen-name = 'FLATFILE'.
          screen-required = 0.
          screen-input = 0.
           MODIFY SCREEN.
         ENDIF.
    AT SELECTION-SCREEN.
      LOOP AT SCREEN.
        IF p_chk <> 'X' AND screen-name = 'FLATFILE'.
          screen-required = 0.
          screen-input = 0.
           MODIFY SCREEN.
        ELSEIF p_chk = 'X' AND screen-name = 'FLATFILE'.
           screen-input = 1.
           MODIFY SCREEN.
        ENDIF.
    Thanks & Regards,
    Vallamuthu.M

  • How can I view the member variable while debugging

    When I using JCOP-debug mode in eclipse, I want to view the variable in the Variable window. I can see the "this" instance in the window. But when I click the "+" beside "this" to view the member variables of the instance. Debug process is terminated, following lines displayed in console window:
    ASSERTION FAILED: Object header element PAK must be odd!
    Expression: (o->pak&1)==1
    File: simulation.c
    Line: 393
    What can I do then?

    http://forum.java.sun.com/thread.jspa?threadID=722788
    http://download.boulder.ibm.com/ibmdl/pub/software/dw/jcop/tools.zip

  • How to declare and use a variable in BI Publisher report

    Hi Experts ,
    I have to groups of serial numbers and both group are put in same table and same row one after another , and i have a condition that if no serial number is present in both group than the line of that table should not be appeared ,i used the condition region ,biut this condition region is working in single group case if i put both groups together ,the blaing line appears with its label ,I think if i will have have variable which can count the total present of serial number than I cant put a single condition ,would you please help me ,how can I declare a variable and how can i count the number of serials in both groups ,please find below the example
    <grp1><?SR_NUM1?><end of grp1> <grp2><?SR_NUM2?><end of grp2>
    above example is how i am printing now ,now i need a combined condition where if bot group do not contain any value then this blank line should not appear . thanks in advance.
    Thanks
    Pratap

    Hi ,
    Decalring the Varible :
    <?xdoxslt:set_variable($_XDOCTX, 'var', 0)?>
    Do the calculation :
    <?xdoxslt:set_variable($_XDOCTX,'var', xdoxslt:get_variable($_XDOCTX,'var‘)+ XML columnname)?>
    Display the Variable :
    <?xdoxslt:get_variable($_XDOCTX, 'var')?>
    Declare the varaible before your loop starts.Do the calculation part inside the loop so for each row it will be updated.
    Display the results where you want using the form field and place the display varaible syntax.
    Hope this will helpful for you.
    Thanks,
    Ananth

  • How to declare and read a variable more than 255 characters

    Hi Friends,
          Actually i want to declare a variable which can accepts more than 255 characters as input and the same manner i want to read the data and pass the data as a output length more than 255 characters.
      So how can i delcare the data as a field in the table.
    Thanks & Regards
    Gupta

    Hi Raj,
       Thanks for your reply, please privide the further clarification actually by declaring a variable as string i can able to pass 1023 characters form selection screen like that i passed the data to the three varibles and i concatenated those three varibles in to single varible now is there any way to pass the result into the smartform.
      Please give me some techincal stuff on this
    Regards
    Gupta

  • How to set and read a variable in a UIX page

    In a similar fashion to how JSP works, I need to set a variable if a certain condition occurs at a specific processing point in my UIX page, and then conditionally create output in the page based on the value in my variable. How can this be done in UIX?
    Brad

    Hi ,
    Decalring the Varible :
    <?xdoxslt:set_variable($_XDOCTX, 'var', 0)?>
    Do the calculation :
    <?xdoxslt:set_variable($_XDOCTX,'var', xdoxslt:get_variable($_XDOCTX,'var‘)+ XML columnname)?>
    Display the Variable :
    <?xdoxslt:get_variable($_XDOCTX, 'var')?>
    Declare the varaible before your loop starts.Do the calculation part inside the loop so for each row it will be updated.
    Display the results where you want using the form field and place the display varaible syntax.
    Hope this will helpful for you.
    Thanks,
    Ananth

  • How to activate and register IPad Mini's for kids?

    I recently purchased two new Ipad minis for my kids. I would like to add all my apps and activate the Ipads with a new Apple ID for them respectively. Is this possible, and if so how do I accomplish this?

    These links may interest you.
    How Do I Block Websites on My iPad?
    http://www.ehow.com/how_8716944_do-block-websites-ipad.html#ixzz2lh8910jd
    How To Set Parental Controls and Block Content on the iPhone, iPad, and iPod touch
    http://blog.laptopmag.com/how-to-set-parental-controls-and-block-content-on-the- iphone-ipad-and-ipod-touch
    How to block specific websites from being accessed with Safari for iPhone and iPad
    http://www.imore.com/how-block-specific-websites-being-accessed-safari-iphone-an d-ipad
    How To Setup Parental Controls On The iPad
    http://content.mobicip.com/content/how-setup-parental-controls-ipad
    ParentKit
    https://itunes.apple.com/us/app/parentkit/id600618138?ls=1&amp;mt=8
    Parental TimeLock - Time limit for children
    https://itunes.apple.com/us/app/parental-timelock-time-limit/id689577280?ls=1&am p;mt
     Cheers, Tom

  • How to create and access Global variable in Microsoft Lightswitch(VB)?

    How to create an integer datatype Global variable in Microsoft Lightswitch 2011(VB) and access it in pre-process query to set value? Can it be accessed and set like Me.Application.<MyGlobalVariable> = 999
    Thnx.
    jajjaar123

    If you want to create integer datatype Global variable in lightswitch, you can refer to (Eric Erhardt) blog
    Create and Use Global Values In a Query

  • How to Create and Use Application Variables in Java

    I Have this need to have a common variable (Counter) for all the users(Sessions) accessing my Site witch is in JSP.
    I think An Application Variable is the solution for my problem...
    But I don't know how to use this. Even though I search the web for any tutorials or Examples could not fing any.
    Could any one Please tell me or direct me to a site which has good information about this
    Thanks In Advance!!!
    Badsy.

    // get the application object
    public class myServlet extends HttpServlet
    public void doGet(HttpServletRequest req,
                        HttpServletResponse res)
    ServletContext application = getServletContext();
    }

  • IWORK 09-NUMBERS -HOW TO COPY AND PASTE A VARIABLE TO CELLS IN OTHER SHEETS

    IN EXCEL I USED COPY IN THE CEL WITH THE VARIABLE AND THEN" PASTE SPECIAL" IN THE OTHER CELLS.WHEN CHANGING THE VARIABLE ALL THE OTHER CELLS TOOK OVER THIS VALUE AND USED IT IN FORMULAS.
    IS THERE ANY METHOD IN NUMBERS TO DO THE SAME ?

    This thread provides an excellent example of the need to clarify the question before jumping in with an answer.
    There's also some misinformation in the post quoted below. The rest of this post addresses ONLY the specific post below, NOT the original question.
    Hwoodwriter wrote:
    This is annoying. A work around I found is to make the cells absolute so that the referenced cells do not move when you paste.
    I don't see this as a 'workaround,' but as the manner in which Copy Paste is designed to work. If you Cell addresses are considered as 'cell locations relative to the current cell' unless the reference is specified as being an absolute address. If you want to Copy & Paste a formula to a different cell and have the pasted formula use the same referenced cells as the original, you can select and copy the formula from the Formula Bar at the top. This copies the formula as text, which remains the same wherever you paste it.
    So if your formula refers to cell B1+B2 and you copy it and paste one cell down your formula then reads C1+C2. To keep your formula always pointed to B1 and B2 it needs to be absolute. $B$1+$B$2. This way you can copy and paste your formula without changing the reference points.
    Actually if you copy the cell containing =B1+B2, then paste it one cell right, the formula in the new cell will be =C1+C2.
                  if you copy the cell containing =B1+B2, then paste it one cell down, the formula in the new cell will be =B2+B3.
    Once copied and pasted you can go to the formula bar at the top highlight the cell reference and simply click on the cell you want referenced.
    $B$1+$B$2 highlight a cell reference then click on new cell to make formula read $B$1+C2 then change C2 to be absolute if you want.
    You will see a small arrow drop down when you cross the cell reference on the right side to change absolute or relative values. Time consuming and frustrating I know.
    Time consuming, yes. But what's consuming the time is translating the vertical movement (down) of the formula to a horizontal movement (right- from B2 to C2) of the formula's cell reference. Relative cell references move the reference in the same direction as the formula is moved.
    Regards,
    Barry

  • How to Activate and adjust database structure

    Hello Experts!
    I am working on a screen-exit u2018PPCO0012u2019. In u2018EXIT_SAPLCOKO1_002u2019 function exit & there is a structure given u2018CI_AUFKu2019. I did implement this structure but now I donu2019t need this user-exit anymore. How can I delete this field from structure? Because when I try to delete the field and check this structure it gives me error message
    u2018Structure contains no fieldu2019.
    Also like as we can u2018Activate and adjust databaseu2019 table through database utility is there anyway to do the same for structure?
    Thanks a lot in advance.

    Yes I did add a feild to a custome structure COCI_AUFK. But I used for component I sued ZZNAME and component type is NAME2. Now I donno is this causing problem?
    But what I've done it i deactive my this project thought cmod.
    Still having short dum becuase of VBDKL
    this is error:
    'Inconsistency in the Dictionary for the structure "VBDKL".'
    Then I went to check VBDKL (structure). When I checked it I get this message
    'Field NAME1 in table VBDKL is specified twice. Please check'
    I looked many time but NAME1 is not repeating at all. Not even in include structures

  • How to activate and utilize the Creative Cloud with a proxy server.

    Anyone know how to get the cloud activated from behind a firewall / proxy server?

    My Adobe Application Manager connects, updates and downloads all applications.
    However, when I open an application, it does not detect a connection to the internet and states that an "Internet connection is required for subscriptions."
    So what is it that I have to do to get this to work?  Many people are having this issue, do a google search on this and you will not find a solution.  We need one from Adobe.
    Thanks!

Maybe you are looking for

  • To find the time required by the process chain to complete

    Hi Experts, I am calulating the average time required by the process chain to compete. Is there any way to find the time required by the process chain to complete.. Thanks in advance. Regards, Ashwin

  • Standard or Moving Average Material Cost

    If we have PO price / costs plus shipping costs....can we use these to calculate the product cost whether standard or moving average? Thanks in advance Message was edited by:         Satish A Kumar

  • Search is showing no results with HTTPS URL

    Hi All, A power user wanted to have https entry in one of the content sources and asked us to remove the http entry for the web application. After that I have performed the incremental search. However, the search on the https on the web site started

  • Beginer's questions

    Hello I started building sites lately, and I have some questions. I'd be thankfull to get answers -When I place a flash button I created, can it have transparent background? I tried to do it 'macromedia flash 8' and couldn't find an option to create

  • Extracting text data from CRM

    Hi,   We have a NOTE section/field in CRM, which is used to enter some notes by the users on Activities. We need to pull it into BW.How to do it. NOTE can be any long!