Link Ibase component = Ibase

Hi folks,
IBIN stores the Link between a Header Ibase and the components.
But which table holds the information what the component consists of?
I need to know which Ibase is in a component.
thanks in advance
martin

Hi Martin,
Here is a connection you can use..
Once you go to IBIN and find the components for the ibase you are looking for
you can use the following connection to get the info on the components
When you insert IBIN-IN_GUID to CRMD_SRV_REFOBJ-IB_COMP_REF_GUID
Field Product_ID is the component ID, GUID_OBJECT is the component GUID
You can use the ID and/or the guid to locate these components in the item/product master...
Hope it helps,
Please reward points if it helps by selecting a star..

Similar Messages

  • How is target id linked to component window

    Hi,
    I've created a Navigation Profile and a Work Center, that I wish to link to a Component Window via a logical link.
    I need a target id to connect to the Component window. I created an inbound plug to the window but am not sure as to how to create the target id. Please let me how i need  to create the target id and how to link to component window.
    Thanks,
    Urmila

    Visit the following link it will help u to link the component.
    http://wiki.sdn.sap.com/wiki/display/CRM/AddyourcustomBSPcomponentasalinkinaWork+Center

  • HTML component wont open link within component

    I have a HTML component in my AIR app. When the page opens a youtube video feed that has copyright restrictions, a link to view the content on the youtube site itself, like the one shown here: http://www.youtube.com/v/WwoM5fLITfk?f=videos&app=youtube_gdata. When you try clicking this link nothing happens?
    Can anyone tell me how i can open this link within my html component?
    Many thanks
    Adam
    Flexchief

    Hi,
    I have this problem as well.
    I posted a question here few days before you and still haven't got an answer for it.
    My assumption is this issue started at the last SDK update. I don't see it if I work with flex 3.5.
    Hope someone will give full answer to it soon... I am stock with my project because of it.
    Avier

  • AWE Worklist HTML link to Component

    I'm attempting to link to my custom component from an HTML link on my worklist. The link works I'm able to get to the component. However I'm trying to bypass the search page and have the Workflow approval page open up from the link. This isn't happening though. I keep getting the search page and am not sure what I'm doing wrong. Are the key fields no being passed appropriately? Are there properties on the component or page that need to be configured?
    Any help is greatly appreciated. Thanks!

    Compare your generated URL with the URL of a transaction. Don't look at the PSP URL in the address bar, look at the URL for the content frame. Even better, right-click and view source for the content frame. In the source, look for a JavaScript variable named strCurUrl. This variable has the URL with transaction key fields. It is possible you are just missing a transaction key.
    Generally speaking, you can add all the search record keys and values using the form ?key1=value&key2=value&Action=U&Page=NAME_OF_PAGE.
    There is also a checkbox on the component labeled "Force search processing." Make sure this is not checked.
    Also, are you using CRM? CRM has it's own configurable search which does not use the same search processing as the rest of the PeopleSoft applications.

  • Linking portal component

    Hi all,
                   How to write code to redirect from one portal component to another portal component.
    I am using Response.Redirect("portalcomponent.ascx") like how we redirect page in asp.net application.
    It shows runtime error...
    anyone give an idea to retify this issue.

    Hi Sudarshan,
    how are you doing ?
    a key to keep in mind is that with the PDK you are programming in EP using ASP.NET as a language / syntax class implementation (very similar to how J# uses the java language syntax for .net classes)
    As navigation is within EP, the EP methodologies apply:
    Please have a look at the EPCF API's
    with : WDPortalNavigation.navigateAbsolute(), etc ...
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/6fa84016631814e10000000a1550b0/frameset.htm
    with respect,
    amit

  • How to link dataTable component with Microsoft Access Database?

    Please mail me @ [email protected]

    Creator might not support MS Access yet but use this code for an access database connection will always work even through notepad or textpad:
    import java.io.BufferedInputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.InputStream;
    import java.util.Properties;
    * @author Mark Hennessy
    public class MyDataSource {
    private static MyDataSource ds = null;
    private static java.sql.Connection connection = null;
    /** Creates a new singleton instance of MyDataSource */
    private MyDataSource() {
    try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    connection = java.sql.DriverManager.getConnection("jdbc:odbc:<db name>", "guest", "guest");
    }catch(ClassNotFoundException cnf){
    cnf.printStackTrace();
    }catch(java.sql.SQLException sqle){
    sqle.printStackTrace();
    public static DataSource getInstance() {
    if(ds == null)
    ds = new DataSource();
    return ds;
    public java.sql.Connection getConnection() {
    return this.connection;
    public static void closeConnection() {
         try{
              connection.close();
         }catch(java.sql.SQLException sqle){
              sqle.printStackTrace();
    plus set up the ODBC connection via click start , click run and then copy and paste the following "odbcad32.exe" without the quotes, click ok, click user DSN tab, click Add...button select Microsoft Access Driver (*.mdb) click finish, give <db name> name of ur access database, give any description <whatever> or leave blank click the select... button navigate to the access database u want to connect to in your java code and select it.
    in calling program
    public class CustomersImplimentation {
    private static java.sql.Connection connection = null;
    private java.sql.ResultSet rs = null;
    public CustomersImplimentation(){
    connection = MyDataSource.getInstance().getConnection();
    public Customers[] findAll(){
    java.util.ArrayList list = new java.util.ArrayList();
    String sql = "SELECT * FROM CUSTOMERS";
    try{
    java.sql.Statement stmt = connection.createStatement();
    rs = stmt.executeQuery(sql);
    while(rs.next()){
    list.add(new Customers(rs.getInt(1), rs.getString(2), rs.getString(3)));
    }catch(java.sql.SQLException sqle) {
    System.out.println((new StringBuilder()).append(
    "SQLException :: executeQuery Cannot find all Customers:").append(sqle).toString());
    Customers[] customers = new Customers[list.size()];
    for(int i = 0; i < list.size(); i++){
    customers[i] = (Customers)list.get(i);
    return customers;
    if you have a Customers class created with set and get methods and a constructor that takes an int string string i.e.
    public Customers(int ID, String firstName, String lastName){}
    then u should be able to run these classes from within creator with an access database. hope this helps?
    regards
    Henno

  • FM for the IBASE

    Hi,
    Is there any FM for getting the IBASE details for the given PIN.
    Thanks!!

    Hi Christina,
    Refer to this link
    IBAse Details
    Thanks!!

  • Best approach to using command link from within a custom component

    I have created a navigation component "Menu" , used as follows:
    <custom:menu />The contents of menu are stored in an xml file and the Menu component delegates the rendering to a custom renderer, which basicaly writes out html links. (Actually, the component does a lot more, but I'm simplifying to get to the point.).
    Sometimes, I need to render a command link instead of a regular html link. I don't want to re-invent the wheel here, so I want to delegate this to the standard command link components.
    Approach 1: create child components within the Menu component constructor, e.g.
    HtmlCommandLink c = new HtmlCommandLink();
              MethodExpression e = FacesContext.getCurrentInstance().getApplication().getExpressionFactory().
                   createMethodExpression(FacesContext.getCurrentInstance().getELContext(),
                   "#{registrationEditor.enterSubmission}",
                   String.class,
                   new Class[] { });
              c.setActionExpression(e);
              c.setValue("TestLink");
              c.setTransient(true);
              getChildren().add(c);Approach 2: delegate to the CommandLinkRenderer within my custom renderer, e.g.CommandLinkRenderer delegate = new CommandLinkRenderer();
                        HtmlCommandLink link = new HtmlCommandLink();
                        ExpressionFactory elFactory =
                             FacesContext.getCurrentInstance().getApplication().getExpressionFactory();
                        MethodExpression actionExpression =
                             elFactory.createMethodExpression(context.getELContext(), c.getExpression(), String.class, new Class[] {});
                        link.setActionExpression(actionExpression);
                        link.setParent(component.getParent());
                        link.setValue(c.getLabel());
                        delegate.encodeBegin(context, link);
                        delegate.encodeChildren(context, link);
                        delegate.encodeEnd(context, link);Is either of these a respectable approach - they feel a little hackish. If so, which do you prefer. If not, what do you recommend?
    Thanks
    Richard

    I think either is a fine approach and not at all hackish. I prefer the second, although I couldn't tell you why (just a gut feeling). That said, I haven't tried either so there may be hidden problems. My main concern would be what happens when the request is submitted from the page, that the Restore View phase is done correctly so that the proper event is fired.

  • Link manager 8 Component Issue

    Hi All,
    We have written a program that checks-in in a site studio data file. We used CHECKIN_UNIVERSAL service for checking in. Below are the value we are setting in the binder for check-in.
    =============================================================================================
    m_binder.getLocalData().clear();
    m_binder.clearResultSets();
    m_binder.cleanUpTempFiles();
    m_binder.putLocal("CopyActionWF", "Y");
    m_conditionVars.setProperty("IgnoreAccounts", "1");
    HashMap<String, MetadataCopyUtil> metadataCopyCriteriaObj = checkinItem
    *.getMetadataCopyCriteria();*
    m_binder.putLocal("IdcService", serviceName);
    String filePath = checkinItem.getFilePath();
    *// m_binder.putLocal("dCheckoutUser", "sysadmin");*
    m_binder.putLocal("dDocName", checkinItem.getTargetContentId());
    m_binder.putLocal("xWebsiteObjectType", "Data File");
    m_binder.putLocal("doFileCopy", "1");
    m_binder.putLocal("primaryFile", filePath.substring(filePath
    *.lastIndexOf('/') + 1));*
    m_binder.putLocal("primaryFile:path", filePath);
    m_binder.putLocal("IsWorkflow", "Y");
    m_binder.putLocal("dReleaseState", "N");
    m_binder.putLocal("xIsNew", "N");
    m_binder.putLocal("dUser", dUser);
    ================================================================================================
    Every thing is working fine but the list of links used by data file that are refereced in the data file are not updated in the database. This I think Link Manager8 component does automatically. When we do check-in with site studio form it works fine. But it is failing here. Do we need to provide set any additional information in binder? Please help.
    Regards,
    Vijay

    Hi
    My 2 cents on this :
    The result set is generated by IdocScript function (loadDocLinks) during page generation for LinkManager and this could be the reason why you are seeing the issue mentioned below .
    Thanks
    Srinath

  • How to open the link in new firefox window for web desktop based application? Or how to open the mail/website/rss link in new firefox window

    I am using the firefox 3.6. My problem is that I am using the web desktop and few web desktop based application directly opens link. If I click on rss link than it opens in same window, so no longer access to web desktop. I want to open any kind of link in new window instead of same window. I have tired to change the value of browser.link.open_newwindow, browser.link.open_newwindow.restriction but doesn't work. Also gone through the https://developer.mozilla.org/en/window.open but not sure where to do this in web desktop based application or firefox where we connect the web desktop?
    Is there any way to open the link every time in new firefox window?

    Hi Joseph,
    the HTMLB link object misses the support for onClientClick through the tag lib, see hbj:link without onClientClick ? and OnClientClick Event for Link HTMLB Component for similiar problems and workarounds.
    With this workaround, you can call for example an AbstractPortalComponent, implement doOnNodeReady (with an empty doContent method) and return the PDF, settings the content type on the http before etc.
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • PYRO A/V Link XP,Vista, & Win7 switch settings + info for use in PE7

    I see a lot of confusion regarding capture glitches and switch settings using the PYRO A/V Link. I looked at Canopus and others before I bought this one because it fit my budget. After I bought it I went through the glitches and the Support system of ADS Tech problems that others are experiencing.The settings I use worked on my Vista 32 bit laptop and without a hitch when I got my Windows 7  64 bit desktop using PE7. I"m sure they will work for PE8. I have a ton of VHS tapes that I am working with so my point of reference is for VHS capture. I am also using NTSC.
    If you are ordering one what you will be ordering is an API-558-EFS. Or maybe you are using one of the API-550 units. Thjis information should work fine for the 550.   There is NO API-558 unit unless this has changed since I bought mine. The BOX with an API-557, a power cord, and an outdated API-550 user manual is what constitutes an API-558. I know this because an irate ADS Tech rep told me. I emailed to find out why I didn't get an API-558 and that is what I was told. "We no cheat you. You got what you pay for".
    I checked for updated drivers and info from ADS Tech and found a REVISION E. You can go online to their website and print it off if you like but I will dialog on this revision in the switch settings. I tried to get the ADS Tech rep to give me a serial number break as to when they changed from the 550 to the 557 units but did not get an answer. I think he said REV.E started with the API-557 but who knows seems to be answer.
    Switch settings: I use #1 DOWN  #2 UP #3 DOWN #4 DOWN and here are the reasons why.
    The API-550 booklet/user manual shows a few windows versions. I refer to Windows XP because Vista and Win 7 seem to be offshoots of XP.
    SWITCH NO. 1   for the API-550 (the API-557 and Vista and Win 7 are not in there) says DOWN for NTSC and Up for PAL . REV E says this has been changed to a black level (Color IRE) down being 0 IRE and up being 7 IRE(default). The ADS Tech rep told me the new unit Automatically detects NTSC or PAL. Do I believe him? Not at this point in time.
    SWITCH NO.2 was not changed with REV.E    UP for XP, Vista, and Win 7
    SWITCH NO.3 was not changed with REV.E    DOWN for XP, Vista, and Win 7
    SWITCH NO.4 was originally (for the API-550) DOWN for LOCKED AUDIO and Up for Unlocked Audio.  REV E. changed this to   Down =12-bit/32kHz and   Up =16-bit/48kHz Audio Sampling Rate
    At this point in time I believe I have an API-550 with an API-557 sticker on it. My reasoning is that I import one long stream (60 to 90 minutes) of video  from VHS into PE7 without stopping and after making a DVD where the video and sound separated further and further to about 5 minutes off at the end. I went back to switch #4 LOCKED AUDIO. I also didn't care about black level so I set the #! Switch DOWN fo make sure of  NTSC. Depending on which unit you think you have you can experiment with the first and last switches. It is possible on short video you might not notice the video/audio separation. ALSO PE7 identifies the unit as an API-550 at the top of the capture screen/panel.(Capturing Device)  Whether or not this is the result of windows drivers I don't know.
    Connections  I have a VHS/DVD Recorder unit with HDMI and Component Video (3 Video and R & L Audio) output. The PYRO AV link has Component Video IN which I use and the Canopus did not as I recall. I don't know what the other various units have as they were over my spending limit. The quality of Video I get seems really good.. If you are thinking about upgrading your VHS player look on the Back of the unit you think you want to buy and see if it has the Component Video output. The users guide says for DVD player out on my machine but works fine for VHS out. To connect the Pyro to computer you need Firewire as others have said. No USB connection.
    One Major Glitch;   Get off the Internet (as others have said) before you start trying to do video. This is even more important with an underpowered computer. My laptop had a switch I would flip to disconnect. My desk top Internet connection has to be disabled. or unplugged from router, or turn router off if you don't need it for other computers. If you don't know how to watch your task manager learn how to bring it up and watch it to see cpu and memory usage and the ammount of processes being used. RESTART the computer maybe more than once. What you will notice will be the number of processes being used will drop and the ammount of memory being used will drop. Restarting seems to dump all the Internet garbage at least till you get back on again and surf around and collect it again. I used to leave mine off the internet for several days and the movie making went smoothly. On my laptop it took up to 10% of the memory and the desktop takes 6+% of 12GB just to be on the internet. I started noticing this early on when things would lock up and I would have to restart anyway.
    Starting; After you get off the internet, restart, bring up the task manager, and watch till things settle down to about 0 cpu usage, start PE7 or whatever Video program you want. Watch the task manager again and when everything is down to about 0 cpu usage, start a new project in the welcome screen. Where you want to put your project and how you name it is up to you. I make a new folder and put Everything in there. If you use an external hard drive make sure you dont forget to have it hooked up and on when your video program goes looking for projects the next time you open one up.
    After you push ok and the selections come up for what type of video you are working with Click on the  NTSC DV and it will give you a choice of 4:3 or 16:9 Wldescreen. I use the standard 4:3 because all of my footage is old and when playing a DVD later on, the newer TVs seem to be able to widen it out and on older TVs things look normal anyway. I click done and when mainscreen comes up select Get Media. I again select DV  ( Camcorder) and the capture Window opens up.
    I fire up my VCR, put a tape in and plug in the PYRO unit. I don't know if that's bad or not, I just got tired of pushing the teeny power button on the unit so I just plug or unplug the PYRO power cord. If the red light is not on the front of the PYRO push the button next to it and hold briefly. When you let go the Red light should be on for Analog. When you hook up one of these to the computer Windows may install a driver. Some firewire devices say you don't need a driver. With the PYRO TURNED ON, if you open up DEVICE MANAGER you will see the Pyro show up under IMAGING Devices. Imaging Devices does not show up in my machine until the PYRO is plugged in. Then when Imaging Devices shows up mine says AD API-550. Click on properties,then driver, and windows shows a driver. Says its an older driver but it works. If you don't see it listed before you try to import video you may have other issues.
    Play some video through your VCR and make sure the light stays Red on the Pyro. You should see the Video  in the Capture Window and also hear the audio. I let my VCR do some auto tracking, play and rewind and zero the counter when I reach the point I want to push the capture button. After a few times you can pretty much tell where the tape needs to be at the point you push capture. When capturing it will say capturing and a red line will appear around the window. If you push pause, that segment is pretty much a done deal. If it didn't capture enough video you may have to rewind and capture again and leave the first capture out of your project.
    If you have glitches or the capture is screwy you may have to exit the project (save it if you alrerady have existing material in) RESTART and try again, or delete and start over. Once you learn what you want to do you shouldn't have that problem. I also learned early on to NEVER push the close button in the upper RH corner to close PE7 as you would normally do to close a window or program. PE7 didn't like that. Always use File and EXit.
    Always wait for PE7 to settle down on each step before you try to do other things or you are going to lock things up depending on how fast your machine is. I have the Task manager to always be on top of other windows (under options at the top of Task Manager window). If it gets in the road I minimize the window and bring it back up whenever I think things are moving slow or I want to check something. 
    I have used this procedure for other movie programs and capture always works. Hope it works for others using PYRO. Hopefully I was to the point and this makes sense. Bill Hunt suggested I maybe post this to Muvipix but when I visited the Muvipix site there was Pyro stuff all over the place and I wasn't sure where to post. Maybe after he reads this he may not want me to post. Or If he thinks its ok material maybe he can scoot it over to Muvipix for me.  Thanks again. I will watch this post to see if I was unclear on anything. Or if you guys clear up any mistatements you think I made.

    Steve,
    I am pleased you thought this was good info. Please use it as you think it will do the most good. The reason I posted it to the main forum is because I am a novice when it comes to forum use. I wasn't aware of the fact there were sub forums (so to speak) until recently. The same for Muvipix.
    What I mean is, that when I first found Adobe forums I was only looking at the main forum for answers, as I would guess other novices are doing. I found the PE portion, and that was as far as I went unless you guys had links to other stuff, and even then it didn't dawn on me that there was a Tips & Tricks or hardware sections, etc. I would type in PYRO for example, and if nothing came up in the main forum first to redirect me to something else, I thought that was all there was. Don't know if there are other novices thinking the same thing.
    I apologize for my ignorance on posting to Muvipix. The format seems to be different and I found Pyro discussions there which seemed to be in several sub forums? So I posted here first and the only knowledge I have about sending this material to Muvipix (outside of re-typing the whole thing) would be to copy and paste it. (Bring up Muvipix in a separate Internet window along side Adobe and copy/paste). Sounds dumb, but as I said I am still computer illiterate. Also which section of Muvipix would I post it under? I'm pretty sure you guys have a better way of posting the same material in both forums at the same time than copy/paste.        Thanks for the info.

  • Issue in Binding Custom controller to Component Controller

    Dear All,
    I have enhanced a standard component ERP_H.
    I created a custom controller with context nodes BTSTATUS, BTSTATUSH
    I enhanced the component controller with context node BTSTATUS, BTSTATUSH
    Now when i try to bind the custom controller to component controller using this code in the context class of my custom controller
    bind to component controller
      owner->do_context_node_binding(
               iv_controller_type = CL_BSP_WD_CONTROLLER=>CO_TYPE_COMPONENT
               iv_target_node_name = 'BTSTATUS'  " component controller context node
               iv_node_2_bind = BTStatus ).
    its not working since this context node in component controller is not the standard one but the custom added one.
    Am i missing something, or is there any way to bind customer context node in custom controller to customer context node in component controller.
    regards,
    pradeep

    Hi pradeep,
        Try the other way round go to the context class in the component controller and paste the following code in the
    create_contextnode( context node = name of the node to be linked).
    *owner->do_context_node_binding(
            iv_controller_type = cl_bsp_wd_controller=>co_type_custom   <-----linking from component to custom
            iv_target_node_name = 'BUILHEADER' "target node: component controller node
            iv_node_2_bind = BUILHEADER ). "source node: current node.
    See if this works.
    Thanks

  • Raw Material Cost Estimate - No split between cost component

    Dears,
    I need to execute a material cost estimate considering the Purchasing Info Record (PIR) where 3 different conditions are present:
    1) PB00
    2) FRB1
    3) RUC1
    The scope is:
    - linking PB00 to cost component 1
    - linking FRB1 to cost component 2
    - linking RUC1 to cost component 3
    Cost components are already created.
    I did following steps:
    - creation PIR with these 3 conditions (transaction ME11)
    PB00  10,00 EUR @ 1 KG
    FRB1   2,00 EUR @ 1 KG
    RUC1   3,00 EUR @ 1 KG
    - link condition types to origin groups (transaction OKYO)
    FRB1 linked to FRB1
    RUC1 linked to RUC1
    - link origin groups to cost component (transaction OKTZ)
    PB00, is linked to cost component 1 without origin group, but using only account coming from T030 table 
    FRB1 is linked to cost component 2 using origin group FRB1 and the same acocunt used for condition PB00 coming from T030 table
    RUC1 is linked to cost component 3 using origin group RUC1 and the same acocunt used for condition PB00 coming from T030 table
    At this moment, when I try to execute the cost estimate with transaction CK11N, the split is not done, and all condition types (all amounts) are linked to cost component 1. The set-up done in OKYO is not considered by the system.
    In the material master there's any origin group, if I try to fill in origin group FRB1 all condition types (all amounts) are linked to component 2, and if I try to change the origin group in the material master from FRB1 to RUC1, all condition types (all amounts) are linked to component 3 --> this means that the set-up done OKTZ is correctly considered by the system to link the origin group to the cost components.
    The problem is that the system reads the origin group from the material master, instead of transaction OKYO.
    How can I solve this problem?
    Thanks and Regards,
    Jody

    Pl verify following two things -
    Check valuation variant.
    Strategy sequence should have 'L - Price from purchasing info-record' and Sub-strategy should be 'A Quotation price via condition table' or 'B PO price via condition table'.
    OKYO setting should have valuation variant associated with your costing variant, along with other details (dont leave that field blank).
    Let us know if that works.
    Regards,
    Subodh

  • Error in RWB - Component Monitoring - Adapter Engine

    Hi,
    After we install an Additional Application Server Instance, we are facing an issue with the Runtime Workbench, specifically with the Adapter Engine status.
    On the RWB we're have this error:
    Ping Status: Unable to establish connection to
    "http://<Additional AS Host>:<Central Instance JAVA Port>/AdapterFramework/rtc"
    All the time it's pointing to the Additional AS with the Primary AS Java Port.
    We are using a central SLD in PIP system.
    We already reviewed, the point 8.12 of the "SAP NetWeaver PI 7.1 Including SAP EHP 1 - Troubleshooting Guide"
    Any idea to solve this?
    Regards,
    GCC PI

    Hi GCC,
    Please change in the http://<host>:<j2ee_port>/exchangeProfile this settings:
    Exchange Profile
    Connections:
    - com.sap.aii.connect.directory.name
    - com.sap.aii.connect.landscape.name
    - com.sap.aii.connect.repository.name
    RuntimeWorkbench:
    - com.sap.aii.rwb.server.centralmonitoring.r3.ashost
    Please change the value in the:
    Config Tool -> cluster-data -> Global Server -> Configuration ->
    Services -> com.sap.aii.af.cpa.svc ->
       SLD.selfregistration.hostName
       SLD.selfregistration.httpPort
       SLD.selfregistration.httspPort
    Also see notes: #1113161 - Links in Component Monitoring not working
    and #764176 - Error in XI due to inconsistent SLD contents
    After that, please restart the j2ee engine.
    Regards,
    Luis Diego

  • PropertyNotFoundException on a custom component

    Hello,
    I'm experiencing some issue while using a custom component in a FXML file. I try to instanciate my comp and tu set a text with the command :
    <fx:include source="MyComponent.fxml" text="myText" />
    I have linked my component to a controller using fx:controller="myPackage.MyComponent" and in this MyComponent.java I wrote a setter :
    +public void setText(String text){ ... }+
    Yet, during the execution, I always get a PropertyNotFoundException : Property "text" does not exist or is read-only.
    I guess I forgot a little something but I don't managed to find what. Could somebody help me with this issue please ?
    Léo

    The "text" property in this example applies to the root element of the included file, not its controller:
    <fx:include source="MyComponent.fxml" text="myText" />So, in order to process this markup, you'll need to make sure that the class represented by the root element defines a setText() method.

Maybe you are looking for

  • Urgent: JAAS Login Module Deployment Problem

    Hi, I have developed a JAAS Login module for the portal (EP6 SP9 sneak preview) and i am getting the following error: GroupAssignmentLoginModuleLibrary does not exist in LoadContextWrapper.modifyName. com.sap.engine.services.security.exceptions.BaseS

  • Javascript validation on a textbox, help please!

    I can do it for letters only, need it to be able to allow '-' (dashes) and spaces too function checkname() var theirname = document.form1.dname.value; var numchars = theirname.length; for (i = 0; i< numchars; i++) if (theirname.charAt(i) < 'a'|| thei

  • How to retrieve the all user name from system domain(including login user)?

    Hi, I am trying to get the system domain all users name. But I unable to get the all user name except domain login user name. I used the below code. What I want to do to get the all user name from system domain. Kindly any one help me. Properties env

  • Import from scanner is disabled

    i have hp laserjet pro m1213nf mfp model. i am using macbook pro and my operating system version is 10.8.5 i have gone to the hp website and installed the driver for mac 10.8. it is printing well. BUT>>>>>> method 1: scan from apple preview when i us

  • How to sync iBooks from my Mac to my iPhone?

    Hi Everybody, I'm expecting that when i add a book or pdf file to the iBooks application in my mac, it shall appear automatically in my iPhone. Am I expecting something correct? Or do I must insert it to iBooks then sync from iTunes? Thanks for your