Multiple xpjs drawing from same set of folders?

Is it possible to use a set of common folders in multiple
help projects? That is, have html files stored in one set of
folders (that are already configured to support a complex TOC
structure) and have several xpjs access them? No individual html
file would be used by more than one xpj.

How many sedatives can you afford?
Not sure why you would want to do this. The obvious thought
was common topics but you have ruled that out.
If you want different outputs, why not use conditional build
tags?

Similar Messages

  • How to call multiple stored procedure from same DB Adapter

    Hi,
    I want to invoke 3 stored procedures from my message flow in BUS . I created a DB adapter and invoked 1 successfully . Now I don't to configure 2 other DB adapters for calling other 2 stored procedures . I want some how to be able to call the other 2 from the first DB adapter only . Somehow I need the flexibility to have procedure names as the operation names in 1 wsdl and be able to configure this in JDeveloper for this at time of DB adapter configuration . I am using 11G . Is it possible ?

    You can probably create a DB adapter with operation type selected as Execute Pure SQL and write SQL code to invoke the stored procedures depending on the procedure name (which you can get as one of the parameters of DB Adapter).
    However, Even if you were able to do it, the DB Adapter schemas are generated based on stored procedure parameter list and types. If you use Execute Pure SQL type of DB Adapter the schema will be generated based on the parameters which you are using in your custom SQL code within DB Adapter. Which means that if you want to add a new stored procedure as target which has a different name and different parameters then you will need to regenerate the DB adapter and update your custom SQL code. This also means that you will need to do regression testing interfaces to all stored procedures whenever there is any change in this DBAdapter.
    Now, my question is why do you want to invoke multiple stored procedures from same DB adapter?
    This is not a good way to design integration solutions and makes your services resistance to change as it will take more time to change and test.
    If all that you want is to have a web service which can have different operations for different stored procedures then you should create three business services and create a wrapper proxy service which has one operation for each stored procedure, within the proxy transform and call the correct backend service (you can use operational branch). This way you have a modular code where each module (read interface to one stored procedure) can be independently modified and tested.

  • Multiple message threads from same person

    I have multiple message threads from the same person in messages on my iPhone and iPad. One comes from their phone number and one from their email. Here are all the details, I would love to be able to combine them into one thread.
    This other person and myself each have a new MacBook Pro, iPad Air 2, I have an iPhone 6 and they have an iPhone 5S. They are all updated with the most recent system software.
    On my MacBook Pro, the conversations that are split on my iPhone and iPad are not split. On the MacBook Pro, all of the texts from both conversations are appearing in one. In my contacts which are syncing with iCloud I have both the phone number and email address of this other person.
    I have messages set up on all of my devices to send and receive from my phone number and my email, start new conversations is from my phone number. This other person has it set up the exact same way on all of their devices.
    So why when I text this person from one conversation thread and they respond it comes through to the other conversation thread?
    Why can't I seem to join these two conversations when everything is set up the way it should be and they ARE joined on my MacBook Pro but not my iPhone and iPad?

    She kept the same number on her new phone, but now there are 2 conversation threads. A new one started with messages sent from the new phone, the old phone should be out of service now. Why didn''t  messages sent by the new phone resume in the same conversation? I assume because it's a different IMEI.  But now whenever I use her  phone number to create a new message, it goes in the old IMEI*'s conversation thread and is therefore not delivered. It's in green so it thinks it's an SMS also not a iMessage device.
    If I want to send a message correctly  to the new phone, I have to make sure I  go into the correct newer thread and enter it there,
    For your second answer, the person is receiving the message but the thread now says "email address", not the person's name in the contact list. The sender is sending to the person's phone number, not her email address.

  • Load Multiple Tables (schemas) from same XML file

    Hi,
    This is first time i am working XML files.
    I have one XML file with two tables (schema). I need to load those two tables into two different Target tables.
    This is the startegy to choose tables.
    <Entry type="full"> --Table 1
    <Entry type="short">--Table 2
    I am try to find the tables like this using condition split (Type == "Full" ) but tables are not splitting as expected, is am i going with wrong approach??
    Can anyone suggest me to process multiples tables from same XML file??

    Hi Naveen,
    After the issue in my environment, the package works well that the data in the XML file load to two destination tables based on one column values. The screenshot is for your reference:
    To troubleshoot this issue, could you please check the values in the type column? Verify the values have exactly the same characters, case sensitivity. It seems that you haven’t write correct values in the Conditional Split Transformation. They should be like
    below:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
     If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • Multiple programs recording from same sou

    Hi, I have a audigy and I cant use the record function in multiple programs. Like, when im using the teamspeak and try to open skype, just the teamspeak can record from microphone and skype dont work.
    Any help, thank you.

    You would have to close your DAQmx reference in one vi before another vi could open one on the same DAQ device.  You could have some sort of flag variable, maybe a LV style functional global, that would signal the need for DAQ use.  Some sort of arbitration scheme in a separate vi would determine who gets priority over DAQ use.  It would then send signals (more funtional globals) to each subvi telling them who should close and who should open.  The differenct vi's would have to coninually poll the functional globals to see if they should open or close their session.  This will be quite complex.
    - tbob
    Inventor of the WORM Global

  • Question about creating multiple output  files from same query

    I have a query like this:
    select * from emp;
    ename empno deptno
    Scott 10001 10
    Tiger 10002 10
    Hanson 10003 20
    Jason 10004 30
    I need to create multiple output files in xml format for each dept
    example:
    emp_dept_10.xml
    emp_dept_20.xml
    emp_dept_30.xml
    each file will have the information for employees in different departmemts.
    The reason I need to do this is to avoid executing the same query 200 times for generating the same output for different departments. Please let me know if it is practically possible to do this.
    Any input is greatly appreciated.
    Thanks a lot!!

    You can write a shell script to generate the multiple spools files for the same output. Below script may helps you.
    #====================
    #!/bin/bash
    n=0
    while [ $n -le 20 ]
    do
    n=`expr $n + 1`
    sqlplus -s system/manager <<EOF
    spool emp_dept_$n.xml
    select count(1) from tab;
    spool off
    EOF
    done
    #====================

  • Question about creating multiple XML files from same query

    I have a query like this:
    select * from emp;
    ename empno deptno
    Scott 10001 10
    Tiger 10002 10
    Hanson 10003 20
    Jason 10004 30
    I need to create multiple output files in xml format for each dept
    example:
    emp_dept_10.xml
    emp_dept_20.xml
    emp_dept_30.xml
    each file will have the information for employees in different departmemts.
    We are using DBMS_XMLGEN package to generate XML.
    The reason I need to do this is to avoid executing the same query 200 times for generating the same output for different departments. Please let me know if it is practically possible to do this.
    Any input is greatly appreciated.
    Thanks a lot!!

    one solution i can think of is to use SQLX operator instead of dbms_xmlgen.
    here is a sample example.
    declare
      l_xmltype xmltype;
      l_deptno  emp.deptno%type;
    begin
      for i in (select * from emp order by deptno)
      loop
        select xmlconcat(
                    xmlelement("ename", i.ename)
                   ,xmlelement("sal", i.sal)
                   ,xmlelement("detpno", i.deptno))
          into l_xmltype from dual;
        dbms_output.put_line(l_xmltype.GetClobVal());
      end loop;
    end;
    /Now here you can open the query once, keep writing to the file till the deptno
    is same, when the deptno changes, close the file and open a new file with new
    deptno and start writing.
    Note : in this way you will have to add the xmlprolog manually to each of the file which should not be an issue. after opening the file add the prolog string manually.
    Hope this helps.

  • Multiple nohup commands from same path

    I had a doubt which is very urgent as my live migration is going on. I had run the 2 import commands from $ORACLE_HOME/bin for importing 2 schemas like:-
    nohup imp JISPBILCORBILLINGPRD501/JISPBILCORBILLINGPRD501 fromuser=JISPBILCORBILLINGPRD501 touser=JISPBILCORBILLINGPRD501 file=JISPBILCORBILLINGPRD501.dmp log=JISPBILCORBILLINGPRD501.log commit=y feedback=10000 ignore=Y &
    nohup imp JISPRATCORBILLINGPRD501/JISPRATCORBILLINGPRD501 fromuser=JISPRATCORBILLINGPRD501 touser=JISPRATCORBILLINGPRD501 file=JISPRATCORBILLINGPRD501.dmp log=JISPRATCORBILLINGPRD501.log commit=y feedback=10000 ignore=Y &
    Normally I run one import from the path of $ORACLE_BASE and one from $ORACLE_HOME/bin so that I have 2 different nohup.out files to see the output. But, in this case, as the 2 imports are run from the same path, will the nohup.out have output from both the files?
    So, my doubt is that hope there is no problem in running the nohup command from the same path and the nohup.out is populated with the output of both the
    imports.
    I hope, my question is clear.
    Please, help in solving the doubt.
    regards

    I had a doubt which is very urgent See how to configure application server 10g for forms 10g about urgency....
    That said...
    will the nohup.out have output from both the files?Yes, and outputs will be mixed.... but you have separate logs, haven't you ?

  • Create multiple external tables from same flat file ?

    using oracle 10g
    currently create many external tables like so..
    CREATE TABLE "XT_UNITS"
    "Q1_2012" VARCHAR2(25 BYTE),
    "Q2_2012" VARCHAR2(25 BYTE),
    "Q3_2012" VARCHAR2(25 BYTE),
    "Q4_2012" VARCHAR2(25 BYTE)
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER DEFAULT DIRECTORY "XE_FILES" ACCESS PARAMETERS ( records delimited BY newline
    skip 1 fields terminated BY ',' OPTIONALLY ENCLOSED BY '"' MISSING FIELD VALUES
    ARE NULL ) LOCATION ( 'xtunits.csv' ))
    is there any way I can use 1 flat file (csv) to populate many external tables ?
    maybe by section ?

    Jay wrote:
    using oracle 10g
    currently create many external tables like so..
    CREATE TABLE "XT_UNITS"
    "Q1_2012" VARCHAR2(25 BYTE),
    "Q2_2012" VARCHAR2(25 BYTE),
    "Q3_2012" VARCHAR2(25 BYTE),
    "Q4_2012" VARCHAR2(25 BYTE)
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER DEFAULT DIRECTORY "XE_FILES" ACCESS PARAMETERS ( records delimited BY newline
    skip 1 fields terminated BY ',' OPTIONALLY ENCLOSED BY '"' MISSING FIELD VALUES
    ARE NULL ) LOCATION ( 'xtunits.csv' ))
    is there any way I can use 1 flat file (csv) to populate many external tables ?
    maybe by section ?Not a logical question.
    An external table definition relates to one or more files.
    You could probably create multiple externable table definitions to access the same file(s), but you may end up with some operating system file locking issues if you're not careful, and to be honest why would you need to do that?

  • Multiple Receiver Dtermination from Same Business Sender Service to RecvStp

    Hi,
    I was trying to implement FORK STEP in ccBPM. Scenario I'm trying to implement is, using fork bundle PO with same items together.
    Can anybody help me to create multiple receiver dterminations for three receiver steps in three branches of fork step, where a common business sender service and same Integration process is used for receiving messages into SAP XI.
    Please advice soon,
    Thank You,

    Hi Murali,
    If it's always the same message, only one receiver determination is necessary. I'd also rather tend to do the capturing within a loop which is executed three times.
    Best regards
    Joachim

  • Can you install apps on multiple iphones/ipods from same itunes account?

    Hello, My first post so please be gentle. I will be picking up my 3g in an hour or 2 and have a few apps lined up including super monkeyball. My wife has an 8g touch. We have seperate pc's each with their own library and installation of itunes although both signed in to my account. Itunes has let me download super monkeyball on both pc's ( same account ). Will it let me install the game to my iphone and my wifes touch? I'm pretty new to itunes and have never even purchased music through it yet but I understand purchased music can be downloaded to 5 seperate pc's and unlimmited ipods? is that correct? I would be surprised if this was the same for applications.

    Your answer is yes although you were going to attempt it in a few hours anyway so why bother asking? Oh that's right you're excited

  • Ranking one object (row) with two/multiple criteria - excluded from one set of results if ranked by the other criteria.

    Working in Numbers 3.2.2. I've figured out how to rank with one or more criteria, but I need help completing my formula...
    I have a table with each person (row) who have different values for two different products (Columns B and C). I want to rank each person by column B (top 5), then rank the remaining 5 by column C.
    I'm able to create the table that ranks by product A using the formulas:
    A2  =LOOKUP(LARGE(Totals::Product A,ROW()−1),Totals::Product A,Totals::A)
    B2  =LARGE(Totals::Product A,ROW()−1)
    C2  =LOOKUP(LARGE(Totals::Product A,ROW()−1),Totals::Product A,Totals::Product B)
    I need exclude Persons H, D, G, J, and A from the ranking of Product B for the remaining 5 slots. This is where I'm getting stuck... I've manually created the rest of the table showing the sorting of Product B, excluding the top 5 people from Product A, and the final results I'm after. (The green cells show the ranking pattern I'm after. (Yes, Person F appears to get shafted. That's why I'm doing this. ))

    Hello
    You may create a rank index column as follows so that you can sort or retrieve the data based upon it.
    Table 1
    A1  Name
    A2  N01
    A3  N02
    A4  N03
    A5  N04
    A6  N05
    A7  N06
    A8  N07
    A9  N08
    A10 N09
    A11 N10
    B1  A
    B2  806
    B3  206
    B4  705
    B5  749
    B6  169
    B7  28
    B8  80
    B9  385
    B10 733
    B11 125
    C1  B
    C2  925
    C3  803
    C4  115
    C5  189
    C6  925
    C7  191
    C8  699
    C9  64
    C10 510
    C11 738
    D1  rank index
    D2  =IF(B2-LARGE(B,5)>=0,B2*"1e8",C2)
    D3  =IF(B3-LARGE(B,5)>=0,B3*"1e8",C3)
    D4  =IF(B4-LARGE(B,5)>=0,B4*"1e8",C4)
    D5  =IF(B5-LARGE(B,5)>=0,B5*"1e8",C5)
    D6  =IF(B6-LARGE(B,5)>=0,B6*"1e8",C6)
    D7  =IF(B7-LARGE(B,5)>=0,B7*"1e8",C7)
    D8  =IF(B8-LARGE(B,5)>=0,B8*"1e8",C8)
    D9  =IF(B9-LARGE(B,5)>=0,B9*"1e8",C9)
    D10 =IF(B10-LARGE(B,5)>=0,B10*"1e8",C10)
    D11 =IF(B11-LARGE(B,5)>=0,B11*"1e8",C11)
    Tested with Numbers 2.0.5 under OS X 10.6.8.
    Good luck,
    H

  • Running multiple instances from same oracle home

    Hi Gurus,
    I am preparing for OCA 11g examination. I had a question about running multiple instances from same oracle home. While reading the book I came across a statement about database control which says "If there are several database instances running off the same Oracle home, then each will have its own Database Control instance".
    Now I assume that this statement implies multiple instances accessing the same physical database (which as per my knowledge can happen only in case of a RAC).
    I am not able to understand how exactly can you have multiple database instances in a single oracle home. I have installed Oracle 11g on my computer whose oracle home is +"D:\oracle\product\10.2.0\db_1"+; now this directory houses all the binaries (executables and folders like admin,bin, etc) for the oracle instance that I have installed (the instance name is ocp1). Now if I am to install or create another Oracle Instance (say ocp2) in the same home, wont there be a conflict of binaries of the two instances in the same home ?
    Basically,it makes sense if db_1 folder is further split into multiple folders, one for each instance (for example, one for ocp1 & one for ocp2); each of these folders will then contain the binary files, libraries,etc for its own instance; but, this is not the case, here db_1 houses all the binaries directly under it ...
    The other question which stems from the statement I mentioned above is that if having multiple instances running from same oracle home accessing the same physical database, can this arrangement be called RAC at all; or does RAC dictate that you cannot have multiple instances that are accessing the same database have to be installed on physically separate machines and so you cannot have two RAC instances (accessing same physical database) installed on the same computer ??
    I hope my questions are not too much confusing ... !!
    Cheers,
    Sudripta

    Hello,
    "If there are several database instances running off the same Oracle home, then each will have its own Database Control instance".This is true, and also means each instance will have its separate database (i.e. dbf files etc.) & separate DB Control. Usually in this case you create several instances on the same node.
    Now I assume that this statement implies multiple instances accessing the same physical database (which as per my knowledge can happen only in case of a RAC).You are correct about RAC where several instances (usually running on separate nodes) access the RAC.
    More info:
    1 Oracle Home - 1 Database - 1 SID is possible.
    1 Oracle Home - Many Databases - Many SID is possible.
    1 Oracle HOme - 1 Database - Multiple SID is possible and this is called RAC.

  • How to configure multiple clusters on the same machine.

    I am attempting to configure multiple clusters on the same set of machines. I have set the cluster name and multicase IP addresses to be different for each cluster. However I am still getting and error that states:
    "This indicates that there are multiple clusters on this network attempting to use overlapping network configurations."
    Is this not possible? If it is possible, is there some further way i need to tell the VMs they are part of different clusters?
    Thanks,
    Jacob

    FYI: I'm using the wrong multicast IP above. 224.0.0.1 is reserved and something else should be used. See:
    Re: UDP flood hosed my LAN?

  • Multiple email accounts but they are all sending from same account.

    Set up with multiple email accounts but they are all sending from same account. I have checked account preferences and under composing they are to come from account of selected mailbox but this is not happening! Suggestions?

    They are all in the same folder and it says all images are there, but it is only showing 1 card's images at a time. Does anyone know how to fix this?
    This is kind of confusing, on the one hand you say "it says all images are there" and then you directly contradict this by saying "it is only showing 1 card's images at a time".
    Could you explain in a lot more detail what you see (and don't say "it", say exactly what part of Lightroom or what part of your operating system you are looking at), or show us a screen capture?

Maybe you are looking for