Session in which is modified a certain table

Hi,
I would like to ask if a user has 4 sessions how (with which command) can I see the session in which he works on a certain table.
Thank you,
Mihaela

A couple of different ways.
1. Use Oracle Enterprise Manager to look at the SQL each session is executing.
2. Start tracing on each of the sessions and process the results to determine which each session is doing.
3. Start creating selects against the different v$ views to see determine what they are doing.
v$session, v$sql, v$sqlaera, v$sql_text
http://www.adp-gmbh.ch/ora/misc/dynamic_performance_views.html
Has a good statement to construct the entire text for each session's actual SQL statement. You can probably use it as a foundation to develop your own.
regards
Tim

Similar Messages

  • To create workflow process which periodically examines one database table??

    hi.......
    plz tell me the complete details that how to create workflow process which periodically examines one database table??
    also it will send email to specific address if certain condition is not fulfilled??
    help is really appreciated
    thanks nd regards
    manish singla

    Hi,
    I'd be wary of using a WAIT activity, since this will essentially have the workflow running forever in the same SQL session. If you ever need to shutdown the database, then you would have to kill the session (or do a shutdown abort), which will rollback all the Workflow transactional data.
    I would leave the polling logic to a process outside the Workflow engine. In an Applications environment, this should be a Concurrent request. If this is standalone Workflow, then schedule something using DBMS_JOB. The job should check the database, and if necessary, initiate a new workflow to send the notification.
    If the notification does not require a response, then I would be inclined to bypass Workflow competely, and have a job which calls UTL_SMTP to send an email.
    HTH,
    Matt
    Alpha review chapters from my book "Developing With Oracle Workflow" are available on my website:
    http://www.workflowfaq.com
    http://forum.workflowfaq.com

  • How to find out which program fill a custom table ?

    Dear All,
    I am trying to find out which program fill custom table, I tried se11, which programs used this custom table via where used list but could not find. Is there any different way ?
    Regards

    Hi Sappcon,
    yes, it is as Brad said, but you should extend the approach regarding this tables content: If it is related to an existing business object (i.e. order, delivery or the like), you may have a look at user exits/Badis in that field.
    Also, the dynamic approach is possible. First use report RPR_ABAP_SOURCE_SCAN to find the name of the table in all programs in customer name space - it may be defined as a constant in program/function group/class.
    If the dynamic approach is used, the name of the table may be determined by reading another (custom) table or even in a programs text pool. You may find this by searching a pattern UPDATE() - or MODIFY/INSERT in customer programs.
    If the table has update date/time fields, check what jobs or online activities can be responsible.
    If, after all, you still do not know, then I'd say this is a consulting issue
    Regards,
    Clemens

  • What are the methods to modify SAP standard tables?

    hi
    what are the methods to modify SAP standard tables?

    .APPEND structures AND CUSTOMIZING INCLUDES.
    these are the two methods.. but customizing includes we, as a developers do not use.
    generally we use .APPEND structures to modify standard tables.
    note that we need an access key to modify atandard tables.
    we can create an apend structure and add that structure to the standard table at the end.
    note that .append structures should only be added only at the end.
    that is the reason we use .append structures to modify standard tables.as we should not include a field in the middle and disturb the original order of the standard table fields as it may effect many objects depending on the standard table.
    but Some standard tables for which there is a LONG datatype field can never be modified.
    the reason is the LONG datatype field should always be there at the end and also .APPEND strutures should always be there at the end. there will be a conflict. so, some standard tables can not be appended.

  • Find out the SQLs which are using a full table scan

    Hello all , how can i to find out the queries which are using a full table scan ? Any idea ?

    In general, though, why would you want to tune SQL statements that aren't causing problems? Statspack will tell you what the most resource-intensive SQL statements on your system are. A SQL*Net trace of sessions that are performing poorly will indicate which statements are the most resource-intensive for that session. If a statement is incorrectly doing a full-table scan, but it is not causing a problem, why spend time tuning it? If you're not focusing your tuning attention on identifying statements that are causing problems, you'll also miss out on 90% of tuning opportunities which involve rewriting (or eliminating) code to make it more efficient. I can simulate a join on two tables with nested cursor loops, which won't generate a single full table scan, but replacing that code with a real join, while it will cause at least one full table scan, will be orders of magnitude faster.
    As an aside, full table scans aren't necessarily a bad thing. If a statement needs to retrieve more than a couple percent of the rows of a table, full table scans are the most efficient way to go.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Modify an database table

    hi ,
    can we use modify command in database table .(not update command)
    if yes means how to use it . give syntax ..
    i want to modify the database table based on internal table i.e
    how to do this .
    Regards,
    kumar

    Hello Kumar,
    Always use MODIFY command rather than using INSERT or UPDATE.
    When u r using MODIFY command and u can able to update a record and insert a record inside the table.
    MODIFY - Change a database table
    Variants:
    1. MODIFY dbtab. or
    MODIFY *dbtab. or
    MODIFY (dbtabname) ... ..
    2. MODIFY dbtab FROM TABLE itab. or
    MODIFY (dbtabname) FROM TABLE itab.
    3. MODIFY dbtab VERSION vers. or
    MODIFY *dbtab VERSION vers.
    Effect
    Inserts new lines or updates existing lines in a database table (s. relational database). If a line with the specified primary key already exists, an UPDATE is executed. Otherwise, an INSERT is performed. You can specify the name of the database table either in the program itself in the form MODIFY dbtab ... or at runtime as the contents of the field dbtabname in the form MODIFY (dbtabname) ... . In both cases, the database table must be defined in the ABAP Dictionary. Normally, records are inserted or updated only in the current client. Data can only be inserted or updated using a view, if the view refers to a single table and was created in the ABAP Dictionary with the maintenance status "No restriction".
    MODIFY belongs to the Open SQL command set.
    When the statement has been executed, the system field SY-DBCNT contains the number of edited lines.
    The return code is set as follows:
    SY-SUBRC = 0:
    All lines were successfully inserted or updated.
    SY-SUBRC = 4:
    One or more lines could not be inserted or updated.
    Notes
    You cannot modify a line if there is already a line in the table with identical key field values in a UNIQUE index.
    Automatic definition of INSERT and UPDATE is expensive. You should therefore use MODIFY only if you cannot define the INSERT and UPDATE cases yourself in the program.
    Since the MODIFY statement does not perform authority checks, you have to program them yourself.
    Adding or changing lines with the MODIFY command is only completed after a database commit (see LUW) has been performed. Before the database commit has been performed, any database changes can be reversed with a database rollback (see Programming transactions).
    Synchronization of simultanous accesses by several users to the same set of data cannot be guaranteed exclusively with the lock mechanism of the database system. In several cases, you are recommended to use the SAP lock mechanism.
    Variant 1
    MODIFY dbtab. or
    MODIFY *dbtab. or
    MODIFY (dbtabname) ... .
    Additions:
    1. ... FROM wa
    2. ... CLIENT SPECIFIED
    See Short forms not allowed and * work areas not allowed.
    Effect
    Inserts a new line or updates an existing line in a database table. If you specify the name of the database table yourself, the primary key for identifying the line to be inserted or updated and the relevant values are taken from the table work area dbtab or *dbtab (see TABLES). If you specify the name of the database table directly, the program must contain a corresponding TABLES statement. If the name of the database table is not determined until runtime, you need to use the addition ... FROM wa.
    Example
    Insert or change data of the customer Robinson in the current client:
    TABLES SCUSTOM.
    SCUSTOM-ID        = '12400177'.
    SCUSTOM-NAME      = 'Robinson'.
    SCUSTOM-POSTCODE  = '69542'.
    SCUSTOM-CITY      = 'Heidelberg'.
    SCUSTOM-CUSTTYPE  = 'P'.
    SCUSTOM-DISCOUNT  = '003'.
    SCUSTOM-TELEPHONE = '06201/44889'.
    MODIFY SCUSTOM.
    Addition 1
    ... FROM wa
    Effect
    The values for the line to be inserted or updated are not taken from the table work area dbtab, but from the explicitly specified work area wa. When doing this, the data is read from left to right according to the structure of the table work area dbtab (see TABLES). Since the structure of wa is not taken into account, the work area wa must be at least as wide (see DATA) as the table work area dbtab and the alignment of the work area wa must correspond to the alignment of the table work area. Otherwise, a runtime error occurs.
    Note
    If a work area is not explicitly specified, the values for the line to be inserted or updated are also taken from the table work area dbtab if the statement is in a FORM or FUNCTION where the table work area is stored in a formal parameter or local variable of the same name.
    Addition 2
    ... CLIENT SPECIFIED
    Effect
    Switches off automatic client handling. This allows you to edit data across all clients even when dealing with client-specific tables. The client field is treated like a normal table field that can be programmed to accept values in the table work area dbtab or *dbtab where the line to be edited occurs.
    The addition CLIENT SPECIFIED must be specified immediately after the name of the database table.
    Variant 2
    MODIFY dbtab FROM TABLE itab.or MODIFY (dbtabname) FROM TABLE itab.
    Addition:
    ... CLIENT SPECIFIED
    Effect
    Mass modify: Inserts new lines or updates existing lines of a database table. The primary keys for identifying the lines to be inserted or updated and the relevant values are taken from the internal table itab. The lines of the internal table itab must satisfy the same conditions as the work area wa in addition 1 to variant 1.
    Note
    If the internal table itab is empty, SY-SUBRC and SY-DBCNT are set to 0.
    Addition
    ... CLIENT SPECIFIED
    Effect
    As for variant 1.
    Variant 3
    MODIFY dbtab VERSION vers. or MODIFY *dbtab VERSION vers.
    This variant is not allowed in an ABAP Objects context. See VERSION addition not allowed.
    Note
    This variant is obsolete.
    Effect
    Inserts a new line or updates an existing line in a database table, the name of which is taken from the field vers at runtime. If no line exists with the specified primary key, an INSERT is executed. Otherwise, an UPDATE is performed. The database table must be defined in the ABAP/4 Dictionary and its name must conform to the naming conventions for R/2 ATAB tables. These stipulate that the name must begin with 'T' and may contain up to four further characters. The field vers must contain the table name without the leading 'T'. Only lines in the current client are inserted or updated. The line to be inserted is taken from the statically specified table work area dbtab or *dbtab.
    SY-SUBRC is set to 0 if the line is successfully inserted or updated. SY-SUBRC <> 0 is not possible since any other result causes a runtime error.
    Additional help
    Inserting or Changing Table Records
    If useful reward.
    Vasanth

  • Knowing a t.code linked to a certain table, such as T008

    Hi All,
    I'd like to know if ther's a manner to know the t.code which works the program using a certain table, such as T008.
    Thanks
    Gandalf

    Hi Umberto,
    If you want to know what are the program names which using the table T008.
    Then Follow the steps:
    1. Go to SE11
    2. Enter T008 and press F7.
    3. Click the Mouse on T008 (Pooled Table Name).
    4. Click CTRL+SHIFT+F3. Popup comesup
    5. Click the Program checkbox and Uncheck the rest other check boxes and Execute.
    6. Popup comesup specifies 'Where-Used List: Include Fields of the Table'    Click OK.
    You will see the list of Programs using the Table: T008.
    Thanks,
    Chidanand

  • Modified by certain X user report

    Good Day,
    We are currently testing Novell File Reporter.
    Is there report that I can generate that will find all files that have been modified by certain X user on the Novell Volume/Novell Network folder?
    I know it has some structure File Data reports and wanted to verify which would be the closest that I can refer to get the information above.
    Please advise.

    NFMS Support Team wrote:
    > It's not something we in the NFMS Support Team are terribly familiar
    > with, but we recommend starting with the following links:
    >
    >
    https://www.novell.com/documentation...a/bo299y5.html
    >
    >
    https://www.novell.com/documentation...oginstall.html
    >
    > https://www.novell.com/support/kb/doc.php?id=7008421
    >
    > https://www.novell.com/support/kb/doc.php?id=7006297
    >
    > If that information isn't enough to get you pointed in the right
    > direction, you may want to ask about vigil on the NSS forums.
    Another option is NetIQ Sentinel.
    https://www.netiq.com/products/sentinel/
    Your world is on the move. http://www.novell.com/mobility/
    BrainShare 2014 is coming. http://www.novell.com/brainshare/

  • How to modify the standard table

    plzzzzz answer my qestion.
    how to modify the standard table?
    in my knowedge we have the accese key is it correct or worng

    Hi
    <b>The system asks for access key only of two reasons:</b>
    1) You may be having problem of access rights. You would have to contact basis peopl.
    2) You may try to name an object not complying with the rules. You may have to check with the same.
    the process of getting access key is
    <b>the steps to get access key</b>
    you can also try via transaction OSS1
    In your Inbox, click on 'Registration', then on 'Register Objects', then you will have to choose your installation and give details about your object.
    The details you can get by going to your object and clicking on 'Change' - the pop-up screen which asks you for the access key gives you all the details you need to fill in on OSS1 to get your key.
    <b>or</b>
    U can get Access key from www.service.sap.com
    After getting into the site,select quicklinks, then click s to goto SSCR, in
    that select registration,
    after giving the proper details, u can get the access key
    <b>or</b>
    on sap support portal (sapnet)
    --> key & request
    ---> register SSCR key
    ---> registration
    ---> register developper
    and then choose your rigth installation number
    you can get the access key in this way
    <b>reward if usefull</b>

  • Modify the partition table

    Hi,
    Please let me know how to modify the partition table of the disk on to which root is mounted. I want to extend the root space, by modifying the partition table.
    Is there any other way of extending the root disk space?
    Thanks in Advance
    - Sarat.

    Take backup, re-partition, newfs, restore (you are talking about simple root, no mirroring/veritas, right?)

  • Excluding certain tables with import

    Hello,
    I would like to know if there is any way to exclude certain tables when performing an Oracle import. We have certain tables which do not need to be imported, and would significantly help space if some tables could be excluded. Thanks.

    Hi,
    Well, a workaround is to fake the oracle import utility by precreate a not right table which you don't want import.
    Example, I want import all objects from scott to other schema toto, except the emp table. You know the emp's scott table:
    TOTO@DEMO102> conn scott/demo102
    Connected.
    SCOTT@DEMO102> desc emp
    Name                                      Null?    Type
    EMPNO                                     NOT NULL NUMBER(4)
    ENAME                                              VARCHAR2(10)
    JOB                                                VARCHAR2(9)
    MGR                                                NUMBER(4)
    HIREDATE                                           DATE
    SAL                                                NUMBER(7,2)
    COMM                                               NUMBER(7,2)
    DEPTNO                                             NUMBER(2)I have duplicate into emp2 which won't exclude :
    SCOTT@DEMO102> desc emp2
    Name                                      Null?    Type
    EMPNO                                              NUMBER(4)
    ENAME                                              VARCHAR2(10)
    JOB                                                VARCHAR2(9)
    MGR                                                NUMBER(4)
    HIREDATE                                           DATE
    COMM                                               NUMBER(7,2)
    DEPTNO                                             NUMBER(2)
    SCOTT@DEMO102> Well, as toto, I create a table emp with other structure :
    SYSTEM@DEMO102> conn toto/toto
    Connected.
    TOTO@DEMO102> desc emp
    ERROR:
    ORA-04043: object emp does not exist
    TOTO@DEMO102> create table emp (col1 number);
    Table created.
    TOTO@DEMO102> desc emp
    Name                                      Null?    Type
    COL1                                               NUMBERAt this point, I export the scott's schema :
    E:\oracle\ora102\BIN>exp system/demo102 owner=scott file=e:\files\expscott.dmp log=e:\files\expscott.log
    Export: Release 10.2.0.2.0 - Production on Wed Sep 20 20:50:14 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Produc
    tion
    With the Partitioning, OLAP and Data Mining options
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    About to export specified users ...
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user SCOTT
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user SCOTT
    About to export SCOTT's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    . about to export SCOTT's tables via Conventional Path ...
    . . exporting table                              A          2 rows exported
    . . exporting table                              B          4 rows exported
    . . exporting table                          BONUS          0 rows exported
    . . exporting table                              C          0 rows exported
    . . exporting table                         CARLES      40811 rows exported
    . . exporting table                        CECILIA          2 rows exported
    . . exporting table                        CUBITTM         25 rows exported
    . . exporting table                           DATA          4 rows exported
    . . exporting table                           DEPT          4 rows exported
    . . exporting table                            DIM          2 rows exported
    . . exporting table EMP 14 rows exported
    . . exporting table EMP2 14 rows exported
    . . exporting table                        WORKERS          1 rows exported
    . exporting synonyms
    . exporting views
    . exporting stored procedures
    . exporting operators
    . exporting referential integrity constraints
    . exporting triggers
    . exporting indextypes
    . exporting bitmap, functional and extensible indexes
    . exporting posttables actions
    . exporting materialized views
    . exporting snapshot logs
    . exporting job queues
    . exporting refresh groups and children
    . exporting dimensions
    . exporting post-schema procedural objects and actions
    . exporting statistics
    Export terminated successfully without warnings.
    E:\oracle\ora102\BIN>Then import with ignore=y :
    E:\oracle\ora102\BIN>imp system/demo102 fromuser=scott touser=toto file=e:\files
    \expscott.dmp log=e:\files\imp_to_toto.log ignore=yHere the log result :
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Export file created by EXPORT:V10.02.01 via conventional path
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    . importing SCOTT's objects into TOTO
    . . importing table                            "A"          2 rows imported
    . . importing table                            "B"          4 rows imported
    . . importing table                        "BONUS"          0 rows imported
    . . importing table                            "C"          0 rows imported
    . . importing table                       "CARLES"      40811 rows imported
    . . importing table                      "CECILIA"          2 rows imported
    . . importing table                      "CUBITTM"         25 rows imported
    . . importing table                         "DATA"          4 rows imported
    . . importing table                         "DEPT"          4 rows imported
    . . importing table                          "DIM"          2 rows imported
    . . importing table "EMP"
    IMP-00058: ORACLE error 904 encountered
    ORA-00904: "DEPTNO": invalid identifier
    IMP-00017: following statement failed with ORACLE error 904:
    ORA-06512: at line 1
    . . importing table "EMP2" 14 rows imported
    . . importing table                        "EMP25"         14 rows imported
    . . importing table                         "EMP3"          0 rows imported
    . . importing table                         "EMP6"         14 rows imported
    . . importing table                      "WORKERS"          1 rows imported
    IMP-00041: Warning: object created with compilation warnings
    "CREATE FORCE VIEW "TOTO"."VW_EMP2"                            ("EMPNO","ENA"
    "ME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO","TMS2") AS "
    "select "EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO","TMS2" "
    "from emp2"
    IMP-00017: following statement failed with ORACLE error 904:
    "ALTER TABLE "EMP" ADD CONSTRAINT "FK_DEPTNO" FOREIGN KEY ("DEPTNO") REFEREN"
    "CES "DEPT" ("DEPTNO") ENABLE NOVALIDATE"
    IMP-00003: ORACLE error 904 encountered
    ORA-00904: "DEPTNO": invalid identifier
    IMP-00017: following statement failed with ORACLE error 1031:
    "CREATE SNAPSHOT "MV1" USING ("MV1", (8, 'DEMO102.REGRESS.RDBMS.DEV.US.ORACL"
    "E.COM', 1, 0, 0, "SCOTT", "EMP", '2006-04-24:23:28:56', 0, 51151, '2006-04-"
    "24:23:28:56', '', 0, 1171373, 0, NULL), 2097472, 8, ('2006-04-24:23:28:56',"
    " 22, 0, 0, 1171373, 0, 0, 2, NULL, NULL)) REFRESH FORCE AS"
    "select cast(empno-7000 as number(3)) empno, sal from emp"
    IMP-00003: ORACLE error 1031 encountered
    ORA-01031: insufficient privileges
    IMP-00017: following statement failed with ORACLE error 12003:
    "ALTER SNAPSHOT "MV1" COMPILE"
    IMP-00003: ORACLE error 12003 encountered
    ORA-12003: materialized view "TOTO"."MV1" does not exist
    About to enable constraints...
    Import terminated successfully with warnings.Note that all assowiated objects were in error, but table emp was not import.
    SCOTT@DEMO102> conn toto/toto
    Connected.
    TOTO@DEMO102> desc emp
    Name                                      Null?    Type
    COL1                                               NUMBER
    TOTO@DEMO102> select * from emp;
    no rows selected
    TOTO@DEMO102> select * from emp2;
         EMPNO ENAME      JOB              MGR HIREDATE       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17/12/80                    20
          7499 ALLEN      SALESMAN        7698 20/02/81        300         30
          7521 WARD       SALESMAN        7698 22/02/81        500         30
          7566 JONES      MANAGER         7839 02/04/81                    20
          7654 MARTIN     SALESMAN        7698 28/09/81       1400         30
          7698 BLAKE      MANAGER         7839 01/05/81                    30
          7782 CLARK      MANAGER         7839 09/06/81                    10
          7788 SCOTT      ANALYST         7566 19/04/87                    20
          7839 KING       PRESIDENT            17/11/81                    10
          7844 TURNER     SALESMAN        7698 08/09/81          0         30
          7876 ADAMS      CLERK           7788 23/05/87                    20
          7900 JAMES      CLERK           7698 03/12/81                    30
          7902 FORD       ANALYST         7566 03/12/81                    20
          7934 MILLER     CLERK           7782 23/01/82                    10
    14 rows selected.
    TOTO@DEMO102> If I drop emp table, and re-import, emp table will be import as well.
    Nicolas.

  • Tried to open a file I created in Numbers a while ago which I modified on 11/4/13 and got a message that I needed a newer version of Numbers.  When I went to the Mac App Store it shows that the new version is already installed.  Any suggestions?

    Tried to open a file I created in Numbers a while ago, which I modified on 11/4/13, and got a message that I needed a newer version of Numbers.  When I went to the Mac App Store it shows that the new version is already installed and there doesn't seem to be a way to reinstall it.  When I checked "About Numbers" on my MacBook it shows "Numbers '09 version 2.3".  Any suggestions as to how I can get the new version installed?

    Are you launching Pages from an icon in your Dock? Installing the update does not change the Dock icons & it does not remove the older versions. Go to your Applications folder & launch the new Pages from there.

  • Regarding the modify of internal table

    do 40 times varying lga from p0008-lga01 next p0008-lga02
    varying bet from p0008-bet01 next p0008-bet02.
    *data: bet01 type p decimals 2.
    if lga is initial.
    exit.
    endif.
    INDEX = SY-INDEX.
    amt1 = bet .
    *bet01 = 20 / 100.
    bet = ( bet * 50 ) / 100 .
    CONCATENATE ch INDEX INTO BETXX.
    assign betxx to <F2>.
    assign (betxx)  to <F1>.
    <F2> = bet.
    <u>modify p0008 index INDEX transporting F1</u>
    write:/ <F2>.
    enddo.
    *endif.
    ENDCASE.
    endform.
    can sombody tell me how to modify the p0008 table at the place vr im having the bet01 bet02 and so on fields.
    vn im using this modify statement im getting an error as
    Unable to interpret "INDEX". Possible causes of error: Incorrect

    Hi Madhvi,
    When you are posting a thread, please make sure others do not find it difficult to understand. Please don't use abbreviations like "vr" and "vn".
    If you need prompt responses, please ensure you describe your requirements in
    a proper manner.
    You are getting error because of using wrong syntax. the correct syntax is -
    MODIFY <itab> FROM <wa> [INDEX <idx>] [TRANSPORTING <f1> <f 2> ... ].
    The work area <wa> specified in the FROM addition replaces the existing line in <itab>. The work area must be convertible into the line type of the internal table.
    If you use the INDEX option, the contents of the work area overwrites the contents of the line with index <idx>. If the operation is successful, SY-SUBRC is set to 0. If the internal table contains fewer lines than <idx>, no line is changed and SY-SUBRC is set to 4.
    Without the INDEX addition, you can only use the above statement within a LOOP. In this case, you change the current loop line <idx> is implicitly set to SY-TABIX.
    When you change lines in sorted tables, remember that you must not change the contents of key fields, and that a runtime error occurs if you try to replace the contents of a key field with another value. However, you can assign the same value.
    The TRANSPORTING addition allows you to specify the fields that you want to change explicitly in a list.
    Regards
    Indrajit.

  • I share an itunes account with 3 users. How can I find out which person downloaded a certain app?

    I share an itunes account with 3 users. How can I find out which person downloaded a certain app?

    Agile,
    Any of the above will work, depending how you would like to set it up.
    Given that kids tend to eventually grow up and be independent, the best long term answer for most people is to let her have her own account and her own library as soon as she can handle it.  Keep in mind that content purchased from the iTunes Store is permanently tied to the account from which it was originally purchased, so separating later is a challenge.
    If you want to sync multiple devices to the same library, that will work.  Or if you want separate libraries (as I would recommend), they can be either on separate computers or on separate Windows user accounts on the same PC.
    For the name change:  Connect the device.  When the name appears in the left sidebar of iTunes, highlight it and change it.

  • How to process each records in the derived table which i created using cte table using sql server

    I want to process each row from the CTE table I created, how can I traverse from first row to second row and so on....
    how to process each records in the derived table which i created using  cte table using sql server

    Ideally you would be doing a set based processing rather than traversing row by row as thats more efficient. To answer it specific to your scenario we may need more info. Can you explain with some sample data your exact requirement?
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

Maybe you are looking for

  • %% in backslash code list? What's with that?

    I was looking at this page: backslash_codes_display off of NI site and noticed that it put %% in the code column with it being interpreted as a Percent.  I don't have LV 8.2, so I can't tell, but WHY?  What is the point of this code?  Or is this a mi

  • Xcelsius 2008 FP2 won't export to swf

    Hello, I can not get Xcelsius to preview or export to swf.  The progress bar labelled "Generating swft" displays for approximately 3-5 minutes until Xcelsius.exe finally crashes and the app closes.  I'm running Xcelsius 2008 SP1 with FP2, Live Office

  • My computer died need help!!

    hi i had to get a new computer due old one dying. ive downloaded itunes on my new computer is there any way i can get all my songs that i bought from itunes on my new computer without having a back up? would i have to pay for all my music and videos

  • Indesign CS6 crashes when opening docs

    Hello, since upgrading our macs to OSX 10.9 & Adobe CS6 we have strange crashes of Indesign. It´s hard to reproduce because it happens irregular ...mostly when switching between programs and opening an ID-doc afterwards. Without switching to other pr

  • I erased some logic files ...can I get them back?

    Hi all, I've erased some files by mistake and I want to recover them, I managed to recover all the audio files using 'Data recover II' but I can't find the logic sequences files... Can anyone help befor i spend lots of money with data recovery people