Link to view County line in table advanced

Hello

I Advanced Table in an array of advanced in the area of retail.

ADV Table1

ADV - table 2

I used the link view to display data from Adv Table2. My requirement is to make false the second table advanced when there is no data.

I want to understand the points below: -.

(1) link should be performed explicitly or it is performed when executing Adv Table1.

(2) can we get the number of rows of the VO AdvTable2.

I tried to use the code below, but he doesnnt seem to work

ViewObject itemspecvo = (ViewObject) am.findViewObject ("xxitemStepSpecInfoVO1");

System.out.println ("number of lines ItemStepSpec" + itemspecvo);

If (itemspecvo. GetRowCount () == 0)

{

OAAdvancedTableBean specbean = (OAAdvancedTableBean) webBean.findChildRecursive ("region128");

specbean.setRendered (false);

}

Any help is appreciated that this requirement is urgent.

Kind regards

XYZ

get the h VieLink descriptor, using the findViewLink method and then use the getDestination method.
This method will give you a display image region (advanced table) object.
Then use VO object, you can use getFetchRowCount.

ViewLink vl = am.findViewLink("View_Link_Instance_Name");
Get the Master VO

Vo1 OAViewObject = vl.getSource ();

Get retail VO

OAViewObject vo2 = vl.getDestination ();

Tags: Oracle Applications

Similar Questions

  • view multiple lines in the advanced table

    Hi all

    I have a requirement. I created advancedtable. When the page loads, to display 4 rows at a time. Can anyone please help how to achieve this req

    Kind regards
    Murali

    Hello

    Write the code below in AM that will create 5 blank lines in the advanced table.

    xxVOImpl voImpl = getxxLineVO1();
    voImpl.setWhereClause ("1 = 2");
    voImpl.executeQuery ();
    for (int i = 1; i)<=5>
    {
    Line = voImpl.createRow ();
    voImpl.insertRow (row);
    row.setNewRowState (Row.STATUS_INITIALIZED);
    row.setAttribute ("column1", i);
    row.setAttribute ("column2", "XYZ");
    }

    Kind regards
    Mary

  • How to remove newly added line in table advanced

    Hello

    It comes to 12.1.3.

    I have a case of use with advanced table and the "Add Row" button.

    The user can add two lines (empty), field 2 (both part of PK, the two LOVs), then start filling, then realizes he added too many, because the TooManyObjectsException exception is thrown. What would be the 'Nice' way of having the last added row deleted, or some newly added lines to delete if a few lines have been added (before actually trying to commit). I mean how must reference any row that has been added and should be removed - this line do always not PK (PK because not even adjustable due to violation of PK if this makes sense). Is there a fun/easier way to do it? Would be great if someone could share a line or two...

    Thank you

    Anatoliy

    PS

    I have a delete button in a footer with action to fire the event as 'remove' in LICS, I like below, and copy the following code deletes the LAST record in the advanced table, not the one where the cursor is?

    If ("delete".equals (pageContext.getParameter (EVENT_PARAM)))
    {
    String rowRef = pageContext.getParameter (OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
    Line OARow = (OARow) am.findRowByRef (rowRef);
    Row.Remove ();
    }

    Asmirnov-Oracle wrote:

    Hello

    Yes, I actually try this approach too.

    Have what approach you tried? 1 or 2?

    If you try to follow the second approach, you can try this?

    OAViewObject srcAppvo = (OAViewObject)findViewObject("SrcAppVO1");
    if (srcAppvo != null) {
        RowSetIterator srcAppRowItr =
            srcAppvo.createRowSetIterator("srcAppRowItr");
    
        try {
            Row srcAppRow;
            srcAppRowItr.setRangeStart(0);
            srcAppRowItr.setRangeSize(srcAppvo.getFetchedRowCount());
            int recCnt = srcAppvo.getFetchedRowCount();
            while (srcAppRowItr.hasNext()) {
                srcAppRow =
                        srcAppRowItr.next();
                if (srcAppRow != null) {
                    if (srcAppRow.getAttribute("SelectFlag") != null &&
                        srcAppRow.getAttribute("SelectFlag").toString().equals("Y")) {
                        srcAppRow.remove();
                    }
                }
            }
        } finally {
            srcAppRowItr.closeRowSetIterator();
        }
    }
    
  • Problem with PPR in a table advanced with the insertion of several lines in create the page using 'add a new button '.

    Hello experts,

    I created a page that contains an array of advanced, 6-7fields (including a poplist column)

    Whenever I have add a new using the line add new line button, I get a null pointer exception.

    Code in Scenario1.


    Public Sub handleCurrencyChangeEvent()

    {

    PVO OAViewObject = (OAViewObject) findViewObject ("xxCurrencyPVO1");

    Line OARow = (OARow) pvo.first ();

    OAViewObject dtlVO = (OAViewObject) findViewObject ("xxEcreditCardDtlVO1");

    OARow dtlRow = (OARow) dtlVO.getCurrentRow ();

    String currency = (String) dtlRow.getAttribute ("CurrencyCode");    / / NULL POINTER EXCEPTION

    If ((currency == null) |) ("AED".equals (currency)))

    {

    row.setAttribute ("ExchangeRateTypeRender", Boolean.FALSE);

    row.setAttribute ("ExchangeRateDateRender", Boolean.FALSE);

    row.setAttribute ("ExchangeRateRender", Boolean.FALSE);

    }

    on the other

    {

    row.setAttribute ("ExchangeRateTypeRender", Boolean.TRUE);

    row.setAttribute ("ExchangeRateDateRender", Boolean.TRUE);

    row.setAttribute ("ExchangeRateRender", Boolean.TRUE);

    }

    }

    Public Sub initPVO()

    {

    OAViewObject appPropsVO = (OAViewObject) findViewObject ("xxCurrencyPVO1");

    If (appPropsVO! = null)

    {

    If (appPropsVO.getFetchedRowCount () == 0)

    {

    appPropsVO.setMaxFetchSize (0);

    appPropsVO.executeQuery ();

    appPropsVO.insertRow (appPropsVO.createRow ());

    Line OARow = (OARow) appPropsVO.first ();

    row.setAttribute ("RowKey", new Number (1));

    }

    }

    handleCurrencyChangeEvent();    / / If I comment on this call, there will be no null pointer when I click on the button Add a new rank and PPR will not be the first line when I select the poplist.                 

    }

    Public Sub createDetailRow()

    {

    String hdrId;

    OAViewObject hdrvo1 = (OAViewObject) getxxEcreditCardHdrVO1 ();

    OAViewObject dtlvo = (OAViewObject) getxxEcreditCardDtlVO1 ();

    Initialize and create a line of VO

    If (! dtlvo.isPreparedForExecution ())

    {

    dtlvo.setMaxFetchSize (0);

    dtlvo.executeQuery ();

    }

    Line dtlrow = dtlvo.createRow ();

    dtlvo.executeQuery ();

    int count = dtlvo.getRowCount ();

    dtlvo.insertRowAtRangeIndex (count, dtlrow);

    Development of the sequence for the number of request *.

    Number of dtlseq = getOADBTransaction () .getSequenceValue ("xxdm. XXDMI_ECREDIT_CARD_DTL_SEQ");

    hdrId = hdrvo1.getCurrentRow ().getAttribute("CreditCardHdrId").toString (); mind vo

    dtlrow.setAttribute ("CreditCardHdrId", hdrId);

    dtlrow.setAttribute ("CreditCardLineId", dtlseq);

    dtlrow.setAttribute ("LineNumber", count + 1);

    End of sequence generation *.

    dtlrow.setAttribute ("CurrencyCode", "AED");

    String currency = (String) dtlrow.getAttribute ("CurrencyCode");

    System.out.println ("CurrencyCode:" + currency);

    dtlrow.setNewRowState (Row.STATUS_INITIALIZED);

    } / / end createDetailRow()

    ' Public Sub processFormRequest (pageContext OAPageContext, OAWebBean webBean)

    {

    super.processFormRequest (pageContext, webBean);

    OAApplicationModule am = pageContext.getApplicationModule (webBean);

    Event string = pageContext.getParameter (OAWebBeanConstants.EVENT_PARAM);

    * Treatment add line button *.

    If ((ADD_ROWS_EVENT. Equals (Event)) & & "AdvTblRN".equals (pageContext.getParameter ("source"))) ".

    {

    am.invokeMethod ("createDetailRow", null);

    am.invokeMethod ("initPVO");

    } //**End add row button *.

    otherwise if

    ("currCodeChangeEvent".equals (pageContext.getParameter (OAWebBeanConstants.EVENT_PARAM)))

    {

    am.invokeMethod ("handleCurrencyChangeEvent");

    }

    ===========================================================================================================================

    Could please help what is wrong in the code, I followed all the steps as stated in the guide, but the table advance, the problem starts whenever I click on the button Add a new row for the creation of new line.

    I couldn't understand what was wrong with the code.

    Thanks in advance,

    Suman

    Suman,

    A few points:

    1. Why do you call handleCurrencyChangeEvent in the event to add a line? Simply set the useful, likely of the values in the line it himself.

    ex:-instead of calling the handleCurrenyChange method, simply add the below lines inside the createDetailRow()

    dtlrow.setAttribute ("ExchangeRateTypeRender", Boolean.FALSE);

    dtlrow.setAttribute ("ExchangeRateDateRender", Boolean.FALSE);

    dtlrow.setAttribute ("ExchangeRateRender", Boolean.FALSE);

    2. it looks like you have on the field of the currency and that fireAction handleCurrencyChangeEvent action method is called, right?

    Instead of using dtlVo.getCurrentRow, use the code below:

    public void handleCurrencyChangeEvent(String eventRowSourceParam)
      {
      OAViewObject pvo = (OAViewObject)findViewObject("xxCurrencyPVO1");
      OARow row = (OARow)pvo.first();
    
      OAViewObject dtlVO = (OAViewObject)findViewObject("xxEcreditCardDtlVO1");
    
      //OARow dtlRow = (OARow)dtlVO.getCurrentRow();
      OARow dtlRow = (OARow)this.findRowByRef(eventRowSourceParam);
    
      String  currency = (String)dtlRow.getAttribute("CurrencyCode");    // NULL POINTER EXCEPTION
    
      if ((currency == null) || ("AED".equals(currency)))
      {
      row.setAttribute("ExchangeRateTypeRender", Boolean.FALSE);
      row.setAttribute("ExchangeRateDateRender", Boolean.FALSE);
      row.setAttribute("ExchangeRateRender", Boolean.FALSE);
      }
      else
      {
      row.setAttribute("ExchangeRateTypeRender", Boolean.TRUE);
      row.setAttribute("ExchangeRateDateRender", Boolean.TRUE);
      row.setAttribute("ExchangeRateRender", Boolean.TRUE);
      }
      }
    

    In the controller:

    if((ADD_ROWS_EVENT.equals(event)) && "AdvTblRN".equals(pageContext.getParameter("source")) )
    {
      am.invokeMethod("createDetailRow",null);
      am.invokeMethod("initPVO");
    } //**End Add Row Button**
    else if ("currCodeChangeEvent".equals(pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM)))
    {
      String eventRowSourceParam = pageContext.getParameter(EVENT_SOURCE_ROW_REFERENCE);
      Serializable[] params = {eventRowSourceParam};
        Class[] paramTypes    = {String.class};
      am.invokeMethod("handleCurrencyChangeEvent",params, paramTypes);
    }
    

    3. Why do you call initPVO when it is clicked on the Add line? Are you calling not just in the PR?

    You could call it once in the PR and let. When you call it PR, you may need to remove the handleCurrencyChangeEvent of this method call.

    See you soon

    AJ

  • Remove the view grid lines table Pivot

    Hi people,

    How to remove the view grid lines table Pivot? Any script must be integrated? If Yes, then please give me the details.

    Kind regards

    AJ

    This is how you do it,

    Take each of your lines and measures in the PivotTable, and then select the "Values of Format" option when you click on the menu options for each of the lines and the measures.

    In that set the border color to your "background color" which could be "white" and make sure that the border post has the value 'None '.

    That's your vision of pivot will not have the grid lines more...

    Please indicate if this help

  • Turn off the line in the region of table advance

    Hello

    I have a page with table advance in addition to the features of the line, when the user create 2nd row 1st row shoud be disabled.

    any body can help me achieve this.

    JAG

    Hello

    make small changes code below

    line = (ProjectsVORowImpl) ReadonlyIter.getRowAtRangeIndex (i);
    Client = Row.GetAttribute ("client");
    If (customer! = null)
    {
    row.setAttribute ("ReadOnlytr", Boolean.TRUE);
    }

    line = (ProjectsVORowImpl) ReadonlyIter.getRowAtRangeIndex (i);
    If (Row.GetAttribute ("client")! = null &! row.getAttribute("Client").equals(""))
    {
    row.setAttribute ("ReadOnlytr", Boolean.TRUE);
    }

    Concerning
    Meher Irk

  • Make the required column in table advanced of the OPS

    Hi all

    I have an obligation to make the column as required in table advanced BWC (worker buyer Center).

    Navigation: Purchase of super user-> Work Center buyer-> orders-> create a Standard command-> click the tab lines

    Please find the screen shot for your reference below

    Purchase_Order_Screen.PNG

    Void tab lines, five lines created automatically in advanced table and I made the need-by / Start Date is required by using customizations.

    I saw the line and submit button launches the error message ' form Validation failures: a value must be entered for 'need a day'. "

    Purchase_Order_Screen1.PNG

    Requirements of companies is required the need - by / column Start Date and the user trying to enter the line instead of 5 lines and when click on submit/save button without having to throw the error. Please let me know how to make and share sample code.

    Page path: / oracle/apps/po/document/order/webui/OrderPG

    Kind regards

    Vincent

    {public processFormRequest (pageContext OAPageContext, OAWebBean webBean) Sub

    pageContext.writeDiagnostics (this, "XxBEFOrderCO PFR start:", 1);

    OAApplicationModule am = pageContext.getApplicationModule (webBean);

    DocumentAMImpl documentamimpl = (DocumentAMImpl) pageContext.getRootApplicationModule ();

    String submitButton = pageContext.getParameter ("SubmitButton");

    String SaveButton = pageContext.getParameter ("SaveButton");

    String strPoMode = pageContext.getParameter ("poMode");

    String strEventParam = pageContext.getParameter (OAWebBeanConstants.EVENT_PARAM);

    String strRowRef = pageContext.getParameter (OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);

    Dim description As String = null;

    Day needbydate = null;

    String str2 = (String) pageContext.getTransactionValue ("DOCUMENT_MODE");

    PoLinesMergeVOImpl PoLinesMergeVO = documentamimpl.getPoLinesMergeVO ();

    Line PoLinesMergeVORowImpl = null;

    If (SaveButton! = null | submitButton! = null) {}

    pageContext.writeDiagnostics (this, "inside the if condition in the PFR:", 1);

    int pcLineRowCount = PoLinesMergeVO.getRowCount ();

    RowSetIterator rowSetIterator = null;

    try {}

    rowSetIterator = PoLinesMergeVO.createRowSetIterator ("PcLineIterator");

    If (pcLineRowCount > 0) {}

    rowSetIterator.setRangeStart (0);

    rowSetIterator.setRangeSize (pcLineRowCount);

    for (int i = 0; i)< pclinerowcount;="" i++)="">

    pageContext.writeDiagnostics (this, "inside the LOOP:", 1);

    line = (PoLinesMergeVORowImpl) rowSetIterator.getRowAtRangeIndex (i);

    Description = row.getItemDescription ();

    needbydate = row.getNeedByDate ();

    If (description! = null & needbydate == null) {}

    throw new OAException ("Please enter the Needby/Startdate", OAException.ERROR);

    }

    }

    rowSetIterator.closeRowSetIterator ();

    }

    rowSetIterator.closeRowSetIterator ();

    {/ *} catch (Exception exception) {}

    exception.printStackTrace ();

    }*/

    }

    super.processFormRequest (pageContext, webBean);

    }

    The above code is correct. This code can useful to others on the OrderPG in 12.2.4 version.

  • Obligation to fill the values in table advanced according to the selection of a value in another article of lov (not in the advanced table)

    Hi all

    We work in a custom oaf page subdivision. We have an obligation to fill the values in table advanced based on a value selection in an element of the lov (this LOV is not in the advanced table) .can share you it please me steps or examples of code to achieve this. Waiting for response.

    Kind regards

    I do not understand completely still. What do you mean by "default in the table values must be inserted".

    You can create a dummy VO with the same columns and fix the VO in the advanced table.

    In the normal scenario, when the user clicks on submit button, browse this VO, and copy the values to the validation according to VO and appeal EO. If values gets inserted into the database.

    When the user selects the number of PO, simply run the other VO and fill this dummy VO so that values are available in the advanced table. When you click on send, do not copy these values to the EO based VO, so these lines won't get inserted.

    It work?

    See you soon

    AJ

  • Disable the image in the table advanced using SPEL

    Hi all
    I'm trying to render the image in the table advanced conditionally using SPEL in a custom page.
    In the properties of the grain of the Image, I added SPEL to make the Image under certain conditions.
    When the user clicks on the image, you'll see a window.
    This works well up to this point, I am able to make the Image for certain lines.
    But the images that are rendered conditionally are disabled.
    When I click on the image it does not popup.

    Please help me solve this problem

    Thank you

    Why not add the switch with images on and off under certain conditions.

  • Click the "add another line" adv table must fill in the data in tbl.

    Hi all
    I have a requirement of value of column in table adavance automatically filling in read-only mode when the user clicks on the add another button in the row.

    Initially when the page loads there is no data and therefore no line in the table in advance. And advanced table will have the "add another line." When the user clicks this button, the first column of the table advance must complete with so-called values a contant '1'.


    Can someone please provide a code example in how to achieve this?


    Thank you
    Sunny

    Hi Sunny,

    Please use the controls below before creating and inserting the line so this new line will be created at the end.

    custVO1.last ();
    custVO1.next ();

    Thank you
    Agnes.

  • Multiple selection of records in table advanced to update in the Search Page.

    Hi all

    I write the code below, to select multiple records in table advanced for the update after clicking on the button update in the Search Page.
    I write this code in Processform request, but I got the exception when I run the code below.


    If (PageContext.GetParameter ("UpdateOnSeaBtn")! = null)
    {
    Am = (XxSupppacklistAMImpl) pageContext.getApplicationModule (webBean) XxSupppacklistAMImpl;
    am.saveRollback ();
    OAViewObjectImpl upDtVO = (OAViewObjectImpl) am.findViewObject ("PackingListSeaVO");
    PackingListSeaVORowImpl line;

    HashMap vParm = new HashMap();

    Row [] rows = upDtVO.getFilteredRows ("SingleSelection", "Y");
    int fetCount = upDtVO.getRowCount ();
    System.out.println ("Teh recovered rowcount is:," + fetCount);

    RowSetIterator multiIter;
    multiIter = upDtVO.createRowSetIterator ("multiIter");
    multiIter.setRangeStart (0);
    multiIter.setRangeSize (fetCount);


    for (int i = 0; i < fetCount; i ++)
    {
    Row = (PackingListSeaVORowImpl) multiIter.getRowAtRangeIndex (i);
    If (Row.GetAttribute ("SingleSelection")! = null)
    {
    If (Row.GetAttribute ("ItemNumber")! = null)
    {
    Object vitemNum = row.getAttribute ("ItemNumber");
    System.out.println ("The selected element Num is:," + vitemNum);
    vParm.put ("ItemNumber", vitemNum);

    pageContext.setForwardURL ("OA.jsp?page=/xxfls/oracle/apps/po/packlist/webui/XxSuppalistcrealistPG", / / here, I got the exception below)
    NULL,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    NULL,
    vParm,
    false, / / RetainAM
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO,
    OAWebBeanConstants.IGNORE_MESSAGES);
    }
    }
    }

    multiIter.closeRowSetIterator ();

    }
    }
    }

    could you, please, can someone help on this.


    I got below exception to the side server when it is run the code above.
    Error (125,48): method setForwardURL (java.lang.String, null, null, byte, java.util.HashMap, boolean, java.lang.String, byte) is not not in the interface oracle.apps.fnd.framework.webui.OAPageContext

    Kind regards

    Hello

    832859 wrote:

    for (int i = 0; i)<>
    {
    Row = (PackingListSeaVORowImpl) multiIter.getRowAtRangeIndex (i);
    If (Row.GetAttribute ("SingleSelection")! = null)
    {
    If (Row.GetAttribute ("ItemNumber")! = null)
    {
    Object vitemNum = row.getAttribute ("ItemNumber");
    System.out.println ("The selected element Num is:," + vitemNum);
    vParm.put ("ItemNumber", vitemNum);

    > pageContext.setForwardURL"OA.jsp.page=/xxfls/oracle/apps/po/packlist/webui/XxSuppalistcrealistPG",//here I got below exception

    NULL,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    NULL,
    vParm,
    false, / / RetainAM
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO,
    OAWebBeanConstants.IGNORE_MESSAGES);
    }
    }
    }

    -Here is you call pageContext.setForwardURL loop.
    >

    I got below exception to the side server when it is run the code above.
    Error (125,48): method setForwardURL (java.lang.String, null, null, byte, java.util.HashMap, boolean, java.lang.String, byte) is not not in the interface oracle.apps.fnd.framework.webui.OAPageContext

    -check 5th param should nt be vParm if it is null

    Finally... After the for loop ends call... y bcz assume this page grouped 10 rows can he navigate both on the next page...:

    pageContext.setForwardURL ("OA.jsp?page=/xxfls/oracle/apps/po/packlist/webui/XxSuppalistcrealistPG",
    NULL,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    NULL,
    NULL,
    false, / / RetainAM
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO,
    OAWebBeanConstants.IGNORE_MESSAGES);
    }

    Concerning
    Meher Irk

    Published by: Meher Irk on March 31, 2011 19:54

  • How to find the views created on a table... ?

    Hi all

    I have a table name, EMP. I want to know what are the views created on this table. Is there any SQL query is there for this or any other
    How to find.

    Thanks in advance.
    PAL

    You can use ALL_DEPENDENCIES to this:

    SQL> create view emp_v as select * from emp;
    
    View created.
    
    SQL> select name
      2  ,      referenced_name
      3  ,      referenced_type
      4  from   all_dependencies
      5  where  name = 'EMP_V';
    
    NAME                           REFERENCED_NAME                                                  REFERENCED_TYPE
    ------------------------------ ---------------------------------------------------------------- ----
    EMP_V                          EMP                                                              TABLE
    
    1 row selected.
    
    SQL> select name
      2  ,      referenced_name
      3  ,      referenced_type
      4  from   all_dependencies
      5  where referenced_name = 'EMP';
    
    NAME                           REFERENCED_NAME                                                  REFERENCED_TYPE
    ------------------------------ ---------------------------------------------------------------- ----
    EMP_V                          EMP                                                              TABLE
    EMP_TRG                        EMP                                                              TABLE
    
    2 rows selected.
    
    SQL> 
    

    Remember it's important if you limit the NAME or REFERENCED_NAME.
    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14237/statviews_1041.htm#sthref935

    Edit

    Ah, Gave!
    If you don't want to teach him something and become independent?

    Now you made me feel guilty ;) (don't know what that Johan position initially, but anyway...)
    I blame my currently terribly slow connection for this...

    Anyway, OP, always start a quick search of the documentation first.
    Chances are that you will find you your answer.
    Houses:
    http://www.Oracle.com/pls/db102/homepage
    http://www.Oracle.com/pls/db112/homepage

    Published by: hoek on 15 October 2010 14:53

  • How to create a view in the DB table for some servers

    Hello

    We need create a country table which will contain data for countries.

    I want to create it in such a way that it will be common for all servers - but as a point of view. not the real table, only the data and views do not change.

    How can I do?

    Thanks in advance

    Are you sure you want to say 'tablespace '? A tablespace is a collection of data files. It has nothing to do with the privileges of the object, object namespaces, etc. I'm guessing that you mean that you have two schemas, OBITUARIESCS and ADVERTISEMENTCS. A schema is a collection of objects of database belonged to a particular user. A single table can exist in spaces of multiple tables (assuming it is partitioned). Different schemas can have an infinite number of tables with the same name in the same table. The database schema is the namespace for objects such as tables.

    Assuming that you have two schemas in your database, you can create a table of COUNTRIES in the OBITUARIESCS schema. You can then grant SELECT access on the table to another user, ADVERTISEMENTCS, i.e.

    GRANT SELECT ON country TO advertisementcs
    

    You can then ask questions (but not change) the COUNTRY code of the property of ADVERTISEMENTCS table

    SELECT *
      FROM advertisementcs.country
    

    If you want to be able to remove the prefix in the schema, you can create a synonym. In the ADVERTISEMENTCS schema

    CREATE SYNONYM country
      FOR advertisementcs.country
    

    and then when the code of the property of ADVERTISEMENTCS wants to query the countries table, it can just

    SELECT *
      FROM country
    

    Justin

  • Table advanced OAFramework.

    Hello

    I am trying customize the table advanced OAFramework to ensure that at least one line is mandatory. For example, I have a button to add a line, and then enter values in the same row. I also have a delete button to delete the line. I did the required line so that at least one line must not be empty. But even if I do the mandatory line, the user can enter a value, and then delete the line.

    I tried in several ways using customization, but could not prevent this. I thought about the personalization of the page, but don't know how to capture the properties of the advanced table and mandating that at least 1 line is not so removed from the table.

    Any help is appreciated.

    Thank you

    Check your state before super.processFormRequest () and throw the OAException

    Prasanna-

  • Is Acrobat Pro just for us. We have an employee handbook that needs editing. A part is current pdf, some of an earlier version. You want to get all in a manual, the table of contents automatically adjust and links to specific pages of the table of content

    Is Acrobat Pro just for us. We have an employee handbook that needs editing. A part is current pdf, some of an earlier version. You want to get all in a manual, the table of contents automatically adjust and links to specific pages of the table of contents.

    Acrobat Pro is certainly not the right tool for editing. You want to change the manual using the source - MS Word files for example. Once you have the full changes including OCD work as you want, Acrobat Pro is the tool to convert the source document to PDF format, and ensure the accessibility requirements of 508 - and preferably ISO 14289 (PDF/UA) - are met.

Maybe you are looking for