Which view corresponds to a JTable?

Is there anyway you can ask a JTable which View it's bound to??
I want to do this because i want to implement a copy/paste feature in my application.
If the user chooses a row in a table (there are multiple table's on a form, hence the question) and presses the copy button in the toolbar i want to copy the chosen row in the focused table.
Regards
Johan

You should know the approximate time by which you have dropped the table. You can use the time to recover or can get the SCN from smon_scn_time.
Thanks and Regards,
Satheesh Babu.S
Bangalore.

Similar Messages

  • Help in finding view corresponding to application

    hi,
    i have an application for web dynpro component and there is a view corresponding to that application.
    i am not able to find out that view. where is that view. and which component is it attached to. any help.
    i have to make some changes in that view.
    web dynpro application is     HAP_START_PAGE_POWL_UI_ESS
    configuration name is           HAP_START_PG_POW_ESS_AC
      how can i find the view corresponding  to these application adn configuration?

    >It has POWL in the name, so I'm guessing this is a POWL appliation.
    good guess Thomas!  But only half right - The actual app is an FPM OIF which has a component that itself embeds a POWL (HAP_START_PAGE_POWL_UI ). This one POWL and the corresponding MSS one are probably the two most posted POWLs on SCN. I guess there there are a fair few companies out there now implementing the EhP4 version of performance management.
    The feeder class used by this is CL_HRHAP00_STARTPG_POWL and the application Id for the POWL is OSA-POWL-ESS (you'll see some if statements that query this value (noticeably not defined as a constant anywhere!)
    The MSS view uses the same feeder class - but a different application id.
    Like the previous BSP based app, there isn't much in the way of explicit enhancement points for the ESS application. You can enhance the feeder class, but it certainly hasn't been designed to make this easy.
    I'd suggest that first you read up on POWL, and think about how you could implement you changes to the view by enhancing the feeder class (or potentially just through administrator configuration/personalisation of the application) try out a few things, and then if you get stuck come back and ask again - explaining what you've tried and what it is you want to achieve.
    Cheers,
    Chris

  • Population of MARD-PRCTL: Which View is used

    Hi,
    Can you help me to explain the difference between MARD-PRCTL and MARC-PRCTR ?
    I can see that MARC-PRCTR is populated from e.g.. Plant/Storagedata 2 or Sales General/Plant view, but from which view is MARD-PRCTL populated ?
    Cheers,
    Claus

    Hi Claus,
    The MARC table holds the Plant Data for Material in the material master.
    The MARD table holds the Storage Location Data for Material.
    The MARD table is populated when the stock level of the material is updated.
    So, the subsequent fields of the table including PRCTL (Profit center) gets populated when the corresponding transactions for updating the material stocks are executed.
    Regards,
    Thangesh

  • Which views/tables to use for retrieving item information

    Hi All,
    I need to write a PL/SQL procedure for retrieving detailed information for a specified item (given inventory item ID and organization ID). I'm not quite sure which views/tables to us for this.
    I found out that view MTL_SYSTEM_ITEMS_FVL is the underlying view for the Master Item Form (via help / record history menu option). But when looking up in eTRM following warning is described:
    Warning: Oracle does not recommend you query or alter data using this view. It may change dramatically in subsequent minor or major releases.
    The second view I found is MTL_SYSTEM_ITEMS_VL. But when quering for data in this view, it turned out that the view is empty.
    Can anybody tell me for what purposes this view is used?
    Is it the correct way to use one of these views (or any other?) for retrieving detailed item information or should I better define a new query within the procedure using tables such as MTL_SYSTEM_ITEMS_B, MTL_SYSTEM_ITEMS_TL and MTL_PARAMETERS (any others) ?
    Any ideas for that?
    Best Regards,
    Carolin

    Hi Carolin,
    It's usually more efficient to use base tables instead of views. The tables you will actually need will depend on your requirements. Regarding your question about MTL_SYSTEM_ITEMS_VL, it's usually ok to use the _VL views. These typically contain the same information as the base tables plus some logic to get the appropriate translations for fields that can be shown in different languages (for instance, DESCRIPTION). Typical table names you will need could be:
    Item Master: MTL_SYSTEM_ITEMS_B
    Organizations: MTL_PARAMETERS
    Subinventories: MTL_SECONDARY_INVENTORIES
    Units of Measure: MTL_UNITS_OF_MEASURE
    Onhand Quantity: MTL_ONHAND_QUANTITIES_DETAIL
    Material Transactions: MTL_MATERIAL_TRANSACTIONS
    Categories: MTL_CATEGORIES_B, MTL_CATEGORY_SETS_B, MTL_ITEM_CATEGORIES
    If your query didn't return any data, it's probably because the language was not properly setup in your session (check USERENV ('LANG') so see what's the language in your session).
    Hope it helps.

  • How to know which report is using which view

    Hi all,
    is there any way to get the details of which discoverer report is using which view by using any sql query.
    Thanks in advance

    There is a trigger that update a table whenever a workbook is saved.
    You can start your query from
    select s.workbook_name,
    s.worksheet_name,
    s.sequence_order,
    s.sql_string
    from
    ams.ams_discoverer_sql s
    order by 1,2,3

  • Shared Components - Comments - which View?

    I am trying to find which APEX view holds the field for Shared Components - Comments. On the Shared Components page, there is a COMMENTS link. Which APEX view stores those comments? It seems like it would be stored in APEX_APPLICATIONS view, but i don't see the comments field there.
    Thanks for your help,
    John

    Hi,
    A useful query to know which views have comment column is the following:
    select apex_view_name, column_name from apex_dictionary where COLUMN_NAME LIKE '%COMMENT%';
    APEX_VIEW_NAME                COLUMN_NAME
    APEX_APPLICATION_AUTHORIZATION      COMPONENT_COMMENT
    APEX_APPLICATION_BC_ENTRIES      COMPONENT_COMMENT
    APEX_APPLICATION_BREADCRUMBS      COMPONENT_COMMENT
    APEX_APPLICATION_BUILD_OPTIONS      COMPONENT_COMMENT
    APEX_APPLICATION_COMPUTATIONS      COMPONENT_COMMENT
    APEX_APPLICATION_GROUPS      GROUP_COMMENT
    APEX_APPLICATION_ITEMS           COMPONENT_COMMENT
    APEX_APPLICATION_LISTS           COMPONENT_COMMENT
    APEX_APPLICATION_LIST_ENTRIES      COMPONENT_COMMENT
    APEX_APPLICATION_LOVS           COMPONENT_COMMENT
    APEX_APPLICATION_LOV_ENTRIES      COMPONENT_COMMENT
    APEX_APPLICATION_NAV_BAR      COMPONENT_COMMENT
    APEX_APPLICATION_PAGES           PAGE_COMMENT
    APEX_APPLICATION_PAGE_BRANCHES      COMPONENT_COMMENT
    APEX_APPLICATION_PAGE_COMP      COMPONENT_COMMENT
    APEX_APPLICATION_PAGE_PROC      COMPONENT_COMMENT
    APEX_APPLICATION_PAGE_REGIONS      COMPONENT_COMMENT
    APEX_APPLICATION_PAGE_RPT      COMPONENT_COMMENT
    APEX_APPLICATION_PAGE_RPT_COLS      COLUMN_COMMENT
    APEX_APPLICATION_PAGE_VAL      COMPONENT_COMMENT
    APEX_APPLICATION_PAGE_BUTTONS      COMPONENT_COMMENT
    APEX_APPLICATION_PAGE_ITEMS      COMPONENT_COMMENT
    APEX_APPLICATION_PARENT_TABS      COMPONENT_COMMENT
    APEX_APPLICATION_PROCESSES      COMPONENT_COMMENT
    APEX_APPLICATION_SHORTCUTS      COMPONENT_COMMENTS
    APEX_APPLICATION_SUPP_OBJ_BOPT      DEVELOPER_COMMENT
    APEX_APPLICATION_TABS           COMPONENT_COMMENT
    APEX_APPLICATION_TEMP_BC      COMPONENT_COMMENTS
    APEX_APPLICATION_TEMP_BUTTON      COMPONENT_COMMENT
    APEX_APPLICATION_TEMP_CALENDAR      COMPONENT_COMMENT
    APEX_APPLICATION_TEMP_LABEL      COMPONENT_COMMENT
    APEX_APPLICATION_TEMP_LIST      COMPONENT_COMMENT
    APEX_APPLICATION_TEMP_PAGE      COMPONENT_COMMENT
    APEX_APPLICATION_TEMP_POPUPLOV      COMPONENT_COMMENT
    APEX_APPLICATION_TEMP_REGION      COMPONENT_COMMENT
    APEX_APPLICATION_TEMP_REPORT      COMPONENT_COMMENT
    APEX_APPLICATION_TRANSLATIONS      DEVELOPER_COMMENT
    APEX_APPLICATION_TRANS_MAP      TRANSLATION_COMMENTS
    APEX_APPLICATION_TRANS_MAP      TRANSLATION_MAP_COMMENTS
    APEX_APPLICATION_TREES           COMPONENT_COMMENTRegards,

  • Which view format is preferred in Ui5 development ?

    Started with Ui5 a week back and documentation is really good. But when getting hands on with this made me bewildered. Can anyone help me with below queries
    1) Which view is preferred in application development for UI5 ? i can only see Js sample codes in documentations. (IS JS only preferred for development)
    2) Is it possbile to use mixture of View formats in an application ? (XML view and its controller for one screen and HTML view for other screen)

    Thanks ,
    When i look at the api reference of SAPUI5 SDK - Demo Kit  i get the below error. Is something wrong ?
    API Reference 
    sap.ui.core.mvc.View
    HTTP Status 404 - /sdk/docs/docs/api/symbols/sap.ui.core.mvc.View.html
    type Status report
    message /sdk/docs/docs/api/symbols/sap.ui.core.mvc.View.html
    description The requested resource is not available.

  • Reg: Problem to find Which view it belongs in MM01

    Hi all,
    I have to display an ALV list for displaying the changes that have been made for a material during a period.
    Iam using a FM CHANGEDOCUMENT_READ
    Using this FM Iam getting the details of the material that have been changed in to an Internal table CHGDOC, i am getting the tables and fields where the changes have been made to this internal table.
    I need to find out which view these fields occur in MM01 i.e. whether the field belongs in the Basic data view or Sales View or Purchasing view or etc.
    For the above problem i tried a sol which is somethin like below:
    Iam using table T130F where iam getting the maintenance status using the filedname. And using the maintenance status iam determining the view, but I have a problem in this scenario,.
    the problem is:
    In the internal table CHGDOC for material description iam getting the table field as DMAKT-MAKTX which is a structure but final changes will be made in the DB table MAKT, how can i find out this table programatically.
    If there are any other solution also it would be very helpful.
    Kindly help.
    Regards
    Naveen

    Hi,
    there is no translation between e.g. MAKT and DMAKT.
    There are some "shortened structures" for MAKT, MARM, and so on. They all begin with a "D". It is simply coded. See for example program LWBBIF07.
    Shift the leading "D" and watch out for a reasonable table name.
    Good luck
    Jo

  • Which view to find if database is 32 or 64 bit

    Hello,
    Which view or where is the information that indicate if the database is 32 or 64 bit. I looked at v$version but the info is not there. Thank you.

    Once time on this forum I saw one example like below:<br>
    Re: 32-bit or 64-bit ?<br>
    ;-)<br>
    Nicolas.

  • How to dynamically choose which view to display in second step

    Hi Guys,
    I am just started to evaluate fpm to decide whether to use it in our project. So i have question that might be very simple to you all, that i hope you all can help me with.
    Say i want to use the fpm GAF with a single webdynpro component. I have 3 steps, first step display a dropdown list for user to choose, second step will be a view that will depend on user input on the first step and 3rd step just a confirmation screen.
    I plan to use UIBB for all the screen, not using the GUIBB. So i will need to dynamically decide which view to show on step 2, and since we don't call navigation plug when we use fpm, what is the best way to archive this? How do i design my webdynpro component and the fpm configuration etc...?
    I read from the programming guide about initial screen and variant. But what if my application doesn't need an initial screen and the user choosing step is not at the first step, I can't use variant in this case right?
    thanks.

    Hi
    You can give the dropdown on initial screen and than u can decide which screen  to show on the second (or infact that will we the first step you you have first step as a initial screen.
    How?? :
    1. Create different varients for the second step.
    2. Basis on the Value choosen in the dropdown list, select the appropriate varient using the following code.
      TRY.
            CALL METHOD io_gaf->set_variant
              EXPORTING
                iv_variant_id = 'VAR_CLIENT'.
          CATCH cx_fpm_floorplan .
        ENDTRY.     
    where  VAR_CLIENT  is your varient.
    Hope this will help you.
    Thanks & Regards,
    Arvind

  • Which view need to be quried???

    hi,
    i want to get back a table which has been dropped by me with the help of incomplete recovery,now i want to know which view i need to look in,so that i can able to
    get my table back.i am using rman for this and my database
    is 9.0.1 .
    set until scn '???' (what to write here)
    plz advise me..
    thanks...

    You should know the approximate time by which you have dropped the table. You can use the time to recover or can get the SCN from smon_scn_time.
    Thanks and Regards,
    Satheesh Babu.S
    Bangalore.

  • Which iVie wpoint to which view in table V_TWPC_V?

    Hi Gurus,
    Am changing the eval paths. But question is how  do we know which iVie wpoint to which view in table V_TWPC_V?
    Any inputs are highly appreciated
    sammer

    Suresh
    is this something specific to mysap erp2004. or is this property avialable even with previous BPs of MSS
    am not able to find this property.
    I think it should be avialable even with previous versions. Am looking into MSS BP60.1 I could find something called "Viewgroup used for Attendance Overview" for the attendance iView and did not find any with the name VIEWID.
    Please assist.
    regards
    Sam

  • Which view I can query to get the granted objects privilege to a user?

    Hi all,
    which view I can query to get the granted objects privilege to a user?
    for example:
    grant execute on accounting.get_name to scott;
    Which view has above object granted information?
    Thanks

    SQL> select * FROM all_tab_privs where grantor = upper('accounting');
    no rows selected

  • Which views are the most important for a dba admin?

    Hi I am new to oracle, and I am wondering which views are the most important to monitore.
    Can someone give me a usefull link?
    I know the views depend of wich kind of information you wanna retrieve.
    But I think about space left on tablespaces, segment information, backup information, status of the database.....
    So any help would be appreciated.For example I am wonering which views would an admin taking a new job and database would look?

    I would recommend you (if not already done):
    - first read the Concepts manual:
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14220/toc.htm
    - then the Administration Guide:
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14231/toc.htm
    At the end of each chapter of this document, there is a section named "Viewing Information About ..." such as http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14231/create.htm#sthref482
    that contains the related views.

  • Which views have RMAN backup jobs information?

    Hi there,
    I use EM to schedule the db backup using RMAN.
    I can view the jobs in the EM.
    But I can not find out which views have RMAN backup jobs information in sqlplus.
    like dba_scheduler_jobs.
    Your advice will be appreciated.
    Thanks,
    SZ

    Hi,
    V$RMAN_STATUS - Shows the success/failure status of all recently completed RMAN jobs.
    V$RMAN_OUTPUT
    Displays messages reported by an RMAN job in progress
    If you want to monitor then go the following :-
    Monitoring RMAN Job Progress :- view V$SESSION_LONGOPS.
    first Step :-
    Before starting the job, create a script file (called, for this example, longops) containing the following SQL statement:
    SELECT SID, SERIAL#, CONTEXT, SOFAR, TOTALWORK,
    ROUND(SOFAR/TOTALWORK*100,2) "%_COMPLETE"
    FROM V$SESSION_LONGOPS
    WHERE OPNAME LIKE 'RMAN%'
    AND OPNAME NOT LIKE '%aggregate%'
    AND TOTALWORK != 0
    AND SOFAR <> TOTALWORK
    After connecting to the target database and, if desired, the recovery catalog database, start an RMAN job. For example, enter:
    RESTORE DATABASE;
    While the job is running, start SQL*Plus connected to the target database, and execute the longops script to check the progress of the RMAN job. If you repeat the query while the restore progresses, then you see output such as the following:
    SQL> @longops
    SID SERIAL# CONTEXT SOFAR TOTALWORK %_COMPLETE
    8 19 1 10377 36617 28.34
    SQL> @longops
    SID SERIAL# CONTEXT SOFAR TOTALWORK % COMPLETE
    8 19 1 21513 36617 58.75
    Cheers
    Pavan Kumar N

Maybe you are looking for