Unable to execute HFMAudit Command line utility

Hi All,
We are going to use HEMAudit extract utility for extracting data &task audit tables.Hope All of you aware of that we can use this utility in two ways.One is through Wizard another one is thorugh commandline...We tried to execute the utility through Wizard,it was executing successfully and extract the both data&task audit tables.But when We tried to execute thro commandline got the following error..
C:\Hyperion\products\FinancialManagement\Consultant Utilities>HFMAuditExtractCmdLine.exe  -d C:\Test
-u C:\Hyperion\products\FinancialManagement\hfm.udl -a TEST -l ; -s 2011/07/15 -e 2011/07/22 -t Enabled
-D Enabled -k Disabled -r Disabled
Processing objects initialized.
Completed parsing command line parameters.
Extract starting using these parameters:
UDL:  C:\Hyperion\products\FinancialManagement\hfm.udl
Application:      TEST
Destination folder:  Enabled
Log File Name:
Field Delimiter:     (;)
Start Datetime:      07/15/11 00:00:00
End Datetime:        07/22/11 00:00:00
Extract Task Audit:  True
Truncate Task Audit: True
Extract Data Audit:  True
Truncate Data Audit: True
T E S T Connecting to data source...
Getting schema version...
Starting processing...
Caching Metadata...
Processing extracts...
Extracting Task Audit...
Determining number of records...
Selecting records for extract...
Processing results...
Export failed. (-2147467259)
Processing failed.
It shows " Export Failed" .Anyone could you help me for this
Thanks in Advance

Duplicate post:
http://forum.java.sun.com/thread.jspa?threadID=5203526&messageID=9812067#9812067

Similar Messages

  • Unable to execute a command line command using Java

    I am trying to run a command to add a group name. It is executed in command prompt of Windows 2003/2000
    Say this is the command I want to execute:
    net localgroup LordSM /add
    Here LordSM is the group name.
    I wrote the following code but it does not seem to work. Please suggest.
    String ABC=Value1TextField.getText();
    Value2Label.setText("Value is now " + ABC);
    // Above is to get value from a JText Field
    // Below is the code to run command for adding a group name to a System.
    String ExecutedCmd = "net localgroup " + ABC + "/add";
    Process p = Runtime.getRuntime().exec(ExecutedCmd);
    BufferedReader stdInput = new BufferedReader(new InputStreamReader(p.getInputStream()));
    BufferedReader stdError = new BufferedReader(new InputStreamReader(p.getErrorStream()));
    // read the output from the command
    System.out.println("Here is the standard output of the command:\n");
    while ((s = stdInput.readLine()) != null)
    { System.out.println(s); }
    // read any errors from the attempted command
    System.out.println("Here is the standard error of the command (if any):\n");
    while ((s = stdError.readLine()) != null)
    { System.out.println(s); }
    I am trying to run a command to add a group name. It is executed in command prompt of Windows 2003/2000
    Say this is the command I want to execute:
    net localgroup LordSM /add
    Here LordSM is the group name.
    I wrote the following code but it does not seem to work. Please suggest.
    String ABC=Value1TextField.getText();
    Value2Label.setText("Value is now " + ABC);
    // Above is to get value from a JText Field
    // Below is the code to run command for adding a group name to a System.
    String ExecutedCmd = "net localgroup " + ABC + "/add";
    Process p = Runtime.getRuntime().exec(ExecutedCmd);
    BufferedReader stdInput = new BufferedReader(new InputStreamReader(p.getInputStream()));
    BufferedReader stdError = new BufferedReader(new InputStreamReader(p.getErrorStream()));
    // read the output from the command
    System.out.println("Here is the standard output of the command:\n");
    while ((s = stdInput.readLine()) != null)
    { System.out.println(s); }
    // read any errors from the attempted command
    System.out.println("Here is the standard error of the command (if any):\n");
    while ((s = stdError.readLine()) != null)
    { System.out.println(s); }
    It does not seem to work means, that no Standard Error is defined, when it executes and group name is not added as well. The following is JUnit Test Result: Hope it gives a better idea of the problem I am facing:
    compile:
    run:
    Here is the standard output of the command:
    Here is the standard error of the command (if any):
    The syntax of this command is:
    NET LOCALGROUP [groupname [/COMMENT:"text"]] [DOMAIN]
    groupname {ADD [/COMMENT:"text"] | /DELETE} [DOMAIN]
    groupname name [...] {ADD | /DELETE} [DOMAIN]
    Got it
    BUILD SUCCESSFUL (total time: 10 minutes 49 seconds)
    I had even tried this:
    Runtime rt =Runtime.getRuntime();
    String[] cmd = new String[3];
    cmd[0] = "cmd.exe";
    cmd[1]="net localgroup";
    cmd[2] =ABC + "/add";
    rt.exec(cmd);
    but again, it does not give any error as such, but it does not create the group name either. Please suggest. We can see the group names that are added on right clicking My Computer Icon and click Manage and then go to User & Group section. On executing either of the code nothing happens.
    Thanks

    Duplicate post:
    http://forum.java.sun.com/thread.jspa?threadID=5203526&messageID=9812067#9812067

  • Executing command line utility

    Hi all,
    I'm trying to use the Runtime and Process classes to launch a win32 command line utility from within my java app.
    I can successfully launch the app with no arguments and have it print the help description to a JTextArea. This is the behavior of the utility if you simply call it with no arguments.
    But when I call the utility with some arguments, the java app seemingly locks up and I get no input from either getInputStream() or getErrorStream()
    I also tried passing the arguments to the utility in a String[] with no luck. Also tried having the Runtime.exec() function call a .bat file with no luck, even though launching the bat file directly works fine.
    Does anyone know how to work with a command line utility from within java? Is it possible to have it at least pop up a console window so I can see what is going on?
    Any help would greatly be appreciated..
    I've read the API's and relavent topics on the forums only to find myself even more confused on whether this is possible.
    Regards,
    Jim

    Well, I've been trying all sorts of combinations of the code, so it changes often.
    here is what I have now..
    <CODE>
         private void fetchDB()
              try
                   Runtime rt = Runtime.getRuntime();
                   Process p = rt.exec("pilot-xfer.exe");
                   BufferedReader in = new BufferedReader(new InputStreamReader(p.getInputStream()));
                   String s = "";
                   while((s = in.readLine()) != null)
                        resultsTextArea.append(s);
                   in.close();
                   BufferedReader errIn = new BufferedReader(new InputStreamReader(p.getErrorStream()));
                   String e = "";
                   while((e = errIn.readLine()) != null)
                        resultsTextArea.append(e);
                   errIn.close();
              catch(IOException i)
                   resultsTextArea.append("IO Exception");
    </CODE>
    I tried the way you outlined above but it seems to ignore the arguments and prints out the help text as if no arguments were given.
    The full command I'm trying to pass is:
    "pilot-xfer.exe -f CH-ResultsDB"
    This command should prompt a single line telling the user to hit the HotSync button on their palm and once they do it will fetch the specified database.
    I also tried calling a .bat file that would then do the command with identical results. If the bat simply said "pilot-xfer.exe" with no arguments it would work. if I add arguments the java app seems to lock up.
    Note, running the .bat file by itself works fine with or without arguments.
    Thanks for any help you can provide, this problem has been badgering me for nearly a week now..
    Regards,
    Jim

  • What is happening about: The GNU Bourne Again Shell (Bash) is a command line utility widely used in many Unix-based operating systems including Linux and OS X.  Researchers have discovered a critical flaw in Bash which could allow remote code executi

    Authoritative advice today:
    The GNU Bourne Again Shell (Bash) is a command line utility widely used in many Unix-based operating systems including Linux and OS X.
    Researchers have discovered a critical flaw in Bash which could allow remote code execution by an unauthenticated user
    APPLE response?

    Also see:
    http://www.macrumors.com/2014/09/26/apple-os-x-users-safe-bash-flaw-update-soon/
    If you are not running a web server
    If you have not enabled CUPS web interface
    If you do not allow anonymous users to ssh into your Mac.
    If all are no, they you are not at risk.
    This IS a very serious bug for web servers, but the typical consumer Mac user is not at risk.

  • OWB command-line utility

    How to execute the OWB projects/modules/objects from command line.
    After creation of objects for particular module (source, target, mapping and transformations...etc.,) in OWB, is there any command-line utility to execute that module from command-line instead of OEM, so that any another application can invoke the ETL process.

    Jagan,
    Check out the sqlplus_exec_template.sql in <owb home>\owb\rtp\sql. You can run this from the command line.
    Thanks,
    Mark.

  • Unable to execute QEMU command 'qom-list': The command qom-list has not been found

    I have been trying to get openstack working on the 2 Node Architecture -  Controller (OL6.6) and Compute(OL.6.6). I am following the Oracle Openstack Installation Document but I keep getting the following error -
    2015-03-26 20:32:13.662 8067 INFO nova.scheduler.filter_scheduler [req-92279e25-f098-4a7a-b8d5-a75bc965a3d3 6e5fe2a1961a4b31921c37f0d2e74265 326a884b9db44e56a68e8a9761ffcf84] Attempting to build 1 instance(s) uuids: [u'9fb4d99c-a7f7-4cd2-bbbc-4056ac0e8f1c']
    2015-03-26 20:32:13.676 8067 INFO nova.scheduler.filter_scheduler [req-92279e25-f098-4a7a-b8d5-a75bc965a3d3 6e5fe2a1961a4b31921c37f0d2e74265 326a884b9db44e56a68e8a9761ffcf84] Choosing host WeighedHost [host: kvm4A.com, weight: 1.0] for instance 9fb4d99c-a7f7-4cd2-bbbc-4056ac0e8f1c
    2015-03-26 20:32:33.586 8067 INFO nova.scheduler.filter_scheduler [req-92279e25-f098-4a7a-b8d5-a75bc965a3d3 6e5fe2a1961a4b31921c37f0d2e74265 326a884b9db44e56a68e8a9761ffcf84] Attempting to build 1 instance(s) uuids: [u'9fb4d99c-a7f7-4cd2-bbbc-4056ac0e8f1c']
    2015-03-26 20:32:33.588 8067 ERROR nova.scheduler.filter_scheduler [req-92279e25-f098-4a7a-b8d5-a75bc965a3d3 6e5fe2a1961a4b31921c37f0d2e74265 326a884b9db44e56a68e8a9761ffcf84] [instance: 9fb4d99c-a7f7-4cd2-bbbc-4056ac0e8f1c] Error from last host: kvm4A.com (node kvm4A.com): [u'Traceback (most recent call last):\n', u'  File "/usr/lib/python2.6/site-packages/nova/compute/manager.py", line 1328, in _build_instance\n    set_access_ip=set_access_ip)\n', u'  File "/usr/lib/python2.6/site-packages/nova/compute/manager.py", line 393, in decorated_function\n    return function(self, context, *args, **kwargs)\n', u'  File "/usr/lib/python2.6/site-packages/nova/compute/manager.py", line 1740, in _spawn\n    LOG.exception(_(\'Instance failed to spawn\'), instance=instance)\n', u'  File "/usr/lib/python2.6/site-packages/nova/openstack/common/excutils.py", line 68, in __exit__\n    six.reraise(self.type_, self.value, self.tb)\n', u'  File "/usr/lib/python2.6/site-packages/nova/compute/manager.py", line 1737, in _spawn\n    block_device_info)\n', u'  File "/usr/lib/python2.6/site-packages/nova/virt/libvirt/driver.py", line 2297, in spawn\n    block_device_info)\n', u'  File "/usr/lib/python2.6/site-packages/nova/virt/libvirt/driver.py", line 3704, in _create_domain_and_network\n    power_on=power_on)\n', u'  File "/usr/lib/python2.6/site-packages/nova/virt/libvirt/driver.py", line 3605, in _create_domain\n    domain.XMLDesc(0))\n', u'  File "/usr/lib/python2.6/site-packages/nova/openstack/common/excutils.py", line 68, in __exit__\n    six.reraise(self.type_, self.value, self.tb)\n', u'  File "/usr/lib/python2.6/site-packages/nova/virt/libvirt/driver.py", line 3600, in _create_domain\n    domain.createWithFlags(launch_flags)\n', u'  File "/usr/lib/python2.6/site-packages/eventlet/tpool.py", line 179, in doit\n    result = proxy_call(self._autowrap, f, *args, **kwargs)\n', u'  File "/usr/lib/python2.6/site-packages/eventlet/tpool.py", line 139, in proxy_call\n    rv = execute(f,*args,**kwargs)\n', u'  File "/usr/lib/python2.6/site-packages/eventlet/tpool.py", line 77, in tworker\n    rv = meth(*args,**kwargs)\n', u'  File "/usr/lib64/python2.6/site-packages/libvirt.py", line 738, in createWithFlags\n    if ret == -1: raise libvirtError (\'virDomainCreateWithFlags() failed\', dom=self)\n', u"libvirtError: internal error: unable to execute QEMU command 'qom-list': The command qom-list has not been found\n"]
    2015-03-26 20:32:33.592 8067 INFO nova.filters [req-92279e25-f098-4a7a-b8d5-a75bc965a3d3 6e5fe2a1961a4b31921c37f0d2e74265 326a884b9db44e56a68e8a9761ffcf84] Filter RetryFilter returned 0 hosts
    2015-03-26 20:32:33.592 8067 WARNING nova.scheduler.driver [req-92279e25-f098-4a7a-b8d5-a75bc965a3d3 6e5fe2a1961a4b31921c37f0d2e74265 326a884b9db44e56a68e8a9761ffcf84] [instance: 9fb4d99c-a7f7-4cd2-bbbc-4056ac0e8f1c] Setting instance to ERROR state.
    Any suggestions?
    Thanks

    Hi Avi,
    The guide is for OL6 (see excerpt from page 5)
    "A compute node is a system running Oracle Linux using KVM, or Oracle VM Server Release 3.3. You can download
    installation ISOs of the latest version of Oracle Linux 6, or Oracle VM Server Release 3.3, from the Oracle Software
    Delivery Cloud at:"
    And although 1.0 release says OL6.5 and later I cannot find the OL7 pacakges on the public yum server. The only ones I can find are http://public-yum.oracle.com/public-yum-openstack-ol6.repo  which is clearly OL6. I tried them on OL7 and the install fails.
    [ol6_openstack10]
    name=OpenStack 1.0 packages for Oracle Linux 6 (x86_64)
    baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL6/openstack10/x86_64/
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
    gpgcheck=1
    enabled=1
    [ol6_latest]
    name=Oracle Linux $releasever Latest ($basearch)
    baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL6/latest/$basearch/
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
    gpgcheck=1
    enabled=1
    If you have an Oracle Openstack install running I'd love to hear how you did it and what you did to accomplish it.
    Right now I'm running OL6.6 with a RDO icehouse packstack install and I'm running into problems mounting volumes.
    Openstack will be awesome once I get it running
    Thank you for any assistance.
    Dave

  • WLST command line utility "storeUserConfig()"  is not working for 12c OHS

    Hi All,
    I am facing issue with WLST command line utility with "*storeUserConfig()*" command.
    I have installed Standalone OHS 12c (Not managed OHS with WLS), configure and start the Node Manager.
    I start the WLST command line utility from : <MW_HOME>/ohs/common/bin/wlst.sh
    I connect node manager with : nmConnect('weblogic', 'welcome1', nmType='plain', domainName='base_domain')
    wls:/offline> nmConnect('weblogic', 'welcome1', nmType='plain', domainName='base_domain')
    Connecting to Node Manager ...
    Successfully Connected to Node Manager.
    wls:/nm/base_domain> nmStart(serverName='ohs10', serverType='OHS')
    Starting server ohs10 ...
    Successfully started server ohs10 ...
    Now When I am running storeUserConfig(), it's giving me below error :
    wls:/nm/base_domain> storeUserConfig()
    Traceback (innermost last):
    File "<console>", line 1, in ?
    NameError: storeUserConfig
    I also try with storeUserConfig('/scratch/12cORC/security/myuserconfigfile.secure', '/scratch/12cORC/security/myuserkeyfile.secure') which also give same error.
    I am not able to recognize this error. What should I need to do to create the User config file ?
    Please suggest me the solution.
    I am referring this doc : http://docs.oracle.com/cd/E15586_01/web.1111/e13813/reference.htm#
    Thanks,
    Amit Nagar

    It's probably a little late for the original poster, but in case anybody else stumbles on this thread (like me today), I found a workable solution to this problem:
    For a Standalone HTTP Server there exists in $domain_home/bin a command startComponent.sh or (on Windows) startComponent.cmd. This accepts as parameter the ComponentName which will typically be ohs1 and as second parameter storeUserConfig. Documentation on this can be found here:
    http://docs.oracle.com/middleware/1212/webtier/HSADM/getstart.htm#CHDJGIII (scroll down to
    4.3.2.3 Starting Oracle HTTP Server Instances from the Command Line).
    startComponent.sh ohs1 storeUserConfig
    Unfortunately this doesn't tell you where you'll find the config and key-File. However, on a second invocation I found that - at least on windows where I tested this - they get written into c:\users\<username>\.wlst so I'd expect them in the home directory on unix. After copying the files to a more common location, I was able to reference them the usual way (formatted for better readability):
    wls:/offline> nmConnect(userConfigFile='C:/app/Middleware/Oracle_Home/user_projects/domains/base_domain/nodemanager/security/nm-cfg-base_domain.props',
    userKeyFile='C:/app/Middleware/Oracle_Home/user_projects/domains/base_domain/nodemanager/security/nm-key-base_domain.props',
    host='localhost',
    port='5556',
    domainName='base_domain')
    Connecting to Node Manager ...
    Successfully Connected to Node Manager.
    Best Regards
    Holger

  • How to execute unix command line from cocoa?

    how to execute unix command line from cocoa?
    for example, if I want to call "ping" from cocoa, how should I do it? and how can I obtain the return value?
    thank you.
    Power G5 Quad Mac OS X (10.4.3)

    The following article may also help:
    http://cocoadevcentral.com/articles/000025.php
    Mihalis.
    Dual G5 @ 2GHz   Mac OS X (10.4.6)  

  • Robohelp HTML command-line utility overwrites merged files in .hhp file with absolute paths. Any way to prevent this?

    I have a Robohelp 11 HTML project which uses merged CHM files. I have a help build script which compiles this project using the RH command-line utility. Whenever this runs, RH overwrites the names of the merged CHM files in the .hhp file to use absolute paths (even if the .hhp file is read-only!). I've searched Adobe forums and this appears to be a RH bug. In my case, it doesn't stop the project performing the merge, but it looks like it causes problems when searching the resultant parent CHM (topics matching the search simply don't show up in child projects), as the search cannot necessarily find the merged files referenced in the .hhp when someone performs the search on a different machine. I notice that if I compile via the RH UI, the .hhp entries are not overwritten. So, a workaround is to do the build manually. However, we'd like to automate our help build. Is there any way to prevent the command-line compiler overwriting the merge file entries in the .hhp?

    This was a problem with Rh9, see Item 13 at Using RoboHelp 9
    I haven't seen it reported since but maybe something at that link will help.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Types of Command Line Utility Projects in Xcode

    Hello. Question:
    There are five types of projects within the Command Line Utility section in Xcode. One is the Standard Tool project, which I know is written in C. Another is the C++ Tool, which is written in C++. Here's my question -- what language are the other three written in (Foundation Tool, CoreFoundation Tool, and Core Services Too)? If I understand correctly, the Foundation Tool project type uses Objective-C -- I found this interesting, because I thought Ojective-C only worked with Cocoa Apps with GUIs and what not. Wouldn't Objective-C be kind of wasted on a command line app (to some extent at least)? Also, if the Foundation Tool project does use Objective-C, then what language do the CoreFoundation and Core Services project types use?

    I don't think you'll get any errors. Those are just templates. You can use any kind of source code in any project.
    That's what I originally thought, but then I tried using Objective-C code in a Standard Tool project out of curiosity and it didn't work. Also, when you are creating a project, for the description under Standard Tool project, it says something like "creates a Standard Tool project written in C" and similar descriptions with other projects with other languages -- what's the point in having that if you can use any variation of C in any project? Also, what would be the point in having the different standards options (like we were discussing in another thread, \[-std=c99\] and what not) if any code can be used in any project? I mean, surely Objective-C and C++ specific code isn't part of the C89 or C99 standard, right? Just trying to understand how all this works...
    edit: I'm just going back and adding this now. I was re-reading over this post and I was thinking that maybe the answer to my question is that it depends on the file type for the source code -- could that be it? So in other words, you can use any kind of code within any project if you create a file that holds that kind of code, and a certain project template simply creates a project with that type of code file already created (so, in other words, a Standard Tool project written in C, for example, simply creates a template project for you with a .c source code file already added, nothing more -- is that right?). So, then, within a .c file, for example, you can only use C code, and within a .m file only C/Objective-C code, and so forth, right? If I've got the right idea with all that, then I think I understand; if not, then I'm still a bit confused. Sorry, I know this is probably incredibly basic, but I'm trying to learn.
    Thanks for all your answers, by the way, etresoft. Your help is very much appreciated.
    Message was edited by: Tron55555

  • Soft-restart of Java node by  using command line utility

    Hello,
    Could anyone advise whether there is a way to soft-restart the java node by using a command line utility (if there is one)?
    I would like to script to run in unix.
    Kind regards,
    Murad.

    Thank you for all your reply.
    Does Jcmon issue soft-restart?
    We have problem with Veritas Cluster. When there failover occurs, Java nodes appears to be online when we check from SMICM, but in fact it looses connection to the central instance. We have to issue a soft-restart for each java node to create connection again. It is a known bug and this only can be fixed by using replicated enqueue server. This only available in SP, which we can not apply right now. What I want to do is to create a script to automate the soft-restart which will be run just after failover.
    Thanks,
    Murad

  • How to run an executable from command-line

    I'm learning how to use the Terminal and I got stuck in a silly thing (I suppose it is). How can I run an executable file from command-line in Terminal?
    For example: I have a file named "Hello" in the folder /sample. If I use the ls command (ls sample), I can see the file Hello. Then I move to the directory (cd /sample) and try to run the file Hello (typing "Hello") but I got "command not found" message.
    If I drag the Hello file from Finder to Terminal and hit Return, it runs perfectly. And if I type the full path to the file (even if I'm already inside its directory), it also runs.
    So, my doubt is if there is any command to run an executable from command-line.
    Thanks

    KJK555 wrote:
    Hi VK:
    Can you enlighten me on why it's neccessary to do the "./" thingy in OS X when in unix/linux
    I never had to resort to doing that?
    Kj
    I took the trouble of reading *man bash* and it explains the issue. to add the current directory to PATH you need to add an empty path to PATH like this
    PATH=$PATH::
    you can add it to ~/.bash_profile so that it's executed automatically when you start bash. I suspect the linux system you are talking about had this set up by default or had it added to PATH in /etc/profile which defines PATH globally.

  • Aerender error: "Unable to execute script at line 95. Window does not have a constructor"

    A BG Renderer user is getting this error when running aerender version 10.5.1x2:
    "Unable to execute script at line 95. Window does not have a constructor"
    The render proceeds but the process never completes which is preventing the rest of the BG Renderer notifications from triggering.  Any idea what this error means and how to fix it?
    Thanks,
    Lloyd

    I guess we'll have to wait for Adobe to answer what could be causing the transmission to drop on Line 95. Todd's out of the office for a month or two, but maybe someone else can shed some light.

  • Using the Metadata Loader Command Line Utility

    Hi ,
    Can anybody please let me know the steps involved for import and export of metadata uing the Metadata Loader Command Line Utility with small scripts as an example.
    Thanks in advance.
    Vinay

    I'll assume that command line utility = ombplus...
    using OMBPLUS, Here it is:
    OMBCONNECT my_user/My_password@host:port:SID
    OMBEXPORT TO MDL_FILE 'C:/temp/DELTA_RS52_LICC2.mdl' \
    FROM PROJECT 'NEW_ARCHITECTURE' \
    COMPONENTS ( \
    LOCATION 'TRG_NEW_ARCH_WORKAREA_LOC',\
    CONNECTOR 'TRG_WORKAREA_LIBOWNER_CONNECT', \
    ORACLE_MODULE 'TRG_WHOWNER', \
    TABLE 'CPF_VALID3', \
    TABLE 'CPF_VALID3_2', \
    TABLE 'CPF_VALID3_3', \
    TABLE 'CPF_VALID3_4', \
    MAPPING 'MAP_WA_CLAIM_DIM', \
    MAPPING 'MAP_WA_POLICY_DIM2_INS', \
    MAPPING 'MAP_WDC1_CLIENT_FOR_LIB', \
    FUNCTION 'UPD_WDC1_CLIENT_LIB', \
    FUNCTION 'VALIDATE_CHARGED_PREMIUM_1_F', \
    FUNCTION 'VALIDATE_CHARGED_PREMIUM_2_F', \
    FUNCTION 'VALIDATE_CHARGED_PREMIUM_3_F', \
    FUNCTION 'VALIDATE_WA_DRIVER_VEH_FACT_I', \
    PACKAGE 'INITIALIZATION', \
    ORACLE_MODULE 'TRG_WORKAREA', \
    TABLE 'AUPMGEN', \
    TABLE 'AUPMGEN_TR0', \
    TABLE 'WDC1_CLIENT_LICC', \
    TABLE 'WDC1_CLIENT_LICC_TEMP_UPD', \
    TABLE 'WG_CHARGED_PREMIUM_VALID', \
    FUNCTION 'GET_DT_TRX_TRANSACTION', \
    FUNCTION 'GET_OCC_OP_LKP', \
    PROCEDURE 'DISABLE_ENABLE_CONSTRAINTS', \
    PROCEDURE 'EXEC_WF_CPF_VALIDATIONS', \
    PROCEDURE 'EXEC_WF_DAUTO_DAILY', \
    PROCEDURE 'EXEC_WF_PER_GENDAT_DAILY', \
    PROCEDURE 'EXEC_WF_PER_GENTER_DAUTO', \
    PROCEDURE 'LOAD_PAST_FUTURE_CALENDAR', \
    PROCEDURE 'VALIDATE_CHARGED_PREMIUM_DS', \
    MAPPING 'MAP_AUPMCON_LIB', \
    MAPPING 'MAP_AUPMGEN_LIB', \
    MAPPING 'MAP_AUPMGEN_LIB_CPF', \
    MAPPING 'MAP_AUPMGEN_TR', \
    MAPPING 'MAP_AUPMGEN_TR0', \
    MAPPING 'MAP_AUPMGEN_TR0_CPF', \
    MAPPING 'MAP_AUPMGEN_TR0_CPF_PERF', \
    MAPPING 'MAP_AUPMGEN_TR_CPF_PERF', \
    MAPPING 'MAP_AUPMVEH_LIB', \
    MAPPING 'MAP_AUPMVEH_LIB_CPF', \
    MAPPING 'MAP_CHARGED_PREMIUM_FACT_TR1', \
    MAPPING 'MAP_IA_POLICY_TERM_LKP_2', \
    MAPPING 'MAP_SA_POLICY_SALES_CHAN_LIB', \
    MAPPING 'MAP_SIPGED_DAILY_2_LIB', \
    MAPPING 'MAP_SIPGED_LIB', \
    MAPPING 'MAP_SIPGED_TR', \
    MAPPING 'MAP_SIPRES_LIB', \
    MAPPING 'MAP_SIPVES_LIB', \
    MAPPING 'MAP_WA_CLAIM_FACT_TR1', \
    MAPPING 'MAP_WA_DRIV_VEH_FACT_TR1', \
    MAPPING 'MAP_WDC1_CLIENT_LIB', \
    MAPPING 'MAP_WDC1_CLIENT_LICC_LAST_VERS', \
    PROCESS_FLOW_MODULE 'NEW_ARCH_WF', \
    PROCESS_FLOW_PACKAGE 'DAUTO', \
    PROCESS_FLOW_PACKAGE 'WAUTO') \
    OUTPUT LOG TO 'C:/TEMP/DELTA_RS52_LICC2_exp.log'
    #now to import,still with OMBPLUS,
    OMBCONNECT my_user/My_password@host:port:SID
    OMBIMPORT MDL_FILE 'C:/temp/DELTA_RS52_LICC2.mdl' USE UPDATE_MODE OUTPUT LOG TO 'C:/temp/DELTA_RS52_LICC2_imp.log'
    Hope this is what you wanted
    Michel

  • OIM11g R1: Exporting Objects using command line utility

    Hi All,
    Is it possible to export/import OIM objects using command line utility (As per my requirement, I am not suppose to use the OIM Deployment Manager from UI)?
    I am looking for something like oimtool if provided OOTB by oracle.
    Regards,
    Sunny
    Edited by: 968494 on Nov 2, 2012 3:35 PM

    Sunny,
    What kind of objects do you want to export/import. I am asking because we have such command tool with Weblogic and OIM. Check this out:
    1-http://itnaf.org/2012/09/23/how-to-import-and-export-metadata-from-oim-mds/
    2-ttp://docs.oracle.com/cd/E14571_01/doc.1111/e14309/utils.htm
    I hope this helps,
    Thiago Leoncio.

Maybe you are looking for

  • GPIB write error code 6, how to do proper wait in GPIB comm

    Hi! I use a Keithley MUX and a DVM to measure different values in my system, including 4 wire resistance. My project runs for several hours without any problem, but last night I have got an error after approx. 8 hours runtime. My error out in the mai

  • Page Navigation Safari not working

    Hi, I am using page navigation but this is not working on Safari. Version 1.0 and 2.0.4 have been tested on OSX 10.2 and 10.4.7. I am left with a page with nothing visible that I assume is meant to submit the form. The source of the page follows. Any

  • BP Creation with BOL

    HI All, My Requirement is: 1. Create New BP 2. Assign Marketing Attribute to it. 3. Create Relations with other BP's I am planning to use BOL Objects for this. if any body has any idea or done some thing similiar, please share your Ideas. I need to p

  • Problem keep getting the eye and two dots

    Sound like many people are haven the same problem and no reply back from Verizon yet. Cell phone sit there, and goes into this mod, "Eye with two dots" on the display. Lock the cell, and after some time, does a reboot. I removed the battery, and thou

  • Determining Release Number of OIM AD Connector

    Once the AD Connector is installed in OIM how do you tell if you've installed version 9.0.3 or 9.0.4? Reading the manifest files before deploying easily tells you what you're installing, but after it's installed you're supposed to check the version n