Having two or more personal configuration files on IDS

Hello,
I would like to know how to create two ini files under the docserv folder. the reason for this is to for dap.ini to run two different ini files.  This set-up is done for ETPM and has a link of java for the batches of IDS.
Please help...

This is pretty simple. The dap.ini specifies the INI files to use for each configuration and the request to IDS has to specify attachment variable CONFIG= to switch between configurations.
Examples:
This is from dap.ini:
[ Config:100AIC ]
    INIFile         = .\mstrres\Amergen\A_100\AIC_100.ini
    INIFile         = .\mstrres\Amergen\AIC.INI
[ Config:200AIC ]
    INIFile         = .\mstrres\Amergen\A_200\AIC_200.ini
    INIFile         = .\mstrres\Amergen\AIC.INI
Multiple INI files can be specified for each configuration. The INI options from these configuration files are loaded first and then the dap.ini options are added. Works much like FSIUSER/FSISYS combination where config INI file(s) are treated like FSIUSER and dap.ini as FSISYS.

Similar Messages

  • Having two or more Text-Enrichment component in an Inetgrator graph

    Hi All,
    The data I am trying to load into Endeca Server v3.0 has got three text columns and I would like to do the text-enrichment process on all of them. At the moment I have used one text-enrichment component per each column (overall three text-enrichment components) but as a result some output columns such as Document-Sentiment or Summary are only containing the last column's sentiment/summary where my ideal is to have a summary of all three columns or an average on their sentiment. I wonder if there is any configuration available for these kind of requirements or if it is possible to use different properties files in order to plan three different set of output columns?
    Appreciate your help, Regards.

    Hi Farnaz,
    If you enriched in parallel, with each branch enriching a different field on the record, you'd wind up with 3 'EntitiesPerson' fields, one on each branch (assuming you're using the same te.properties file).  When you combine the record back together, you will have to do something in your join logic with CTL to combine them.
    Something like:
    $out.0.EntitesPerson = $in.0.EntitiesPerson + ${"MULTIASSIGN_DELIMITER"} + $in.1.EntitiesPerson + ${"MULTIASSIGN_DELIMITER"} + $in.2.EntitiesPerson;

  • Two things: more shortcuts + configurable SQL formatter

    Hi folks,
    thanks for the great tool!
    As you can read from the subject, I have to small recommendations for you:
    First: make keyboard navigation possible through the use of shortcuts. Simple things such as switching from tab to tab, should be possible to do whithout the hands leaving the keyboard.
    Second: The SQL Formatter (Ctrl+B) is a great tool, I miss from many other commercial editors!!! In order for it to be as useful as possible: please try to make it configurable. There is not THE one way of formatting PL/SQL the right way. You probably have some kind of pl/sql template. However, let the format be configurable. There are all kinds of different formatting habbits in developer teams. Let this wonderful please every one of them.
    Thanks again for the good job.

    Does anybody know, if my request of a configurable SQL formatter is planned for anytime?

  • Merging two or more audio files, by a contextual menu item within the finder

    Hello, everyone,
    I want to merge or concatenate two or more simple audio files (wavs at the same sample rate and bit depth) into a new wav file - which don't need any conversion. I want to do this using a contextual menu service within the finder. Is there any possibility to do this? I can't find any software in the market that will allow me to do this.
    so that,
    'start.end_1.wav' + 'start.end_2.wav' + 'start.end_3.wav' = 'start.end_1&start.end_2&start.end_3.wav'
    Can anyone help? would sox help me with this, and if so, how to add it onto a finder contextual menu?

    Both of those directories are empty and I have deleted them and re-created them. I have been able to add and remove plugins for other applications so this is very strange.
    Using "Easy Find" I did locate a preference file, which I have deleted but that has not resolved it. I have tried safe mode and single user mode but no luck. I couldn't find any automator actions either.
    When I click on the menu item it says "ClamXav is not installed. Please install ClamXav and try again" so it knows it needs to use this program somehow.
    It's very odd and must be a result of a crash I had, though I would love to get to the bottom of it, it isn't serious and will hopefully go when I upgrade to Snow Leopard
    Thanks for your help though as it has taught me a few things!

  • Splitting a renderkit-configuration in two or more files

    Hi
    I develop a webapplication using JSF with additional components. Some of these components use VML which does only work in IE. To support Firefox we want to use a second renderkit which generates code for a SVG approach of our components.
    The problem is that we splitted the components in several modules with an own faces-config.xml for each module. To keep it modular we want to define SVG-renderers for each module in these faces-config-files, too. The SVG-renderer should belong to the same renderkit, so we can easily switch to SVG-output if a user logs in from a Firefox browser.
    Have a look at this little example:
    /WEB-INF/moduleA/faces-config.xml:
    <faces-config>
         <render-kit>
              <renderer>
                   <component-family>map</component-family>
                   <renderer-type>map</renderer-type>
                   <renderer-class>com.example.component.renderkit.vml.MapRenderer</renderer-class>
              </renderer>
         </render-kit>
         <render-kit>
              <render-kit-id>SVG</render-kit-id>
              <render-kit-class>com.sun.faces.renderkit.RenderKitImpl</render-kit-class>
              <renderer>
                   <component-family>map</component-family>
                   <renderer-type>map</renderer-type>
                   <renderer-class>com.example.component.renderkit.svg.MapRenderer</renderer-class>
              </renderer>
    </faces-config>/WEB-INF/moduleB/faces-config.xml:
    <faces-config>
         <render-kit>
              <renderer>
                   <component-family>map</component-family>
                   <renderer-type>tool</renderer-type>
                   <renderer-class>com.example.component.renderkit.vml.ToolRenderer</renderer-class>
              </renderer>
         </render-kit>
         <render-kit>
              <render-kit-id>SVG</render-kit-id>
              <renderer>
                   <component-family>map</component-family>
                   <renderer-type>tool</renderer-type>
                   <renderer-class>com.example.component.renderkit.svg.ToolRenderer</renderer-class>
              </renderer>
    </faces-config>In this case JSF complains about a duplicated renderkit "SVG". If I rename one, both can`t be active at once. Can you tell me how to add further renderers to a renderkit in a separate faces-config?
    Thank you for your help!

    Most likely, you do everything right and will get what you want.
    JSF does complains about a duplicated renderkit "SVG", but notifies you that definition from the two configuration files will be merged.
    This merge is not a problem. It is a normal behavior described int he specification.
    From the first sight, I do not see any conflicts in your files. As a result of merge you should have two renderes in the default render kit and two renderers in the SVG render kit.
    Sergey : http://ajax4jsf.dev.java.net

  • ERROR: MyService.jws:715:There are two or more operations with the same schema-element 'ns0:MyNameSpace' on the input message in a web service file or callback interface.

    I have two web service operations that have the same complex type as their input
    parameter. I want to map this type to an existing schema. I can successfully
    do this with the first operation using XQuery but when I attempt to do this with
    the second operation I get the following error:
    ERROR: MyService.jws:715:There are two or more operations with the same schema-element
    'ns0:MyNamespace' on the input message in a web service file or callback interface.
    ERROR:      SUGGESTION: Use different schema-element values for each of those operations.
    How can I use different schema-element values? The input parameters are to be
    mapped to the same schema and same element since they are the same for both operations....

    I am having the same problem. How did you resolve this..?? could you please tell me the solution??
    Thanks
    Shari

  • How to show two or more PDF in one PDF-Reader / Concatenate PDF-Files

    Hi,
    I want to show two or more PDF files in one PDF reader window or to concatenate two or mor PDF files to one file.
    We use WD4A and ADS.
    Have someone an idea to solve this without an external program?
    Thx in advance
    Jürgen

    We have done this successfully a few times using WDA - it wasn't easy - it took us 2 full weeks to figure it out, so i need to get full points for this one!
    It's going to much easier to do this if you start a brand new WDA. If not, you'll have to re-do all your Context Node navigations within your methods.
    The first thing you need to do is to define your Context properly:
    You need a top level Node defined as 1:1 cardinality (as with all PDF development)
    Next, you need another Container Node 1:n cardinality (this holds the collection of content nodes)
    Finally, you have your PDF Content Node 1:n cardinality - This holds each instance of your PDF form
    In our scenario, we are passed in a list of Project Numbers. We need to generate a PDF sheet for each project in the same PDF session.
    pseudo code - i'm leaving out some of the unnessary details
    Loop through the project number table.
    ADD 1 TO v_cnt.
    * navigate from <TOP> to <PDF_CONTAINER> via lead selection
        lo_nd_pdf_container = lo_nd_top->get_child_node( name = wd_this->wdctx_pdf_container ).
    * This is the Important Part - we check to see if there is an element where index = v_cnt
    * If not, we create one where we can store the new set of data
    * get element via lead selection
        lo_el_pdf_container = lo_nd_pdf_container->get_element( index = v_cnt ).
        IF lo_el_pdf_container IS INITIAL.
          lo_el_pdf_container  = lo_nd_pdf_container->create_element( ).
          lo_nd_pdf_container->bind_element( new_item = lo_el_pdf_container
                                               set_initial_elements = ' '   ).
        ENDIF.
        lo_nd_ideasheet_data =  lo_el_pdf_container->get_child_node( 'IDEASHEET_DATA' ).
        lo_el_ideasheet_data = lo_nd_ideasheet_data->get_element( index = 1 ).
    * fill all the data then bind the structure
    Select * from XXX into lt_XXX
      where project_number = lt_project-project_number.
    * Move Data to appropriate fields/tables
    * Bind the info back to the element
        lo_el_ideasheet_data->set_static_attributes( static_attributes =
                                                  ls_ideasheet_data ).
    Endloop.

  • How can I copy file/folders from and to hard drives? How can I have two or more windows of explorer so that I can drag and drop from one hard drive to another?

    Hi,
    I am a new customer (purchased last week) of MacBookPro (latest) and its my first ever Apple laptop.
    I am almost lost to find the operating tools.
    1. How can I copy files from hard drive to computer and vis-a-versa?
    2. Only can browse one but how can I have two or more browses at the same time like in MS windows?
    3. No right click works on track pad?
    4. Is there application/ program compatible to MS office? If so how much and how can I purchase?
    5. Is there AutoCAD program that is compatible to MS Window AutoCAD? and if yes how much and how can I purchase?
    I will very much appreciate if you could email me the with the solution/answers please.
    Regards,
    Khagendra Limbu

    1) For some reason this happens once in a while with FAT32 enabled external harddrives. I have no idea why this happens but it most easily solved by reformatting the drive. First make sure you've copied everything from the external drive to your internal harddrive. You've done this earlier so I assume you know how to do this.
    Now the reformatting part. Open Finder and go to Applications. Look for the folder called "Utilities". Click on it. In it you find a program called "Disk Utility". Click on it. Now look for the external drive. You probably see two entries for the disk. Click on the one that contains the name of the drive NOT the one that describes the disk (Like for example 320.07 GB Samsung S2 Portable Media).
    Now you see four tabs in the righthand part of the window. They're called "First Aid", "Erase", "RAID" and "Restore". Click on "Erase". This opens the tab with (amongst others) a dropdownbox (Format) and a textbox (Name) . In the dropdownbox select "Mac OS Extended (Journaled). Take note! This selection disables usage of the drive with Windows PC's. If your goal is to share the drive with Windows PC's select the MS-DOS FAT option.
    Enter a label for the drive in the textbox Name. Now click on the button "Erase". This will format the drive.
    Now when it's done you can copy back all the items you've copied to your internal harddrive earlier.
    2) Opening two windows like Explorer on Windows is opening two Finder windows on the Mac. Simply click on the background. In the menubar you items like 'Finder", "File", "Edit", "View", et cetera. Click on "File" and "New Finder Window". Do this two times. Alternatively you can click on the background and press CMD-N two times.
    3) You can right click on the trackpad. This however depends on if you've enabled the feature in System Preferences. In the topmenubar click on the Apple icon and select "System Preferences". Now look for Trackpad in Hardware. Click on it. You see three tabs with the names "Point & Click", "Scroll & Zoom" and "More Gestures". Select "Point & Click" and look for "Secondary Click'. Make sure it is checked and make sure it has written "Click or tap with two fingers" written beneath "Secondary Click". When you're done exit System Preferences. Now select the background and tap with two fingers on the trackpad. This should open the contextuel menu with options like "New Folder", "Get Info" et cetera.

  • Pick activity is not working properly while creating two or more file adapt

    Hi,
    pick activity is not working properly while creating two or more file adapter for bpel process.
    bpel process compiled and deployed succesfully but while observing the wsdl file of deployed process you can find only one file adapter. so it polls only from that location.
    can anybody help on over this? or it's limitation of jdev to use only one file adapter at time while using Pick.
    Thanks
    sagar

    Does anybody tried this?
    Thanks
    sagar

  • Can two or more place comments on a pdf file at the same time?

    We use SharePoint to place pdf files for our team members to open and comment and review.  Until recently we have not had any issues with two or more opening the same pdf at the same time and placing comments.  But now we are losing some of the comments.  Please advise.

    I've seen changes I've made on my iPad show up on the same document that's been open all the time on my Mac, which suggests it might be possible. However, I've also had a small number of notifications that documents on different devices are not in sync with each other. So while it might have the potential to work, I'd be inclined to think it would be quite unreliable.

  • Join two or more xml files

    I want to join two or more xml files and create a nw xml or html file w/o using java!!
    Is it possible with only xsl. if yes how?
    Raju

    Sure it's possible with XSLT.
    Just use the document() function to refer to one or more additional source documents. I recommend using an <xsl:variable> to capture the secondary document in a variable so you can easily refer to it any number of times in the stylesheet.
    So, at the top-level of your stylesheet, just do:
    <xsl:variable name="otherDoc" select="document('otherDoc.xml')"/>
    Then anywhere you want to select nodes from the secondary document (will the full power of XPath), just start your XPath expression with the $otherDoc variable like this:
    select="$otherDoc/something/somethingelse[somepredicate-if-needed]"
    In this way you can combine the values of the current node in the main source document to lookup corresponding nodes in the secondary document and do joins this way.

  • CS4 - Book using two or more files

    I am using CS4 and need to set up a book (I know how to do that) that encompasses two or more files.  In File 1 I have a text block placed across a two page spread.  The last column will be a page number pointing to a specific page in File 2.
    Question 1:  How do I get File 1 to link to the specific page in File 2?
    Question 2:  Is there a way so that if the page in File 2 moves within the file, to have the reference in File 1 change?
    Question 3:  Is there perhaps a tutorial for this?
    Question 4:  Am I correct in that if this works I will be able to output a PDF with internal links in place?
    Cordially,
    A. Wayne Webb

    Afternoon Peter,
    Thank you for the responses.  I am taking four old timey reference works and combining them into one modern book.  The text pages represent three sets of records merged together.  I will end up with an Indesign "book" containing four files: front matter, text, survey images, and an index.  I am guessing it will be somewhere around 600 pages or so.  As for InDesign crashing, it has happened all too often.  And on this computer it has happended twice.  'Tis a brand new computer that I home-built with all the best toys.  It cost me northward of $3,900 and everything was installed fresh.  As for others and the "crash and trash" problem, it has been written about so often as to seem normal workflow for ID.
    The "1, 2, 3" numbers represent the page of the second portion of the PDF (the surveys / File 2). Clicking on a number, when it is correct, takes you to the survey image.  Clicking on the survey image takes you back to the text entry.  I can easily set the view in the options of the hyperlink or cross reference.
    The end of it is that I after I have the text and the images in place in File 1 and File 2, I will have to manually come back and update the "1, 2, 3" references.  InDesign, at least my version, cannot handle automatically updating the links and numbers.
    As for your last thought, yeah, as soon as I win the lottery.  I will figure this one out though.
    Cordially,
    A. Wayne Webb

  • Two or more users editing the same script file in cq5, is it possible?

    In cq5 is possible two or more users editing the same jsp file? There is a lock system preventing simultaneous editing of the same file?
    Thanks,
    Gabriel

    you really should use eclipse and maven to work with multiple developers. something like [1] will be helpful
    [1] http://www.cqblueprints.com/xwiki/bin/view/Blue+Prints/The+CQ+Project+Maven+Archetype

  • Person having two PSA & two positions in 0001 at the same time

    Hi Gurus!!!
    How to handle a situation where a Person is having two different PSA (becouse he is Head of two PSA A & PSA B) at the same time, at present he is holding two Positions lets say Positon A1 & B1 in Org Management, but i have to assign him two PSAs also. PY will only be run from PSA A only which is his core PSA.
    Can we run any action for that? i need this for report purpose, to show that employee was working in two different PSAs at the same time.
    Appreciate your help....!!
    Rgds
    Anupama

    if he is havein two postions and these position have to be maintained in two PSA right
    in the IT0001  we get PSA by defeault right as we assing the PSA with PA
    so there is not chance for maintaining the PSA as per the Above functionality
    if we can add an another feild in IT001
    and maitain the feilds Positon and PSA which are to be maintained that would be fine Right
    and as per the requiremtn the Process of the PY shd be run form the one PY area and tht should belong to one PA
    but make sure this shd be only for display and reporting purpose
    because there will lot of things based on PSA first check the first option

  • Can I export my sidecar files to two or more hard drives at the same time from one computer?

    Can I export my sidecar files to two or more hard drives at the same time from one computer?  How do I do this, if it is possible?

    Each image is imported into the LR Catalog from just one stated location on disk. And that is where the sidecar gets written.
    But if you want, outside of LR, you can have a file sync utility replicate all physical changes within those folders on disk, into other corresponding locations on other drives - which hold a copy of all the same images, and a copy of the sidecars too. This might happen continuously, periodically or on demand depending on the particular tool you use... for example, the Dropbox desktop app.
    If you also want to have your LR Catalog replicated, I think this can only be done when LR is not running and using that.

Maybe you are looking for

  • Why does this abstract class and method work without implement it?

    hi, I have seen many times that in some examples that there are objects made from abstract classes directly. However, in all books, manual and tutorials that I've read explain that we MUST implement those methods in a subclass. An example of what I'm

  • How to use text-by-speech for N80?

    I have been reading some posts here and there, but I havent seen anywhere where it states that text by speech works or does not work for N80? I was hoping somebody coud tell me, if it does work how do you install it? Thank you so much

  • Cannot save "Untitled-4" under a new name.

    I'm getting this error trying to run the HelloWorld.jsx Script on a Windows Server 2003 VM machine inside OSX. I've been working with the server with no problems, having been able to test scripts to import XML, and export in various formats.. I had j

  • [OT]Al final yo =?ISO-8859-1?Q?tambi=E9n_he_ca=EDdo?=

    Pués si, amigos, en parte por la moda, y en parte porque llevaba 4 años con una pantalla-cutre-salchichera de "estamos en obras". Dicen que en casa de herrero cuchillo de palo, pero lo mío ya era penoso 8¬P Yo ya tengo mi blog, para - como alguien di

  • Using solfege no sound

    i install solfege, but i can't hear any sound.