Determine if current component is being pulled in by paragraph reference?

Is there a way to determine at the component level if the current component is currently being imported into a paragraph reference component? A simple example would look like this in the component's jsp:
if (/* Being Referenced */) {
     out.write("This component is pulled in by a paragraph reference");
} else {
     out.write("This component is the original");
I thought i'd be able to tell by using resource.getParent(), but that returns the original component's parent.
I know i could compare the page path with the component's resource path if they were on different pages, but that wouldn't work out if the reference component and original component were on the same page.

Sure, this is what we're doing (i'm sure there must be a better way) -
Our pages will serve many users across different areas and roles. The authors wanted the ability to create one master page that will display certain components to only a certain area or role. For example, one text box should only be displayed to "south" users and another only to "west" users. To accomplish this we added tagging for each component and when a component loads on a page it does a check to display if the user has the same tags it has been tagged with. Looks something like this in the component jsp -
<% if (componentAreaTag == userAreaTag) { %>
     <h1>Component Is Displayed</h1>
<% } %>
The problem with this is that a reference component also needs to be tagged independently of the component it is referencing. So right now it processes the reference component's tags to see if the user can access the component and then checks the referenced component before displaying. Ends up processing something like this -
<% if (referenceComponentTag == userTag) { %> //From reference component
     <% if (componentTag == userTag) { %> //From component being referenced
          <h1>Component Is Displayed</h1>
     <% } %>
<% } %>
We need it not to care about the original component's tag when coming in through a reference component.

Similar Messages

  • How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?

    How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?
    I currently run OS X 10.10.1
    Now i have been trying to work on this for a while now and what i want to do should be simple but its apparently not.
    Here is an example of what i want to happen.
    I will have 2 tabs: Contact | Sales
    Now Contacts will have the list of names and various information about a customer, While Sales will have one drop-down box for each Cell Row that will show the names of the person in tab contacts
    for what i am wanting to do i cant use the data format pop-up menu because the list is edited everyday several times a day.
    Now how do i do this, Excel can do this so how can numbers do it?

    Hi Shegra,
    Paste this into a applescript editor window and run it from there. In the script you may need to adjust the four properties to agree with your spreadsheet. Let me know if you have any questions.
    quinn
    Script starts:
    -- This script converts column A in one table into an alphabetized list of popups. It copies the last cell in that column. Then reverts the column to text. It then refreshes popups in column A of a data table starting with a user defined row.
    property DataEntrySheet : "Sheet 1" --name of sheet with popups to be refreshed
    property DataEntryTable : "Sales" --name of table with popups to be refreshed
    set copyRange to {}
    property PopValueSheet : "Sheet 1" --name of sheet with popup values table
    property PopValueTable : "Contacts" --name of table with popup values
    set PopStartRow to {}
    tell application "Numbers"
      set d to front document
      set ps to d's sheet PopValueSheet
      set pt to ps's table PopValueTable
      set s to d's sheet DataEntrySheet
      set t to s's table DataEntryTable
      set tf to t's filtered --this records filter setting on data Entry Table
      display dialog "Start from row #..." default answer "" with icon 1 -- with icon file "Path:to:my.icon.icns" --a Week # row
      set PopStartRow to {text returned of result}
      tell pt --convert list to alphabetized popups
      set ptRows to count rows
      set copyRange to ("A2:" & name of cell ptRows of column "A")
      set selection range to range copyRange
      set selection range's format to text
      sort by column 1 direction ascending
      set selection range's format to pop up menu
      -- popupsmade
      set selection range to cell ptRows of column 1 of pt
      set v to value of cell ptRows of pt
      end tell
      activate application "Numbers"
      tell application "System Events" to keystroke "c" using command down
      tell pt
      set selection range to range copyRange
      set selection range's format to text
      end tell
      tell t
      set filtered to false
      set tRows to count rows
      set pasteRange to ((name of cell PopStartRow of column "A") & ":" & (name of cell tRows of column "A"))
      set selection range to range pasteRange
      tell application "System Events" to keystroke "v" using command down
      set filtered to tf
      end tell
    end tell

  • Determine when a component comes into view in a scrollpane

    So I have an application called FlickrBackup (http://sunkencity.org/flickrbackup). The main page of the GUI goes out to flickr (a photosharing site) and downloads a list of all your photos. It then creates little square panels that have the photos thumbnails on them and allows you to select them. Currently, the GUI goes out and downloads ALL the thumbnails and loads them all into the GUI. I would like to change it to only go out an download the thumbnail IF that panel/photo is visible in the scrollpane. The reason for this is because some users have upwards of 3000+ photos, so many of them are running into memory issues. If they don't even scrolldown to look at them, why should I load them?
    So here is what I have:
    A JPanel with a ScrollPane we'll call the ImageContainer
    I add many PhotoDisplayPanels to the image container. Most of them are outside the visible viewports view (something like 20 fit on the screen). These panels just use a JLabel to display the photo.
    I have tried adding a HierarchyListener to the PhotoDisplayPanel, but the event(any HierarchyEvent, not just showing/displayable) is only fired once and that is when the component is added to the ImageContainer and is shown for the first time.
    Does anyone know if there is a way to get notified when a component becomes visible in a scrollpanes view?
    I'm also confused by the terminology used in the javadocs for isShowing and the HierarchyEvents. isShowing says:
    "Determines whether this component is showing on screen. This means that the component must be visible, and it must be in a container that is visible and showing."
    Does the first 'visible' mean setVisible(true)? Or does it mean I can see it with my own two eyes? It seems once you add a component to a panel, it is by default in a visible state unless you specifically setVisible(false).
    Any help you can give would be great!
    Thanks!
    Andrew

    your player is in the middle of the screen, i just
    dont have a picture for that yetWell, nothing happens, even using the arrow keys. Sorry, but I'm giving up.

  • The row key or row index of a UIXCollection component is being changed outside of the components context ????

    Hello Guys,
    I'm working at this moment on implementing GANTT functionality via the <dvt:projectGantt> in my Web App :
    Rather than using data binding technology, I use a managed bean in this way :
    @ManagedBean(name="myBeanController")
    @ViewScope
    public class MyBeanController implements Serializable{
    private List<InternalTask> internalTasks;
    @EJB
    private InternalTaskDao internalTaskDao;
    //Root for tree component
    private List<TreeNode> root;
    private transient TreeModel model;
    public MyBeanController(){
         this.internalTasks = new ArrayList<InternalTask>();
    @PostConstruct
    public void init(){
         //Here I construct my TreeModel
         this.model = new ChildPropertyTreeModel(root,"collection");
    //getters and setters
    And my Component in my JSF page would be :
    <dvt:gantt value="#{myBeanController.model}></...>
    In my Browser the component seems to work properly without any problems but if I expand each node then I can see in my log :
    "<org.apache.myfaces.trinidad.component.UIXCollection> <BEA-000000> <The row key or row index of a UIXCollection component is being changed
    outside of the components context. Changing the key or index of a collection when the collection
    is not currently being visited, invoked on, broadcasting an event or processing a lifecycle method, is not valid.
    Data corruption and errors may result from this call...>"
    What's going on here ? Something with rowKeySet ?
    Thanks,
    Remy

    Hi,
    I made my tree model variable non transient and the warning message appears again.
    I implement the gantt in the same way as you did in the demo
    1st) populate ArrayList (As far as I'm concerned, it's populated via @EJB)
    2nd) create TreeModel with a helper class as in the demo which extends ChildPropertyTreeModel and implements TaskKey
    In my browser all the stuff is running fine except this warning message.
    I use for info JDev 12c
    Thanks,

  • Find the Window that a component is being displayed inside of?

    Hello all. I need to find out if a component is being displayed inside of a Window (or JWindow/Frame/JFrame). I need to get the reference for the window component that the component is in.
    I've tried using various combinations of methods in SwingUtilities, as well as Component.getParent(), etc., and can't seem to be able to get what I am looking for.
    For example, I have a JPanel nested inside of another JPanel that is nested inside of a JFrame, and I want to get a reference of the JFrame. If I use a getParent() call recursively I only get to the parent JPanel, and not to the JFrame.
    I'm trying to write a generic method in my extended JPanel class that determines if its sitting inside of a Window/JWindow/Frame/JFrame, and if so, if the window has a JMenuBar. Specifically I'm trying to get a list of all JMenu objects that a window may have that my JPanel subclass is sitting inside (don't want to assign a mnemonic value if its already being used by a JMenu object).
    Any advice/information would be appreciated. Thank you in advance for your time.

    Yeah, but when the human being runs the app, they see
    my panel inside of the window of the application they
    are running! :pThe only explanation I can think of is if you're running as an applet it will appear in firefox or IE or whatever but have no window ancestor.
    Try doing
    Container con = getParent();
    while (!(con instanceof Window) con = con.getParent();It sounds like you've got some silly bug somewhere...

  • I have Adobe CS. Upgraded my computer to Windows 7. Installed CS but I can't activate Photoshop due to the online/phone activation being pulled down. Now the 30 days has expired. Tried to follow directions to install CS2 but no luck. I would really like t

    I have Adobe CS. Upgraded my computer to Windows 7. Installed CS but I can't activate Photoshop due to the online/phone activation being pulled down. Now the 30 days has expired. Tried to follow directions to install CS2 but no luck. I would really like to speak with someone at Adobe to get it working again. THanks

    If you would like to speak with someone at Adobe you will need to cvontact them directly by chat or phone.
    Here is a link to a page with options to help make contact:
    http://www.adobe.com/support/download-install/supportinfo/

  • F-28 T-CODE - Open Document is not being pulled

    F-28 T-CODE - Open Document is not being pulled
    Item is shown as open on customer account (FBL5N). Item has not been cleared.
    When selecting items to apply payment, the following message is shown:
    "No appropriate line item is contained in this document"  Message no. F5228
    Appreciate any help that can be provided.
    Best regards, Maikol M.

    Hi,
    - Check some table fields in the missing documents using Transaction SE16. The following conditions must exist:
    BSIS-XOPVW = X (Indicator: Open item management, only for G/L accounts)
    BSEG-XOPVW = X (Indicator: Open item management)
    BSEG-AUGBL = space (clearing document number)
    BSEG-DISBN = space (discount document number)
    BKPF-BSTAT = space (document status)
    BKPF-XSTOV = space (indicator reversal flag)
    REGUS/REGUP -> see below
    Look at table REGUS using Transaction SE16. Enter the account (KONKO) in the selection screen. If you selected an entry, use the information Run date (LAUFD) and Identification (LAUFI) in Transaction F110 (payment program). Check the status of the payment run. If only the proposal was carried out, the documents proposed for payment are blocked for other clearing transactions. It is only when you delete the proposal run that the items are taken into account again in the clearing transaction.
    Rgds.

  • Error in CK11n - The system could not determine a cost component split for

    Hi All,
    When i run CK11n i have following error:
    The system could not determine a cost component split for the internal activity with activity type 502000 of cost center 10100.
    Procedure
    Check the master data for activity type 502000 of cost center 10100. It is possible that no activity price calculation has been carried out for the cost center.
    could any one give me solution
    Thanking you.

    Well, did you run activity price calculation for the relevant cost center(s)?
    The CCS you're using for product costing (either your COGM split, or the auxillary) has been marked as a "primary" cost component split.  It wants to break secondary costs down into their cost components, and assign those components to components in its own structure.
    Wihout a planned CCS for the activity, this isn't possible.  (This is normally calculated by KSPI during planning.)
    Either calculate an activity CCS is KSPI, assuming that all the prerequisites are in place for that, or uncheck the "primary cost component split" indicator in your costing variant configuration.

  • How to determine the current update level of the system

    How can we determine the current update level of the system. uname -a shows the release but how to obtain the update level through a program?
    I have this sample program to display the version
    #include <iostream>
    #include <sys/utsname.h>
    #include <dirent.h>
    using namespace std;
    int main()
      struct utsname osinfo;
      // Call uname to get system info, then extract strings.
      uname(&osinfo);
      if (osinfo.machine)  {
        cout<<" Machine : "<<  osinfo.machine;
      if (osinfo.sysname)  {
        cout << "\nOS Name : " << osinfo.sysname;
    if (osinfo.release[0] != '\0')  {
        cout<<"\nRelease : " << osinfo.release;
    }My aim is to check if the Solaris box is 5.10 update 4 or not.
    Edited by: nidhish9 on Nov 27, 2007 5:11 AM

    nidhish9 wrote:
    How can we determine the current update level of the system. uname -a shows the release but how to obtain the update level through a program?
    I have this sample program to display the version
    #include <iostream>
    #include <sys/utsname.h>
    #include <dirent.h>
    using namespace std;
    int main()
    struct utsname osinfo;
    // Call uname to get system info, then extract strings.
    uname(&osinfo);
    if (osinfo.machine)  {
    cout<<" Machine : "<<  osinfo.machine;
    if (osinfo.sysname)  {
    cout << "\nOS Name : " << osinfo.sysname;
    if (osinfo.release[0] != '\0')  {
    cout<<"\nRelease : " << osinfo.release;
    }My aim is to check if the Solaris box is 5.10 update 4 or not.
    Edited by: nidhish9 on Nov 27, 2007 5:11 AMIt's in /etc/release...
    essapd020-u004$ cat /etc/release
                           Solaris 10 8/07 s10s_u4wos_12b SPARC
               Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
                            Use is subject to license terms.
                                Assembled 16 August 2007
    essapd020-u004$ It can be processed with some simple commands:
    essapd020-u004$ cat /etc/release | head -1
                           Solaris 10 8/07 s10s_u4wos_12b SPARC
    essapd020-u004$ cat /etc/release | head -1 | cut -f2 -d_ | cut -c1,2
    u4
    essapd020-u004$ Best,

  • IWork Numbers -- how to determine the current selected column/row?

    I am trying to write a script that grabs some text from a Numbers spreadsheet based on the selected field. I just can't figure how to actually get the column and row in a way I can use. Here's my start:
    tell application "Numbers"
    tell document 1
    -- DETERMINE THE CURRENT SHEET
    set currentsheetindex to 0
    repeat with i from 1 to the count of sheets
    tell sheet i
    set x to the count of (tables whose selection range is not missing value)
    end tell
    if x is not 0 then
    set the currentsheetindex to i
    exit repeat
    end if
    end repeat
    if the currentsheetindex is 0 then error "No sheet has a selected table."
    -- GET THE VALUES OF THE SELECTED CELLS
    tell sheet currentsheetindex
    set the current_table to the first table whose selection range is not missing value
    tell the current_table
    set the range_values to the value of every cell of the selection range
    set therange to every cell of the selection range
    set thecol to column of first item of therange
    set therow to row of first item of therange
    end tell
    end tell
    end tell
    end tell
    It gives me a result like
    row "30" of table "table" of sheet "sheet 1" of document "Scheduler.numbers" of application "Numbers"
    but what I need is just "30" so I can use it for my scripts. I can't figure how to convert this to a string or some other useful format.
    Can anyone help? I like Numbers but I always run into little problems like this, something I can't figure how to do, compared with other scriptable programs.

    Search forGetSelParams or better for get_SelParams in the existing threads.
    I posted this handler more than 30 times !
    Yvan KOENIG (VALLAURIS, France) vendredi 18 mars 2011 17:03:05

  • How do I determine my current Version of Firefox from this browser? There is no `About` tab or link.

    I am not able to easily determine what current version of FireFox I am running.

    Hi, please open the 3-bar menu > Help (question mark at the bottom) > About Firefox.
    You can also temporarily bring up the menu bar by pressing Alt > Help.
    Hope that answers your question.

  • Determining the current viewId

    Hi, I need to determine the current view id, therefore I am using the following code:
    /* adf-settings.xml */
    <adf-settings xmlns="http://xmlns.oracle.com/adf/settings">
      <adfc-controller-config xmlns="http://xmlns.oracle.com/adf/controller/config">
        <lifecycle>
          <phase-listener>
            <listener-id>myPagePhaseListener</listener-id>
            <class>obasi.common.domain.myPagePhaseListener</class>
          </phase-listener>
        </lifecycle>
      </adfc-controller-config>
    </adf-settings>
    /* myPagePhaseListener */
        public void beforePhase(PagePhaseEvent pagePhaseEvent) {           
            try {           
                if (pagePhaseEvent.getPhaseId() == Lifecycle.PREPARE_MODEL_ID) {
                    for (Object child:FacesContext.getCurrentInstance().getViewRoot().getChildren())
                        if (child instanceof RichDocument)
                            System.out.println(FacesContext.getCurrentInstance().getViewRoot().getViewId());
            } catch (Exception ex)
                // ignore
        }But this doesn't seem to work accurately. Some viewId's are only "detected" after leaving a page...
    I noticed that this happens when the URL inside my browser also remains pointing to the previous page.
    Is there a way to solve this?
    Thanks in advance,
    Charles.

    Hi,
    Thanks for helping me out, Simon.
    I am not sure about what changes should be made to my web.xml in order to not have the resources as view id's.
    So here goes my web.xml - in the hope that you would be so kind to point me out where the problem lies.
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
        <description>Empty web.xml file for Web Application</description>
        <context-param>
            <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
            <param-value>client</param-value>
        </context-param>
        <context-param>
            <description>If this parameter is true, there will be an automatic check of the modification date of your JSPs, and saved state will be discarded when JSP's change. It will also automatically check if your skinning css files have changed without you having to restart the server. This makes development easier, but adds overhead. For this reason this parameter should be set to false when your application is deployed.</description>
            <param-name>org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION</param-name>
            <param-value>false</param-value>
        </context-param>
        <context-param>
            <param-name>RedirectToLogin</param-name>
            <param-value>login</param-value>
        </context-param>
        <context-param>
            <description>Whether the 'Generated by...' comment at the bottom of ADF Faces HTML pages should contain version number information.</description>
            <param-name>oracle.adf.view.rich.versionString.HIDDEN</param-name>
            <param-value>false</param-value>
        </context-param>
        <filter>
            <filter-name>JpsFilter</filter-name>
            <filter-class>oracle.security.jps.ee.http.JpsFilter</filter-class>
        </filter>
        <filter>
            <filter-name>trinidad</filter-name>
            <filter-class>org.apache.myfaces.trinidad.webapp.TrinidadFilter</filter-class>
        </filter>
        <filter>
            <filter-name>adfBindings</filter-name>
    <!--
            <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
    -->
            <filter-class>obasi.instel.customlogin.DynamicJDBCBindingFilter</filter-class>
        </filter>
        <filter-mapping>
            <filter-name>JpsFilter</filter-name>
            <servlet-name>Faces Servlet</servlet-name>
            <dispatcher>FORWARD</dispatcher>
            <dispatcher>REQUEST</dispatcher>
            <dispatcher>INCLUDE</dispatcher>
        </filter-mapping>
        <filter-mapping>
            <filter-name>trinidad</filter-name>
            <servlet-name>Faces Servlet</servlet-name>
            <dispatcher>FORWARD</dispatcher>
            <dispatcher>REQUEST</dispatcher>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfBindings</filter-name>
            <servlet-name>Faces Servlet</servlet-name>
            <dispatcher>FORWARD</dispatcher>
            <dispatcher>REQUEST</dispatcher>
        </filter-mapping>
        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet>
            <servlet-name>resources</servlet-name>
            <servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>/faces/*</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>resources</servlet-name>
            <url-pattern>/adf/*</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>resources</servlet-name>
            <url-pattern>/afr/*</url-pattern>
        </servlet-mapping>
        <session-config>
            <session-timeout>35</session-timeout>
        </session-config>
        <mime-mapping>
            <extension>html</extension>
            <mime-type>text/html</mime-type>
        </mime-mapping>
        <mime-mapping>
            <extension>txt</extension>
            <mime-type>text/plain</mime-type>
        </mime-mapping>
    </web-app>Please note that I am using Steve Muench's DynamicJDBCCredentials (http://radio.weblogs.com/0118231/stories/2004/09/23/notYetDocumentedAdfSampleApplications.html #129)

  • Portal XML Component Error when pulling content from iFS

    Has anyone tried to use Portal's XML Component application to pull XML data out of iFS via URLs successfully? I'm using iFS 1.1.10 and 9iAS 1.0.2.2a. I've loaded an XML instance and XML style sheet in iFS (that parse fine in XMLSpy) and tried to display them using the Portal XML Component application. I've also tried to cut/paste the instance and style sheet in to the Component's GUI directly and received the same error. The component finds the files in iFS fine, but generates the following error:
    Start of root element expected. at oracle.xml.parser.v2.XMLError.flushErrors(XMLError.java) at oracle.xml.parser.v2.XMLError.error(XMLError.java) at oracle.xml.parser.v2.XMLError.error(XMLError.java) at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java) at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java) at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java) at oracle.webdb.xmlcomp.XMLTransDoc.Transform(XMLTransDoc.java:136)
    Oracle's sample data works fine too..
    Seems like a basic error, but I can't correct it.. THanks in advance for any help, Tim

    At the start of the xml file u have to mention the version number of the xmldoc.
    Some thing like the following
    <?xml version="1.0"?>
    and then ur content.
    Try following the same thing, with the smaller amount of data to test for the functionality of the component.
    (but keep in mind the size limitation bug has been fixed in the next release of Oracle 9iAS Portal only i.e., 9.0.2).
    And let us know, what problem u are facing.
    Thanks,
    Balakrishnan.

  • BSP application not being pulled after the application of support packs

    Hi all,
           Support packs SP 35-42 were applied last week end and after that one of the three BSP applications in production server is not being pulled through SAP gui. If I take the URL and paste it in IE the same application is being pulled. We are suspecting that to be a web dispature issue or firewall issue. The land scape is like this. P20 is our production server and C20 is our QA server.P20 has Sun109 as a web dispature and C20 has Sun108 as webdispature. There is a firewall in between P20 and Sun 109 but there is no firewall in between C20 and Sun 108. We redirected P20 to Sun 108 to test and all the three applications pulled up. so we concluded that it could be an issue with SUN 109 or a firewall issue. I am new to this webdispature stuff. I need help in identifying which files I have to look in to identify any kind of such errors. it is confusing why other two applications are being pulled and only one is not being pulled into SAP gui. We debugged the code and every thing is working fine. this is an urgent issue to be resolved.These application were developed long back and the developer did not leave any documentation how the hand shake is done between the web dispature and the SAP system.We are supporting the production system now. I appreciate any one responding as soon as posible.
    Thank you very much,
    Giri

    You mustn't have looked very hard.
    Try https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=954792 as a starter.

  • Need to determine which partner function level is pulling in the currency (

    need to determine which partner function level is pulling in the currency (sold to, ship to , bill to or payer)on sales invoices
    Also I my requirement is to have different currency based on different ship to party for same sold to..then how set up the same

    Hi,
    Yes, that is true. The field borders are not drawn when there is no data for that field.
    Here's a workaround though. Create this formula and use this formula field instead of the original database field on the report
    if isnull({database_field}) or not({database_field} > 0) or not({database_field} = "") then
    space(1) else totext({database_field})
    You can then apply borders on this field and you'll see that the field draws the border when there is no value.
    If the field that is in the Subreport, then it needs to be done in the Subreport, otherwise in the Main Report.
    -Abhilash

Maybe you are looking for

  • Adf table with detail stamp , not able to close the detail stamp

    Hi i'm using 11g adf jdeveloper. I'm using adf table to display records of XXXVO.In table i have used detail stamp, in which i have drag XXXVO read-only form and used a ADD button which call a pop-up with createInsert of the XXXVO form with submit bu

  • Sync to PC and Mac?

    Alright, I have a bit of a situation here. I'm wanting to get an iPhone to manage everything. All of my music, photos and videos are on my MacBook Pro at home. I also have email there as well. At work, we use Windows XP, Office 2004 and 2007. Is it p

  • Help! I'm on my fifth hard drive!

    My hard drives keep crashing. I'll install a new hard drive, install the OS, and it will run like a dream for about 3-4 weeks. Afterwards, the computer is constantly thrashing the drive and it takes forever to do simple things like load web pages or

  • FM for Credit check

    Hello all, Can anyone tell me if there is a FM or a BAPI for performing a Credit Check for given customer. Basically, if a customer is blocked for Credit there can be two scenarios (in our case)    1. Overdue balance (Pending payment has exceeded the

  • Want to install another graphical card on my Satellite A20

    Hi there, I want to install another graphical card on my SA20 - S103. At the moment it is the standard Trident card that is running. Is it possible to install a gforce or radeon chip? If yes, which one would be the best?