How to check hidden items

Hi,
On a existing portal installation (10g Release 1) I've a lot of hidden items. I need to export these items to a new release of portal (10g Release 2).
The information of hidden object is not define inside table wwv_things. I check on several tables/views of the portal schema but I cannot find the table/view where this information is stored.
Is there a way to create portal items in 10g Release 2 with pl/sql packages and to hide these items ? I found a recommandation to set the publish date in the future but in our case, this do not correspond to the expected behaviour.
Thanks in advance for your help,
Eddy.
Edited by: acsods on 10 oct. 2008 10:13

The VISIBLE column in WWSBR_ALL_ITEMS will tell you that:
http://www.oracle.com/technology/products/ias/portal/html/plsqldoc/pldoc1012/wwsbr_api_view.html#WWSBR_ALL_ITEMS
But you're right that there's no API method for hiding items in 10.1.2.
In 10.1.4 the hide_in_browse parameter of wwsbr_api.modify_item can be used to hide the item:
http://www.oracle.com/technology/products/ias/portal/html/plsqldoc/pldoc1014/wwsbr_api.html#function-modify_item
-John

Similar Messages

  • How to check all items are not null in CAML Query?

    HI All,
    In a CAML Query, i got three items. In all three items, a particular column(Closure Date) should not be null. How to check in all three items, where 'Closure date' is not null?
    Thanks in advance!

    Hi,
    Try this:
    "<Where><IsNull><FieldRef Name='Closure Date' /></IsNull></Where>"
    Hope it hepls!
    Thanks,
    Avni Bhatt
    If this helped you resolve your issue, please mark it Answered

  • How to check an item of a selectManyListBox the first time it is rendered?

    Hello,
    I want to check automatically check an item corresponding to a specific value when the selectManyListBox is rendered on the page for the first time.
    To do this I think I will have to bind the component to some viewScopeBean and iterate over all the item values, and check it when the condition is true.
    How can I do this, is there any example?

    Can you think of adding a transient boolean attribute to your VO that will store the value of your checkboxes based on whatever condition you want? If yes this demo may be of some help.
    http://oracleadfhowto.blogspot.in/2012/02/many-to-many-association-using-multi.html

  • How to update hidden item after submit of multi tab form

    Hi everyone,
    I have a multi tab form which is being used to insert records into a table. One of the columns I have included in the form source is 'hidden' and i want this item to be populated with the current date and time for each row, when I press the submit button. I have tried to achieve this by creating a PL/SQL process on the Page with the following details:
    Process point: 'On Submit - After Computations and Validations'.
    Source: :P5_DATE_ENTERED := :SYSDATE_YYYYMMDD;
    However, when I test the Page I get the following error on pressing Submit:
    'Error ERR-1002 unable to find ID for item P5_DATE_ENTERED...'
    So, I'd be very grateful if anyone can advise me as to how to achieve this basic functionality,
    cheers,
    Kevin.

    Hi,
    Thanks for the reply, I had considered that and I think that probably is the best approach. However, I'd like to know why my method of trying to do it in APEX doesn't work as it seems such a simple thing to want to do,
    regards,
    Kevin.

  • How to check summarized item status

    I have a control block having 12 testitems as summarized of 12 months(of data block)
    My form validation is if total less than 100 then just alert the user
    Iwant to alert the user only for the respective month when the value is changed in the total.
    Iam trying to use when validate item and post change trigger for each item control item.
    But they are not firing wondering since they are summarized items.
    Can anyone help me out how to solve this.?

    I don't think when-validate-item fires for summarized items.
    You'll have to pick another trigger .
    One option might be creating a when-new-record instance trigger with this business rule.
    hope this help you
    chris

  • Hiiii how the check an item for SO or STO is not available

    hi
    Please advise if anyone know of a FM to check the availability of a material
    this is for the creation of a delivery with reference to an SO or and STO.
    I ever one item (E.g 20 ) has no stock delivery will be created for item (10) but i don't want the delivery to be created.

    Check the BAPI: BAPI_MATERIAL_AVAILABILITY
    Regards,
    Ravi

  • How to check an item in a database block has changed before updating

    hi,
    i have a database block having designation and other relative field are there . a ctrl item status (checkbox) in the same block. i want to update records only the status is marked as ticked get updated. what trigger in which levels should be used
    thanks in advance

    In genral forms marks the records as "changed" by itself. If you want to override this "marking", you'll have to overrwrite the DML-logic (for you cannot change the status of the record back to QUERY). So, you have to create ON-INSERT, ON-UPDATE and ON-DELETE-triggers and do something in it like
    IF :BLOCK.MARKED='Y' THEN
      UPDATE_RECORD;
    END IF;

  • How do  we check the check box items based on the databse fields.

    Hi All,
    I have a requirement like as mentioned below#
    1. I have a combox box whcih i will be populated from database.
    2. I have created two check box as "Stategric " and "Non Stategric".
    3. Now when i select the combox box condition i need to select the check box items.
    4. But the problem is i wil be knowing weather it is a stategric or Non stategirc based on the database column.
    5. How do i need to map the database point of view and correlacte with javascript pont of view.
    6. Do we need to write any Application process to achieve this task and who we can do that.
    Thanks,
    Anoo..

    Hi VC,
    As per my understanding the code should be placed between --.
    Based on this i have placed the code
    function setCheckbox(pThis, pItem){
    alert('inside');
        var l_code = '';
        // Get checkbox name
        rName = document.getElementsById('P1_ENG_BAU').firstChild.name;
    alert("The value is"+rName);
        // Fire AJAX
        var get = new htmldb_Get(null,html_GetElement('pFlowId').value,'APPLICATION_PROCESS=CHECKBOX_LIST',0);
        get.add('F120_COMPANY',pThis.value);
        gReturn = get.get('XML');
        if (gReturn) {
          var values = gReturn.getElementsByTagName('value');
          var messages = gReturn.getElementsByTagName('message');
          // Build the checkbox
          for (i=0; i<values.length; i++) {
            var rValue = values.firstChild.nodeValue;
    var rMessage = messages[i].firstChild.nodeValue;
    l_code+='<input id='+P1_ENG_BAU+'_'+i+' type=checkbox value='+rValue+' name='+rName+'>';
    l_code+='<label for='+P1_ENG_BAU+'_'+i+'>'+rMessage+'</label>
    document.getElementsById('P1_ENG_BAU').innerHTML = l_code;
    Correct me if iam understanding is wrong.
    Thanks,
    Anoo..
    Edited by: Anoo on May 31, 2012 11:04 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to check plan line items for plan cost at network activity level?

    Dear all,
    How to check plan line items for plan cost at network activity level? The plan cost is done in network activity in CJ20N.
    I am not able to check using CJI4 or CJI9 report.
    Kindly advise.
    Thanks and regards,
    Jessie

    Hi Jess,
    Have you checked the navigation part which is being displayed on left hand side of report S_ALR_87013565 and S_ALR_87013533.? There you have option to check transaction currency and object currency when you double click on it.
    In case if it is not being displayed under navigation. Then you can bring them on from transaction code CJE2. For eg: Report group for S_ALR_87013533 is 12KST1C. Double click on it and it will open up to do changes in report layout and many more. There you also have options to bring on transaction currency too. Similarly, you can check for other report groups as well just by checking the report description.
    But I am not sure if suits your requirements. Wait for other experts to comment on this.
    Regards,
    Amit

  • How to check the selected items of a selectManyListbox in doDML of an EO ?

    Hello,
    I have a VO based on en EO. During the doDML(UPDATE) of that EO, I would like to check what items of a af:selectManyListbox have been selected.
    How could I get the checked items in the selectManyListbox (which belongs to the ViewController) in the doDML method of an EO (which belongs to the Model)?
    Many thanks

    Hello John,
    I know I cannot access the component directly. This is why I asked my question.
    The real case is rather complex and long to be copied and pasted here.
    Let me simplify it without being too generic.
    The VO is based on a hierarchical SQL query. All its EO attributes are transient. This VO is shown as a Tree in the page.
    Each node of the Tree has a checkBox. During commit (doDML() of the EO to be precise), for each checked node I need to access the selected items of a selectManyListbox in some proper way to perform further operations on the DB (no matter what now). The selectManyListbox is based on a second VO. As you may understand, the problem is that from the EO I don't have a direct access to the selectManyListbox. Also, as far as I know, the VO the selectManuListBox is based on does not have any informations about the selected elements, since the checkBox in the list cannot be associated to the VO. Basically I cannot know what elements have been choosen.
    I hope the problem is clear.

  • What is line item datas,how can u check line item in Infocube?

    Hi friends,
    what is line item datas,how can u check line item in Infocube?

    hi konda,
    line item data
    i shall give u an example .
    consider a super market bill,
    the bill has 1.customer name        2. bill number   3. date of purchase
    the above line will be header.
    line item data are the items which u purchase.
    item 1 pencil  2 rubber  3. sharpner  4. cryon  5. sketch pens
    above are line item datas.  for a particular set of header data u may have many line item datas.
    reward points if helpful.
    bye.

  • Complete filter cannot be displayed by check box item - How to solve

    Hi,
    I have created a web template which has a table, chart and the navigational block.
    When i execute the report and further when i want to drill down i use navigational block.
    When i filter the value suppose country in the navigational block by clicking on it, i should be able to see the county values, but i get the error "Complete filter cannot be displayed by check box item".
    How can i solve the problem by getting the filter values, when i further drill down
    Thanks
    rani

    it is a awfull conundrum/and is why I began ONLY using optimum as a web mail/ But  Now yes Now even this is becomming a nasty little night mare'   I see 2 email windows,simotaniously'
    and  Then I se FLASHES of words,stuck in address bar..
    weeks Later I see LAZSLO '
    This lead me to a Univeristy'IMAGINE THIS'
    but is it also a company and Optimum has the web mail as well as tec support OUTSOURCED
    "THEY CAN N OT HELP YOU PAST dinner time,save your breath! 
    BUT WHAT IS HAPPENING WITH ALL THESE points for answers APPLE BOYS AND GRILS?
    HOW do you all get points to the  Happyness to then say TOUCH DOWN?
    remarkably fantastic!'for you not me
    linda really would LIKE TO KNOW WHos doing your mail latley'
    peace

  • How to check if a field is hidden or disabled?

    I have implemented a progress bar, however, it counts all the fields in the form including hidden and disabled fields as well. I need to figure out how to check whether a field is hidden or disabled, and not count them for the progress bar. Please help!

    Try this (javascript):
    if (field.presence == 'visible' && field.access == 'open') {
         include in count...

  • Need detailed procedure on how to add an item with Item Style Check Box in

    Need detailed procedure on how to add an item with Item Style Check Box in Framework.

    The view instance should be the same as the view instance (view object) specified for your region.
    If the View Attribute already that you need already exists in the View Object then you can use it.
    Otherwise you have to extend the View Object and add the new attribute to it.
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Valdation and how to check Item Updated/Orignal Values

    I have validation "Funciton Returning Boolean" that has worked but I'm trying to add additional logic to only
    update one of my form items if it's orignal value hasn't changed.
    So the user can update the Account Field which will fire the validation which updates the Fund Code field.
    The fund code field can also be changed, so when the Account field is changed, I don't want to change the fund code field if it's be change already by the user.
    I created a hidden item "P8_ORIGNAL_FUND" that I update "P8_FUND_CODE" with a "Before Region Compulation" with the Items value.
    The if statement with the Fund Code check isn't working when the Fund Code is never changed, so it appears I'm not setting the P8_ORIGNAL_FUND field I believe correctly?
    (VALIDATION CODE)
    Declare
    OutFund Varchar2(6);
    OutOrgn Varchar2(6);
    OutProg Varchar2(6);
    BEGIN
    Apex_Validations.FRSAcct_Valid(:P8_FRS_Acct, OutFund, OutOrgn, OutProg);
    If Trim(OutFund) is null Then
    :P8_PAGE_FOCUS := 'P8_FRS_ACCT';
    Return False;
    Else
    If :P8_FUND_CODE = :P8_ORIGNAL_FUND Then
    :P8_FUND_code := OutFund;
    End If;
    :P8_ORGN_code := OutOrgn;
    :P8_PROG_code := OutProg;
    Return True;
    End If;
    END;
    Edited by: SPoulos on Apr 6, 2010 9:29 AM

    IF NVL (:New.ColName, 'appropriate NVL value) != NVL (:Old.ColName, 'appropriate NVL value') THEN...
    is what you are looking for.

Maybe you are looking for