List of tables used in Custom Forms

Hi All,
I am working on forms . There are nearly 100 forms, I need to find all the tables used in these forms.
Is there any way I can know the list of tables used in each form from backend.
Or do I need to open each form and analyze the forms one by one?
Thanks,
Raj Kumar

I am working on forms . There are nearly 100 forms, I need to find all the tables used in these forms.
Is there any way I can know the list of tables used in each form from backend.
Or do I need to open each form and analyze the forms one by one?You cannot get the list from the backend.
You have 3 options here.
Option 1) Open each form using Forms Builder and get the list of objects
Option 2) Use Record History and LAST_QUERY
Option 3) Enable trace
How To Determine Table and Column Name from a Field in a Form in 11i [ID 259722.1]
FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12 [ID 296559.1]
Thanks,
Hussein

Similar Messages

  • Can we enter data in any standard table directly through custom form??

    Dear All,
    Can we enter data in any standard table directly through custom form??
    I have create custom form in R.12. I want to insert data in quality standard table directly through custom form. Need experts guideline.
    Awaiting regards,

    Hi,
    Can we enter data in any standard table directly through custom form??
    I have create custom form in R.12. I want to insert data in quality standard table directly through custom form. Need experts guideline.
    Awaiting regards,
    I would not recommend touching the standard tables at all unless you are being guided by the SR. For a record to be in the standard table it should go through series of validations based on the what operation you are performing and some times datas are dependent upon the other tables, and also some times the same records are hit to so many other tables simultaneously.
    Therefore I would not recommend this brother.
    Thanks &
    Best Regards,

  • Query to find out the list of tables used in a package

    hello,
    can anyone please help me out with a query; i want to find out the list of tables used by a particular package.
    thanks,
    orton

    orton607 wrote:
    thanks for replying guys. But the thing is i am using dynamic sql execute immediate in my package, so i want those tables also and the schema name.
    thanks,
    ortonThis is not possible. The best you could do is to have a good guess.
    Or how would you parse some dynamic statement as this:
       v_suffix := 'loyees';
       v_sql := 'Select count(*) from (select ''nonsense'' col1 from emp'||v_suffix||') where col1 = ''Y'''';
       execute_immediate(v_sql);
    ...What is the table name? How do you want to parse that?
    Better rewrite all dynamic SQL statements into non dynamic ones. Or do the source control logic for those dynamic parts in an extra module. For example implement your own dependency table and force every developer to add there all dynamic parts.

  • List of Tables used in IS Retail

    Hi ,
    I am currently desingning an adapter to integrate IS Retail and non SAP BI Solution. I need your help on the complete list of tables used in IS-Retails. It would be great if you could provide me the tcodes as well.
    Expecting a prompt reply from experts.
    Regards,
    Raghu.
    SAP Adapter Specialist.

    Dear Raghavendra,
    There are lot of SAP tables in IS Retail.
    You can search all tables using transaction code SE16 or SE16N
    For which transaction, you need SAP Table details?
    Bye,
    Muralidhara

  • Parsing query and getting list of tables used

    Hi All,
       I require to parse sql query (simple & complex as well) and to get the list of tables used in the query.
       And need to validate that, the list of tables against a whitelist to maintained in the file.
      I tried to write my own parser, since there are lots possible ways to write complex queries, i am unable to cover all the scenarios.
      I require a help, Is there any other ways to get the list of tables used in a query?
    Thanks,
    Mahendran..

    user10279893 wrote:
    Hi All,
       I require to parse sql query (simple & complex as well) and to get the list of tables used in the query.
       And need to validate that, the list of tables against a whitelist to maintained in the file.
      I tried to write my own parser, since there are lots possible ways to write complex queries, i am unable to cover all the scenarios.
      I require a help, Is there any other ways to get the list of tables used in a query?
    Thanks,
    Mahendran..
    You'll never cover all scenarios by trying to parse a query.
    For example, what about a query that queries views and those views query pipelined functions, and those pipelined functions query other views or tables or pipelined functions etc.
    And what about a query that dynamically obtains the table names, such as...
    SQL> select
      2    table_name,
      3    to_number(
      4      extractvalue(
      5        xmltype(
      6 dbms_xmlgen.getxml('select count(*) c from '||table_name))
      7        ,'/ROWSET/ROW/C')) count
      8  from user_tables
      9 where iot_type != 'IOT_OVERFLOW'
    10 or    iot_type is null;
    TABLE_NAME                      COUNT
    DEPT                                4
    EMP                                14
    BONUS                               0
    SALGRADE                            5
    .. in this case the tables being accessed (to count their rows) are not even known within the code, they are dynamically generated queries at run-time, so the only way to know what tables are accessed is to actually run the query.
    Of course, a well designed system, with proper documentation and version control would allow you to take any database object and know where and what is using it, and whether it's even being used.

  • How to get list of tables used in packages

    Dear All
    Can you pls tell me how to get list of tables used in packages
    Regards

    select referenced_name
      from user_dependencies
    where name = 'your_package'
       and referenced_type = 'TABLE'Regards,
    Rob.

  • Global Variables passing from standard form for use on custom form

    Hi,
    I'm trying to grab a value from a standard form, and pass it to a new custom form, which I am opening automatically from the standard form via personalizations. Is anyone aware of a way to send a value from one form to another? I was going to try using a global variable, which it looks like you can set through personalization. I tried doing it by passing the value as a form parameter, which works if I hard code a value, but it doesn't work if I refer to a value from the standard form.

    in your E-Business-environment may exist some special codings, which you have to think of, when passing parameters through the application.
    Copy the question to your EBS-Forum. They know ways using personalization and passing parameters

  • How to use a custom form

    Hi,
    I need to display the attributes of the currently logged in user.
    I plan to do this by displaying the attributes in a custom form which shud appear upon clicking on the End User Menu Form.
    I have already created the form and added the link in the End User Menu Form but am clueless as to how to display it.
    Can anyone help me as to how to go about with this task.
    thanks in advance,

    Point To Note:
    > > Go to your 'user' folder inside WSHOME and there's
    a
    jsp called 'customEdit.jsp' open it up and there
    should be a line that looks like this:
    req.setOption(UserViewConstants........
    uncomment this line and enter the name of yourform
    here like so:
    req.setOption(UserViewConstants.OP_FORM, "The
    "The name of your custom form");
    now edit your end user menu link to point to
    user/customEdit.jsp
    now when the user logins in thru the userinterface
    he'll click the link which should bring up theyour
    form with his info.
    ***NOTE rather than change customEdit.jsp make acopy
    of it, rename it, make the changes in it, andpoint
    your link to this new jsp......>
    The above solution is applicable to IDM 5.0 SP5
    And my solution below is applicable to IDM 5.0 without any patches.
    Thanks for the information ,however this is what i
    was trying earlier but it wasn't working ....i have
    figured out the problem now.
    There's a method wherein a object is created in the
    form
    RequestState reqState = new
    RequestState(session, request, response, _wsSesss,
    p); In the form there's a method
    String url = form.process(req);
    if ( url != null)
    LoginHelper.redirect (reqState, out, url);
    return;
    }However there's no object called req
    instead it should be reqState.
    Cheers,

  • Mandatory date field validation different if using a custom form... why?

    We are using SharePoint 2013 and have a custom list in which one of the fields is a mandatory date/time field.  When using the default "New" form, if I don't add any date and click the Save button, the form looks like it is submitted and then
    comes back with some red text indicating that I need a value for my date/time field.  If I simply create a new custom "New" form, and then click on the Save button without adding my date/time value, I get a black (not red) validation error. 
    A couple things are going on here.  The error is displayed BEFORE any submit happens, unlike when using the default New form.  The validation message is different and is listed in black rather than red.  For other mandatory fields, the form
    does get submitted and then displays the validation error in red, although it is a different validation error message than when using the default New form.
    I don't care that the text is different, but it is an issue for us that the text is not in red.  Does anyone know why this is happening?
    Thanks - Peter

    Hi Peter,
    According to your description, my understanding is that you want to the alert message is red in the custom New form.
    Please open the custom New from in SharePoint web site, and save without type anything in the data field, then the alert message(black) displays. Click on F12 to open IE developer debug tool, click on the arrow , then click on the black message to find the
    HTML element id for the message, in my test, the id is ctl00_ctl42_g_fed984e8_446c_4fdb_a279_328c2c369be5_ff21_ctl00_ctl00_DateTimeField_ctl00 .
    Then click on Settings->Edit page, add a Content Edit web part to the custom New form page, edit the web part and add the following code into the Edit Source of the web part:
    <style type="text/css">
    #ctl00_ctl42_g_fed984e8_446c_4fdb_a279_328c2c369be5_ff21_ctl00_ctl00_DateTimeField_ctl00{
    color:#FF0000;
    </style>
    If you have multiple mandatory fields, you need to find each id for each field alert message, add #id{…}
    into <style …> </style> section.
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Updating a table using a custom OM infotype

    Hey gurus,
    I have created a custom OM infotype HRP9608. I wish to use this infotype to update a table.
    I marked it as an external, country specific infotype and blanked out the Database table from SM30 (table T777D)
    I have also blanked out the FM. for tab name using SM30 (table T77ID) and added in Read Function and Primary Table.
    The infotype gets created correctly, but when i add it as an external infotype the screen changes. Can someone please provide me with a solution.
    Thanks.

    Hi,
    See the given link, It may help you.
    https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=64259392
    Regards,
    Shamma

  • PL/TABLE using in oracle forms

    Good morning everyone:
    I have a problem I want to execute all my records through FIND button but I am not able to do this this is my below code I am using PL/SQL Table to hold the values in memory but whenever I pressed the find button it's give me last value of the record I hold scroll down key then it show me other records in one column at a time.
    Please advice me as soon as possible .
    Thanks,
    Zeeshan
    DECLARE
    CURSOR HR IS
    SELECT HR.FULL_NAME
    FROM APPS.HR_EMPLOYEES HR,APPS.CIN_ESWO_WRITER_LEADER ES
    WHERE HR.EMPLOYEE_ID = ES.LEADER_ID;
    TYPE type_hr_tab IS TABLE OF APPS.HR_EMPLOYEES.FULL_NAME%TYPE
    INDEX BY BINARY_INTEGER;
    tab_hr type_hr_tab;
    v_hr_counter NUMBER := 0;
    CURSOR ES IS
    SELECT HR.FULL_NAME
    FROM APPS.HR_EMPLOYEES HR,APPS.CIN_ESWO_WRITER_LEADER ES
    WHERE HR.EMPLOYEE_ID = ES.WRITER_ID;
    TYPE type_es_tab IS TABLE OF APPS.HR_EMPLOYEES.FULL_NAME%TYPE
    INDEX BY BINARY_INTEGER;
    tab_es type_es_tab;
    v_es_counter NUMBER := 0;
    BEGIN
    --For Leader Information
    FOR leader_rec IN HR
    LOOP
    v_hr_counter := v_hr_counter + 1;
    tab_hr(v_hr_counter):=leader_rec.full_name;
    --:CINESWO.LEADER_NAME:=tab_hr(v_hr_counter);
    --MESSAGE(':CINESWO.LEADER_NAME');
    --MESSAGE(':CINESWO.LEADER_NAME');
    END LOOP;
    FOR i_cname IN 1..tab_hr.LAST
    LOOP
    :CINESWO.LEADER_NAME:=tab_hr(i_cname);
    --NEXT_RECORD;
    END LOOP;
    --For Writer Information
    FOR writer_rec IN ES
    LOOP
    v_es_counter := v_es_counter + 1;
    tab_es(v_es_counter):=writer_rec.full_name;
    --:CINESWO.WRITER_NAME:=tab_es(v_es_counter);
    --MESSAGE(':CINESWO.WRITER_NAME');
    --MESSAGE('::CINESWO.WRITER_NAME');
    END LOOP;
    END;
    --Do_Key('Execute_Query');                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Thank you for your reply, This is my code behind the button.
    It's show's the total number of rows 600 something in the first column it show me the name until the seond column is empty whenever the first column rows is complted the it goes to the second column and show me the remaining column fileds.
    DECLARE
    CURSOR     HR IS
    SELECT     HR.FULL_NAME,ES.LEADER_ID
    FROM          APPS.HR_EMPLOYEES HR,APPS.CIN_ESWO_WRITER_LEADER ES
    WHERE HR.EMPLOYEE_ID     = ES.LEADER_ID;
    TYPE type_hr_tab IS TABLE OF APPS.HR_EMPLOYEES.FULL_NAME%TYPE
    INDEX BY BINARY_INTEGER;
    tab_hr type_hr_tab;
    v_hr_counter NUMBER := 0;
    CURSOR     ES IS     
    SELECT     HR.FULL_NAME,ES.WRITER_ID
    FROM          APPS.HR_EMPLOYEES HR,APPS.CIN_ESWO_WRITER_LEADER ES
    WHERE HR.EMPLOYEE_ID     = ES.WRITER_ID;
    TYPE type_es_tab IS TABLE OF APPS.HR_EMPLOYEES.FULL_NAME%TYPE
    INDEX BY BINARY_INTEGER;
    tab_es type_es_tab;
    v_es_counter NUMBER := 0;
    BEGIN
    --LAST_RECORD;
    --For Leader Information
    FOR leader_rec IN HR
    LOOP
         IF :System.Record_Status <> 'NEW' Then
    Create_Record ;
    End if ;
         --Create_Record;
    tab_hr(v_hr_counter):=leader_rec.full_name;
    :CINESWO.LEADER_NAME:=tab_hr(v_hr_counter);
    v_hr_counter := v_hr_counter + 1;
    --MESSAGE('tab_hr(v_hr_counter)');
    --MESSAGE('tab_hr(v_hr_counter)');
    END LOOP;
    --FIRST_RECORD;
    --LAST_RECORD;
    --For Writer Information
    IF :System.Record_Status <> 'NEW' Then
    Create_Record ;
    End if ;
    FOR writer_rec IN ES
    LOOP
    --Create_Record;
    tab_es(v_es_counter):=writer_rec.full_name;
    :CINESWO.WRITER_NAME:=tab_es(v_es_counter);
    v_es_counter := v_es_counter + 1;
    --MESSAGE(':CINESWO.WRITER_NAME');
    --MESSAGE('::CINESWO.WRITER_NAME');
    END LOOP;
    --FIRST_RECORD;
    END;

  • How can I update multiple rows in table using a single form button and checkboxes

    I have a project where the visitors can select multiple productos and once the click on the PURCHAS button it updates the selected records.

    You have not mentioned the programming language that you are using, but here's a link that could help you if you are using ASP.
    http://csharpdotnetfreak.blogspot.com/2009/05/edit-multiple-records-gridview-checkbox.html
    Also, have a look at this discussion thread
    http://forums.asp.net/t/1470882.aspx

  • How to use custom forms created in SharePoint 2007 to work in SharePoint 2010

    Hi,
    We have created some custom forms  in SharePoint 2007 (for add a New item and Edit item for some list and libraries) after migration to SP 2010 we found out thet we can use those custom forms because the document versions are 12.0.0.0 which
    should be 14.0.0.0  in  SharePoint 2010
    Could someone please tell me if we can migrate forms from SP2007 to SP2010 as well?
    I even tried to change document Version and content but still not working! Do we need to recreate those forms in SP2010?
    Thanks 
    Kate

    Hi Khojasteh,
    How did you do for changing document version and content?
    Whether you tried to set the forms update automatically, then re-publish them.
    There are some similar posts for your reference:
    Migrate Infopath 2007 to SharePoint 2010 site
    Unable to open infopath forms when migrated from MOSS 2007 to sharepoint 2010
    Migrate browser based InfoPath Forms with code behind from MOSS 2007 to SharePoint 2013
    Plan to upgrade form templates during an upgrade to SharePoint Server 2010
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • How to insert into two tables using a Single ADF creation form?

    Hi,
    I need to make a ADF Creation Form that will insert the data at same time in two tables... Like i have two tables Track (Track_id,Track_Name)
    and Module ( Module_id, Track_id, Module_name, Module_Short_name) and i have to insert the data in both the tables using Same Creation Form.
    can anybody help me out and gave me the solution,how to do that?
    Thanks

    if you want to insert different data into two different tables then you can drag the two data objects into creation form..
    If you want to duplicate the data inserted in the one table to another then you can follow two approach
    1. Drag and drop one table, When Save button is invoked then insert data into another table using callable statement.
    or
    2. Create on-insert trigger in Table1 where you can insert data into table2.
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Tools to list all table-field used by a program

    Hello everyone
    Is there any available tool providing the list of fields used by a program?
    There are several tools to list the tables used by a program but I need to have a list of the fields of those tables.
    Here is a scenario.
    DATA: lv_matnr TYPE matnr.
    SELECT SINGLE matnr INTO lv_matnr FROM mara WHERE mtart = 'FERT'
    WRITE:/ lv_matnr.
    The list should contain the following information:
    MARA-MATNR
    MARA-MTART
    Because both fields are used by the program. None of the other fields of the table mara should be listed.
    Regards
    dstj

    All BlackBerry device use the same APN blackberry.net. This is unique accross all carrier.
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

Maybe you are looking for