Lookup Options in SOA11g.

Hi ,
I have a requirement to create a lookup like below , and access the same in SOA 11g BPEL / Mediator process.
This Should be dynamic in nature, so that business users can modify / add the lookup values at runtime.
Level------AppName
1---------A
2---------B
3---------C
1---------D
1---------E
2---------F
From My SOA BPEL Process I have to search for the AppNames for a particular level. For eg : All AppNames for the Level 1 should return me all APpNames at level 1 ie., A,D,E. Please note that Level can have duplicate values as shown above.( ie., level 1 occurs more than once ).
Solution I initially thought :
Using DVMS for Lookup.
In SOA process dvm:lookup1M() to accces the same.
However I am not able to do that as in run time when I look up for App Names for Level "1" , it throws me an error like
"ensure the source value is unique for a given source column.'."
If this is not possible then the only way to do this using DVMS is to setup something like the below ( instead like above dvm)
Level-------AppName
1-----------A,D,E
2-----------B,F
3 ----------C
and now I will have to parse the string A,D,E inside my code to access them individually which is a least preferred way to us.
Dont we have any other options in SOA for doing the same ?
Kindly help !
Thanks,
Sridhar.
Edited by: Sridhar-SOA on Jun 2, 2012 11:33 AM
Edited by: Sridhar-SOA on Jun 2, 2012 11:36 AM

Both options shouldn't be used for fast data acqusition:
Option Force Interrupt Mode: Analog Input doesn't use DMA in this mode. Depending on sample rate, this can help to avoid building blocks of data. Even when block size is set to one, the data can arrive in DASYLab in blocks (e.g. 8 blocks at the same time, then a pause for duration of 8 blocks, then another 8 blocks). This is a disadvantage for applications like PID control. Switching the mode to Interrupt Mode can help to avoid building such blocks, depending on measurement hardware and sampling rate. The option shouldn't be used for fast acquisition as the data throughput is much better in DMA mode.
Option Slow Interchannel Scanning: In default setting, on every sample point the hardware is sampling all channels as fast as possible (e.g. 1 µs between two channels on 1 MHz card), so they are sampled nearly at the same time. When this option is on, the hardware uses almost the complete time (98%) between two sample points to scan the channels (e.g. with 4 channels at 1 kHz it is nearly 250 µs between two channel scans). This can slightly increase the accuracy of the measurement when slow acqusition is used.

Similar Messages

  • Address Lookup option has disappeared

    hi all,
    my company recently moved to google mail and i am using a BB with curve 9300. all seems to be working fine except for 2 things.
    firstly when i go to compose an email on my BB and look for a company name in the address book i no long have the address lookup function. i am sure it was there when i first set up my BB with our company gmail domain.
    secondly 2 way sync seems to be working fine except for when i delete a message on the BB i get the option to delete on handheld and on mailbox and select that. except it never does. i have recived the message over and over from the server. i have changed the settings so on conflicts handheld wins and still the message wont delete on the server. the sync works fine for sent items on BB calender and for read items. just wont delete.
    any help would be much appreciated. have been trawling the internet for help but not found anything yet.
    thanks in advance
    g

    Hi gjrc,
    The address lookup feature is only available when using a BlackBerry Enterprise Server. If your company has switched to GMail for their mail service, they would not be using BlackBerry Enterprise Server anymore.
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Database lookup option in SOA 11g

    Hi,
    We need to call a database table ( look up table) for getting some information based on some search criteria , with in a SOA 11g BPEL component.
    We are considering the following options , but at the same time see some cons too.
    1.DB Adapter - select operation
    Cons : Not SOAP but making a DB call every time is costlier option. Looking for some caching support.
    2. Create an ADF-BC / SDO service on top of table and access it using ADF-BC service in SOA. Now access this using Entity variables in SOA.
    This would not create SOAP bindings at the same time we have EO Cache support which would further help increase in performance.
    Do you see any flaw in this understanding ?
    In Approach 2 above , I see an issue. Would EO caching retain for more than one instance ? As far as I know in ADF BC - EO cache works for each user session. So does that mean that EO cache is refreshed for another instance of SOA ?
    Any other ways to do caching apart from ADF BC ?
    Regards,
    Sridhar.

    If you are using DB Adapter, you have to define your web service, with assoicated schema file, in runtime the server will spent time to make sure your message is pertaining to the schema and the service is exposed as web service, in times you will configure the JCA adapter service with performance configurations.
    You need to do the above along with database performance tuning, when you use DBAdapter.
    But if you use the XSLT database functions it will be using only the database performance tuning only.
    Thanks,
    Vijay

  • Directory Lookup Using Callmanager 5.1 (Linux)

    Can anyone point to me to information on how to query the informix database (specifically the directory portion) for use in an application? We are hoping to present our users with a directory lookup option off of our portal...
    I rate any helpful replies.
    R.

    Thanks Sascha - I was looking at AXL SOAP for this level of access; however, it seems complex to write an application in C++ or Java just to query a database. Is there no SQL access or LDAP connections available? This is for a web app that does nothing more than is available when a user selects the Corporate Directory lookup from their phone... Please tell me a simpler solution is available.
    R.

  • Add option to an OAMessageChoiceBean

    Hi gurus,
    how can I add an hardcoded option to an OAMessageChoiceBean? Because the choice that I'm using contains a list of products to configure on my app, therefore I need to add a hardcoded option that has in his setListDisplayAttribute "ALL" and also in his setListValueAttribute "all", to capture the value on the onchange event, but I don't know how can I add this menthioned option :(
    I'd try to add this option directly on the OAViewObject, using first, next, createrow and insertrow but I failed, like the above code:
    ActAMImpl am = (ActAMImpl )pageContext.getApplicationModule(webBean);
    OAViewObject vo = (OAViewObject)am.findViewObject("ActPopListVO1");
    if(vo.getRowCount() > vo.getFetchedRowCount()){
    vo.setRangeSize(vo.getRowCount());
    }else{
    vo.setRangeSize(vo.getFetchedRowCount());
    ActPopListVORowImpl r = (ActPopListVORowImpl)vo.first();
    ActPopListVORowImpl r1 = (ActPopListVORowImpl)vo.last();
    vo.setCurrentRow(r1);
    vo.next();
    ActPopListVORowImpl r2 = (ActPopListVORowImpl)vo.createRow();
    r2.setActKey("all"); <--- String
    r2.setDescription("ALL"); <---- String
    r2.setIdCatalog(r.getIdCatalog());
    r2.setSelected(r.getSelected());
    vo.insertRow(r2);
    I hope you can help, because this requirement most be done ASAP :(
    Best Regards,
    Mentor

    Mentor
    The best way to handle such requirements is to create a new Lookup in your application and then make your VO query based on these lookups.So that if in future you need to add or disable some of values you can do so without touching the page and its components.
    But if you donot want to go for Lookup option then you can simply write a dummy query as mentioned by gaurav and add that to your VO.
    Let us know if you have any confusions with the approach mentioned by me!!
    Thanks
    AJ

  • OWB Lookup

    Hi
    I am relatively new to OWB . so if my question is very basic ,please bear with me. I would like to know what is the difference between lookup option and join we have in the mapping editor. Can anybody share the knowledge with some example.
    I appreciate your help on this regard
    Regards
    Balaji

    The key lookup is similar to the join, but it has two important differences:
    - it results in an outer join, not equi-join. If the output record for an input record is not found, a null record will be generated anyway.
    - You can (from the GUI) set the output value in this case (null record) by setting a property named 'Default value'.
    This is useful, for example, when you define a mapping that loads a cube and when you define surrogate keys on the dimension. In this example, you create a Key Lookup operator that looks up the surrogate key in the dimension table and returns the corresponding original record to form the foreign key relationship. You can also define the Default Value in this scenario to point to a key referring an 'Unknown' or 'Others' record in the dimension. So for example, if during the loading process you encounter an unknown product in the sources, you can still generate a record for the fact table (cube) that will point to the 'Unknown' record in the products table.
    Regards:
    Igor

  • Refining email id lookup

    We want to segregate the users id according to groups. For example, group1 with users A, B
    and C and group2 with users D, E and F.
    When we use OCS email to send email out, we would click on the
    torchlight for a lookup. Currently the lookup options are Address Book, Address
    List and Corporate Directory. We wanted to add in another option in the drop
    down list, group1 and group2 so that if we choose group1 from the drop down
    list and key in * in the search field, all users from group1 would be display.
    Can this be done. Please help, thanks

    Hi Thomas
    Which field in the HR master data did you use to store the email ID?

  • Lookup not coming while writing email address

    In my Blackberry 8520, when I am typing email address in corporate email, it's not showing the loopup option. Earlier, when I used to type 2 or 3 characters, it used to show addresses from my contact list + show a lookup option. This is not coming since last some time. I had installed LinkedIn for BB, not sure whether due to that it went away or some other reason. I have uninstalled LinkedIn but it's still not showing. Can someone help in getting over this issue as email sending has become very tedious in the absence of it. 

    Hi and Welcome to the Forums!
    As a BES user, you need to go see your BES admins for support...they control, well, everything. They may want to wipe and re-activate your BB.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How do I update all the records in a table from the contents of another table?

    Ok some situation information, I have a pervasive database that runs our accounting software that I am pulling a product list from.  I have that list stored in a table in SQL.  From time to time we update the records in the pervasive database and
    I want to be able to pull those changes into the SQL table.  I don't want to drop the table and recreate it because if a product is no longer active in the pervasive database it will not be returned by the query (if I return all the products even the
    inactive ones I will get thousands of records rather than just a few hundred) and I do not want to loose the products from the table that are now inactive.  
    So what I want to be able to do is pull the list from pervasive, compare it to the list that exists in SQL and update any changed records, add any new records, and leave any now missing records alone(missing from the pervasive list but present in the SQL
    list).  I have no trouble pulling the records from pervasive (now) but I am a little stumped on how to do the rest.  I am not sure if this is a situation to use MERGE or not.  I also do not really need this to be done on a regular basis as the
    changes do not happen often enough for that, the ability to manually trigger it would be enough.
    Any help would be appreciated.
    David

    Hi David,
    lets say you want to go with the lookup transformation.
    lets say u want to move the data from server A table A1 to Server B table B1
    What you need to do is the following:
    Cofigure the Lookup options as follows:
    - In general -> Specify how to handle rows with no macthing entries -> "Redirect Rows to no Match Output"
    -  In Connection -> Set the ole db connection to the Server B and select the table B you want to lookup the values in your case the table where you want to input the changes 
    -  In columns -> link the product column from table A to product column in table B. And do not select any rows to output.
    - now your component is ready next you need to input. so when u connect your lookup to the destination component You will get an option to select which output you want to use - use "Lookup No Match Output".
    this will actually just allow you to add only new items only to the table B.
    Teddy Bejjani - BI Specialist @ Netways

  • JSF page values are getting cleared with validation errors

    Using Jdev 10.1.3.4, JSF and ADF BC
    I have 2 jspx pages - 1 input page(with bindings to VO) and a lookup page bound to a read-only VO.
    page1: I am entering values to all the fields and then saving the form. Now if I had entered an invalid value for one of the fields and try to save - I am checking if value is valid in page1's managed bean and returning error message.
    After I get this error message I clear out the invalid value and use the lookup & navigate to the 2nd page fetch a valid value and when I return to my 1st page I am loosing values for some of the fields in my 1st page. Not sure how and this is my first issue! I dont see this behavior if I use the lookup option directly(instead of entering an invalid value, clearing the value after seeing the error message and then going to the lookup page)
    Next I am reentering values that I have lost and when I try to save again this time the value I had set from the lookup page is cleared and since this field is required I am getting an exception again. So, basically once there is an error for a field any new value I set gets cleared on commit and i get a required message for the field. Thanks for any clarifications/help with these strange issues.

    Fair enough :)
    Actually what I was meaning was could I use a collection to repopulate the tabular form when I receive errors. It appears as if it may work. However, I am hitting one snag.
    I have created a PL/SQL Process that runs On Submit and Before Computations/Validations. In this process, I have saving the values in the tabular form to a collection.
    I was then hoping to create another process that ran after any errors occur. However, it does not appear as if any processes run when the screen redraws after a validation issue. Is there a process that runs after validations when the screen is redrawing? Will I need to do this using javascript?
    Thanks

  • How to pass parameter to a report for Operator 'LIKE'

    I need to pass a parameter to a report for "LIKE" operator. the parameter for "equal to or is in" operator is 'eq':
    'https://secure-ausomxfts.crmondemand.com/OnDemand/user/analytics/saw.dll?Go&Path=/shared/Company_AFTA-D78SR_Shared_Folder/Work Order Asset Lookup&Options=r&Action=Navigate&P0=2&P1=eq&P2=Account.TEXT_61&P3=&p4=
    What would 'p1' value for 'LIKE' operator?
    Thanks

    Hi, Hope the below helps
    neq - Not equal to or not in
    lt - Less than
    gt - Greater than
    ge - Greater than or equal to
    le - Less than or equal to
    bwith - Begins with
    ewith - Ends with
    cany - Contains any (of the values in &P3)
    call - Contains all (of the values in &P3)
    like - Is like (Type %25 rather than the % wildcard)
    top - In the top n (&P3 contains 1+n, where n is the number of top items)
    bottom - In the bottom n (&P3 contains 1+n, where n is the number of bottom
    items)
    bet - Between (&P3 must have two values)
    null - Is null (&P3 must be 0 or omitted)
    nnul - Is not null (&P3 must be 0 or omitted)
    Venky CRMIT

  • How do I get a Windows PC to access the wifi network?

    I have a Time Capsule, I curently have a Mac Mini, a Dell Dektop, a MacBook Pro, and an iPod connected to the wifi network. I am now attempting to connect a brand new Windows 7 Toshiba Satellite and a Lenovo thinkpad. The new laptops recognize the wifi network but will not transfer any data, therefore they cannot acccess websites....
    What could possibly be the issue...?

    Ok, this validates that the PC is at least negotiating with the Time Capsule and can find the TC's DHCP server to get the proper IP addresses.
    Let's go to the last phase of the troubleshooting to find out where the communication break is between the PC and the Internet site.
    This time we are going to rely on the trusty Ping tool:
    Since you verified that the PC is getting the proper IP address information from the TC, we can skip the first three levels of Ping tests: loopback, local computer, and LAN-side of the TC.
    The next in line for the Ping test would be the Default Gateway. This would be your ISP's Gateway router. To know what to Ping you may need to go to one of your other devices that can successfully negotiate its way to the Internet. You can get the Default Gateway info from the AirPort Utilty. AirPort Utility > Select the TC > Manual Setup > Internet > TCP/IP tab The Default Gateway = Router Address
    Ok, now go back to the PC, open a Command window, and enter the following at the command prompt: ping <IP address of the Default Gateway> If the ping fails, there is either an issue with the TC or the ISP's Gateway router. If the ping passes, go on to the next step.
    Ping the IP address of the remote host. That is, instead of using the URL (like www.google.com) use the actual IP address of the website. If you don't know the site's IP address, go back to your Mac, and then, use the Network Utility's Lookup option. Enter the URL of the site, and then, click on Lookup. You should find the site's IP address in the information returned in the panel's results window. If the ping fails, the remote host may not be responding. Try another host just to be sure.
    Finally, ping the URL of the remote host. This time instead of the IP address go ahead and use the site's URL. As an example, enter the following at the command prompt: ping www.apple.com If the ping is successful, you're done and the computer can successfully negotiate all the way to the remote host. However, if the ping fails, then the issue is either there are no DNS servers configured or none could be found to translate the URL to the appropriate IP address to "find" the website.

  • Work flow approvers problem

    HI
    I have created a document library with 3 specific columns of where I pick 3 people to be approvers when uploading a document.
    I then have a approval workflow set to route the document to each approver in serial once they have added their content.
    The issue I have that as soon as I set the workflow process participants using the "workflow for lookup" option and choose my 3 fields the workflow returns immediately as rejected. 
    if I don't use these fields and select the approvers in the workflow then it works fine but the people might change so would rather choose them when uploading the document using the form.
    Here's what I have as my workflow.
    Step: Step 1
     Start Approval (22) process on Current Item with Current Item:Tech Lead
    Please can someone let me know why this doesn't work or point me in the right direction of doing this.
    Thanks

    Hi Rick,
    Let me explain the case clearly to you first.  In this workflow parellel processing is being used. Between the start and end of the block the first step is a case step then the user decision is used . In the user decision step a program exit is used and in the create of that workitem a table is updated with the details of the worlitem . The problem ocuurs here only.  In some of the workflows that are hanging (because of SWF_RUN 611), the log shows that the workflow has processed upto the case step. But the workitem table has been updated with an entry correspondingly. so when i try to read or complete or cancel the workitem it throws me a error that the workitem cannot be read. And when i use the workitem table entry in SWIA it shows no workitem exists . I am not able to figure out what has happened. So please let me know what has happened .... and i need to close those worklfows and as well as updated the table .....
    Regards,
    Kevin.

  • Verify() within HostnameVerifier is not called

    My intension is when I try to connect to URL, I have to check for whether the url is https and the certifact name maps to the issuedTo name of the certifacte. So I have written the code to check for the certificate name validation in verify method of HostnameVerifier class. But I dont think this method is called. Because am not able to see any SOPs written inside the method. But it prints out the contents of the page only if the url is https. Pls advice how can i check for certificate name. Below is my code.
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.lang.reflect.*;
    import javax.net.ssl.*;
    import javax.naming.directory.*;
    import java.security.cert.X509Certificate;
    * SOAPTester
    * AJ
    public class SOAPTester {
    //private static final String URL_TO_CONNECT = "http://localhost:8080/testapp/HelloWorld";
    private static final String URL_TO_CONNECT = "https://uat-www2.netxpro.inautix.com";
    //private static final String URL_TO_CONNECT = "http://java.sun.com";
    private static final String PROXY_HOST = "172.25.10.10";
    private static final String PROXY_PORT = "8080";
    private static final String DNS_HOST = "dns://172.19.110.217";
    private static final String INPUT_FILE = "c:/data/sample.xml";
    private static final String SOAP_ACTION = "";
    private static String username = "IN\\ajayaprakash";
    private static String password = "******";
    private static boolean enableDNSLookup = false;
    private static boolean enableHttpsProxy = false;
    private static boolean enableProxyAuth = false;
    private static URL my_new_url = null;
    public SOAPTester(String args[]) throws Exception {
    my_new_url = new URL(URL_TO_CONNECT);
    readOptions(args);
    public void execute() throws Exception {
    if(enableHttpsProxy)
    enableHttpsProxy();
    if(enableDNSLookup)
    initDNSLookup();
    connectToUrl(my_new_url);
    private void enableHttpsProxy() {
    System.setProperty("https.proxySet","true");
    System.setProperty("https.proxyHost",PROXY_HOST);
    System.setProperty("https.proxyPort",PROXY_PORT);
    System.setProperty("http.proxySet","true");
    System.setProperty("http.proxyHost",PROXY_HOST);
    System.setProperty("http.proxyPort",PROXY_PORT);
    private void initDNSLookup() throws Exception {
    String dns_host = DNS_HOST;
    InitialDirContext dnsLookup = null;
    printMessage("Initializing DNS Lookup...");
    if(dnsLookup == null) {
    try {
    Hashtable env = new Hashtable();
    env.put("java.naming.factory.initial", "com.sun.jndi.dns.DnsContextFactory");
    env.put("java.naming.provider.url", dns_host);
    dnsLookup = new InitialDirContext(env);
    } catch(Exception exp) {
    printError("Failed to init DNS lookups");
    throw exp;
    private void connectToUrl(URL mynewurl) throws Exception {
    try {
    printMessage("Connecting to "+mynewurl);
    HttpURLConnection soapConn = (HttpURLConnection) mynewurl.openConnection();
    if(soapConn instanceof HttpsURLConnection)
    ((HttpsURLConnection)soapConn).setHostnameVerifier(new MyHostNameVerifier(URL_TO_CONNECT));
    // Set request method to POST
    soapConn.setRequestMethod("POST");
    // Prepare for both input and output on POST
    soapConn.setDoOutput(true);
    soapConn.setDoInput(true);
    // Turn off caching
    soapConn.setUseCaches(false);
    // Work around a Netscape bug
    soapConn.setRequestProperty("Content-Type", "text/xml; charset=\"utf-8\"");
    soapConn.setRequestProperty("SOAPAction",SOAP_ACTION);
    //Proxy authorization needed
    if(enableProxyAuth) {
    String encoded = new String
    ((new sun.misc.BASE64Encoder()).encode(new String(username+":"+password).getBytes()));
    soapConn.setRequestProperty("Proxy-Authorization", "Basic " + encoded);
    OutputStreamWriter out = out = new OutputStreamWriter(soapConn.getOutputStream (),"UTF8");
    BufferedReader bread = new BufferedReader(new InputStreamReader(new FileInputStream(INPUT_FILE)));
    String line = "";
    while(bread.ready()) {
    line = bread.readLine() ;
    if (line == null) break;
    out.write (line,0,line.length());
    bread.close();
    out.flush ();
    out.close();
    long responseCode = soapConn.getResponseCode(); // force a wait until the response is ready
    printMessage("HTTP Response code received = "+responseCode);
    printMessage("HTTP Response received from server :\n");
    BufferedReader br = new BufferedReader(new InputStreamReader(soapConn.getInputStream()));
    line = null;
    System.out.println("===================================================================");
    while ((line = br.readLine()) != null) {
    System.out.println(line);
    System.out.println("===================================================================");
    br.close();
    soapConn.disconnect();
    } catch(Exception e) {
    printError("Unable to complete connection to URL");
    throw e;
    public static void main(String args[]) throws Exception {
    SOAPTester tester = new SOAPTester(args);
    tester.execute();
    * MyHostNameVerifier
    class MyHostNameVerifier implements HostnameVerifier {
    private String myHostName;
    public boolean verify(String urlHostname, SSLSession session)
              System.out.println("***Inside verify api***");
    try {
    java.security.cert.Certificate certs[] = session.getPeerCertificates();
    String dn = ((X509Certificate)certs[0]).getSubjectDN().getName();
                   String proHostName = "uat-www2.netxpro.inautix.com";
                   int val = dn.indexOf(proHostName);
                   System.out.println("Domain Name is>>"+dn+"<<"+val);
    return dn.indexOf(proHostName) != -1;
    } catch(Exception e) {
    printError("Error verifying the Trust URL ="+e.getStackTrace());
    return false;
    //return true;
    MyHostNameVerifier(String hostname)
              System.out.println("***Inside MyHostNameVerifier***");
    myHostName = hostname;
    private void readOptions(String opts[]) {
    if(opts.length < 1)
    return;
    for(int cnt=0;cnt<opts.length;cnt++) {
    if(opts[cnt].equals("-h")) {
    printUsage();
    break;
    if(opts[cnt].equals("-d"))
    enableDNSLookup = true;
    if(opts[cnt].equals("-p"))
    enableHttpsProxy = true;
    if(opts[cnt].equals("-a")) {
    enableProxyAuth = true;
    password = opts[cnt+1];
    private void printUsage() {
    System.out.println("\n[Usage] java SOAPTester -[h][d][p][a]\n");
    System.out.println("h = Print usage. This message");
    System.out.println("d = Enable DNS lookup (optional)");
    System.out.println("p = Enable HTTP Proxy. Change code to modify proxy URL (optional)");
    System.out.println("a <password>= Enable Proxy Authentication.Supply password. Change code to modify USERID (optional)");
    System.exit(0);
    public void printMessage(String message) {
    StringBuffer buf = new StringBuffer();
    buf.append("[INFO] [");
    buf.append((new Date()).toString());
    buf.append("] ");
    buf.append(message);
    System.out.println(buf.toString());
    public void printError(String message) {
    StringBuffer buf = new StringBuffer();
    buf.append("[ERROR] [");
    buf.append((new Date()).toString());
    buf.append("] ");
    buf.append(message);
    System.out.println(buf.toString());
    }

    Verifying the main bundle should be sufficient.
    I ran a simple test last night.
    #1 - Create Bundle with an Install Directory Action. (Install_Dir_Bundle)
    #2 - Create a Bundle which had an Install Action of "Install Bundle Action" for Install_Dir_Bundle followed by launching a program action for a file in that directory. (Chain_Bundle)
    #3 - Installed and Ran "Chain_Bundle" which created and populated the directory as well as launched the application.
    #4 - I then deleted the directory and verified "Chain_Bundle". The directory was re-created and re-populated and the application successfully launched again.
    Originally Posted by djbrightman
    Hi
    We have a bundle (several in fact!) that calls another bundle as an install action, prior to doing it's own thing.
    (We often do this for large installers, to copy the install source locally prior to running a customised install e.g. license key)
    Is there a way to force verify the called bundle?
    e.g. we think the called bundle hasn't actually done what it set out to do, but ZCM seems to think it has completed, so we want to force it to run again
    I've been looking at "zac bv <display name>" but reading around it seems to only work with files that the agent *thinks it has installed (i.e. those associated). In that case this relates to previous thread https://forums.novell.com/showthread...associated-%29
    Any ideas or experience?
    Cheers
    David

  • Material Class as COPA Characteristcs

    Dear All,
    Can anybody guide me on how to create material class characteristics as COPA characteristcis so that the same can be updated in COPA. The same are not available in the tables which are available for creation of COPA characteristics.
    Best Regards
    Manu

    Hi Santosh,
    I have already done this. In fact, I am facing problems with the derivation rules. I have tried using table lookup option in the derivation rule but the source fields like Internal characteristic, Characteristic value counter, Indicator: Object/Class,Class Type, Internal counter for archiving objects via engin. chg. mgmt are also required to be created as CO-PA characteristics and derivation of the same is again creating a problem.I have used Table AUSP for the same.
    can u guide me further on this issue.
    Best Regards
    Manu

Maybe you are looking for

  • How do i import a large organised library from NAS into iPhoto without it re-organising my photos?

    I have a large library of photos, (20,000 or so photos - 58 GB) stored on my NAS Drive, they are organised into yearly folders, and then individual event folders, among other folders such as 'favorites'. When i click import, and leave it to do its th

  • How to get auto-increment value after insert on ACCESS db?

    When you insert a new record to a table with an auto-incrementing key, how do you find the value for the row you just inserted? This works differently with different databases. I know how it's done on ORACLE and mySql. How does it work with ACCESS th

  • Reporting que

    Hi In my current system , source system didnot maintained Regions (South,north,east, west) they maintianed only the states. My reporting requirement is to develop the report for region...means region wise sales across country.. making changes for reg

  • Photoshop Elements 10 not open new raw files

    Canon 70D camera software open images ok, byt Photoshop Elements not. Windows 8. Adobe DNG Converter 8.2 not work!!!! Are mast BY new adobe Elements 12???

  • Trying to build a web application with stateful ejb clustering

    Hi to everyone, I'd like to know if someone gets to work a stateful ejb clustering. The stateful ejbs are called from a servlet so i'm not using RMI. The ejb clustering sample works! but It is using RMI and this is not use for me. My application alre