Release to accounting - Can we run jobs in parallel?

Hi Guys
While passing our Sales invoices from SD to Accounts receivables, our release to accounting job is taking very very long time. I was planning to split this job into multiple steps, each releasing accounting documents for a certain set of customers.
In a normal scenario, the accounting documents are released simultaneously when the billing document in SD gets generated. However, at our client we follow a two step process, where the billing document gets generated but it is not passed to accounting immediately. We execute "Release to accounting" job to accomplish this. As this job is run open-ended , contrary to the billing job (which is split into multiple steps by RV60SBAT), it takes very long time to finish.
Our FI Folks have raised concerns on splitting the release to accounting job into multiple steps, as it might cause problems on allocation of document numbers by the program. I don't see any issues as the normal scenario (simultaneously creating billing/accounting) does the same thing.
Please let me know if you see any issues with this.
Thanks.

Hi,
You can run parallel job that should not affect the performance of the system but you would have lot of document numbers which will not be used as system would buffer them. There is a option to remove the buffer but then the performance could get affected.
Regards
K.R

Similar Messages

  • Can i run css on parallels?????

    my computer is dieing and its old and just baag. i was looking into buying a macbook nothing else thats the best i can afford and i need a notebook for skool. i know that you can run windows on parallels i love windows for its independicy but i want a mac for its features and its style. i was wondering if i could run counter strike source on it or other games like basic windows games. and if i can i want to be shure that its not gonna be crappy peformance if anyone has css on there computer what is the FPS rate and is there steam problems???

    "is there a program or a way i can run it "
    http://www.apple.com/macosx/bootcamp/
    Please search the discussions before posting. Questions regarding running Windows games on Macs has been asked and answered many times in the past and can save you time in the future.

  • OWB 10.1: Can't run jobs after taking tablespaces offline

    Hi,
    We merged a number of tablespaces together (that have no link to our OWB process whatsoever, they just share the same database). After we merged them we took the old ones offline.
    Now our regular warehouse process won't run. It doesnt use any of the old and/or new tablespaces, but we get the following error:
    ORA-20211: Active job does not exist, cannot link to job.
    Can this have any relation to the changed database configuration? We use OWB 10.1 icw Oracle 10.1.
    What can I do to correct this situation? Restart the server? Take the tablespaces back up? Or are the problems unrelated?

    i presume this is on TEST and not PROD box, anyways i think what you got to do try and find out what objects were there in old tabespaces which are used in owb as this could be in unusable state or this is something to do with permissions. Check if the required permissions are granted .
    P.S:
    ====
    ORA-20211: A user specified error message
    Error messages starting from -20000 until -20999 are user specified error messages.
    Oracle provides these range of codes so applications can raise an application specific error, which will be displayed after the chosen code.
    This is done using the raise_application_error pl/sql function.
    You'll have to contact the application provider should you want to have more detail about the error message.
    Edited by: user647181 on Oct 16, 2008 1:45 AM

  • Can I run job PROGRAMs in process chain under my user-id?

    Hi! I have a following problem. When schedule PROCESS CHAIN, then all JOBs are created with my user-id, but programs in STEPs are running with default system user-id (in our case - it's BWADM).
    Is it possible to make a setup that programs (i.e. steps) in particular process chain will be running with <b>my</b> user id, not <b>system</b> user id?
    The issue is that system-id BWADM has not all my authorizations, so cannot get proper results out of my process chain.
    Thank you!
    Vitaliy
    http://www.hp.com/go/sap -> BI

    Hi,
    You need to save those jobs while logged in as your user id. Example, in Infopackage, save it then it will contain your user id. When that infopackage is executed, then it will have your user id.

  • Running Jobs in Parallel

    Hi There,
    I have two procedures A & B.
    I want to run these two in parallel.
    How can I achieve this ?
    I want to run from Oracle.
    Will DBMS_JOB work here?
    Though two jobs are scheduled at the same time,
    it will run one after the other based on the job_id
    Thanks.

    You can use DBMS_JOB to do that. Submit both procedures into job queue one after the other and when you COMMIT, they would be run at the next available oppourtunity.
    it will run one after the other based on the job_idThat depends upon the parameter job_queue_processes configuration. What is this setting currently?

  • Unix master shell script to run jobs in parallel with dependency

    I need a master shell script which would call the following shell scripts as per below order. Kindly note that if any shell script fails then the master shell script should abort.
    Level 1     PRODUCTS
         SP_ROST_DLY_STG_lD
         SP_ROST_DLY_ITG_lD
    After Level 1 completes run below two shell scripts in parallel:
    Level 2     SP_IDL_EDGE_CON_POSTN_STG_Ld ,     SP_IDL_EDGE_ACCT_POSTN_STG_LD
    After Level 2 completes run below shell scripts as per the seqeunce and in parallel:
    Level 3     SP_IDL_EDGE_ACCT_STG_LD ,     SP_IDL_EDGE_CONT_STG_LD
         SP_IDL_EDGE_ACCT_STG_VAL ,     SP_IDL_EDGE_CONT_STG_VAL
         SP_IDL_EDGE_ACCT_ITG_Ld ,     SP_IDL_EDGE_CON_ITG_Ld
    After Level 3 completes run below shell scripts as per the seqeunce and in parallel:
    Level 4     SP_IDL_EDGE_CONT_POSTN_ITG_LD ,     SP_IDL_EDGE_VISITS_LD
         SP_IDL_EDGE_ACCT_POSTN_ITG_LD ,     SP_IDL_EDGE_VISITS_DTL_LD

    can i avoid using set -e and use some other method so that if there is an error in previous job then the next job is not triggered.Sure, but it is ugly.
    The below is not the only way to do this...
    Wrap every place you start another script with:
    $ if ! MYSCRIPT; then
        echo Script MYSCRIPT failed. >&2
        exit 1
    fibut the wrapper for parallel scripts is even worse:
    $ MYSCRIPT &
    $ MYSCRIPT_JOBNO=$!
    $ MYSCRIPT2 &
    $ MYSCRIPT2_JOBNO=$!
    $ MYSCRIPT_STATUS=`wait ${MYSCRIPT_JOBNO}`
    $ if [ ${MYSCRIPT_STATUS} -ne 0 ]; then
        echo Script MYSCRIPT failed. >&2
        exit 1
    fi
    $ MYSCRIPT2_STATUS=`wait ${MYSCRIPT2_JOBNO}`
    $ if [ ${MYSCRIPT2_STATUS} -ne 0 ]; then
        echo Script MYSCRIPT2 failed. >&2
        exit 1
    fi
    ...Now, doesn't a simple 'set -e' look much better?

  • Problems running jobs in db 10gR2 from owb 10.1.0.4

    Hi all,
    we have a little problem, we can not run jobs through the deployment manager. The deployment is ok but instead of something running we get to see nothing at all. I already noticed some minor problems that could be solved by granting a few privileges and I am afraid there are a few more missing.
    The installation was a fresh 10.2.0.2 database in which a new runtime repository and schema was created. In the location we specified 10.2 as target database release.
    Is any tip available about where to check ?
    What log/trace could be usefull ?
    Who is running this combination for production ?
    thanks.
    Ronald.

    Thanks for the pointer, it did not help ...
    We opened a TAR and we were suggested changing to owf 2.6.3 instead of 2.6.4. This looks a bit weird to me since as fas as I remember 2.6.4 ( from the 10gR2 companion cd) was installed ... This seems to be working ok now.
    Ronald
    http://ronr.nl/unix-dba

  • Billing Document and release to Accounting

    Hi,
    Please, does anyone could explain me why the process of billing and release to accounting can be executed in different steps ?
    I need explain it to my key-user.
    Best Regards.
    Kleyson Rios.

    HI
    It depends on the business process
    1.Before releasing to accounts if you want to check the value of the invoice and tax implication  any changes required you are able to do before releasing  once that is done then  you can release to accounts.
    2. Once the billing document has generated accounting document then you will not able to change  any thing in the billing document
    Iin configuration you can set the   posting block for billing  document by going to t code VOFA .
    REgards
    Damu

  • Non-admin accounts can't access applications

    We have a computer lab with 20 iMacs running 10.6.4. We have an admin account, a monitor account, an instructor account and a guest account. The guest account can't run Adobe Acrobat - app comes up and asks for admin login and password. Guest account CAN run other apps like Photoshop and Illus.
    The same thing happens with no apparent pattern when logged into instructor and monitor account - sometimes an app will open (this varies from app to app), other times it will ask for admin login and password.
    Have searched forums, tried keychain access fix (doesn't seem to be it) have tried to change permissions on app for guest account to read&write on app, even tried using parental controls to "override" permissions on apps.
    Any ideas?

    hoff,
    I believe this is one for this specialized forum (where you may be able find the answer from previous threads),
    http://forums.adobe.com/community/download_install_setup
    or for Customer Care (tick I Still Need Help and hope for an agent available for a chat),
    http://helpx.adobe.com/contact.html?product=illustrator&topic=downloading-installing-and-s etting-up

  • How we can cancel the invoices those have been released to accounting ?

    Hi,
    How can we cancel the invoices those have been released to accounting? The observation here is since the net value is zero SD is setting the invoices to cleared status. 
    Regards,
    Shrihari M

    FBRA u201CResetting & reverseu201D:  If you want that  cleared accounting document becomes an open item again in customer/vendor account.
    For example:  Have problems with such as payment run and you want to re-do the payment run procedures.  But before you reverse the cleared document, find out how was that document u201Cclearedu201D, via customer payment or credit note?  Or re-assess the reasons of reversing the SD generated billing.

  • Can not see running jobs from, package

    I have a problem with processing parallely runing jobs:
    I am creating another immediately runned jobs in a main job. Those two parallel jobs (2 loads from different databases) have to be finished before I run next operation (working out loaded data). Problem is that, after starting those 2 parallel jobs, I can not see them by select from ALL_SCHEDULER_RUNNING_JOBS that is executed immediately after I create those jobs in a package. If I take a look into ALL_SCHEDULER_RUNNING_JOBS from anonymous statement I can see all my running jobs. Let's sum it up:
    1/ Start of main job
    2/ Running 2 immediately created jobs (load data)
    3/ Checking in loop if jobs created in step 2 are still running
    3.1/ Jobs are running (ALL_SCHEDULER_RUNNING_JOBS check) - sleep for a
    while - It never happens - can't see any running jobs from select executed in
    package but can see them in
    anonymous statement
    3.2/ Jobs finished - start processing loaded data
    Can somebody help me with this task?
    Thanks alot!
    Jakub

    Hi,
    There is no reason a job should be visible from an anonymous block but not from inside a job. There are two things that may be happening here.
    - jobs scheduled to run immediately my not start running as soon as they are created/enabled, you may need to wait a bit before they start running (they will appear in all_scheduler_jobs immediately but maybe not all_scheduler_running_jobs immediately)
    - you may be running into privilege issues. Is the user that executes the anonymous block the same as the user that the job is running as (the job's schema) ? If not maybe the job user does not have privileges to see the job (you can grant alter on the job to the user to ensure this).
    Can you see the jobs in the all_scheduler_jobs view from within the job with status RUNNING ? If you can see jobs in all_scheduler_jobs as RUNNING but not in all_scheduler_running_jobs then this is a bug of some sort.
    Thanks,
    Ravi.

  • Can I run Apple TV 1 and 2 together on the same iTunes account and on the same tv with two hdmi slots?

    Can I run Apple TV 1 and 2 together on the same iTunes account and on the same tv with two hdmi slots?

    Yes.
    Captfred

  • How can i run a executable right after a rman job has run?

    How can i run a executable right after a rman job has run?
    I have a rman job that execute every night. The backup is local.
    I want to have a duplicate of the backup on another machine.
    I want the executable to sync the directory to execute right after the rman backup.
    How can i do this using the job scheduler?
    Normaly, i would configure rman to run the backup on both location. But im having trouble with rman regarding this:ORA-600 [2103] on RMAN Backup to NFS mounted file system

    Hi,
    If the rman job is in fact a Scheduler jobs (appears in the dba_scheduler_jobs view) then you can create a second event-based job that runs after the rman job (and set the raise_events attribute for the rman job).
    Instructions are here
    Create Event based job
    Hope this helps,
    Ravi.

  • How Can I Run a SQL Loader Job from Schedular

    How Can I Run a SQL Loader Job from Schedular , So that It Runs every Day.

    Depends on a couple of factors.
    If you are on a UNIX platform, you can create a shell script and schedule it with cron.
    If you are on a Windows platform, you can create a batch file and schedule it with the Windows scheduler.
    Or, if you are on Oracle 9i or 10g, you could use the external table feature instead of SQL*Loader. Then you could write a stored procedure to process the external table and schedule it using the Oracle scheduler (DBMS_JOB). This would probably be my preference.

  • Can I run two Apple TV units off a single account on separate devices

    Can
    I run two Apple TV units off a single account on separate devices

    Yes you can do that.

Maybe you are looking for