E-recruitment , No Visible Requisitions in MMS Table

Hi Experts ,
For some managers ,Not all , When I assign the manager in the support team  & agging him a quesstionnaire to be completed , No Visible requisitions are appearing in their MMS Table in the Requisition Mointering . This happen only for some & not all with the knowledge that all the required roles are given to those Managers .
Can you help ?
Regards .
Talaloo

do you have structural authorizations?
did you try assigning a sap_all for a test?
check SLG1 transaction after accessing the page with a manager which has problems

Similar Messages

  • E-Recruiting: Posting and Requisition relationship

    Greetings,
    My  question has a couple layers to it.  An internal audit dictates a review of job posting for a particular work location in a given time frame.
    I have requisition (NB) IDs for that site.
    First question: Is there a relationship between req (NB) and posting (NC)?  I need to identify the posting for each req ID that I have but was unable to do so through table 1001.  Is there a roundabout way to get to the NC object from NB?
    Second question: Once I've identified posting (NC), how might I produce the text objects associated with each posting ID en masse.  Table 5121 points to text objects, but I do not know of how to get to them.  I would like to avoid having to go through the posting text individually through the front end.  I've seen a couple posts regarding this topic, but I'm uncertain of the mechanics discussed.  The posts I've seen are:
    /community [original link is broken]
    Description of requirements field in e recruitment
    Thank you in advance for any assistance.
    Regards,
    Brad

    REPORT  zrwe_0001.
    *  Declarations
    *-- Type Pools --------------------------------------------------------*
    TYPE-POOLS:
      abap.
    *-- Types -------------------------------------------------------------*
    TYPES:
      BEGIN OF __ls_result,
        requ_key         TYPE hrobject,
        requ_header      TYPE rcf_requisition_header,
        post_key         TYPE hrobject,
        post_header      TYPE string,
        post_company     TYPE string,
        post_department  TYPE string,
        post_project     TYPE string,
        post_task        TYPE string,
        post_requirement TYPE string,
        pinst_guid       TYPE rcf_pinst_guid,
        pinst_start      TYPE rcf_posting_start_date,
        pinst_end        TYPE rcf_posting_end_date,
        pinst_chan       TYPE rcf_posting_channel,
        pinst_chan_txt   TYPE rcf_posting_channel_txt,
      END   OF __ls_result,
      __lt_result TYPE STANDARD TABLE OF __ls_result.
    *-- Field symbols -
    FIELD-SYMBOLS:
      <lv_any>      TYPE                   ANY.
    *-- Variables -
    DATA:
      lr_pins_hdl   TYPE REF TO            cl_hrrcf_posting_inst_bl,
      lv_plvar      TYPE                   plvar,
      lv_channel    TYPE                   rcf_posting_channel,
      lt_5122       TYPE STANDARD TABLE OF hrp5122,
      ls_5122       TYPE                   hrp5122,
      ls_requ       TYPE                   rcf_s_requisition_info_text,
      lt_result     TYPE                   __lt_result,
      ls_result     TYPE                   __ls_result,
      ls_chan       TYPE                   t77rcf_postchn_t,
      ln_count      TYPE                   i,
      lv_str_trick  TYPE                   string,
      lr_exc        TYPE REF TO            cx_hrrcf.
    Selection Screen
    *-- Selection Screen Definition -
    SELECTION-SCREEN BEGIN OF BLOCK b01 WITH FRAME TITLE text-001.
    SELECT-OPTIONS:
      o_chan FOR lv_channel.
    PARAMETERS:
      p_from TYPE rcf_posting_start_date,
      p_to   TYPE rcf_posting_end_date.
    SELECTION-SCREEN END   OF BLOCK b01.
    *-- Selection Screen Processing -
    AT SELECTION-SCREEN ON p_from.
      IF p_from IS INITIAL.
        MESSAGE e001(00) WITH 'Enter a from date'.
      ENDIF.
    AT SELECTION-SCREEN ON p_to.
      IF p_to IS INITIAL.
        MESSAGE e001(00) WITH 'Enter a to date'.
      ELSEIF p_to LT p_from.
        MESSAGE e001(00) WITH 'To date has to be greater or equal from date'.
      ENDIF.
    Processing
    -- Init the runtime -
    INITIALIZATION.
    get handler class instance
      lr_pins_hdl = cl_hrrcf_posting_inst_bl=>get_instance( ).
    get the active plan
      CALL FUNCTION 'RH_GET_PLVAR'
        EXPORTING
          no_message = abap_true
        IMPORTING
          plvar      = lv_plvar
        EXCEPTIONS
          OTHERS     = 0.
    make a 1 space string
      lv_str_trick = ' a'.                                      "#EC NOTEXT
      lv_str_trick = lv_str_trick(1).
    -- Processing -
    START-OF-SELECTION.
    get all publications which were really published (PUBLISHED_DOC <> 0)
    and which were published in the date borders
      SELECT * FROM hrp5122 INTO TABLE lt_5122
        WHERE
          plvar           =  lv_plvar                             AND
          otype           =  cl_hrrcf_posting_bl=>c_otype_posting AND
          subty           =  '    '                               AND "#EC NOTEXT
          istat           =  '1'                                  AND "#EC NOTEXT
          endda           =  '99991231'                           AND "#EC NOTEXT
          posting_channel IN o_chan                               AND
          published_doc   <> '000000'                             AND "#EC NOTEXT
          start_date      <= p_to                                 AND
          end_date        >= p_from.
    gather the posting texts and requisition information
      LOOP AT lt_5122 INTO ls_5122.
        CLEAR:
          ls_result,
          ls_chan.
      read the frozen doc
        TRY.
            ls_result-pinst_guid       = ls_5122-pinst_guid.
            ls_result-pinst_start      = ls_5122-start_date.
            ls_result-pinst_end        = ls_5122-end_date.
            ls_result-pinst_chan       = ls_5122-posting_channel.
            ls_result-post_key-plvar   = ls_5122-plvar.
            ls_result-post_key-otype   = ls_5122-otype.
            ls_result-post_key-objid   = ls_5122-objid.
            lr_pins_hdl->get_frozen_post_inst_data(
              EXPORTING
                p_pinst_guid               = ls_5122-pinst_guid
              IMPORTING
                p_post_header              = ls_result-post_header
                p_post_company_desc        = ls_result-post_company
                p_post_department_desc     = ls_result-post_department
                p_post_project_desc        = ls_result-post_project
                p_post_task_desc           = ls_result-post_task
                p_post_requirement_desc    = ls_result-post_requirement
                ps_requisition_info_text   = ls_requ ).
            ls_result-requ_key-plvar   = ls_requ-plvar.
            ls_result-requ_key-otype   = ls_requ-otype.
            ls_result-requ_key-objid   = ls_requ-objid.
            ls_result-requ_header      = ls_requ-header.
            " Channel Text
            cl_hrrcf_t77rcf_postchn=>read_description(
              EXPORTING
                langu            = sy-langu
                posting_channel  = ls_result-pinst_chan
              IMPORTING
                t77rcf_postchn_t = ls_chan ).
            ls_result-pinst_chan_txt   = ls_chan-description.
            APPEND ls_result TO lt_result.
          CATCH cx_hrrcf INTO lr_exc.
            cl_hrrcf_exception_handler=>write_exception_log( ex = lr_exc ).
        ENDTRY.
      ENDLOOP.
    excel download
      " replace all Tabs and CT/LF or the excel will be messed up
      LOOP AT lt_result INTO ls_result.
        ln_count = 1.
        WHILE 1 = 1.
          ASSIGN COMPONENT ln_count OF STRUCTURE ls_result TO <lv_any>.
          IF sy-subrc NE 0.
            EXIT.
          ENDIF.
          REPLACE ALL OCCURRENCES OF cl_abap_char_utilities=>horizontal_tab
            IN <lv_any> WITH lv_str_trick.
          REPLACE ALL OCCURRENCES OF cl_abap_char_utilities=>cr_lf
            IN <lv_any> WITH lv_str_trick.
          REPLACE ALL OCCURRENCES OF cl_abap_char_utilities=>newline
            IN <lv_any> WITH lv_str_trick.
          ADD 1 TO ln_count.
        ENDWHILE.
        MODIFY lt_result FROM ls_result.
      ENDLOOP.
      cl_gui_frontend_services=>gui_download(
        EXPORTING
          filename                  = 'C:\myfile.csv'
          write_field_separator     = abap_true
        CHANGING
          data_tab                  = lt_result
        EXCEPTIONS
          OTHERS                    = 0 ).
    simple list output
      LOOP AT lt_result INTO ls_result.
        WRITE: / 'Requisition:', ls_result-requ_header,
               / 'Posting    :', ls_result-post_header,
               / 'Channel    :', ls_result-pinst_chan_txt.
        SKIP.
        WRITE: / 'Company:', / ls_result-post_company. SKIP.
        WRITE: / 'Department:', / ls_result-post_department. SKIP.
        WRITE: / 'Project:', / ls_result-post_project. SKIP.
        WRITE: / 'Task:', / ls_result-post_task. SKIP.
        WRITE: / 'Requirement:', / ls_result-post_requirement. SKIP.
        ULINE. SKIP.
      ENDLOOP.

  • Filter issues with hidden/visible  columns on a table

    OK, 1st post to this forum:
    This is based on:
    http://labs.adobe.com/technologies/spry/samples/data_region/SpryPagedViewSample.html
    I have a contact list that has contact info on it (office
    phone, home phone, cell phone, etc). There are several hundred
    entries in the .xml file. As a default, I am putting the contacts
    in a table that has the office phone and email address visible, and
    the other info hidden. I have a "ShowDetail" checkbox that will
    allow the hidden columns to be visible and vice versa by using the
    addClassName and removeClassName.
    The issue I have, is that when you start typing in an contact
    name when the checkbox is checked, the table flashes the correct
    info up with the columns visible, but then the HTML is rendered and
    the Hidden class is reassigned to the columns.
    Is there anyway to run the javascript function that toggles
    the class after the HTML is rendered based on the checked status of
    the checkbox? Thanks for any help!

    Thanks for the reponse. However here is the syntax I need to edit
    SELECT u.user# as "UID",
    lower(u.name) as owner,
    lower(t.name) as table_name,
    col.col# as column_id,
    lower(col.name) as column_name,
    decode(col.type#,
    1, 'varchar2',
    2, decode(col.scale,
    null, decode(col.precision#, null, 'number', 'float'),
    'number'),
    8, 'long',
    9, 'varchar',
    12, 'date',
    23, 'raw',
    24, 'long raw',
    69, 'rowid',
    96,'char',
    105, 'mlslabel',
    106, 'mlslabel',
    'undefined') as data_type, /* these decodes come from the view */
    /* definition for DBA_TAB_COLUMNS */
    /* in CATALOG.SQL for version 7.3 */
    /* the next two decodes are derived from the actual queries performed by Storage */
    /* when Manager retrieving column information. */
    decode(nvl(col.precision#, 0),
    0, col.length,
    nvl(col.precision#,0)) as data_length,
    to_number(decode(nvl(col.precision#, 0),
    0, null,
    decode(col.type#,
    2, nvl(col.scale,-127/*MAXSB1MINAL*/),
    0) ) ) as scale,
    decode(col.null$, 1, 'n', null) as nulls,
    'y' as in_primary_key
    FROM sys.col$ col,
    sys.obj$ t,
    sys.user$ u
    WHERE u.user# = t.owner# /* user$ will be the driving table because no index on user# */
    AND t.obj# = col.obj#
    AND u.name = 'POWERSELLER' /* We only care about PowerSeller tables/columns; */
    AND t.type# in (2, 4) /* Tables and views only */
    AND EXISTS (SELECT 1
    FROM sys.ccol$ ns_ccol,
    sys.cdef$ ns_cdef,
    sys.obj$ ns_t,
    sys.user$ ns_u
    WHERE ns_u.user# = ns_t.owner#
    AND ns_t.obj# = ns_cdef.obj#
    AND ns_cdef.con# = ns_ccol.con#
    AND ns_u.name = 'POWERSELLER'
    AND ns_cdef.type# = 2 /* primary key constraint */
    AND ns_cdef.enabled is not null
    AND ns_ccol.obj# = t.obj# /* using ns_ccol instead of ns_t */
    /* does 70% as many logical reads */
    AND ns_ccol.col# = col.col#
    )

  • Newly Created Branches not showing up for Recruiter in the Requisition.

    Hi,
    We have created Branches as Administrator and the Branches are not showing up for Recruiter when trying to create the requisition. Any suggestion on this will be great help.
    Thanks.

    Hi,
    the most common reason for branches not showing up is caused if someone does not use the frontend for administrator but the IMG nodes for creating branches and assigning to companies. This is caused by missing bp role assignment.
    So check the branches in TCODE BP that they have the role for e-recruiting branch assigned. The standard delivey uses bp role RCFBRA but this can be changed in T77S0 RECFA BRARO.
    Furthermore you should check if T77RCFBRANCHCOMP entries are ok.
    Kind regards
    Roman

  • How to update a cell's visibility in a af:table?

    The use case is:
    A table has 2 columns, 2 rows.
    Column 1 is a checkbox.
    Column 2 is a choices.
    Jdev is 11.1.2.4 & 11.1.1.7
    The goal is to update the choices' visibility according to the checkbox selection.
    However, when the last line of the JS is executed, choices in both rows are visible (or invisible).
    Expected behavior is: only the selected row is updated.
    Tried do this at server side but it's not working either.
    From IE's debugger, values (like clientId) of all variables are correct as expected.
    My code:
      <af:panelStretchLayout id="psl1">
        <f:facet name="bottom">
          <af:resource type="javascript">
          function onSelect(e){
              var checkbox = e.getSource();
              var table = checkbox.getParent();         
              var index = checkbox.getProperty("index");
              var choices = table.findComponent("smc1", index);
              choices.setVisible(checkbox.getValue());         
          </af:resource>
        </f:facet>
        <f:facet name="center">
          <af:table var="row" rowBandingInterval="0" id="t1" value="#{viewScope.bean.rows}" varStatus="vs"
                    horizontalGridVisible="false" verticalGridVisible="false">
            <af:column sortable="false" id="c1">
              <af:selectBooleanCheckbox text="" label="" id="sbc1" value="#{row.selected}" clientComponent="true">
                <af:clientAttribute name="index" value="#{vs.index}"/>
                <af:clientListener method="onSelect" type="valueChange"/>
              </af:selectBooleanCheckbox>
            </af:column>
            <af:column sortable="false" id="c2">
              <af:selectManyChoice label="Label 1" id="smc1" clientComponent="true">
              </af:selectManyChoice>
            </af:column>
          </af:table>
        </f:facet>
      </af:panelStretchLayout>

    Hi,
    Any specific reason why you would want to achieve this using JS? You could very well achieve this by setting autoSubmit to true for the select boolean checkbox and partialTriggers for the select many choice.
    Ex :
            <af:column sortable="false" id="c1">
              <af:selectBooleanCheckbox text="" label="" id="sbc1" value="#{row.selected}" autoSubmit="true">
              </af:selectBooleanCheckbox>
            </af:column>
            <af:column sortable="false" id="c2">
              <af:selectManyChoice label="Label 1" id="smc1" partialTriggers="::sbc1" visible="#{row.selected}">
              </af:selectManyChoice>
            </af:column>
    -Arun

  • E-Recruitment - Issue in Requisition Approval, flow to Recruiter

    Hi All,
    Im using standard WF 45600028 for requisition approval.
    The request when created by Manager is going for approval to his supervisor and Supervisor in turn is able to approve the request, but the its not reaching recruiter.
    When i verified Requisition monitor of the MSS view, then i see the request in "Draft" mode instead of "Released".
    I feel this is the reason why recruiter is unable to see the requisition coming from Workflow.
    Can someone help me change the status?
    Thank you.
    Pranitha

    Hey Thanks Siddharth,
    Anyways, my problem is resolved. What i mean on Recruiter's involvement is recieving the approved form so that he can take it up further for posting.
    In My case Recruiter's dash board or UWL , nowhere is the data populated. So i was of the opinion that the approved requests are by default saving in draft mode and hence not reaching recruiter.
    Finally, i reallized that there is a small refresh link, at the bottom of the dash board. I need to click on the each of the links in the dashboard and "Refresh" from the link at the bottom, then only my approved requests are showing up, that too under "My Application Groups, My Open Requisiotns and All requisitions".
    Silly me !! I have wasted so much of my time debugging Workflow and changing all the possible config setting.
    But i really wonder why cant the data base be updated when we refresh with F5 instead click on each of the links in dashboard inorder to see what has he got in his box. This seems little weird to me.
    Regards,
    Pranitha

  • E-Recruitment - Manager create requisition

    Hi all,
    I got a problem when saving  a requisition request in MSS as below:
    the assignment of IT0105 already maintained. Any idea of it ?
    The employee number for the Hiring Manager is required.
    Message no. HRWPC_EREC013
    Diagnosis
    The personnel number for the Hiring Manager is a required field for the form.
    System Response
    The form will not be submitted without this data.
    Procedure
    The personnel number for the Hiring Manager is automatically derived from the system ID of the user who is assumed to be the Hiring Manager. Check that the COmmunications Infotype (IT0105) system user mapping for the Hiring Manager's personnel number is set up correctly.

    Check the workflow assignment -  the following 2 notes may help here
    865439       ERP2004: Recruitment Officer dropdown restricted
    949625       ERP: MSS E-Recruiting new standard workf. templates.
    Did you also check that the IT105 maintained for the person is correct for that of which you are using as manager?

  • Recruiter dropdown in Requisition Request (E-Recruiting)

    Hi Experts,
    I'm facing trouble when click dropdown list for recruiter in PDF form for create requisition in e-recruiting module. In Development system the recruiter field is filled automatically and the dropdown is working. But how may the error happen in The Tesing client (QA) after all are transported, only the recruiter field is not working properly, it's not filled automatically and the dropdown button is not work. The other input fields are okay.
    I try to debug and found that EREQ_RECRUITER_PERNR varible is has some value of recruiters, so the data collection was fine.
    Anybody can help or at lease sharing idea and experience.
    Thanks alot before.
    ADrikavide

    Hi,
    I'm facing the same problem and cant populate recruiter downdown field.
    Did any one solved this problem?
    Thanks a lot.
    Best Regards,
    Shiva

  • E-Recruiting Setting up Requisition

    Hello Experts,
    I am trying to Set up E-Recruiting and I have a Problem with the Requisition Process with WebDynpro Abap.
    We have installed the Business Packages correctly, but when I try to  create a Requisition by our Portal I get a Window with an empty Process.
    What ist the reason for that behaviour? Is it necessary to configure the Process for the Requisition, and if it so, could anyone give me a helping hand?
    Could anyone explain me step by step how I have to configure the Requisition Process based on WD4A?
    Many thanks!
    Marco

    Hello Marco,
    as long as you do not use the requisition request scenario of the mss you only need adobe print forms in e-recruiting. The ADS license for print forms is always included in the netweaver license so it is no extra costs. Furthermore the standard interactive forms are part of the standard license only creating new forms need extra licenses (here you should talk to you sap sales if they really want extra money or if they give you a customer form for free - can't speak for the sap sales guys here but last time i asked them they told me that the stuff needed for a usual implementation is usually included).
    For the current release the bsp ui is no longer supported so it is no option.
    If you have trouble when calling the requisition maintenance application I'd start with the following steps:
    - run the code generator (T-Code SGEN) for all Web Dynpros of the server
    - check service Activation in (T-Code SICF)
    - check application log (T-Code SLG1)
    If this does not help give us another post.
    Kind Regards
    Roman

  • ERecruiting - Internal error in Recruiter-- Approve Pending Requisitions

    Hi All,
    We are facing an internal error message in the following path:
    Recruiter start page-->Approve Pending Requisitions
    Whenever Recruiter selects an entry from the list and clicks on the "Process Request" button, it will ask for Production logon and when we enter the values we are getting the message "An internal error occurred. Please try again later".
    Thanks,
    Pooja

    Hi Pooja,
    We are also working in EHP4.
    Can you please tell where did you get
    Recruiter start page-->Approve Pending Requisitions?
    We are not able to see pending requisition for approval under recruiter? Are you seeing under recruiter UWL?
    Regards,
    Purnima

  • Restricted Recruiter Authorization for Requisition (ERC_A_REQ_MGMT)

    Dear Friends,
    My client wants to only give the display authorization for requisition (application "ERC_A_REQ_MGMT" ) to restricted recruiter(SAP_ERC_RES_RECRUITER_CI_4) role.
    In standard system restricted recruiter can change any field data for requisition, which we don't want.
    Kindly tell me any way out through which we can achieve this.
    Chohan

    You can create an application configuration for that application, than assign component configurations for the webdynpro which you create where you define all fields as read-only.
    Than you give the restricted recruiters the links with the application configuration.
    Or you do an enhancement of the webdynpro, but that should be plan B

  • Key fields are not visible in output condition table

    Hi,
         I have created few conndition tables using V/61. But i can not see Key field. It is not displaying. But when I check thru VK11 i can see that all fields are marked as key fields. example of table B018.
    My problem is that , i want to make few filed non key fields rest of fileds as key fields so that there should not be any duplicate ntry based on key fields. also I do not want to maintain these two fields for each record.
    Is there any exit to modify and view thesefields? or it is a security issue...bold
    Your earliest response is highly appreciated.\
    Thanks,
    AKS

    Hi Raga,
    Please check the documentation under the customizing path:
    IMG -> Sales and Distribution -> System Modifications ->
    Create New Fields (Using Condition Technique) ->
    New Fields For Pricing
    Then click on the paper icon
    Here is explained how to setup additional fields for pricing,
    not present in the standard.
    Notice the following rules:
    1. the new fields must have name beginning with 'ZZ' or 'YY' in order
       to avoid problem after upgrade
    2. add the new field in the table T681F for the application 'V' and the
       usage 'A'
    3. these new fields must be appened to the structures KOMKAZ or KOMPAZ
       (depending they are header or item fields)
    4. you should provide these fields by implementing the userexits
       USEREXIT_PRICING_PREPARE_TKOMK (header fields)
       USEREXIT_PRICING_PREPARE_TKOMP (item fields)
       in program MV45AFZZ for sales order, RV60AFZZ for invoice.
    In that documentation there are some examples too.
    Please check it.
    Regards,
    Alex

  • How can I use the property 'top left visible cell' in a table?

    Hi! I use a table in my program and I want to show the top left cell of the table every time when the user clicks a button .I don't know how to do this. If I use a multicolumnListbox I can select the property 'top left visivle cell'. Is it possible with a table ?
    Thanks for any help.

    Yes, it's possible - use the "index value" property to set top-left cell for arrays and tables. See example attached.
    Attachments:
    Index_value_ex.vi ‏30 KB

  • Maintenance schedule not visible in PAM03 Planning table

    Hi,
    I have read in SAP help that the maintenance planned for vehicles can be seen in PAM03 planning table. But there is no further information about the required customizing steps.
    Who can help?
    Udo

    Hi Dean,
    try this:
    IMG
      > Plant Maintenance and Customer Service
        > Maintenance and Service Processing
          > Pool Asset Management
           > Edit Object Processing
        Application = Pool Asset Management
        Notification Type = M1
        Order type = (blank)
        Dir. Sched = (selected)
    That should give me 10 Points
    Regards and good luck
    Udo

  • Caret is not visible in cell of table when typing

    Hi!
    I have JTable
    1.Selected any cell (caret is not blink in cell)
    2.Start type
    When I entered any text the caret is not visible in cell. Why? And how I can set visible caret?
    Thank you

    Dear MuddasarAmin ,
    use current_date varible instead of  + "to_date('" + getCurrentTimeStamp() + "', 'dd/mm/yyyy')"
    will help u
    java.sql.Date current_date=
    new java.sql.Date((new Date(System.currentTimeMillis())).getTime());

Maybe you are looking for

  • Bangladesh VAT Requirement in FMCG

    Dear Gurus, I have a VAT requirement in Bangladesh for an FMCG company. In this company the following setup exists: 2 Manufacturing Plants (which has its own VAT registration No.) Central Sales Depot (which has its own VAT registration No.), this CSD

  • Change domain in number range

    Hi, Do you know how to change the "number length domain" of a "number range object"? We have a number range object using the domain "char7", it means 7 digits width, and we need to extend to 9 digits. The field "number length domain" is now disabled

  • How can i acces the images from jar to with in jar

    I want to now make a executable jar file which contain all class files and one jar file (which contain all images). before jar i use icon=new ImageIcon(getClass().getResource("image.gif")); now what can i do and it is possible that no change in the p

  • Kernel Panic after sleep

    I've had two kernel panics this week. Both occurred when waking up from sleep. The thing both had in common was that I unplugged the ethernet cable before sleeping. Also, both times I had approximately 6-10 apps running - all stable commerical softwa

  • Save Page and Redirect

    Hi All, APEX 3.0.0.00.20 I have a page containing a form which maintains a master table - works fine. In addition on the page are three buttons which redirect to pages which are used to maintain child tables. Clicking one of the buttons redirects to