I want to know the difference between row.REFRESH_UNDO_CHANGES | row.REFRES

I want to under stand this statement
row.refresh(row.REFRESH_UNDO_CHANGES | row.REFRESH_FORGET_NEW_ROWS);I know that refresh method take int
I want to know what is the meaning of this int
and what if I used
row.refresh(row.REFRESH_UNDO_CHANGES);Or
row.refresh(row.REFRESH_FORGET_NEW_ROWS);and When I use the Both what is the meaning of this and how this is executed.

When I searched for Java Bitwise OR " |" I Found that
a | b >>     Means 1 if either bit is 1.
This means this is like boolean operations and 0 means false and 1 means true and it makes logical or.I don't know if this true or no.
but when I tried to make
system.out.println();
I found that
        System.out.println("row.REFRESH_UNDO_CHANGES> "+row.REFRESH_UNDO_CHANGES);
        the result is > 10
        System.out.println("row.REFRESH_FORGET_NEW_ROWS> "+row.REFRESH_FORGET_NEW_ROWS);
        the result is >> 8192
        System.out.println("(row.REFRESH_UNDO_CHANGES | row.REFRESH_FORGET_NEW_ROWS)> "+(row.REFRESH_UNDO_CHANGES | row.REFRESH_FORGET_NEW_ROWS));
        the result is >> 8202
        this means this makes addition operation
If I make something like this
        row.refresh(8202);
        is this will make the same operation like
        row.refresh("(row.REFRESH_UNDO_CHANGES | row.REFRESH_FORGET_NEW_ROWS)> "+(row.REFRESH_UNDO_CHANGES | row.REFRESH_FORGET_NEW_ROWS));and is it takes the number and make the operation depends on this number. like 10 means row.REFRESH_UNDO_CHANGES.
and is this statement
row.refresh(row.REFRESH_UNDO_CHANGES | row.REFRESH_FORGET_NEW_ROWS);equals to
row.refresh(row.REFRESH_UNDO_CHANGES);
row.refresh(row.REFRESH_FORGET_NEW_ROWS);

Similar Messages

  • I want to know the difference between Days column and Day1 Column

    Hi All,
    I used this query:
    SELECT to_char(return_date_time,'dd/mon/yyyy hh24:mi:ss') Test,
    DECODE ('I', 'I', DECODE (1, NULL, NULL, 0, NULL, SYSDATE + 1)) Days,
    DECODE ('I', 'I', SYSDATE + 1) Day1
    FROM fm_curr_locn
    WHERE patient_id = 'DU00002765'
    output: 
    Test
    Days
    Day1
    26/oct/2013 00:00:00
    26-OCT-13
    10/26/2013 3:06:59 PM
    I want to know the difference between Days column and Day1 column and why the days column didnt show the time
    Please anyone help.....
    Regards
    Shagar M

    Pleiadian wrote:
    It is the decode statement that is doing this.
    The format of decode is:
    decode(expression, search1, result1, search2, result2, searchn, resultn, default)
    All result fields must be of the same datatype and will be of the datatype of the first result (result1 in this example)
    In your example (the decode for the field Days) the first result is a NULL. I suspect (gurus? anyone?) that Oracle will use the varchar2 overload of the decode statement, and the date field will be converted to varchar2 using your NLS_DATE_FORMAT settings.
    In the second decode statment (Day1) the first result is of datatype date, so the result of the decode statement will be a date field (and will be parsed as such by your sql development tool)
    I agree, as NULL is the first result returned the datatype is undetermined, so Oracle is picking VARCHAR2 over others, and causing an implicit datatype conversion on the resultant date value, whereas the other which is returned as a date will use the local settings of the client tool being used.
    I can replicate the 'issue' in Toad, and it's rectified if we cast the first returned value of the decode statement...
    SELECT DECODE ('I', 'I', DECODE (1, NULL, CAST(NULL AS DATE), 0, NULL, SYSDATE + 1)) Days,
           DECODE ('I', 'I', SYSDATE + 1) Day1
    FROM dual

  • I want to know the difference between iphoto master folder and previews folder

    I want to know the difference between iphoto library master folder and previews folder.. my pictures is stored in master but part of them is also copied into previews.. it occupied too much space.. if I can't change anything in iphoto library, any way to save the space for iphoto? 70G for almost 15,000 pictures, is it reasonable?
    i use mac book pro, ilife 11..

    70GB for 15,000 photos is reasonable, yes, if the photo files are large.
    DO NOT meddle with the contents of your iPhoto Library in any other way than using the commands available in the iPhoto application. What appear to be duplicate files stored in different parts of the library are NOT duplicates, and if you attempt to save space by deleting things in the Finder, you will wreck your library and land in a world of trouble.

  • Hi I want to know the difference between the type of internal tables.

    I know the types of internal table but i dont know the difference between them can any one explain me in simple sentence.

    Hi,
    <b>Standard Internal Tables</b>
    Standard tables have a linear index. You can access them using either the index or the key. If you use the key, the response time is in linear relationship to the number of table entries. The key of a standard table is always non-unique, and you may not include any specification for the uniqueness in the table definition.
    This table type is particularly appropriate if you want to address individual table entries using the index. This is the quickest way to access table entries. To fill a standard table, append lines using the (APPEND) statement. You should read, modify and delete lines by referring to the index (INDEX option with the relevant ABAP command). The response time for accessing a standard table is in linear relation to the number of table entries. If you need to use key access, standard tables are appropriate if you can fill and process the table in separate steps. For example, you can fill a standard table by appending records and then sort it. If you then use key access with the binary search option (BINARY), the response time is in logarithmic relation to
    the number of table entries.
    <b>Sorted Internal Tables</b>
    Sorted tables are always saved correctly sorted by key. They also have a linear key, and, like standard tables, you can access them using either the table index or the key. When you use the key, the response time is in logarithmic relationship to the number of table entries, since the system uses a binary search. The key of a sorted table can be either unique, or non-unique, and you must specify either UNIQUE or NON-UNIQUE in the table definition. Standard tables and sorted tables both belong to the generic group index tables.
    This table type is particularly suitable if you want the table to be sorted while you are still adding entries to it. You fill the table using the (INSERT) statement, according to the sort sequence defined in the table key. Table entries that do not fit are recognised before they are inserted. The response time for access using the key is in logarithmic relation to the number of
    table entries, since the system automatically uses a binary search. Sorted tables are appropriate for partially sequential processing in a LOOP, as long as the WHERE condition contains the beginning of the table key.
    <b>Hashed Internal Tables</b>
    Hashes tables have no internal linear index. You can only access hashed tables by specifying the key. The response time is constant, regardless of the number of table entries, since the search uses a hash algorithm. The key of a hashed table must be unique, and you must specify UNIQUE in the table definition.
    This table type is particularly suitable if you want mainly to use key access for table entries. You cannot access hashed tables using the index. When you use key access, the response time remains constant, regardless of the number of table entries. As with database tables, the key of a hashed table is always unique. Hashed tables are therefore a useful way of constructing and
    using internal tables that are similar to database tables.

  • HT3696 How to know if your mac is using the latest Haswell architecture processor or not? and how to know the difference between the new imac and the 2012/13 imac?

    How to know if your mac is using the latest Haswell architecture processor or not? and how to know the difference between the new imac and the 2012/13 imac?

    Sorry to reopen an old post, but I've just purchased a 2nd hand late-2013 iMac (or so thats what the seller said).
    I'm always sceptical though, and just wanted to know if there is a way to check if my iMac is indeed the late-2013 model that included Haswell?
    I've attached screenshots of the About This Mac section hoping it may help shed some light.
    Thank you in advance for your help!
    PS - I can't compare to the iMac specs link you posted above because its now showing the late-2014 models.
    <Image Edited by Host to Remove Serial Number>

  • Does anyone know the difference between the Applecare Warranty for the Macbook Pro and the Applecare Protection Plan Auto Enroll 607-8192-B APP FOR MacBook

    Does anyone know the difference between the Applecare Warranty for the Macbook Pro and the Applecare Protection Plan Auto Enroll 607-8192-B APP FOR MacBook

    AFAIK, the difference is that the auto-enroll occurs automatically when you purchase the device and you will have to disburse the cost right there and then. Whereas the other comes in a box, can be purchased separately later and you must manually enroll your device into the system to activate the additional protection. This must occur before the base one year warranty is over.
    So, if you don't want to pay up at the moment you buy the computer, you can wait up to say 11 months and buy the AppleCare warranty extension later. Just be sure to complete the enrollment BEFORE the base warranty is over, else Apple will not honor the extension (all in the fine print). This applies to all devices that offer an AppleCare option: notebooks, desktops, iStuff, etc.

  • I do video productions for a small local TV station. I use Final Cut Express to edit. I need a new video camera but am at a loss as to what to buy. I know I will get a digital camera but do not know the difference between just digital and digital HD.

    I do video productions for a small local TV station. I use Final Cut Express to edit. I need a new video camera but am at a loss as to what to buy. I know I will get a digital camera but do not know the difference between just digital and digital HD. Also, I can not afford an expensive camera and need some advice on which of the available cameras would be best and also work well with a Mac. One last issue, I currently use a Panasonic #CCD camera that takes a tape. When I load video to Final Cut the audio and video are out of sinc. Go figure. Can anyone help with these questions. Karen

    Hello Karen,
    If you are using Final Cut Express, then look for camcorders that are AVCHD camcorders.  Look especially for the AVCHD logo and specific mention of AVCHD in the specs.  Most of the major manufacturers produce good quality camdcorders - Canon, Sony, etc.
    Also, be aware that there are a lot of "not quite AVCHD" camcorders on the market (sometimes they say they record video as MPEG4-H.264/AVC) - buyer beware!
    Most everything you are going to find on the market today is HD, which stands for "high-def".
    Regarding your question about the Panasonic camcorder, it's best if you post that as a separate question, and please identify the specific model camcorder and the Easy Setup you are using in FCE.

  • Im using a pci-6221 daq-card.I want to know the difference(use)of a line output and a port output.

    Im using a pci-6221 daq-card.I want to know the difference(use)of a line output and a port output.

    Hello Hellraiser24,
    This question has actually been discussed in another thread here:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=95895&requireLogin=False
    I hope this helps,
    E.Lee
    Eric
    DE For Life!

  • I want to know the relation between Retiremen in assets and AR

    i want to know the relation between Retiremen in assets and AR
    whene selleing asset in FA and retire it in AR

    Hello.
    how can i achieve this entry in AR You will have to create it manually. The system does not create it automatically.
    and is their any report in FA to identify the sold assetsThe Asset Retirement Report
    Octavio

  • I need to know the difference between planned SKF and Actual SKF from business view and when I can use one of them ?

    I need just to know the difference between plan SKF and Actual SKF in business example and when I use one of them.
    thanks

    Hi Salaam,
    Statistical Key Figure (SKF) is a base to allocate the cost between cost centers. Usually, common cost centers cost should allocate to respective department cost centers on monthly basis.
    Some of SKFs are: Calculating floor rent on SFT, Telephone charges on No. of units, and employees head count is with "Each" in SAP.
    Apart from Ajay's reply, you can consider the Canteen exp in an organization. Assume Admin, Fin and Mfg departments are getting food services from Canteen. Here, total monthly cost of Canteen exp should be allocated to respective departments. Here, we use SKF as total head count of each department and distribute the cost.
    Planned SKF is what you planned on the beginning of a period. (Assume head count was planned as 30 in the month beginning)
    Actual SKF is what exactly you consumed over the period. (Actual employees provided canteen services during the month is 25)
    BR, Srinivas Salpala

  • Can anyone please let me know the differences between EDW and BI 7 if any

    Can anyone please let me know the differences between EDW and BI 7 if any.

    hi,
    As such their is no diff  between the to
    The Enterprise Data Warehouse (EDW) is a service offered by the Data Services Department of the Information Services and Technology Division.  EDW consolidates data from multiple sources in support of campus wide decision making and related information needs such as reporting, analysis, and planning.
    The vision for the EDW is to provide information that is secure, accurate, timely, consistent, integrated, appropriately detailed, well-organized, and easy to obtain so that people throughout the campus -- staff, faculty, researchers, and executive-level administrators -- will be better able to assess their needs, set priorities, understand the impact of change, and fulfill their programmatic responsibilities more efficiently.
    The major components of the existing Enterprise Data Warehouse are:
      BAIRS Financials
    BAIRS HRMS
    BIS
    Legacy BIS
    Student Data Warehouse Pilot 
    AND BI 7 is the latest version of the EDW which is currently in used in full fledged everywhere with lots of added functionality.
    Assign points if helpful.
    Regards,
    Amit

  • I would like to know the difference between OEL and RHEL

    I would like to know the difference between OEL and RHEL, are they same?
    If I test any application on RHEL, will it work on OEL too.
    Thanks
    Edited by: user10685113 on 08-Aug-2012 05:35

    The name OEL as such is not used anymore, since the product was renamed from Oracle Enterprise Linux to Oracle Linux with the release of version 5.5 in September 2010.
    The main technical difference between Oracle Linux and RHEL is that Oracle Linux ships with an Oracle exclusive and optimized Oracle UEK kernel. It does however still install and provide the original and older RHEL kernel for fallback.
    As of Oracle Linux 5.6, the Oracle UEK kernel is the default kernel. The current latest version of Oracle Linux 6.3 uses the Oracle UEK2 kernel, which is based on the Linux 3 kernel (2.6.39).
    Oracle Linux is binary compatible with RHEL.
    Oracle Linux has several advantages over RHEL, in particular if you plan to use it to install Oracle products.
    • The same kernel UEK and UEK2 versions are available for Oracle Linux 5.x and 6.x
    You do not necessarily need to perform a complete and unsupported system upgrade to use a newer kernel version and drivers.
    • Oracle Pubilc YUM
    Oracle provides a public yum repository for installing software packages including the latest patches. RHEL does not and requires a paid subscription for online access.
    • Oracle specific drivers and software
    Oracle Linux provides additional software and kernel drivers, for Oracle clustering, Dtrace, BtrFS and ASM, which is not available for RHEL 6.
    Oracle Linux provides additional packages which trigger the automatic installation of system software prerequisites, including kernel parameters and oracle account setup to install Oracle Database:
    oracle-validated (Oracle Linux 5)
    oracle-rdbms-server-11gR2-preinstall (Oracle Linux 6)
    And last not least you have just one vendor and support requirement for Oracle products.
    Have you checked the Internet:
    http://www.oracle.com/us/technologies/linux/index.html
    https://linux.oracle.com
    To obtain Oracle Linux:
    https://edelivery.oracle.com/linux
    https://wikis.oracle.com/display/oraclelinux/Downloading+Oracle+Linux (alternative)
    Edited by: Dude on Aug 8, 2012 2:29 PM

  • Let me know the difference between SAPR/3 4.7 , Enterprise portal and ECC 6

    hi anybody pls tell me
    Let me know the difference between SAPR/3 4.7 , Enterprise portal ,ECC 6.0 and Netweaver
    thanks in advance

    Hi
    Refer this link for ECC 5.0 & 6.0:
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/68805bb88f297ee10000000a422035/frameset.htm
    A similar post
    /message/1783778#1783778 [original link is broken]
    You can go through the Release Notes for each of the versions after 4.6B (4.6C, 4.7 , ECC 5.0 & ECC 6.0)
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/688055b88f297ee10000000a422035/content.htm
    For 4.7 SAP R/3 http://help.sap.com/saphelp_47x200/helpdata/en/12/9d78d6d8f74043a32e82be87e433b7/content.htm
    Release Notes on SAP Web Application Server 6.30
    http://help.sap.com/saphelp_47x200/helpdata/en/2b/64fc3e9d3b6927e10000000a114084/content.htm
    http://solutionbrowser.erp.sap.fmpmedia.com/
    Check these links
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/790e690c-0901-0010-7894-de8b3d91d78e
    http://help.sap.com/saphelp_nw04/helpdata/en/94/c65839bec58b27e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/a8/b9623c44696069e10000000a11405a/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/c1/1253164e665b4fa635af38b66dc166/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/f5/a9673e42613f7ce10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/dc/6b7f2f43d711d1893e0000e8323c4f/frameset.htm
    Regards
    Anji

  • I am wanting to buy and Ipad.. but I would like to know the difference between having wifi and a simcard..if someone could explain this to me.. and the benefits of both I would appreciate it.

    Good Morning:
    I have been looking at the Ipads for a while now.  I have some concerns though.  First, I am NOT a techy of any kind!!  So my question is;  What is the difference between wifi and a simcard(?)   What I understand about wifi is...if you are in an area with free internet.. you can excess it.  If not, then you can't.  What is a simcard?  Is this what you would use like a turbo stick..such as internet on the go... or is this a data plan for the Ipad, like I have for my phone?  If so, I take it that it would mean a monthly bill of what or however I set it up...  Please be kind with your responces.. I am a older person who wants a new gadget.   
    Thank you

    Hi, Sarah,
    You don't really compare a SIM card directly with WiFi. What a SIM card indicates is that a device is designed to connect to cellphone service, in the case of an iPad a data-only service for connection to the Internet. The SIM card works with a technology called GSM (don't worry about what that means); the SIM card is just how the iPad is identified to the cell carrier (in the US, that would be AT&T).
    Your choices of connecting an iPad to the Internet are therefore:
    WiFi - wireless network connection which uses a device referred to as a "hotspot" or "access point" (and sometimes a "wireless router") with an Internet service provided by some other company. You may have this at home, with your own WiFi router and Internet service, or it may be found by some other location, such as a coffee shop. Cost of WiFi at home would only be the cost of the router and the fee you pay to your Internet provider. Other locations may or many not involve a cost. The advantage of a WiFi connection is speed (compared to a cellular data service) and cost (no monthly fee other than your Internet provider).  The disadvantage is that you have to be in range of a WiFi service; that range is usually on the order of 100 feet or so.
    Cellular - this is a service provide by a cellphone carrier. This allows you to have your iPad connected to the Internet wherever the carrier offers service, which may be in buildings, parks, while driving, etc. just as with a cellphone. You pay a monthly fee to the cell carrier for this service. The advange is of course that it's available in many places. The primary disadvantages are the monthly cost and slower speed in the connection to the Internet.
    You can have both with an iPad if you purchase your iPad with both systems included; iPads are sold WiFi-only or WiFi+3G ("3G" refers to being capable of connecting to a cell network) You are not obligated to sign up with a cell carrier if you buy the iPad with that technology; most carriers allow you to sign up month-by-month, and in some countries the carrier has a pay-as-you-go service. If you tell us what country you're in, someone can tell you more about the available cell plans, if you're interested.
    I hope this helps. Feel free to post back if you need further clarification or have additional questions.
    Regards.

  • Want to know the difference among the sap standard schemas TM00/TM01/TM04

    hi, experts
    i have read the standard courses HR310 and HR311,but i am still confused about the difference among the three standard TM schemas TM00,TM01 and TM04.
      i only learn from the book about it as follows:
      TM00: Time evaluation with time events
      TM01: Time evaluation for work schedule deviations
      TM04: Time evaluation for times entered as hours.
    i want to know the details about different forms of time data and different strategies in evaluating the time data in the three standard schemas.
       thanks in advance

    Hi,
    TM01: read the actual data, Automatically calculate the overtime with the help of events.
    TM04: Negative time evaluation, Get the data from the Work schedules
    TM01: Positive/Negative time evaluation: Read the exception of workschedules, get the data from the time events form the 2011IT.
    TM01:
    Schema TM01 can be used for time evaluation if you only record
    exceptions to the work schedule, and not all times that count as working
    time (actual times).
    You can use schema TM01 to import and process time data that has been
    recorded online.
    The schema forms time balances, time wage types, and time quotas, and is
    processed using the time evaluation driver, RPTIME00.
    The valuation basis for time evaluation forms a planned pair, which is
    generated according to the planned specifications in the employee's
    personal work schedule.
    The planned pairs generally correspond to the time worked. Only
    attendances from infotype 2002 and absences from infotype 2001 result in
    a difference between planned and actual.
    Schema TM01 automatically generates overtime for all attendance times
    recorded over and above the planned specifications in the personal work
    schedule. If overtime is recorded in infotype 2005, it can be approved
    systematically taking account of overtime breaks.
    TM00:
    Schema TM00 processes time events that have been recorded at a time
    recording terminal, or the time pairs formed from the time events in
    pair formation. Attendances and absences are also imported.
    Schema TM00 is based on positive recording of time data, that is,
    recording all times that count as working time (actual times).
    Schema TM00 only evaluates time data with clock times (or full-day
    records). The main task of schema TM00 is to classify the actual times
    by comparing them to the planned specifications in the daily work
    schedule (start and end of planned working time, core times, breaks, and
    so on).
    TM04:
    The time worked by the employee is recorded in the Attendances infotype
    (2002), and not as clock-in and clock-out times. When processing
    clock-in/out times, the emphasis is on the length of time between the
    postings and not on the times at which the postings were made.
    You can use schema TM04 to process attendances and absences that specify
    a number of hours only, rather than concrete start and end times.
    The times stipulated in the daily work schedule are not relevant. Only
    specifications such as planned hours and minimum daily working time are
    evaluated from the daily work schedule.
    TM04 caters both for negative time recording (recording of exceptions to
    the work schedule) and positive time recording (recording all
    attendances or actual times).
    If negative recording is used, the planned hours are generated on the
    basis of the daily work schedule. Recorded absences and some attendance
    times are deducted (see schema TP01.)
    The "Time Management status" indicator in the Planned Working Time
    infotype (0007) shows whether all actual times are recorded for an
    employee, or only exceptions to the planned specifications.
    Regards:
    Devi.

Maybe you are looking for

  • Java or adobe for existing ABAP dynpro SRM 7.0

    Hi All, I am a SRM/MM functional consultent with limited UI interface knowledge. Currently I am working in SRM 7.0 project. As you know SRM 7.0 UI build on Web dynpro ABAP Floor plan manager and web dynpro ABAP UI has many limitation. My client don't

  • HT1918 What does it mean when...

    it says payment processing is temporarily unavailable. Please try again later. I'm having trouble updating application and it either gives me this notice or that my security code is wrong when its not. I need help please. How long will it take to com

  • Changes in Project IMG reflects globally?

    Hi  Guys , My question is if for example I create a project IMG with multiple countries including  US  and Personnel administration component .Now if I make a change in name formats ( example adding a new title for names in Infotype 0002) in this pro

  • Lost Itunes on my computer

    I can no longer find the Itunes icon on my computer. I can't log in or even download itunes again. My enire library is gone form my computer. How do I get it back?

  • Cannot locate inbox, sent, drafts, or deleted folder

    I was trying to reorganize my inbox by moving a few emails to newly created subfolders. As it was doing it Mail quit and when i restarted it all of my previous emails in my inbox, sent, drafts and delete messages were gone. The only emails which were