How to test batch jobs using loadrunner??

Hi,
Can anyone pl. tell me how to load test the background jobs in SAP using loadrunner??
Thanks,
Raj.

Hi Samir,
http://www.qualtech-int.com.au/filedb/uploads/LRUG.pdf, the following link is not working, i guess we need to have an account to access the site. Please send me the document if you have , to my email id: [email protected],..
Can you give me a quick walk through of LR with SAP, as i have been assigned to a new project and i have never worked on LR with SAP.. please let me know if you can give me a demo on the same..
You can either show it on my machine , as i have SAP R/3 with BI and also LR..
Please let me know if you can walk me through an example..
If not, pls send me any interactive document with screenshots, so as to start with..
Thanks
Vinni,..

Similar Messages

  • How to create batch job via a program

    hi
    i need to know how to create batch job via a program please suggest
    arora

    Wow!
    > Total Questions:  234 (138 unresolved) 
    ...and now you ask this?
    Please accept our apologies for not pointing out to you way-back-when already that there is a search functionality here at SDN and that the correct forum should be used to post questions to.
    Please read "the rules" at the top of the forum page, and search first => ask questions later.
    I take the liberty of closing your question for you.
    Kind regards,
    Julius

  • How to run the job using DBMS_SCHEDULER

    How to run the job using DBMS_SCHEDULER
    pleas give some sample Iam very new to DBMS_SCHEDULER

    Hi
    DBMS_SCHEDULER
    In Oracle 10g the DBMS_JOB package is replaced by the DBMS_SCHEDULER package. The DBMS_JOB package is now depricated and in Oracle 10g it's only provided for backward compatibility. From Oracle 10g the DBMS_JOB package should not be used any more, because is could not exist in a future version of Oracle.
    With DBMS_SCHEDULER Oracle procedures and functions can be executed. Also binary and shell-scripts can be scheduled.
    Rights
    If you have DBA rights you can do all the scheduling. For administering job scheduling you need the privileges belonging to the SCHEDULER_ADMIN role. To create and run jobs in your own schedule you need the 'CREATE JOB' privilege.
    With DBMS_JOB you needed to set an initialization parameter to start a job coordinator background process. With Oracle 10g DBMS_SCHEDULER this is not needed any more.
    If you want to user resource plans and/or consumer groups you need to set a system parameter:
    ALTER SYSTEM SET RESOURCE_LIMIT = TRUE;
    Baisc Parts: Job
    A job instructs the scheduler to run a specific program at a specific time on a specific date.
    Programs
    A program contains the code (or reference to the code ) that needs to be run to accomplish a task. It also contains parameters that should be passed to the program at runtime. And it?s an independent object that can referenced by many jobs
    Schedules
    A schedule contains a start date, an optional end date, and repeat interval with these elements; an execution schedule can be calculated.
    Windows
    A window identifies a recurring block of time during which a specific resource plan should be enabled to govern resource allocation for the database.
    Job groups
    A job group is a logical method of classifying jobs with similar characteristics.
    Window groups
    A window groups is a logical method of grouping windows. They simplify the management of windows by allowing the members of the group to be manipulated as one object. Unlike job groups, window groups don?t set default characteristics for windows that belong to the group.
    Using Job Scheduler
    SQL> drop table emp;
    SQL> Create table emp (eno int, esal int);
    SQL > begin
    dbms_scheduler.create_job (
    job_name => 'test_abc',
    job_type => 'PLSQL_BLOCK',
    job_action => 'update emp set esal=esal*10 ;',
    start_date => SYSDATE,
    repeat_interval => 'FREQ=DAILY; INTERVAL=10',
    comments => 'Iam tesing scheduler');
    end;
    PL/SQL procedure successfully completed.
    Verification
    To verify that job was created, the DBA | ALL | USER_SCHEDULER_JOBS view can be queried.
    SQL> select job_name,enabled,run_count from user_scheduler_jobs;
    JOB_NAME ENABL RUN_COUNT
    TEST_abc FALSE 0
    Note :
    As you can see from the results, the job was indeed created, but is not enabled because the ENABLE attribute was not explicitly set in the CREATE_JOB procedure.
    Run your job
    SQL> begin
    2 dbms_scheduler.run_job('TEST_abc',TRUE);
    3* end;
    SQL> /
    PL/SQL procedure successfully completed.
    SQL> select job_name,enabled,run_count from user_scheduler_jobs;
    JOB_NAME ENABL RUN_COUNT
    TEST_ABC FALSE 0
    Copying Jobs
    SQL> begin
    2 dbms_scheduler.copy_job('TEST_ABC','NEW_TEST_ABC');
    3 END;
    4 /
    PL/SQL procedure successfully completed. Hope it will help you upto some level..!!
    Regards
    K

  • How to stop Batch Jobs

    Hi Gurus,
             How to stop Batch Jobs
    Thanks
    Dave

    Dave
    You could cancel the Job in SM51 transaction. Choose your PID from SM51 and go to menu-->choose cancel without core. It takes some time to cancel the job completly.
    Please check this link
    how to cancel or change the background job which is scheduled
    Hope this helps
    Thnaks
    Sat

  • How to find Batch jobs schedule in bw system

    How to find Batch jobs,  bi statisticks  schedule in bw system
    please guide me

    Hi,
    You can find it in SM37.
    ~ Vaishnav

  • How to restrict the number of batch jobs used by middleware?

    Hi,
       I'm using middleware to replicate data which send IDOCs from one system to another. I know on source system, I can use SMQS to restrict the number of connections. But on target system, can I use any tool to restrict number of batch jobs? Because every time when replicating data, all batch jobs are occupied.
       Thanks a lot!

    Priya:
    It is likely that the BLOB content defined in your table is being stored 'Out-of-Line'. This means that the LOB columns are stored in segments of their own. These then are the segments that may need shrinking.
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14249/adlob_tables.htm#i1006363
    Varad

  • How to get batch job o/p in PDF format and automatically saved to xyz loc

    Hi Experts,
    Our requirement is we want output of background job in PDF format and this PDF generated should be saved in some xyz path at OS level.
    Why doing this?: Business don't want hard copy o/p of some batch jobs but only want to save this output in pdf format to some OS location for future use.
    We could achieve above objective by archiving method (but for some reason we cant adopt it).
    So guys please propose solution in detail regarding above problem "how to get o/p in PDF format and automatically get saved to xyz location"
    System : 4.0B
    OS : Windows NT
    Database : Oracle
    Thanks in advance

    Hi guys,
    Thanks guys for your invaluable advise.I asked abaper to use the above report for pdf conversion. But I have another problem that o/p of batch job should come in japanese language but when i check spool or hard copy o/p its not coming in readable form (seems something like machine language) . I dont what is the reason there must be some basis setting to get the batch job o/p in japanese language.
    Please help me.
    thank you

  • Print selected pages of a PDF file to printer as a batch job using VB6

    I have the following:
    1) 1,000 multi-paged PDF files (say 00000001.pdf, 00000002.pdf, ..., 00160000.pdf)
    2) A list of pages for each document to print
    (e.g. 00000001.pdf: 2,3,5,7
    00000002.pdf: 3-8, 10
    00001000.pdf: 5,6,7,10)
    I want to perform a single batch job to print the specified pages of all 1000 PDF documents to default printer.
    I am using VB6, Acrobat Reader 9 installed.
    I am thinking of writing a function like that:
    Private Function PrintPDF(byval sPDFFilePath as string, byval iPageNum() as integer) as boolean
    and then write a looping routine to print the files one by one.
    Seems that Acrobat SDK has such feature. 
    Please advise how can I do this?

    I downloaded the Arcobat SDK and now learning to use it with its sample.
    However, I got stuck when I run the program BasicIacVB.
    I got the following error message:
    Cannot create ActiveX component.
    When running the line
    gApp = CreateObject("AcroExch.App")
    I run this program on my PC with VS2005 installed.
    What extra step do I need to do to use the sdk?
    Seems there's no installation package there...
    Sorry about my stupid question, I am a total newbie in AcrobatSDK.
    P.S.  My ultimate goal is to develop the program in VB6 (not using VB2005),
    as my client PCs does not (and cannot for some reason) install .net framework.

  • How to create batch job based on sales organization?

    I am Sending data using RFC function module, within a report program.
    Now according to functional requirement I have to create two batch job scheduling scenarios:
    1. Provide a batch job to be run towards month end (2X, 1X) to sent a delta record message using Report.  This is scheduled on demand or requested on demand.  Recommend 1 message per sales org.
    Q: What does it mean by scheduled on demand or requested on demand?? Second thing is that like we have 10 sales org. and in variants for job scheduling we can assign only 1 at a time......how can i schedule per sales organization? do i need to create different job for each sales organization??
    (2X, 1X) what is the meaning of this notation??
    2. Create a new nightly batch job, run after daily billing batch, to send a delta records message of Report. Recommend 1 message per sales org.
    Anyone please provide me some details on this issue.......
    Regards
    Anshul

    I am Sending data using RFC function module, within a report program.
    Now according to functional requirement I have to create two batch job scheduling scenarios:
    1. Provide a batch job to be run towards month end (2X, 1X) to sent a delta record message using Report.  This is scheduled on demand or requested on demand.  Recommend 1 message per sales org.
    Q: What does it mean by scheduled on demand or requested on demand?? Second thing is that like we have 10 sales org. and in variants for job scheduling we can assign only 1 at a time......how can i schedule per sales organization? do i need to create different job for each sales organization??
    (2X, 1X) what is the meaning of this notation??
    2. Create a new nightly batch job, run after daily billing batch, to send a delta records message of Report. Recommend 1 message per sales org.
    Anyone please provide me some details on this issue.......
    Regards
    Anshul

  • Number of batch jobs used up

    Hi Experts,
    If process chain uses an abap routine or abap as process to process multiple loadings, how many batch processes are being used by this process chain?
    Hope to get some advise.
    Thanks,
    Ernesta Corvino

    Dear Sat,
    Thanks! Points awarded.
    If the process chain process, containing either abap or infopackage having abap routine in data selection, that triggers multiple loads, but one after the other, there will be 1 batch job for each load but only 1 batch will be running since the loads are in sequential order?
    What if one of these batches fails? Will the subsequent job still run and in a new batch job?
    Thanks!
    Ernesta Corvino

  • How to test backgournd job (SAPF110S) with debugger on?

    Hello, Experts,
    SAPF110S has be run in batch job.  How to turn the DEBUGGER on to step iinto the SAPF110S program?
    Thanks,
    Helen

    Hi,
    ->  Use SM37 to get list of jobs ,
          type 'JDBG' in the command line ( no '/' ), put the cursor on the job and  press ENTER.
    -> u are in debug mode now. Step through SAP program (press F7 couple of times) until you get to code you need
    hope this help u..
    Regards,
    Venkat M.

  • How to schedule batch jobs to run after another periodically?

    Hi good people,
    I want to schedule batch jobs to run periodically one after another.
    Here is the problem:
    I have scheduled JOB1 to run once a week and I scheduled JOB2 to run after that job (JOB1). The problem is that JOB2 runs only after the first time that JOB1 runs. The second time the JOB1 runs the JOB2 is not started. I presume that the reason for that is that JOB2 is tied to the job number for the JOB1, and since a new job (with the new number) is created every week, the JOB2 is only tied to the first instance of JOB1.
    So does anyone have an idea how to get JOB2 to automatically run every week after JOB1? One idea is to use events, but that I'm hoping that there is a bit cleaner solution..
    Best Regards,
    Armin

    Hi
    Try scheduling both JOB1 & JOB2 in a single job in steps.
    First schedule JOB1 & then give JOB2 in steps.
    Kindly check the following link to do job scheduling in steps:
    http://help.sap.com/saphelp_47x200/helpdata/en/c4/3a7ed1505211d189550000e829fbbd/frameset.htm
    In the above help documentation, look for the topic <b>"job steps"</b> in
    "Background Processing: Concepts and Features"
    hope it helps!
    best regards,
    Thangesh

  • How to run batch file using trigger?

    Hi, i am trying run a batch file using a trigger on a table.
    say i have a table XYZ(col_1 varchar2 primary key, col_2 varchar2)
    the values of col_2 keeps changing and col_1 are constant
    whenever the value of col_2 in any row changes from "on" to "off" i want to run a batch file C:\Users\ABC\Desktop\test.bat
    i did some searching but couldn't find any solution. Thanks in advance
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production

    >
    the script will be started around 60-70 times a day
    >
    No - as marwim said the script will be executed every time the trigger is fired. And that trigger, depending on how it is written, might be fired several times for the same transaction.
    And if the trigger is fired the script will be executed even if the transaction that caused the trigger to fire issues a ROLLBACK.
    Triggers are non-transactional. You need to clearly define the business rules for when the script should run. Should it run only when the transaction is COMMITTED? Or should it run if the transaction executes even if the transaction performs a ROLLBACK?
    A trigger is the wrong solution for your problem.
    Please clarify what the business rules are that should control the execution of the script.

  • How to assign Batch jobs ..........

    Hi,
    I want to know as to how can i assign Batch Jobs to different plants and in by which Tcodes can I see the programs of the Batch jobs.
    Thanks

    Hi Jyoti
    for specfic plant u have to create a variant for batch job.afterwards u have to schedule and release batch job by putting start date for batch job.
    You schedule a batch job in <b>SM36</b> and check whether the job has successfully completed in <b>SM37</b>.
    The host or server names that appear when you choose F4 for the target field in <b>SM36</b> are retrieved from the message service. They can be local or virtual.
    Hope ths helps
    Please reward points
    Sunil

  • How to test SOAP request using XML SPY

    Hi,
    1. I am new to WebServices concept, I have downloaded the wsdl file and now I need to test the SOAP requests using XML Spy. However, when I try to test the SOAP request generated by XML Spy I receive an error "Internal Error: Session is not available. Aborting" , How do I go ahead to generate the session, Is there a way I can provide the Username and password in the XML Spy to generate something like session.
    2. The second problem that I am facing is when I import the WSDL in XML Spy and generate the SOAP request, for all the fields xml tags gets populated with "aaaaaaaaaaaa" kind of data through out. Am i doing something wrong ? Is there some step while creating a SOAP request that I am missing becasue of which the gibbrish data is being populated as default ?
    Please Help !
    Thanks .

    I got my SOAP Requests tested using SOAP UI .. However I am still looking for ways to test it using XML SPY.
    In the SOAP UI Tool just do right click and select Add WS Security Token ..
    Thanks :)

Maybe you are looking for

  • Lock ups and other joyous occasions!

    Hello everyone. I obviously am having some difficulties, and I came here for help. I currently am running a MSI KT4AV-L MB, a Athlon Xp 1800+ proccessor @ 266 fsb, 2 512 mb Micron pc2100 RAM modules, a ATI Radeon 8500LE (128mb version) graphics card,

  • Using an external drive with iMovie HD

    I just received and formatted my external drive. At first I chose Mac OS Extended (Journaled) and Zero out data. When I got info (⌘+I) of the drive afterwards, it had 79 MB being used, journalling? So I then Erased it and chose Mac OS Extended and no

  • Equium L10 doesn't recognise any wireless PCMCIA card that I install

    Hi, I've just bought a brand new Toshiba Equium L10 and I can't get any wireless card to install. I have tried different models from Belkin, Netgear and MSI, all of which work perfectly fine on other laptops but not on this one. The L10 is a clean Wi

  • Macbook pro heating up

    After I updated my macbook pro to lion os it is heating up and the fan stays on constantly.  Does anyone have a solution or why the problem is occurring.  Thanks.

  • How do you Auto Duplicate "Image" in Image field for multi pages

    Adobe Live cycle Masters, I know my way around Adobe Pro, but Live cycle is a different animal. I am trying to create an image field that when an image in selected in the first image field, it will auto fill additional image fields located on each pa