How can I create DRM-BATCH-CLIENT book export to database

We are running DRM 11.1.2.3.500 and feeding master data from DRM to DB via a Book.
This process has been working fine run from a client.
When i try to run this script it hangs, its not giving error also
Our redacted config file is show below:
[General]
Operation=Export
URL=net.tcp://<SERVERNAME>:5210/Oracle/Drm/ProcessManager
LogFileName=C:\rdsc.log
[Export]
ExportType=Export
ExportName=account_export
OutFile= C:\export_data.txt
CurrentVersionAbbrev=2014-08-currentversion
please help me
Thanks

Make sure you have tested the Export before you automate it, to ensure the DB Connection is good and the results are populating in the target table.
Try the following:
[General]
Operation=Multiple
URL=net.tcp://<SERVERNAME>:5210/Oracle/Drm/ProcessManager
LogFileName=C:\rdsc.log
[Operations]
OperationCount=1
Operation1=Export
[Export]
Operation=Export
ExportType=Export
ExportName=account_export
CombineExportOutput=False
CurrentVersionAbbrev=Current_Version
PrevVersionAbbrev=Previous_Version

Similar Messages

  • How can I force DRM-BATCH-CLIENT to create a non-combined Book export

    We are running EPM 11.1.2.1 and feeding master data from DRM to Planning via a Book.
    This process has been working fine run from a client. We export the Book and DRM delivers a zip file to the client PC which we can place on the server and load.
    We are now trying to automate the end to end process so are looking at using the DRM Batch Client.
    If we run with "CombineExportOutput=Y" we can create a single text file no problem.
    Whenever we set "CombineExportOutput=N" we can't get any export file created.
    We really want to do is to get the same zip file with multiple dimension files inside it as we do when running from the client. How do we do this?
    The manual indicates that the files created take their names from the exports but I am not sure about where this comes from.
    The exports and books are set with a target of 'Client'
    Our redacted config file is show below:
    [General]
    Operation=Export
    UserName=<user>
    Password=<passwd>
    URL=net.tcp://<drmserver address>:5211/Oracle/DRM/ProcessManager
    LogFileName=C:\rja\DRMEXPORT.log
    ObjectAccess=System
    [Export]
    ExportType=Book
    OutFile= "C:\rja\DRM_Book\Plan_Book.zip"
    BookName="PSPB_Book"
    CombineExportOutput=N

    OK, I can see that now. Strange that DRM is under System Integration and not EPM (kinda understand it but the various EPM bits do seem to be treated differently across the Oracle website).
    PLUS if I look at [The Forum Desription|https://forums.oracle.com/forums/forum.jspa?forumID=409] it states :
    Covers Hyperion Financial Data Quality Management, Hyperion Data Relationship Management (formerly Hyperion MDM), and respective administration/development topics
    I would not have posted if that description had not been there - can anyone update it?
    I have re-posted the thread!
    Edited by: 949747 on 23-Jan-2013 19:11

  • How can I create a new client?

    Hi,
    I'm new in SAP XI and I want to know how I can create a client 100 and how can I assign a client to an user "XISUPER"??
    Can you help me please?
    Thanks.
    Regards
    Stefan

    Hi
    Follow these steps:
    1) Create a client going in to the path given in my previous reply.
    2)Login into the client with
    User: <b>DDIC</b> or <b>SAP*</b>
    Password
    For default password go thru this link
    http://help.sap.com/saphelp_nw04/helpdata/en/52/67179f439b11d1896f0000e8322d00/content.htm
    3)After login using Transaction <b>su0</b>1, create ur <b>XISUPER</b> user and assign all Roles to it.
    Regards
    Arpit Seth
    P.S Even Sudhir is same thing in his last reply

  • How can I create a new table in a MySQL database in MVC 5

    I have an MVC 5 app, which uses MySQL hosted in Azure as a data source. The point is that inside the database, I want to create a new table called "request". I have already activated migrations for my database in code. I also have the following
    code in my app.
    Request.cs: (inside Models folder)
    public class Request
    public int RequestID { get; set; }
    [Required]
    [Display(Name = "Request type")]
    public string RequestType { get; set; }
    Test.cshtml:
    @model Workfly.Models.Request
    ViewBag.Title = "Test";
    <h2>@ViewBag.Title.</h2>
    <h3>@ViewBag.Message</h3>
    @using (Html.BeginForm("SaveAndShare", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
    @Html.AntiForgeryToken()
    <h4>Create a new request.</h4>
    <hr />
    @Html.ValidationSummary("", new { @class = "text-danger" })
    <div class="form-group">
    @Html.LabelFor(m => m.RequestType, new { @class = "col-md-2 control-label" })
    <div class="col-md-10">
    @Html.TextBoxFor(m => m.RequestType, new { @class = "form-control", @id = "keywords-manual" })
    </div>
    </div>
    <div class="form-group">
    <div class="col-md-offset-2 col-md-10">
    <input type="submit" class="btn btn-default" value="Submit!" />
    </div>
    </div>
    @section Scripts {
    @Scripts.Render("~/bundles/jqueryval")
    HomeController.cs:
    [HttpPost]
    public ActionResult SaveAndShare(Request request)
    if (ModelState.IsValid)
    var req = new Request { RequestType = request.RequestType };
    return RedirectToAction("Share");
    The point is that, I want the user to fill the form inside the Test view and click submit, and when the submit is clicked, I want a new entry in the new table to be created. But first of course I need to create the table. Should I create it using SQL query
    through MySQL workbench? If yes, then how can I connect the new table with my code? I guess I need some DB context but don't know how to do it. If someone can post some code example, I would be glad.
    UPDATE:
    I created a new class inside the Models folder and named it RequestContext.cs, and its contents can be found below:
    public class RequestContext : DbContext
    public DbSet<Request> Requests { get; set; }
    Then, I did "Add-Migration Request", and "Update-Database" commands, but still nothing. Please also note that I have a MySqlInitializer class, which looks something like this:
    public class MySqlInitializer : IDatabaseInitializer<ApplicationDbContext>
    public void InitializeDatabase(ApplicationDbContext context)
    if (!context.Database.Exists())
    // if database did not exist before - create it
    context.Database.Create();
    else
    // query to check if MigrationHistory table is present in the database
    var migrationHistoryTableExists = ((IObjectContextAdapter)context).ObjectContext.ExecuteStoreQuery<int>(
    string.Format(
    "SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = '{0}' AND table_name = '__MigrationHistory'",
    // if MigrationHistory table is not there (which is the case first time we run) - create it
    if (migrationHistoryTableExists.FirstOrDefault() == 0)
    context.Database.Delete();
    context.Database.Create();

    Hello Toni,
    Thanks for posting here.
    Please refer the below mentioned links:
    http://azure.microsoft.com/en-us/documentation/articles/web-sites-dotnet-deploy-aspnet-mvc-app-membership-oauth-sql-database/
    http://social.msdn.microsoft.com/Forums/en-US/3a3584c4-f45f-4b00-b676-8d2e0f476026/tutorial-problem-deploy-a-secure-aspnet-mvc-5-app-with-membership-oauth-and-sql-database-to-a?forum=windowsazurewebsitespreview
    I hope that helps.
    Best Regards,
    Sadiqh Ahmed

  • How can I create a new address book in Thunderbird?

    I cannot figure out how to create a brand new address in which to place 'contacts'.

    I repeatedly followed your above instructions and "Address
    book" does NOT appear as a choice. Presently existing address books do appear but not a new address book. Perhaps I have a corrupted file????? I just don't know what to try next, I have already downloaded / installed a new copy of Thunderbird 24.4.0 directly from the Mozilla web site.
    Thanks for your efforts, sorry to bother you again. I'm frustrated!

  • How can I create a keyboard shortcut to export to pdf in Pages for Mac

    Can anyone explain how to create a keyboard shortcut that works in pages?

    Reluctant as I am to contradict Viking OS X, yes it is possible.
    This is for Yosemite, it is slightly different in other versions of OS X.
    Menu > Apple > System Preferences > Keyboard > Shortcuts > App Shortcuts > + > Applications > Pages > Menu Title: PDF… > Keyboard Shortcut > hold down whatever combination you want > Add
    As Viking says this won't choose Good, Better, Best but at least it gets you to that point. Unfortunately it always defaults to Good.
    NB that PDF… has to be typed with ALL CAPS and the ellipsis is option ; or copy from here. It has to be literally what is in the menu.
    You could make a more intelligent keyboard shortcut with 3rd party Apps like Spark [free] or QuicKeys or iKey or Shortcuts for Mac or Keyboard Maestro.
    Peter

  • Run a batch file from separate windows box to invoke DRM batch client

    I need your suggestions on the following. 
    ODI & DRM are installed on separate boxes.
    Now I want ODI to invoke a batch file (kept on DRM - Windows box, this batch file invokes DRM batch client to export the metadata). I tried using shared folder concept,but no success.
    Any pointers please?

    This should work for you-
    Create a batch file on your current server (ODI) and write in the path to the other batch file on the other server.
    //Server2completename/D$/Path/yourbatchfile.bat
    From ODI call your batch file that you created on the same machine.. which will inturn call the other batch file on a different machine to execute batch client.
    Also can you paste the errors that you may be getting.. need to check if you are getting any specific issue related to this.
    Thanks
    Denzz

  • How can I print (into a physical book) a photo journal created by iPhoto using iPad?

    How can I print (into a physical book) a photo journal created by iPhoto using iPad?

    I think I worked out a clunky but workable way to do this.  There is an app for iPad called PhotoSync.  It is not free for the iPad but free for computers you want to sync with.  Install it.  When you edit photos in iPhoto on your iPad make sure to save them to Camera Roll.  PhotoSync will take the edited pictures from your iPad that have been saved into Camera Roll and will move them to your computer in batch (so long as it is on the same wireless network) where you merely import them into iPhoto or whatever software you use, and you can build a book for print.  The secret is to save the pictures into Camera Roll as you edit them, there is no batching function into camera roll, so doing it afterwards is tedious.  It actually works quite simply and because PhotoSync is free for computers, you can transfer photos to any computer that has downloaded the free software that is on the same wireless network - works great to get pictures to kids' or spouses computers.

  • How can I create a Forms9i Runtime for client distribution

    Currently we have an application developed in Forms 5.0.6.8.0 our Database has been upgraded to 9i DB. The application is working fine with this combination but we want to upgrade Forms in order to get Oracle Support. We just get the Developer Suite 9i package and we're trying to test our application with this software.
    How can I create the client runtime for Forms 9i?
    My application will work with Win 95 and 98?
    Thanks.

    Oracle9i Forms is web-only. Forms 6i is the last release of Forms to have client/server and character mode.
    You can test Forms from the Builder by installing iDS. To deploy Forms using iAS follow the documentation. It's all there in the deployment guide.
    iAS and Forms doco can be found on OTN.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • I want to order a second copy of an iPhoto book. Thought created in the smaller format only the larger format is showing. How can I switch an existing iPhoto book back to the smaller format?

    I want to order a second copy of an existing iPhoto book. Though created in the smaller format now only the larger format is showing. How can I switch an existing iPhoto book back to the smaller format?

    To change a book size duplicate it (select the book in the source pane and press command and D) since text flow and picture  placements can change due to the size differences - then click on change themes, select the same theme and the new size
    check it carefully
    Before ordering your book preview it using this method - http://support.apple.com/kb/HT1040 - and save the resulting PDF for reference - the delivered book will match it.
    LN

  • How can mass create batch classification for many material batches? ?

    Hi Experts,
    In our system , there are so many material batches which have not been classified,see by
    BMBC Tcode.
    That means these batches has no values in the batch class. I know we can create
    classification for these batches with MSC2N Tcode.
    But there are so many batches  which have not been classified,more then 2000.
    It is not possible to create classification for every batch with with MSC2N once a time.
    So how can I create batch classification for so many batches once a time?
    How can I mass create batch classification for so many batches??
    Thanks for any reply!

    Hi,
    Please be aware that SAP does not support the use of batch
    input in the classification system. SAP recommends you use BAPI's for
    example in your case BAPI BAPI_OBJCL_CREATE and BAPI_OBJCL_CHANGE
    would be able to help. For more information, please have a look at the
    note: 943559 - Point 2 and 13. Point 13 references the note 1083986.
    I hope this helps!.
    Best Regards,
    Arminda Jack

  • Specify DRM Application in DRM Batch Client execution

    Hi,
    I have a development environment with two DRM applications DRMAPPGL and DRMAPPCM.
    I am running a Standard Table Export routine in the application DRMAPPCM using the below command line syntax in a batch program:
    SET TIMESTAMP=%time:~0,2%%time:~3,2%%time:~6,2%_%date:~4,2%-%date:~7,2%-%date:~10,4%
    SET DRMBATCHCLIENT=E:\Oracle\Middleware\EPMSystem11R1\products\DataRelationshipManagement\client\batch-client\drm-batch-client.exe
    SET Explogs=E:\Jobs\ODI\Logs\
    SET DRMID=administrator
    SET DRMpassword=password
    SET ProcessManager=net.tcp://localhost:5212/Oracle/Drm/ProcessManager
    REM Export process for Account
    %DRMBATCHCLIENT% /op=E /u=%DRMID% /pw=%DRMpassword% /url="%ProcessManager%" /log="%Explogs%CPPLAccountExp%TIMESTAMP%.log" /xtype=E /xname="AcctTableExp" /cver="Hyperion Planning" /pver="Hyperion Planning" /fhier="Account" /thier="Account"
    I keep getting the error:
    8/27/2012 2:31:48 PM - *** Oracle DRM Batch Client starting ***
    8/27/2012 2:31:48 PM - EInvalidParamError with message: "The name supplied on the Export Name parameter (Account_Table_Export) was not found using Standard object access privileges in the Data Relationship Management database. Use the /objectaccess parameter to specify a different object access privilege." while running Export
    8/27/2012 2:31:48 PM - => ERROR: Error during initialization: The name supplied on the Export Name parameter (Account_Table_Export) was not found using Standard object access privileges in the Data Relationship Management database. Use the /objectaccess parameter to specify a different object access privilege.
    8/27/2012 2:31:48 PM - *** Oracle DRM Batch Client stopping ***
    The object access is the default "Standard", since the Export is a Standard Export and not system or user.
    I am thinking this is because, the application does not know which DRM application to use.
    But I do not see any mention in the DRM user guide document, which says what key should be used when executing the export, to specify the DRM application name.
    I am thinking if it is the Process Manager URL, but it does not seem like it is possible to specify the application name there either.
    Can anyone help me out here, I need to know how I can tell the Batch client to use that export routine from the DRM application "DRMAPPCM".
    Thanks,
    Anindyo

    I figured out what I needed.
    The Process Manager service URL for each application is found on the DRM Configuration Management Console.
    When you create a new DRM application, a new process manager URL is associated with the application.
    I found out that the port number for that application is different from the other DRM application.
    Regards,
    Anindyo

  • How can I create an iBook using iBooks Author using images from a PDF?

    I have a complex book with custom fonts and lots of images, and the client wants it on the iPad. So my most reasonable option seems to be to take images from a PDF and use them for the pages. However, images in iBook Author don't get "laid out" as expected in Portrait mode. How can I  create a layout that is essentially one image per page in portrait mode, and then convert that to landscape mode? Or is there an easier way to go about this?

    tk0us wrote:
    Make sure you have disabled portrait in the Inspector.
    I don't understand why portrait mode defaults images and other "widgets" to thumbnails. The original format of the book (and of 99% of all books I'm guessing) is in portrait format. By forcing the book to work only in landscape mode it's forcing the page image to be half the size, and that makes using this book particularly difficult. Is there no way to force the pages to be full-size in portrait mode?

  • DRM Batch Client error during export

    Hello,
    I am experiencing an error when using the DRM Batch Client to execute export books. The same export process fails sometimes and runs to completion successfully at other times. When it fails, it does not always fail in the same place within the export process, and the error is as follows:
    2/2/2011 8:31:40 PM - ERemotableException with message: "Server was unable to process request. ---> Error during Export. Export was unable to run. Error: Timeout expired" while running Export Book
    2/2/2011 8:31:40 PM - => ERROR: Data Relationship Management Server returned error: "Server was unable to process request. ---> Error during Export. Export was unable to run. Error: Timeout expired."
    2/2/2011 8:31:40 PM - *** MDMConnect stopping ***
    Because this issue is sporadic, it seems like there could be a few possible causes:
    1. Network issues
    2. SQL connection/time-out issues -- These particular exports are writing to SQL tables versus flat files
    3. Am wondering if there are any known issues with the MDMConnect? Or are there time-out settings we can adjust?
    We currently have our in-house IT chasing down any possible network or SQL issues. Does anyone know of any issues with the batch client, or have ideas on any other possible causes? Any help is greatly appreciated. Thanks!
    EJ

    There is a timeout setting in DRM system preferences and there are mulitlple session timeout settings in IIS that you may need to configure. Try the system preference first. For very large jobs, ie. hundreds of thousands of nodes with hundreds of properties per node, you'll need to update settings in IIS as well.

  • How can I create an csv/excel file using pl/sql and then sending that file

    How can I create an csv/excel file using pl/sql and then sending that file to a clients site using pl/sql?
    I know how to create the csv/excel file but I can't figure out how I would get it to the clients site.

    968776 wrote:
    How can I create an csv/excel file using pl/sql and then sending that file to a clients site using pl/sql?
    I know how to create the csv/excel file but I can't figure out how I would get it to the clients site.You are trying to do it at a wrong place..
    Whay do you want database (pl/sql) code to do these things?
    Anyhow, you may be interested in :
    {message:id=9360007}
    {message:id=9984244}

Maybe you are looking for

  • Looping through a refcursor to get list of dates as a string

    hi, i have a simple procedure which gives me list of from dates and to dates i need to get the dates a comma separated dates i am not sure if this can be done directly by doing a for loop on the refcursor or i have to fetch it into a record/array and

  • Formula node

    Hi everyone. I have a problem with the formula node. I want to calculate the following  function: Ux=xdot+Omegat*(y-y0)+thetax where xdot, Omegat, y, thetax are all 1D arrays ( honestly these are waveforms but I convert these in arrays) while y0 is a

  • How to list Kerberos Principals on OD Master

    I'm curious with the switch to Heimdal Kerberos how one lists all the principals in a realm?  I remember under Snow Leopard server I was able to list all the Kerberos principals, but so far with Lion I haven't had any luck.  I've tried: sudo kadmin -

  • Deleted windows partition still in MBR

    Hi, I searched google all day long and found out some clues about what could be the problem (even found someone having the same problem as I have) but no solution to repair beside formatting and reinstalling from scratch. What happened is that I had

  • Opening the form will remove usage rights?

    Hi everyone,   I reader extended a form in my trial version. After that, when I try to open the form in livecycle designer, I see a message box saying that " Some usage rights have been applied to the form you want to open. Opening the form will remo