View outline data using batch process

I need to view the data in the member called 'Balance Sheet' in my outline and see if it's equal to zero. If it's not, I'd like to send a message saying so. Does anyone know of a way to automate this process? Thanks -

You could write a report script and use a MaxL script to dump the results to a text file, then use VB or Perl script to parse the text file and perform an action based on the results.<BR><BR>The upgrade to v7 is pretty painless. You should consider upgrading if possible.<BR><BR>Regards,

Similar Messages

  • FDM Scripting Query for last imported source file using Batch Processing

    Hi Experts,
    I'm currently in the processing of automating the FDM load process on our version of FDM 9.3.3 using batch processing and the FDM Task Manager. Most of the process works fine including an email alert which notifies users of when a data load has taken place.
    As part of that email alert I am trying to attach the source file that has been loaded in batch processing. I have managed to get an attachment using the following FDM Script Object of:
    "API.MaintenanceMgr.fPartLastFile(strLoc, True, False)".
    But have noticed that using this only attaches the last "manually" imported file rather than the last file imported using the batch processing.
    My question is: Is it possible for someone to steer me into the right direction of either a more appropriate API or if I have missed a step in my script.
    Any help as always would be much appreciated.
    Cheers
    Pip

    Unfortunately the batch process does not work the same way as on-line. I am assuming you are using the normal batch load and not Multiload (although the batch is simisar).
    the batch file name gets recorded on the tBatchContents table, and moved to the import/batches folder under the folder for the current batch run. However, if successful the file gets deleted (and from memory does not get archived). To add the import file to the e-mail, after a successful load, i think you will need to store a copy of it prior to importing the file.

  • Creating Process Orders using batch processing

    Hi :
    I am creating process orders automatically by using batch processing.I have a custom T.code and custom table.The batch program should be build based on custom table.From where will i get the data for batch processing? from custom table? if so how can i prepare a file for that.
    I have to submit this batch program to the custom T.Code so that it creates Process Orders automatically.
    Can u guide how to procede in this.
    Thx.
    Raghu

    Hi Raghu,
      What i think is u have a custom program which creates Process Orders using some user data. this user data is posted to a custom tabel.
    Now if i am right then u want to create a batch program around this custom program so as to achieve benifits of batch processing.
    yopu can check these links to better understand how to create a BDCprogram.
    http://www.sapdevelopment.co.uk/bdc/bdchome.htm
    http://www.sap-img.com/abap/learning-bdc-programming.htm
    http://www.sappoint.com/abap/bdcconcept.pdf
    http://www.sappoint.com/abap/bdcconcept.pdf
    http://www.sap-img.com/abap/learning-bdc-programming.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/fa/097022543b11d1898e0000e8322d00/frameset.htm
    http://www.planetsap.com/bdc_main_page.htm
    http://searchsap.techtarget.com/ateQuestionNResponse/0,289625,sid21_gci1068429_tax293481,00.html
    Hope this helps.
    Award rewar points if its useful.

  • How to add or remove silence at the beging and at end of each audio file using batch process

    Hi all,
    I am new to this forum. I have been using Audition 3 for the last couple of years and these days I have to coop with an extra difficult situation, which is; I have more than 2000 files that start and finish with a random length of silence, it varies 0 to 7 sec. My question is, how can I set the silent duration at the beginning and end of each file to a constant amount of 2 sec by using batch process?
    Kind regards,
    Pavlos

    >it's relatively easy to select an absolute time at the beginning of a file (we discovered how to do this a while back), the same technique simply doesn't work at all at the end of it
    Indeed! I had a few trials last couple of days and noticed it.
    Definitely we need help on Audition's scripting language from the people in Adobe. Why don't they produce a scripting language documentation?!   

  • How to use batch processing with jpg pictures taken with iphone cameras?

    How to use batch processing with jpg pictures taken with iphone cameras?

    Open the editor . Go to file>process multiple files
    Sent from my iPad

  • How to view clob data using sql

    Hi,
    In our database, we have one table that is having one column of CLOB datatype but now i want to view the data using sql select query but it throws error: "Datatype not supported".
    Could any one please let me know how to view the clob data using select query.
    Oracle DB version : 10.2.0.3
    Thanks

    h5.
    use read procedure
    PROCEDURE READ (
    lobsrc IN BFILE|BLOB|CLOB ,
    amount IN OUT BINARY_INTEGER,
    offset IN INTEGER,
    buffer OUT RAW|VARCHAR2 );
    example  Updating LOB by Using DBMS_LOB in PL/SQL
    DECLARE
    lobloc CLOB; -- serves as the LOB locator
    text VARCHAR2(32767):='Resigned: 5 August 2000';
    amount NUMBER ; -- amount to be written
    offset INTEGER; -- where to start writing
    BEGIN
    SELECT resume INTO lobloc
    FROM employees
    WHERE employee_id = 405 FOR UPDATE;
    offset := DBMS_LOB.GETLENGTH(lobloc) + 2;
    amount := length(text);
    DBMS_LOB.WRITE (lobloc, amount, offset, text );
    text := ' Resigned: 30 September 2000';
    SELECT resume INTO lobloc
    FROM employees
    WHERE employee_id = 170 FOR UPDATE;
    amount := length(text);
    DBMS_LOB.WRITEAPPEND(lobloc, amount, text);
    COMMIT;
    END;

  • PCM 10 Export Cost data via batch processes (BOM model)

    Hi there,
    Is there a way to schedule batch processes to export PCM Cost data ?
    Regards.

    Hi,
    In fact, the Console utility provided with PCM enables tasks to be run from a console, so no user interaction is required.
    It’s initiated by running the PCMConsole program file located by default in the C:\Program Files\SAP BusinessObjects\PCM.
    Using command-line statements, you can establish “jobs” (or scheduled tasks) to run commands against the various applications at a time of your choice.
    You may create the required commands manually, or alternatively, use the Console Wizard utility, which is provided to assist you with generating and correctly formatting Console commands and command files.
    The program is run in conjunction with a series of commands and parameters that are executed on the PCM model server. Commands can be run:
    • from the command line or
    • from within a batch file.
    Best regards,
    Siwar

  • Station Info using Batch Process Model

    Hi,
    I have a test sequence that use a sequential process model and I grab station information using the following.
    RunState.Root.Locals.StationInfo.StationID
    RunState.Root.Locals.StationInfo.LoginName
    I am creating a new test sequence which uses the batch process model - when I try to grab the Station Info data using the syntax above I get the following error 
    Unknown variable or property name 'RunState.Root.Locals.StationInfo'.
    Can some please advise if I am accessing the wrong area when using a batch process model?
    Thanks & Regards,
    Shane.
    Solved!
    Go to Solution.

    In the batch and parallel models you can access this information using:
    RunState.Root.Parameters.ModelData.StationInfo
    -Doug

  • URGENT, please help...Removing password security using Batch Processing

    I have a few thousand PDFs which me and a team of colleagues have password protected but these now need the security removed. Is there anyway we can batch process the removal this security? I was thinking that if I added them to the watched folder and ran the batch process I've set up which has no security I may be asked for the password/ s (there are 5 passwords I used in total) and it could remove the password for those attached to that password and then I run the same for the other 4 passwords....any ideas at all would be really appreaciated.
    Many Thanks
    Claire

    Two solutions come to my mind:
    1. As i remember there is the option to run a batch-processing in Acrobat (Prof.). Maybe you can set up a new batch which removes the protection.
    2.
    Otherwise i have a programm (with a special pdf library) which could be adapted to do that. You can contact me for some details.
    Regards,
    ToM

  • How to force Functional Module to use Batch-Process ?

    Hello all,
    I am calling a FM via synchronous RFC. No matter what I try the functional module is started
    in a dialog process in the remote system. This is inconvinient because sometimes the process takes too long and a timeout occurs. I also tried transactional RFC and asynchronos RFC but no  difference here.
    The FM will always be executed in a dialog process.
    How can I tell the functional module to use a batch process ?
    Thank you for your answers,
    Axel

    hi,
    use
      CALL FUNCTION 'HR_START_BATCHJOB_IN_OTHER_SYS'
        EXPORTING
          repid                = 'sy-repid'              "           "Program name
          variant              = 'VAR'
        JOBNAME =
        CALL_BACK_DEST =
        CALL_BACK_ID =
      IMPORTING
        JOBCOUNT =
        INDX_ID =
        TABLES
          valutab              = it_sel.
    you can set your program in batch mode using the above function module
    Yogesh N

  • Attaching BLOB Data using BPEL Process

    Hi,
    I need to upload resume(BLOB Data) into irc_documents.binary_doc(binay_doc is BOLB Data type) by using BPEL Process.
    Could you please let me know the steps to be followed to upload the Binary Document.
    My Contact Mail Id:[email protected]
    Regards,
    Praveen

    by use of for example a opaque schema you should be able to get the data in your process.
    http://soastuff.wordpress.com/2007/06/06/handling-opaque-datatypes-in-bpelesb/
    this might help.
    do you want to send the binary data thrue the whole bpel process, or do you want to get in somewhere in the middle of the process ?

  • How to reduce file size when using batch processing?

    I use File > Process Multiple Files to batch process photos to a smaller file size along with adding my watermark.  I've played with many different settings and no matter what I choose, I can't get my average file size to be less than about 200k.  However, when I've exported the same photos using iPhoto, I can get the file size to about half of that with no difference (to my naked eye at least) in quality.
    I definitely want to keep the height at 768 pixels so that needs to stay constant.
    My current settings in batch processing (average file size = 200 kb)
    Resize images with a height constraint of 768 pixels at 150dpi
    What I've tried:
    Resize at 72dpi (reduced file size by about 5kb)
    convert file to JPEG low quality (reduced file size by about 10kb)
    convert file to JPEG medium quality (not much difference in file size)
    I'm using PSE 10 on a Mac running Lion.
    Thank you in advance for your help!

    You should go with default settings of Optimizer.
    One difference between default settings of Optimizer and Reduce file size is that Optimizer does not guarantee a reduction in file size (if your Optimizer settings lead to an increase in file size, that's what you will get).
    With Acrobat 9, the default setting in Optimizer has an additional setting which would not do an image optimization that results in increase of file size. In that sense it would in most cases give a smaller file.

  • Using batch processing in PS CC 2014 shuts it down but is fine in PS CC.

    When I updated to Photoshop CC 2014 last year, everytime I batch processed a group of images using actions it would eventually just close down PS (if not during the process).  So I moved back to Photoshop CC where this was not an issue.  I thought giving it some time there may have been some bugs fixed etc so thought I would try it again now but I am still having the same issues so have again reverted back to Photoshop CC.  Anybody else have these issues or know if I am doing something wrong? Many thanks in advance.

    I believe I have figured it out - I need to flatten the image, even though there are no layers except for layer 0, first.

  • Can I extract images from PDFs using Batch Processing as I have many separate PDFs all with images t

    I have about 500 separate PDF pages all that need their images extracting, surely there must be a way to run a batch command on it?
    PLease help! it will take me for ever!

    Advanced>Batch Processing...
    Click the "New Sequence" button
    Name the sequence (i.e. Extract Images)
    Click the "Select Commands..." button
    Select one of the following items:
    - Export All Images As JPEG,
    - Export All Images As JPEG2000,
    - Export All Images As PNG,
    - Export All Images As TIFF
    Click the "Add" button
    Click the "OK" button
    Select your preference in the "Run commands on:" pop-up menu
    Select your preference in the "Select output location:" pop-up menu
    Click the "Output Options..." button
    In the "Output Options" dialog box, make your preference selections.
    Click OK
    Click OK
    Click the "Run Sequence" button.
    Sabian

  • How to view huge data by batch job process

    Dear ,
    Some times client wants to see Reports with so many plants like 1000 when the data is available with 1000 once we execute it will take so much time
    so i know one process is there to control this , on the menu bar we have to create some back ground job process  plz let me how to do it
    Thanks to all

    Dear vemuri santosh kumar
    What OP Asking is ,
    For example i am excuting one report -- so i have so many doc no are there as well as
    ex in vf04 i have so many billing types are there
    so diractly if i excute system will take some time right /
    so he wants to escape this delay //
    I hope You understand

Maybe you are looking for

  • Mac to XP. Windows not showing up in Sidebar. And mystery computer.

    Hello. I'm trying to establish a small connection between my Mac and my mothers PC, she often have problems with it, and it is low on HD space, so I thought I could use my Mac as a storage kind of thing. Anyhow, the PC does not show up in sidebar, an

  • X6250  STK REM BIOS upgrade

    Hi All, we had a minor problem with on STK REM Raid controller during installation of w2k8. On one of six similar X6250 the system disk crash 2 time and SUN support advised me to upgrade the BIOS of the STK from version 15825 to 15829 (the latest one

  • IPhone 5 wifi, i know, but it is annoying.

    I just purchased an iPhone 5. Now the problem is that the wifi is not working as it should. I upgraded from an 5th gen ipod touch that was able to locate and connect to every wifi network of my neighbourhood and college, but my new iphone cant even d

  • Download Previous Versions of Oracle Database (11.1.0.6)

    Hi, I am trying to download the following but not able to locate on www.oracle.com. Oracle Database 11g R-1 Base (11.1.0.6) for Linux (32-bit) Oracle Clusterware 11g R-1 Base (11.1.0.6) for Linux (32-bit) Appreciate if anybody can point me to the lin

  • Installing 10.4 on an iBook 2.2

    Hi there. One of my relatives has an iBook version 2.2 (PowerPC G3, 700MHz, 384MB RAM, CD-ROM drive), currently running OS X 10.2.8. He'd like to try and upgrade the OS to 10.4. Assuming that we can still get hold of a copy of this (perhaps via an au