Queries on an interface

I was hoping I could query on an interface that has multiple classes
implementing it.
I have an interface named net.sundog.listserv.Subscriber
and two concrete JDO enhanced classes: net.sundog.customer.Employee and
net.sundog.customer.Customer.
When I run the query:
Query query = pm.newQuery(Subscriber.class);
SortedSet set;
try {
set = new TreeSet((Collection) query.execute());
} finally {
query.closeAll();
I get the following error:
Multiple concrete implementations of the abstract class
"net.sundog.listserv.Subscriber" are registered: "[class
net.sundog.customer.Employee, class net.sundog.customer.Customer]". Only a
single concrete inheritance hierarchy can be used for an abstract class or
interface.
I understand that to mean I can only have one JDO enhanced class that
implements the "Subscriber" inteface. I tried adding a class-column to both
the Customer and the Employee JDO metadata, but that didn't help any.
Is this actually a limitation of Kodo, or is there something I can do to get
around it, and if it is a limitation is there any plans on removing it
(hopefully in 2.5)?
Nathan

Great, thanks. When you query on an interface, can you use JDOQL to limit
what objects you get back, since the interfaces don't have attributes
defined?
"Abe White" <[email protected]> wrote in message
news:[email protected]..
Yes, 2.5 includes the ability to query on interfaces. It transparently
performs the query on all implementors of the interface and merges the
results. You can pick up a beta right now:
http://solarmetric.com/Software/beta/2.5.0

Similar Messages

  • Named Query in Interface

    HI,
    I’ve a named query in a class descriptor set in workbench and if I call the method
    Object executeQuery(java.lang.String queryName, java.lang.Class domainClass, java.util.Vector argumentValues)
    Works fine. My domain class implements an interface and I don’t want to expose the domain class to my caller. For this to work is there a way to associate the named query to the interface so that the interface can be passed in the above method instead of concrete class?
    If not how can I set the query in Toplink so that I can use the following method
    executeQuery(java.lang.String queryName, java.lang.Object arg1)
    In the current setup when I try to use the above method I’m getting following exception
    Exception [TOPLINK-6026] (OracleAS TopLink - 10g (9.0.4.3) (Build 040412)): oracle.toplink.exceptions.QueryException
    Exception Description: Query named [retrieveBases] is not defined. Domain class: []
         at oracle.toplink.exceptions.QueryException.queryNotDefined(QueryException.java:587)
         at oracle.toplink.exceptions.QueryException.queryNotDefined(QueryException.java:580)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1020)
    Thanks
    -Mani

    If you associate the interface with the class' descriptor you should be able to execute queries against the interface and have it execute against the correct class.
    In the MW, in your descriptor use the advanced property "Interface Alias" and set the class' interface.
    Through the code API, you would use the interface policy,
    descriptor.getInterfacePolicy().addParentInterface(MyInterface.class);

  • Interface for Volume intensity

    I am a developer writing a video capture and audio capture device. The devices already work in other encoders. The devices are written in directshow. I am integrating with FMLE and encountered this problem.
    The audio device doesnt have a usable volume bar in FMLE. The FMLE error is "The selected audio device "censored (company secret)" doesn't allow setting volume intensity. Disabling the volume slider control."
    my audio device implements these interfaces along with the standard directshow filter interfaces
    IBasicAudio
    IAMAudioInputMixer
    I put tracepoints in my query interface and found FMLE query's for (my comments in comment string)
    {IID_IUnknown}
    {IID_IPersistPropertyBag}
    {IID_IBaseFilter}
    {IID_IAMOpenProgress}
    {IID_IAMDeviceRemoval}
    {IID_IMediaFilter}
    {IID_IAMBufferNegotiation}
    {IID_IAMStreamConfig}
    {IID_IPin}
    {IID_IReferenceClock}
    {IID_IMediaSeeking}
    {IID_IMediaPosition}
    {IID_IVideoWindow}   // WTF ?? query video window ?
    {IID_IBasicAudio}
    {2DD74950-A890-11D1-ABE8-00A0C905F375} // i think this is async stream,
    What am i missing ? FMLE doesnt use IAMAudioInputMixer ?
    Anyone know the exact interface which FMLE uses for Volume intensity ? . .I assumed it was IBasicAudio, but it doesnt seem to call any methods in there.
    (last point to add, my capture device works fine, just annoying that the volume bar is disabled even though my capture device does indeed support IBasicAudio and IAMAudioInputMixer)

    FMLE does not query for CLSID_AudioInputMixerProperties interface.
    FMLE enumerates all the pin of audio source filter(using EnumPins) and then it extracts each pin info using QueryPinInfo Function.
    FMLE searches for the audio filter Pin whose direction is PINDIR_INPUT(using QueryPinInfo) and then it queries for IAMAudioInputMixer interface to set the volume level.
    Could you pls chk if the following functions are properly implemented
    -->get_enable: it should set its parameter value to true.
    -->put_MixLevel
    -->QueryPinInfo:

  • Cisco 877W acting a a DNS server. Does it answer external DNS queries coming from the WAN

    Hello,
    I have a Cisco 877W running on my ADSL2+ service at home.
    It is setup to act as a DNS server to answer DNS queries for my LAN and has the below commands as part of its configuration
    ip dns server
    ip dhcp pool LAN
       network 192.168.2.0 255.255.255.0
       default-router 192.168.2.254
       dns-server 8.8.8.8
    My question is, when I scan my WAN IP for open ports, port 53 (DNS) is open. Does this mean my router will be acting as a DNS server for anyone on the internet who directs DNS queries to my WAN IP?
    If so, am I able to turn off port 53 towards the Internet, or do I need to add an an access-list to only accept queries from my internal network.
    Thanks for your feedback.

    That's correct. The "ip dns server" command will answer queries on any interface.
    Given that your DHCP server is telling your clients to use Google DNS and not your router, I would just turn the router's DNS server off with the "no ip dns server" command.
    Setting up an ACL (and/or inspection or zone-based firewalling) on your Internet-facing interface is the best practice to protect your network in general, not just to prevent external DNS queries.

  • Problem with spatial query

    Sorry if this is not the right place but I am a GIS student facing trouble with my thesis' programming. I have completed the Ajax user interface with google API. My trouble is in running queries on Spatial Oracle 11g.
    I am using the Oracle SQL Developer together with the georaptor plugin
    (http://georaptor.sourceforge.net/install.xml) just to have some visualisation while evaluating the queries (without the need to execute the bulkier user web interface).
    I will transcode the queries in the interface later on.
    A simple table I have has the following DDL:
    =====================================================
    CREATE TABLE "HR"."RE_POINTS_SDO"
    (     "ID" NUMBER(38,0),
         "NAME" VARCHAR2(20 BYTE),
         "LAT" NUMBER,
         "LNG" NUMBER,
         "DATA" VARCHAR2(40 BYTE),
         "SHAPE" "MDSYS"."SDO_GEOMETRY"
    ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "USERS" ;
    CREATE INDEX "HR"."RE_POINTS_SDO_GI" ON "HR"."RE_POINTS_SDO" ("SHAPE")
    INDEXTYPE IS "MDSYS"."SPATIAL_INDEX" ;
    CREATE UNIQUE INDEX "HR"."SYS_IL0000072032C00012$$" ON "HR"."RE_POINTS_SDO" (
    PCTFREE 10 INITRANS 2 MAXTRANS 255
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "USERS"
    PARALLEL (DEGREE 0 INSTANCES 0) ;
    CREATE UNIQUE INDEX "HR"."SYS_IL0000072032C00013$$" ON "HR"."RE_POINTS_SDO" (
    PCTFREE 10 INITRANS 2 MAXTRANS 255
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "USERS"
    PARALLEL (DEGREE 0 INSTANCES 0) ;
    =====================================================
    I am having a rather strange problem (sorry but error messages were in greek
    and I tried to translate them in english):
    =====================================================
    Error starting at line 1 in command:
    SELECT ID,NAME,LAT,LNG,DATA
    FROM RE_POINTS_SDO
    WHERE SDO_NN(shape,MDSYS.SDO_GEOMETRY(2001,null,MDSYS.SDO_POINT_TYPE(0,0,null),null,null))='TRUE'
    AND ROWNUM <=2
    Error report:
    SQL Error: ORA-29903: error while evaluating routine ODCIIndexFetch()
    ORA-13234: failure to access index table of the R-tree []
    ORA-13234: failure to access index table of the R-tree [MDRT Table]
    ORA-29400: error of data add-on (cartridge)
    ORA-01410: unacceptable ROWID
    29903. 00000 - "error in executing ODCIIndexFetch() routine"
    *Cause:    The execution of ODCIIndexFetch routine caused an error.
    *Action:   Examine the error messages produced by the indextype code and
    take appropriate action.
    ===============================
    I dropped the Rtree index and created from scratch (the table had the rows):
    ===============================
    drop index RE_POINTS_SDO_GI force;
    CREATE INDEX succeeded;
    ===============================
    But no change???? I am receiving the same errors:
    ===============================
    Error starting at line 1 in command:
    SELECT ID,NAME,LAT,LNG,DATA
    FROM RE_POINTS_SDO
    WHERE SDO_NN(shape,MDSYS.SDO_GEOMETRY(2001,null,MDSYS.SDO_POINT_TYPE(0,0,null),null,null))='TRUE'
    AND ROWNUM <=2
    Error report:
    SQL Error: ORA-29903: error while evaluating routine ODCIIndexFetch()
    ORA-13234: failure to access index table of the R-tree []
    ORA-13234: failure to access index table of the R-tree [MDRT Table]
    ORA-29400: error of data add-on (cartridge)
    ORA-01410: unacceptable ROWID
    29903. 00000 - "error in executing ODCIIndexFetch() routine"
    *Cause:    The execution of ODCIIndexFetch routine caused an error.
    *Action:   Examine the error messages produced by the indextype code and
    take appropriate action.
    ===============================
    Please help me (I really do not know where to look at).
    Regards from sunny springtime Athens, Greece
    Mike

    Here's some other things you can try..
    I create my indexes differently for more control.
    First put an entry in the user_sdo_geom_metadata table as the HR users.
    INSERT INTO USER_SDO_GEOM_METADATA
    VALUES
    'RE_POINTS_SDO',
    'SHAPE',
    MDSYS.SDO_DIM_ARRAY( MDSYS.SDO_DIM_ELEMENT('X', -180, 180, 0.0005 ),
    MDSYS.SDO_DIM_ELEMENT('Y', -90.0, 90.0, 0.0005 ) ),
    NULL
    Next create the index.
    DROP INDEX hr.re_points_sdo_gi FORCE;
    CREATE INDEX hr.re_points_sdo_gi
    ON hr.re_points_sdo (shape)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX
    PARAMETERS ('sdo_rtr_pctfree=0 LAYER_GTYPE=COLLECTION TABLESPACE=ts_name');
    The COLLECTION type is for shapes, POINT would be for coordinates.
    Next analyze the table
    exec DBMS_STATS.GATHER_TABLE_STATS(OWNNAME => 'HR', TABNAME => 'RE_POINTS_SDO', CASCADE => TRUE);
    The query is asking to find the nearest object to the 0/0 coordinates. SDO_NN doesn't doesn't return the objects in closest order so you need to get the distance and then sort by distance.
    Change the query to this, it will return the 5 closest objects.
    SELECT ID,NAME,LAT,LNG,DATA,sdo_nn_distance(1) dist_in_miles
    FROM RE_POINTS_SDO
    WHERE SDO_NN(shape,MDSYS.SDO_GEOMETRY(2001,null,MDSYS.SDO_POINT_TYPE(0,0,null),null,null),'sdo_num_res=5 unit=mile',1)='TRUE'
    ORDER BY dist_in_miles;

  • WCL Tracking Scenario (Search List) not updated after config change

    Dear Users,
    Initially I assigned 3 User profiles and Web Interface Transaction to my user ID under the transaction : Event Management -> Event Messages, Status Queries and Web Interface -> Web Interface -> Assign User profile and Web Interface transactions to Users
    When I login to WCL using my user ID, I was able to see these three tracking scenarios in my Search page drop down.
    Now I go back to config and add new user profiles and web interface transactions to the same user id.
    But when I login to WCL, the search page still remains the same( the three old tracking scenarios are there, new ones not reflected) !!!
    Can this be any setting in the internet explorer which is not allowing to refresh? I have tried deleting cookies etc. But no change!!
    Please HELP with your expert advise.
    Thanks in advance.
    Regards,
    Rimjhim

    Can you share the solution.

  • Routing problem with Web Proxy Server SP5 on AIX

    I downloaded Sun Java System Web Proxy Server 3.6 Service Pack 5 and loaded it onto an AIX v4.3.3 server. Everything is configured correctly, and the server and admin functions start clean.
    This server has two interfaces. One is an INSIDE interface that points toward our network. The other is an OUTSIDE interface pointed toward the Internet. When a user uses the proxy server, he queries the INSIDE interface at port 8080. At that point, the proxy server should contact the destination web address using the OUTSIDE interface on port 80. However,
    a firewall log shows that the request that should be coming from the OUTSIDE is really originating from the INSIDE.
    My routing table looks OK, but I wanted to prove it. So on the proxy server, at command line, I ran a ping and traceroute to www.sun.com. The firewall log showed that the attempts were correctly coming from the OUTSIDE interface. Yet, at my PC, I try to go to the www.sun.com from a browser, and the log shows that it is coming from the INSIDE.
    Does anyone know why the port 80 relays are going out the wrong way?
    Thanks to all in advance.
    Bill

    This also happens on Solaris. Suspect they are performing raw IP connections - and not paying particular attention to the server routing tables.

  • Private IP resolution in Internet

    Folks,
    Quick question about some DNS issue which I've got recently.
    I've internal DC/DNS based on windows server 2012. For some cases I need to resolve internal hosts to internal IPs thru Internet. I've created translation for TCP/UDP 53 port, which is forward all inbound dns queries from external interface to my local
    server. When I  resolve some A-records with public IP it works, but if IP from private scope - doesn't work. as example:
    somehost1.domain.local    1.2.3.4 - works
    somehost2.domain.local    192.168.0.123  - doesn't work.
    Any thoughts? Anyway, thanx for any suggestions.
    MCTS|MCSA|MCITP

    Thanks, Eve.
    I used nslookup with debug mode. Nslookup just give me next:
    > somehost1.domain.local
    Server:  UnKnown
    Address:  DNS.exter.nal.IP.
    *** UnKnown can't find somehost1.domain.local: Non-existent domain
    but when I trying to resolve somehost2 (which has external IP) I receive:
    > somehos2.domain.local
    Server:  UnKnown
    Address:  DNS.exter.nal.IP
    Non-authoritative answer:
    Name:    somehost2.domain.local
    Addresses:  1.2.3.4
    There is no difference between somehost1 and somehost2 except IP. Same zone, same DNS server, but one has private IP, another - public IP  
    MCTS|MCSA|MCITP

  • Failover (reasons)

    I was looking for a documentation that explains the failover reasons but the only doc I found (command guide), does not explain the reasons only the states.
    http://www.cisco.com/en/US/docs/security/asa/asa82/command/reference/s3.html#wp1473355
    •No Error
    •Set by the CI config cmd
    •Failover state check
    •Failover interface become OK
    •HELLO not heard from mate
    •Other unit has different software version
    •Other unit operating mode is different
    •Other unit license is different
    •Other unit chassis configuration is different
    •Other unit card configuration is different
    •Other unit want me Active
    •Other unit want me Standby
    •Other unit reports that I am failed
    •Other unit reports that it is failed
    •Configuration mismatch
    •Detected an Active mate
    •No Active unit found
    •Configuration synchronization done
    •Recovered from communication failure
    •Other unit has different set of vlans configured
    •Unable to verify vlan configuration
    •Incomplete configuration synchronization
    •Configuration synchronization failed
    •Interface check
    •My communication failed
    •ACK not received for failover message
    •Other unit got stuck in learn state after sync
    •No power detected from peer
    •No failover cable
    •HA state progression failed
    •Detect service card failure
    •Service card in other unit has failed
    •My service card is as good as peer
    •LAN Interface become un-configured
    •Peer unit just reloaded
    •Switch from Serial Cable to LAN-Based fover
    •Unable to verify state of config sync
    •Auto-update request
    •Unknown reason

    Re "interface check" - it's pretty straightforward. The active unit queries the monitored interfaces on the standby for state (line up, protocol up) and, when a standby IP is configured, reachability.
    If it fails any of those, the standby unit is marked as not ready due to interface check failing.

  • Posting Sequence

    Hi all,
    Can any one please tell me the sequence of posting when an employee has an off cycle and a regular payroll and why.
    Thanks

    Hello Ratnakar,
    there is no mechanism that can ensure this.
    You could define in the EE Profile: Predecessor required
    But in your case this won't really help.
    Is there a special requirement why you would have them processed in sequence of event date/time?
    One option would be to buffer Event Messages and process them later via batch report.
    See transaction /SAPTRX/TSC0MBF and SPRO
    Event Management
    Event Messages, Status Queries, and Web Interface
       Define Criteria for Event Message Processing
    You could try if sequence is ensured there or create your own batch report.
    Best regards,
    Steffen

  • MDNS and 7.4 directory Services

    So we have downloaded 7.4 to see what it could offer for bonjour services.  We are currently using local mode with centralized controllers, not flexconnect.  So it looks like you can filter mDNS via profile by interface or ssid.  So if we are using a global ssid with the same interface then how does the 7.4 mDNS help us filter bonjour services.  I was hoping you could apply by AP group. 
    If the bonjour device is on the wired network how does the centralized controller know about the devices, do all bonjour service devices have to be on the wireless network.  It looks like the controller queries for the bonjour services.  I am guessing it queries only the interfaces it knows about.  I know it just came out but I dont see much documenation on it.

    Hi,
    you can use mDNS profiles on an AP group level if you do a little trick: simply create two (or more) different WLAN profiles, all of them with the same SSID name, but one with mDNS snooping enabled and one with mDNS disabled (or more WLAN profiles with several mDNS profiles). Note: you need to assign WLAN IDs > 16 to these profiles for not having all of them in the default AP group. Then you can assign these WLAN profiles to the AP groups - that gives you the same SSID but a different mDNS behaviour.
    Regarding your second question: wired devices offering services via Bonjour are supported, but the WLC needs to have a dynamic interface in each VLAN you expect a wired Bonjour device.
    Hope that helps,
    Stefan

  • 'Assign at least one Web transaction to user'

    Dear Experts;
    I take this message 'Assign at least one Web transaction to user' in OER system.Does it fall out because of the customizing ıf so; what should I do?
    Thanks a lot;

    I am not sure if this will work for you, but have you tried out the following step:
    You must perform this step to ensure that fields for the web user interface are configured correctly
    spro --> Event Messages, Status Queries and Web Interface --> Web Interface --> Configure Fields for User Profiles
    and Save
    Do not do any additional settings in here however this is needed to ensure that the WCL (Web Communication Layer) parameter dictionary is updated with the parameter fields
    Once the above is done:
    In the same spro sub menu choose
    Assign User Profiles and Web Interface Transactions to users:
    Use the input help to assign the transactions and profiles to a user, depending on the process that you want the user to perform.
    Eg.
    Process: Delivery Tracking
    Web Interface transaction: PTA10_DELIV
    User Profile: PTA10_DELIV
    Order Web : 1,2,3etc
    I think this should solve your problem

  • Understanding output of : ucsm-B(nxos)# sh int br

    Hi All ,
    Could you please help me understand the output of the following command :
    ucsm-B(nxos)# sh int br
    I have a few queries on the interfaces number eth1/1/1 to eth 1/1/8 :
    What governs the naming convetion used for the ethernet ports starting eth1/1/1 to eth1/1/9 ?
    If I connect another chassis to the FI , will it start by eth2/1/1 ?
    I would like to understand how Eth1/x/x or Eth2/x/x is decided by the UCS for naming ..
    --------------- truncated -----------------------------------------------------------------------------------------------------
    Interface  Vsan   Admin  Admin   Status          SFP    Oper  Oper   Port
                      Mode   Trunk                          Mode  Speed  Channel
                             Mode                                 (Gbps)
    vfc684     102    F      on      trunking         --     TF      auto --
    vfc688     102    F      on      trunking         --     TF      auto --
    Ethernet      VLAN   Type Mode   Status  Reason                   Speed     Port
    Interface                                                                   Ch #
    Eth1/1/1      1      eth  vntag  up      none                        10G(D) --
    Eth1/1/2      1      eth  vntag  up      none                        10G(D) --
    Eth1/1/3      1      eth  vntag  up      none                        10G(D) --
    Eth1/1/4      1      eth  access down    Administratively down       10G(D) --
    Eth1/1/5      1      eth  access down    Administratively down       10G(D) --
    Eth1/1/6      1      eth  access down    Administratively down       10G(D) --
    Eth1/1/7      1      eth  access down    Administratively down       10G(D) --
    Eth1/1/8      1      eth  access down    Administratively down       10G(D) --
    Eth1/1/9      4044   eth  trunk  up      none                        10G(D) --

    Hello Vikas,
    These are host interfaces ( HIF ) / backplane ports on the FEX / IOM connecting to the blades.
    Eth//
    " show fex detail " would provide additional information about FEX ports.
    The ninth interface provides CIMC connectivity to the blades,
    HTH
    Padma

  • Queries on Business Process Monitoring (BPM) & Interface Monitoring

    Dear all,
    I have got a few queries on the subject and would greatly appreciate any valuable inputs.
    Before I proceed, want to clarify that I have downloaded all overtly available  documents (PDFs, SIMs) from the following URLs:
    http://service.sap.com/rkt-solman
    http://service.sap.com/solutionmanager  Media Library
    http://service.sap.com/bpm Media Library
    I may not have read them all though since I come from a Functional angle.
    Kindly reply to whatever query you can please. Not all of them are sequential.
    Queries:
    (1) How are Interfaces with External Systems (beyond the firewall of the enterprise) monitored ?
    (2) Is it really worth listing all such External Systems as Logical Components in their own right ? I guess this makes sense if at a Process Step level, one wants to list a 'specific' Logical Component involved instead of 'generic' term like External System. However, it would benefit only if Interface Monitoring is feasible; isn't it ?
    (3) There are Interfaces which are built between SAP and External System and serve various Business Processes under various Business Scenarios. In such circumstances,  it is not easy to list which Process 'owns' the Interface. Therefore, under a normal Implementation Project structure (SOLAR02), choosing a particular Process Step, getting into 'Development' Tab and listing the Interface Program name may not be feasible, since there is no particular place where it belongs.
    Is it therefore a good idea to create namesake Scenario for capturing all interfaces and list a library of all interfaces and store documents right there ? If so, will these namesake processes be of any use in BPM at a later date ?
    (4) If my primary objective is to accomplish Interface Monitoring and not Business Process Monitoring per se, is it a good idea to create a new Solution Landscape, and manually create Business Processes that are suited to list Interfaces than to assign Template or Implementation Project to the Solution Landscape, and inherit those Processes ?
    (5) What is it that a SAP Competence (Support) Centre will find as a 'major' gain in activating BPM to monitor Interfaces alone - is there something that SolMan's BPM based Interface Monitoring gives more than what PI level reporting may provide them with ?
    (6) In Interfaces with Non-SAP Systems (some of them are old/ proprietary legacy systems with Credit Card companies; some of them are like 'Active Directory' servers), is it possible to define Metrics for BPM that such systems will contribute to SolMan, for reporting purposes ? Or, is it too much to hope for
    Thanks again, for your patience and advance thanks for your kind responses.
    Srini
    Bes

    Hi,
    Welcome to BPM
    You have asked too many questions in a single Post, Please read rules of engagement before posting
    You can monitor the following without any trouble.
    &#9679;      ALE/EDI
    &#9679;      qRFC
    1) Its obvious, if your firewall blocks all your request to external enterprise, it is not possible to monitor.
    3) These interfaces are not the one related to development tab in SOLAR02, you have to map them from BPM.
    4) Yes, you don't have to depend on any project for your processes, you can add it in your Solution Landscape.
    5) Post a Separate Thread!!!
    6) Post a Separate Thread!!!
    Hope this gives a better idea.
    Feel free to revert back.
    --Ragu

  • Interfaces for storing DB queries

    Is it a good idea to create an interface to store all the queries used in a JSP powered site? If not, what is a good place to store the queries, so in the event that for example, a table name is changed, the query doesnt need to be updated in multiple files. Thanks.

    Thats not too bad of an idea. I dont know alot about JavaBeans but thats probably just about the same thing. Thanks for the help, I'll look into that.

Maybe you are looking for

  • Is it not possible to print Flash embedded in PDF as you see it on screen?

    Hi, I have this problem to which I cannot find a solution. I posted my question to another mailing list but I didn't get a reaction. It is about printing a PDF which contains Flash movies. Actually zooming is an issue too, but printing is more import

  • Two-sided printing with Epson Workforce 630

    I bought a new iMac a few months ago and got the Epson WorkForce 630 printer at the same time. However, I can't figure out how to do duplex (two-sided) printing. I've searched around, and it looks like this feature may not be supported for the Mac. N

  • Apps don't download to iPad 2

    I have the latest iOS. Latest iTunes. I tried to download some new apps, just word games. They start to download, but get stuck on installing.  also, I had many updates which did not install on the iPad 2. They all do install when I connect the iPad

  • Problem with ping

    I am using isReachable method of InetAddress class for checking if the host is alive or not. This method returns false. But if i invoke ping using Runtime class I get response from that host ....also if i try to do ping from command line even then I

  • Web Reports should open in new Internet Explorer Window

    Hello Gurus, When I execute my bw reports in web, it utilizes the existing IE (internet explorer) window. Is there I can control and specify a new window.. thanks in advance