On-Line Update in Table TEVEN from Single time capturing Device

Hi Gurus,
We are trying to capture Time Events captured in Employee Card Swapping System (PDC) in TEVEN.
Issue is We have only one device.
How to determine P10 or P20 against each Time events and transfer them to TEVEN.
We expect online update in TEVEN.
Can somebody throw some light.
Regards.
Tapas

If you are wondering why you are not getting any responses, it is because you have vented a complaint without any details that make any sense or give anyone something to work on.
If you want help, I suggest actually detailing what has happened, with versions of software etc. Anything that would let us assist.
As a start I am guessing that you have not really got the hang of "How it all works". Firstly download the Pages09_UserGuide.pdf from under the Help menu. Read that and view the Video Tutorials in the same place. A good addition would be the iWork 09 Missing manual book and something to help you learn how to use your Mac.
If there are specific tasks you need help with:
http://www.freeforum101.com/iworktipsntrick/index.php?mforum=iworktipsntrick
Is a good resource.
Peter

Similar Messages

  • How can I update the table with a single query for...

    I have a table with columns C1 and C2.
    C1 C2
    A1 null
    A1 null
    A1 null
    A1 null
    A2 null
    A2 null
    A2 null
    A3 null
    A4 null
    A4 null
    I want to update my table with a single query so that I would have data like
    C1 C2
    A1 1
    A1 2
    A1 3
    A1 4
    A2 1
    A2 2
    A2 3
    A3 1
    A4 1
    A4 2
    The updated column C2 has the values like serial no grouped on the column C1.

    SQL> create table mytable
      2  ( c1 varchar2(2)
      3  , c2 number(2)
      4  )
      5  /
    Tabel is aangemaakt.
    SQL> insert into mytable (c1)
      2  select 'A1' from dual union all
      3  select 'A1' from dual union all
      4  select 'A1' from dual union all
      5  select 'A1' from dual union all
      6  select 'A2' from dual union all
      7  select 'A2' from dual union all
      8  select 'A2' from dual union all
      9  select 'A3' from dual union all
    10  select 'A4' from dual union all
    11  select 'A4' from dual
    12  /
    10 rijen zijn aangemaakt.
    SQL> select * from mytable
      2  /
    C1                                     C2
    A1
    A1
    A1
    A1
    A2
    A2
    A2
    A3
    A4
    A4
    10 rijen zijn geselecteerd.
    SQL> merge into mytable t1
      2  using (select c1
      3              , row_number() over (partition by c1 order by null) rn
      4              , rowid rid
      5           from mytable
      6        ) t2
      7     on (t1.rowid = t2.rid)
      8   when matched then
      9        update set c2 = rn
    10   when not matched then
    11        insert values (null,null)
    12  /
    10 rijen zijn samengevoegd.
    SQL> select * from mytable
      2  /
    C1                                     C2
    A1                                      1
    A1                                      2
    A1                                      3
    A1                                      4
    A2                                      1
    A2                                      2
    A2                                      3
    A3                                      1
    A4                                      1
    A4                                      2
    10 rijen zijn geselecteerd.Regards,
    Rob.

  • How To Update A Table View From Client Side !!!!

    Hi I would like to update a table view from the Client Side. So that the user can keep updating the relevent data on the client and when they have finally finished they can press Save so the entire page is then sent to the Server.
    Does anyone know how to do this, I guess u have to use the EPCM, I have just started on it and would really appreciate some Help.
    Thanks,
    Emmanuel.

    This is what I found :-
    There are a couple of ways to approach this.
    1) load the excel spreadsheet into the database "as is". You can use interMedia
    text to convert the .xls file into a .htm file (HTML) or use iFS (see
    http://technet.oracle.com/
    for
    more info on that) to parse it as well. InterMedia text will convert your XLS
    spreadsheet into a big HTML table (easy to parse out what you need at that
    point)
    2) Using OLE automation, a program you write can interact with Excel, request
    data from a spreadsheet, and insert it. Oracle Forms is capable of doing this
    for example as is other languages environments. In this fashion, you can remove
    the "manual" and "sqlldr" parts -- your program can automatically insert the
    data.
    3) You can write a VB script that uses ODBC or Oracle Objects for OLE (OO4O) in
    Excel. This VB script would be able to put selected data from the spreadsheet
    into the database. We would recommend OO4O. It provides an In-Process COM
    Automation Server that provides a set of COM Automation interfaces/objects for
    connecting to Oracle database servers, executing queries and managing the
    results. OO4O is available from
    http://technet.oracle.com

  • Updating two tables at the same time

    Please,
    Does someone have an idea on how to update two tables at the same times?
    Thanks a lot in advance

    I was thinking about a single session and single update command.
    That's why I thougth someone else could have a clue.
    Thank you

  • Hi, i m not getting updates in app store from long time...

    Hi, i m not getting updates in app store from long time...

    Hey harjit lal,
    Are you able to connect to the iTunes Store to update your apps? If you're unable to connect to the Store and that's what is holding it up, then I would run through the troubleshooting in here:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Another solution might be that your applications are automatically updating in the background after upgrading to iOS 7.
    Turn off automatic downloads. Tap Apps in Automatic Downloads. Apps update automatically over Wi-Fi, unless you turn off the option.
    from: http://help.apple.com/iphone/7/#/iph64c6c9f05
    Welcome to Apple Support Communities!
    Regards,
    Delgadoh

  • Pl/sql block reading reading table data from single point in time

    I am trying to figure out whether several cursors within a PL/SQL block are executed from within a Single Point In Time, and thus do not see any updates to tables made by other processes or procedures running at the same time.
    The reason I am asking is since I have a block of code making some data extraction, with some initial Sanity Checks before the code executes. However, if some other procedure would be modifying the data in between, then the Sanity Check is invalid. So I am basically trying to figure out if there is some read consistency within a PL/SQL, preventing updates from other processes to be seen.
    Anyone having an idea?.
    BR,
    Cenk

    "Transaction-Level Read Consistency
    Oracle also offers the option of enforcing transaction-level read consistency. When a transaction runs in serializable mode, all data accesses reflect the state of the database as of the time the transaction began. *This means that the data seen by all queries within the same transaction is consistent with respect to a single point in time, except that queries made by a serializable transaction do see changes made by the transaction itself*. Transaction-level read consistency produces repeatable reads and does not expose a query to phantoms."
    http://www.oracle.com/pls/db102/search?remark=quick_search&word=read+consistency&tab_id=&format=ranked

  • How to update two tables in a single call using JDBC Sender adapter

    Hello All,
    The scenario is, database entries have to be selected from two tables and at the same time those tables have to be udpated with the flag.
    We are using JDBC sender adapter and in Select Query, we are fetching the data by joinin the two tables.
    Update Statemtent: We can only update one table using this statement.
    Is it possible to update two tables using the Update Statement without using Stored Procedures.
    Let me know.
    Regards,
    Sreenivas.

    Hi Sreenivas,
    > Is it possible to update two tables using the Update Statement without using Stored Procedures.
    Yes its possible through join statement
    Check this links
    Update in JDBC Sender adapter for more than one table
    data from 2 tables for jdbc sender adapter
    Regards
    Ramesh

  • Problems re-installing after on-line updates cause version change from install CD

    I'm running AcroPro 6 updated to 7.1 through on-line updates, on laptop and was on desktop. The laptop runs just fine with no issues, and Acrobat 6 does everything that I need done, so I don't have any desire to upgrade to the latest and greatest. Problems with Acrobat on the desktop caused me to uninstall it, and I couldn't reinstall it.
    Now, using the laptop in conjunction with the desktop isn't the most convenient because I'm creating documents on the desktop, and then have to port them to the laptop, do whatever is needed there in Acrobat, and then port back. Usually all that I need to do is to assemble a pdf from separate pages, insert or remove pages from a pdf, or to apply security. Nothing particulary fancy.
    Acrobat on the desktop worked fine for many years, but at some point reported an issue finding the printer, and refused to print anything. After trying everything I could think of as a possible solution I, perhaps foolishly, uninstalled Acrobat with the intention of reinstalling it and having the problem resolved. On attempting to reinstall, starting from the original Acrobat 6 CD, the installer reported that a later version of the software was installed, and exited. It would seem that simply uninstalling Acrobat leaves sufficient references in registry or other places for the last update applied to be determined during installation.
    There seem to be two possible options so that I can avoid the, to me, unneccesary expense of upgrading to the latest version of Acrobat.
    Locate and remove the source of the data that the Acrbat 6 installer is reading and which causes the installer to exit, or
    Slipstream the updates (to 7.1) into the Acrobat 6 installation files, so that the version I would be attempting to install is the same as the verion that I uninstalled.
    I tried scanning registry to find all references to Acrobat and or Acrobat 6, but I'm not certain this is the best way. Missing one might be critical, and removing them might just cause worse problems.
    I tried slipstreaming the Acrobat 6 installer, but it fails using the msiexec /a switch, as it appears that Acrobat 6 wasn't designed to work with an administrative install point, according to the pop-up dialogue box.
    My problem is that while I just want to reinstall Acrobat 6, update to 7.1, and go on happily, I can't see how to do this. Can anyone advise if there is a solution other than upgrading?
    Thanks in advance for you thoughts, all will be appreciated!

    Thanks John, Bill and Graffiti for your interest!
    The original install, many years ago, was of an education version from a local college. As updates became available thorough the update manager, they were installed. As stated above, it updated though 6.0 to 6.6, and then on to 7, eventually to 7.1! I can only repeat what happened, but not explain it. I thought nothing of it at the time, as it was all being managed by the update manager. I agree that this last seems to be more an upgrade than an update, but... what can I say? What happened is what happened, and it happened as I described it.
    But not's get hung up on the history! Now that I seem to have solved the original issue of not getting past the message that 'a more functional version has been detected', how does one solve the 'invalid serial number' issue that occurs when attempting to reinstall 6.0? Delete the Acrobat registry keys from HKLM and HKCU, and possibly anywhere else? The former didn't work yet, so, where else? Maybe there is an 'update' folder hanging around somewhere with a registry reference that needs to be deactivated?  Something like {AC76BA86-0000-0000-7AC5-6028747ADE00}?
    Any further thoughts? And thanks for the input, it really is appreciated!

  • Reading and Updating the table at the same time

    Hi all
    I need to read from a table to check whether a record exist in there or not, then  if not add the record to the table (in the same dataflow). Is there any way to use a table as a source and as a target at the same time?
    While I'm doing this procedure, I don't want to add a record that I had inserted before twice  (I need to get the latest veriosn of the table when I'm working with that). For example, in the same process, when I check the table and the record was not there, I insert the record, I read the table again , if this time again I want to read the same record that I had inserted just before, does DS distingish that, or all records will be comitted based on the commit size which is by default 1000?
    I can not change the commit size to 1 to tell DS to commit record by record, as I have turned on the transactional load and the commit size is disabled for me.
    Do you have any experience about my problem?
    Any help is greatly appreciated.

    You need two dataflows. A first that reads your source and inserts/updates the lookup table. And then you read your source again and use the now current lookup table.
    Even if you would set the commit rate to 1 it would not help as there are so many buffers between the transforms. What you would require is that only one row is in the dataflow at any given time - and that would take ages.

  • Update internal table data from table control

    Hi GURUS,
    I need help regarding one of my requirement.
    I need to display data from the internal table on the screen and when the user selects a record/multiple records from screen and clicks on approve button i need to update one of the field from N to Y in the corresponding Ztable. Once the record is updated from Ztable , that should no longer be visible for the user on the screen.
    I am using table control wizard to display data. I am able to update the Ztable, but that record is not refreshing from the user screen. Any suggestions would be approved.
    Also please let me know if table control is the best way to do this/ alv grid control??

    hi
       REFRESH CONTROL Control-Name FROM SCREEN '0100'  -> use this command to refresh the table control
    to know more, read into
    https://forums.sdn.sap.com/click.jspa?searchID=2934287&messageID=673474
    Re: URGENT HELP REQ IN TABLE CONTROL WIZARD
    if helpful, reward
    Sathish. R

  • Updating a table in a single screen without changing the table vie

    Hi,
    I have a master - detail table base on 2 VOs attached to 2 EO. This 2 Vos are linked via ViewLink by ID;
    What I want to achieve is to place a messageTextInput field in detailTable->tableActions region. After the button in this region is pressed this filed should hold summary of "Payments"-columnvalues from detail table ( i have checkboxes in detailed table and it should calculate only selected rows). This field I created is attached to transient attribute SumPayment in MasterVO.
    As now, after click of the button the controler call invokeMethod and in AM i do fallowing steps:
    1. I get the instance od MasterVO and DetailVO
    2. I iterate on every Row in MasterVO and get MasterID
    3. Inside i filtered DetailVO where MasterID is the same (MasterVO and DetailVo is linked by MasterID)
    4. I filter also at Selected transient attribute is the same as "Y"
    5. Sumarize the Payments attribute from DetailVO and save it to float variable calulatedValue
    6. For the actual row of MasterTable i do setAttribute("SumPayment",calculatedValue)
    Unfortunately after doing this the table in screen navigate to the end of the view (it holds 10 Master -rows at once on the screen). I would like only the summaryField to update and the table looks the same before the click. I don't know also, how to take the MasterID while click of the button and send it as a parameter to CO so i don't have to iterate all MasterVoRows (the button is in inner region).
    Konrad

    The chances of two applications running at exactly the same time are miniscule. If they each have a connection to the database, and are both trying to modify the same table, then chances are one will be slightly after the other its changes would be committed last. In the case where one might delete a row just before another tries to access that row, you're going to have some sort of problem. However, those circumstances are pretty rare, and even so, some small amount of exception handling can deal with them gracefully.

  • How to update PAYMENT tables manually from backend after invoice creation.

    Hi,
    I am Financial beginner. how to update payment details from invoices using backend in P2P.
    Thanks and Regards,
    Srikanth

    I have created a invoice and updating payment details.
    I just need small information regarding payaments.
    After invoice we create payments using validate, pay in full.
    But What actually happens when we do validate and pay in full.
    and what are the fields and tables effected in this process.FAQ: Common Tracing Techniques in Oracle E-Business Applications 11i and R12 [ID 296559.1]
    R12 Docs
    http://docs.oracle.com/cd/E18727_01/index.htm
    eTRM
    http://etrm.oracle.com/
    Thanks,
    Hussein

  • Update a table column from enother table?

    Hello all,
    i am using following query to update
    update hrt_emp_mst set a.e_no=b.e_no
    from hrt_emp_mst a,emp_temp b
    where a.emp_no=b.emp_no
    this is giving error message: as
    command not properly ended.
    please tell me is there any problem
    thanks
    yash

    Hi Yash,
    I can see you are coming from Sybase/SQL-Server background.
    This syntax is not allowed in Oracle.
    In Oracle, it can be,
    update hrt_emp_mst a
    set a.e_no= NVL( ( select b.e_no from emp_temp b where b.emp_no=a.emp_no ), a.e_no ) ;If the table hrt_emp_mst is very big and/or emp_temp is not indexed on emp_no, this will not be very efficiant. You will be better off writting a pl/sql block with 'bulk collect'.
    Cheers

  • Updation of table ,dataelement from 4.6 to ecc 6.0

    in my project i have to  Combined Upgrade & Unicode
    Conversion of object how we know which table& data element  have to change.
    what is the process or step and any utility for updation . apart from this if any one know any book or link for specific this please send me

    As you asked here several times the same question here again the same answer:
    Check
    http://service.sap.com/instguides
    --> SAP Business Suite Applications
    --> SAP ERP
    --> SAP ERP 6.0
    --> Upgrade
    --> Upgrade Documentation - mySAP ERP 2005 SR2
    Markus

  • Updating the table is taking long time

    I have one table Solution,
    in that in one java application P,
    1) i am inserting a new record by passing values to a oracle procedure A.
    2) And in the same application i am updating the same record by calling one oracle function B.
    Now in another java application Q,
    3) I am trying to update the same record using hibernate update, but i could not find the record which i updated initially.
    I am executing P first and then executing Q.
    Here insert and first update is happening (I am able to see the record with the first update after sometime), but 2nd update is not happening.
    If i wait for sometime in Q application, i am able to update the same record.
    Can anybody please help here, why it is happening?

    Can anybody please help here, why it is happening?Unless & until application P issues a COMMIT, application Q will NOT see the DML changes issued by P

Maybe you are looking for