Parallel Processing : Unable to capture return results using RECIEVE

Hi,
I am using parallel processing in one of my program and it is working fine but I am not able to collect return results using RECIEVE statement.
I am using
  CALL FUNCTION <FUNCTION MODULE NAME>
         STARTING NEW TASK TASKNAME DESTINATION IN GROUP DEFAULT_GROUP
         PERFORMING RETURN_INFO ON END OF TASK
and then in subroutine RETURN_INFO I am using RECEIVE statement.
My RFC is calling another BAPI and doing explicit commit as well.
Any pointer will be of great help.
Regards,
Deepak Bhalla
Message was edited by: Deepak Bhalla
I used the wait command after rfc call and it worked additionally I have used Message switch in Receive statement because RECIEVE statement was returing sy-subrc 2.

Not sure what's going on here. Possibly a corrupt drive? Or the target drive is full?
Try running the imagex command manually from a F8 cmd window (in WinPE)
"\\OCS-MDT\CCBShare$\Tools\X64\imagex.exe" /capture /compress maximum C: "\\OCS-MDT\CCBShare$\Captures\CCB01-8_15_14.wim" "CCB01CDrive" /flags ENTERPRISE
Keith Garner - Principal Consultant [owner] -
http://DeploymentLive.com

Similar Messages

  • Unable to capture C drive using Dism and imageX commands

    I am trying to capture C drive using dism command but it did not work, but the same command is capturing E drive. i am using following command.
    dism /Capture-Image /ImageFile:E:\image.wim /CaptureDir:C:\  /name:"Image File"
    I am getting following error.
    Deployment Image Servicing and Management tool
    Version: 6.3.9431.0
    Error: 32
    The process cannot access the file because it is being used by another process.
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    An in the log file the error is:   DISM   DISM.EXE: WimManager processed the command line but failed. HRESULT=80070020

    Hi,
    As far as I know, Dism command doesn't support hot image backup, that to say, you do need to complete the image backup job at Windows PE enviroment.
    The contents of the link below also list the Dism command capture image requirement:
    http://technet.microsoft.com/en-us/library/hh825072.aspx
    Roger Lu
    TechNet Community Support

  • Unable to capture a video using robot.createScreenCapture

    Hi all,
    I'm having one problem with robot.createScreenCapture, i used the
    below code to take screen shot, everything goes fine except one case, I'm unable to capture videos played in windows media player & winamp, black screen is displaying instead of the video. I used avi files.
    here is the code
    import java.awt.AWTException;
    import java.awt.Dimension;
    import java.awt.Image;
    import java.awt.Rectangle;
    import java.awt.Robot;
    import java.awt.Toolkit;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    public class CaptureImage implements ActionListener {
         Robot robot = new Robot();
         Image image = null;
         public CaptureImage() throws AWTException {
              JFrame frame = new JFrame("Capture");
              JButton button = new JButton("Capture");
              frame.setAlwaysOnTop(true);
              button.addActionListener(this);
              frame.getContentPane().add(button);
              frame.pack();
              frame.setVisible(true);
         public void actionPerformed(ActionEvent e) {
              // image = robot.createScreenCapture(new Rectangle(800, 600));
              String outFileName = "shot.png";
              // determine current screen size
              Toolkit toolkit = Toolkit.getDefaultToolkit();
              Dimension screenSize = toolkit.getScreenSize();
              Rectangle screenRect = new Rectangle(screenSize);
              // create screen shot
              Robot robot;
              try {
                   robot = new Robot();
                   BufferedImage image = robot.createScreenCapture(screenRect);
                   ImageIO.write(image, "png", new File(outFileName));
                   System.out.println("Saved screen shot (" + image.getWidth() + " x "
                             + image.getHeight() + " pixels) to file \"" + outFileName
                             + "\".");
              } catch (IOException e2) {
                   e2.printStackTrace();
              } catch (AWTException e1) {
                   e1.printStackTrace();
         public static void main(String[] args) {
              try {
                   new CaptureImage();
              } catch (AWTException e) {
                   e.printStackTrace();
    }

    Are you setting the videoPause property to true in the rule you're using to navigate to the video screen? For example, assume you're using a button to navigate to the VideoScreen, its OnSelect property should be: Navigate(VideoScreen, ScreenTransition!Fade,{videoPause:false}).
    Basically, the value needs to change for the video to pause. If you don't have that set up, you could also do that within the rule you're using to navigate to scrHome as follows:  
    UpdateContext({videoPause: false});Navigate(scrHome, ScreenTransition!Fade,{videoPause: true})
    Thanks
    Robin

  • Different ways to return results using a stored proc to calling application

    Hi, Can someone please suggest me different ways of returning results( set of rows and columns) from a stored procedure to calling application.
    Currently I am using sys_refcursor to return results to front end. Stored proc is executed fast, but cursor access and retrieval of results has some overhead.
    So can you suggest the ways which will be faster than this approach.
    Thanks.

    Currently the procedure executes quickly but the results from the ref cursor are returned slowly, this is because the query is slow, for whatever reason.
    Collecting in all the rows in the stored procedure first before returning them will
    a) Make the stored procedure slower taking the same amount of time to execute as current query takes to complete.
    b) Use more memory.
    c) Put more stress on the network as all rows will be transferred at once instead of using the arraysize/fetchsize to to fetch the rows in smaller packets.

  • Unable to capture return values in web services api

    At the time of login to web services if my server is down ,
    it returns following error :
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1
            at java.lang.String.substring(String.java:1438)
            at java.lang.String.substring(String.java:1411)
    I want to capture this error so that i can try another server to login. how do i capture this error
    Another place where i want to capture the return Value is when i look for a report on the server
    rh = boBIPlatform.get("path://InfoObjects/Root Folder/"src_folder"/" + reportName +
                               "@SI_SCHEDULEINFO,SI_PROCESSINFO" ,oGetOptions);
    oInfoObjects = rh.getInfoObjects();
    CrystalReport = (CrystalReport)oInfoObjects.getInfoObject(0);
    Here if the report is not there on the server , it returns a null handler exception.
    but if i try catching it by checking my responsehandler is null  like rh == null  it does not catch it.
    Any help will be appreciated
    thanks
    Rakesh Gupta

    Ted : i have two cases
    1)   server = server_st.nextToken();
        providerURL = "http://"server"/dswsbobje/services";
        sessConnURL = new URL(providerURL + "/session");
       Connection boConnection = new Connection(sessConnURL);
       Session boSession = new Session(boConnection);
      EnterpriseCredential boEnterpriseCredential = new    EnterpriseCredential();
                  boEnterpriseCredential.setLogin(userid);
      boEnterpriseCredential.setPassword(pwd);
      boEnterpriseCredential.setAuthType(auth);
    SessionInfo boSI = boSession.login(boEnterpriseCredential);
    I have got a list of servers running web servcies stored in my tokens. when i pass the first server name say " test:8080" and that server is down , i want to catch somewhere in the code above that it did not get the connection so that i can loop back and try with the second server say test1:8080
    This is for failover purposes.
    at present when i was trying to capture return value of boSI it  breaks giving the error
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1
    at java.lang.String.substring(String.java:1438)
    at java.lang.String.substring(String.java:1411)
    2nd case :
    I am geeting reports from the server and scheduling them:
    i run the following code which works fine if reports is there
    rh = boBIPlatform.get("path://InfoObjects/Root Folder/"src_folder"/" + reportName +
    "@SI_SCHEDULEINFO,SI_PROCESSINFO" ,oGetOptions);
    oInfoObjects = rh.getInfoObjects();
    CrystalReport = (CrystalReport)oInfoObjects.getInfoObject(0);
    Here if  the  report  is not there on the server  then i should be able to catch from the response handle rh that it has got a null value.
    but rh does not return a null value 
    the code ultimately throws a null handle at the following line
    CrystalReport = (CrystalReport)oInfoObjects.getInfoObject(0);
    i am not able to catch the null value there also.
    hope you got my issue.

  • Unable to Capture an image using Native Camera

    Hi all,
    Please help me out.
    I am getting an issue but unable to find out its solution.
    I am watching a video on my mobile phone N96 and open the CAM pressing right side button continue, Camera gets opened and i am able to take a snap.
    Same functionality i am doing while i am playing a video from my java application. I play a video through my application, while video is running , i open CAM pressing right side button. Camera gets opened. When i click to capture a snap, camera captures a snap but this is not that picture,which was shown by camera while capturing. It captures my video snap which was running on my application.
    Please suggest me, is this property of Nokia mobile phone's camera or any defect on that.
    Thanks,
    Ashutosh

    No , I am not using screen captured application.
    I am playing a video from my application, when vedio is running, then i open my native camera to capture a snap after pressing right side button. 
    Ashu

  • Please Help:(,Unable to capture from camcorder using Audigy 2 ZS Video Edi

    Hi there! Well I have been trying to use the Sound Blaster Audigy 2 zs video editor to transfer Hi8 tapes from my camcorder (Samsung SLC860) to my laptop (Compaq presario, AMD Athlon 64 3200+, .25 GB RAM, xp). I have successfully done this before *sort of*. Before i was able to capture video from my camcorder without the sound. But now I cant even capture video! I get an error when using Ulead VideoStudio 8 SE reading: 5065:29:0. Please help, anything would be great! Thank you! Oh, i've tried reinstalling the drivers already, didnt work. P.S. I connect the camcorder to the Creative Audigy using S-Video. I have also tried A/V out from the camcorder to video-in on the Audigy. I have also downloaded VidCap and other driver updates from Creative but those didn't work either. I've tried VidCap other capture programs, none worked. Any help would be great. Thank you!
    Message Edited by DjShadowalker on <SPAN class=date_text>06-06-2006 <SPAN class=time_text>:09 AM
    Message Edited by DjShadowalker on 06-06-2006 :09 AM

    Hi there! Thanks for the reply, unfortunately, I've tried VidCap and it wont let me capture either. The Start button on Step 3 isn't acti've. Its not bold, and when i click on it nothing happens. But under device manager and Sound, Video and game controllers, there are alot of things. They are as followed: Audio Codecs, Legacy Audio Drivers, Legacy Video Capture Drivers, Media Control Devices, Sound Blaster Audigy 2 ZS Video Editor Audio Device, Sound Blaster Audigy 2 ZS Video Editor Video Device, SoundMAX Intergrated Digital Audio, Video Codecs. Do you think any of these could be interfering with one another? If so, which ones can be safely disabled? I've also tried downloading all the necessary updates for VidCap and I've even tried reinstalling the Audigy card many times. I am able to see the preview of the video on both programs VidCap and VideoStudio but I just can't capture. Once again, the error message on VideoStudio is: 5065:29:0. Thank you so much, hopefully I hear from ya soon and this can be fixed.

  • Unable to capture picture using dedicated camera button

    Hi
    From a couple of weeks i didn't used camera in my mobile.
    Today when i used to capture some pics, i am unable to capture the pictures using the dedicated key.
    But Same is working in burst mode but not in remaining all modes (Auto mode, manual mode.... )
    Please do the needful
    With regards
    Srinivas

    Sorry,there is only touch capture.I was thinking about volume key that can be used to take a picture.Try to clear data for camera under settings-apps-all.
    All we have to decide is what to do with the time that is given to us - J.R.R. Tolkien

  • Problem in Dynamic Parallel processing using Blocks

    Hi All,
    My requirement is to have parallel approvals so I am trying to use the dynamic parallel processing through Blocks. I cant use Forks since the agents are being determined at runtime.
    I am using the ParForEach block. I am sending the &agents& as a multiline container in 'Parallel Processing' tab. I have user decision in the block. Right now i am hardcoding 2 agents in the 'agents' multiline element. It is working fine..but i am getting 2 instances of the block.I understand that is because I am sending &AGENTS& in the parallel processing tab.. I just need one instance of the block going to all the users in the &AGENTS& multiline element.
    Please let me  know how to achieve the same. I have already searched the forum but i couldnt find anything that suits my req.
    Pls help!
    Regards,
    Soumya

    Yes that's true when ever you try to use  ParForEach block then for each value entry in the table a separate workitem ID is created, i.e. a separate instance is created that paralle processing is not possible like that
    Instead of that what you can do is create a fork with 3 branches and define a End Condition such that until all 3 branches are executed .
    Before to the fork step determine all the agents and store them in a internal table , you can access the one internal table entry by using the index value check this [wiki|https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/accessingSingleEntryfromMulti-line+Element] to access single entry from a internal table.
    For each task in the fork assgin a agent
    So, as we have defined the condition that until all the three branches are executed you don't want to come out of the fork step so, it will wait until all the stpes are completed.

  • Parallel processing for increaing the performance

    various ways of parallel processing in oracle especially using hints
    Please let me knw if there exists any online documentation in understanding the concept

    First of all: As a rule of thumb don't use hints. Hints make programs too unflexible. A hint may be good today, but might make things worse in future.
    There are lots of documents available concerning parallel processing:
    Just go to http://www.oracle.com/pls/db102/homepage?remark=tahiti and search for parallel (processing)
    Due to my experience in 10g, enabling parallel processing might slow down processing extremely for regular tables. The reason are lots of waits in the coordination of the parallel processes.
    If, however, you are using parallel processing for partitioned tables, parallel processing works excellent. In this case, take care to choose the partitioning criterion properly to be able to distribute processing.
    If, for example, your queries / DMLs work on data corresponding to a certain time range, don't use the date field as partitioning criterion, since in this case parallel processing might work on just a single partition. Which again would result in massive waits for process coordination.
    Choose another criterion to distribute the data to be accessed to at least <number of CPUs -1> partitions (one CPU is needed for the coordination process). Additionally consider to use parallel processing only in cases where large tables are involved. Compare this situation with writing a book: If you are planning to have some people writing a (technical) book consisting of just 10 pages, it wouldn't make any sense at all concerning time reduction. If, however, the book is planned to have 10 chapters, each chapter could be written by a different author. Reducing the resulting time to about 1/10 compared to a single author writing all chapters.
    To enable parallel processing for a table use the following statement:
    alter table <table name> parallel [<integer>];If you don't use the <integer> argument, the DB will choose the degree of parallelism, otherwise it is controlled by your <integer> value. Remember that you allways need a coordinator process, so don't choose integer to be larger than <number of CPUs minus 1>.
    You can check the degree of parallelism by the degree column of user_/all_/dba_tables.
    To do some timing tests, you also can force parallel dml/ddl/query for your current session.
    ALTER SESSION FORCE PARALLEL DML/DDL/QUERY [<PARALLEL DEGREE>];

  • I am unable to capture pictures on my Iphone 4s

    Any one assist me how to fix this problem, I am unable to capture the pictures using back camera but I am seeing through it and when I click, it automatically come to home screen.

    If there is No 'X' on any apps you have Downloaded... then check in Restrictions... Settings > General > Restrictions > Deleting Apps  =  Off / On
    Understanding Restrictions  >  http://support.apple.com/kb/HT4213

  • FCP unable to Capture Canon GL2

    Hello -
    My system is noted below. Final Cut Pro is updated to 6.0.4.
    I am unable to capture the video using Canon's GL2 using the current version of FCP. I believe that I have everything configured correctly because I am able to capture audio and video using my father's JVC GR-DV800U video camera. Actually that particular JVC camera seems to work quite well with FCP. But not Canon's GL2. I am able to control camera's Rewind, Fast Forward, Play, etc. So I know that some communication is taking place. However, no picture is present within FCP; no capture either. Instead, I get that dreaded beach ball wheel.
    I believe the FCP settings are correct: Under "Audio/Video" settings, the audio is set to MOTU's 424 (for the 2408 MK3); the DV Capture Preset (and the Sequence) is set to "DV NTSC 48 khz"; Video Playback is set for"Digital Cinema Desktop Preview - Main" with the audio playback set (again) to MOTU's 424 card.
    I am attempting to capture the video to an external hard disk drive using the Mac Pro's firewire port located in the back of the computer. Again, this all works using my father's JVC video recorder.
    *Given the computer setting and operating system, is this a known issue between the FCP and the GL2??* My GL2 is an older video camera. I purchased it quite a few years ago. *It seems like the GL2 may be the culprit. Yes? No?*
    I'm very new to FCP. My background is with SONY's Vegas program (currently I'm up to version 8). Been using the Vegas program for years. My Dell Workstation, unfortunately, is old; it definitely is showing signs of aging. So, to make a long story short, I've decided to invest time and money in a Mac Pro (I use it primarily for music sequencing using the Logic Pro program which I love!) Now I want to learn how to use the FCP which I purchased several months ago. Not being able to have FCP communicate with the GL2 is a minor significance for me, though. I'm in no financial place to purchase a new camera at this time. Luckily, I usually record the video using Focus Enhancement's FS4-Pro with the GL2. So I am not totally dependent on having FCP and the GL2 work together. *Thankfully, the FS4-Pro DOES works well with FCP!!* Too bad I didn't use the FS4-Pro today. Wish I did. UGH
    Could there be a work around in getting the GL2 to communicate properly with FCP??
    Thank you in advance for your thoughtful insights and suggestions.
    Regards,
    Ted Fiebke

    Not all Canon cameras have connection issues, but hanging around this site I've come to recognize their ability to connect in FCP is the most problematic of all the camera brands. If you have a Canon camcorder, and can not get it to connect up with FCP, the following is a way to sort through the issues and get it to work. Some are elegant - some are ugly.
    Before we go any farther
    • You should be using 'Firewire Basic' as the control protocol. If you aren't, go change it and try again.
    • Also, verify that you have a solid installation of Quicktime. You may want to reinstall it using the 'delete receipts' method.
    With some confidence that the software installation and camera settings are correct ... the most direct solution is to purchase another, non-Canon device to use as your capturing machine. The (now discontinued) Sony DSR-11 is highly recommended for DV work. A deck will save wear and tear on the camera's lightweight drive mechanism and will allow you to permanently connect a NTSC/PAL monitor for proper viewing. If you are working with HDV, you may have other issues ...
    Beyond that, the path you take depends on the model of computer you own.
    1. If you have a G5 tower or a MacPro, capture to a second internal drive with only the camera attached. If you need to move material to firewire drive, disconnect the camera. A second internal drive is quite inexpensive these days if you do not already have one.
    2. If you have a G5 tower (PCI) MacPro (PCI), G4 powerbook (PCMCIA) or MacBookPro (Expresscard 43) with an available slot, purchase the appropriate firewire card for the slot. Connect your camera to the card and you should be good to go. The new card creates a unique bus and will avoid collisions with the external drives.
    3. If you do not have a slot or a second internal drive and you are stuck with the camera, welcome to the camera/drive shuffle.
    • shut down and remove the external hard drive(s) from the system
    • connect the camera directly to the firewire port of the computer
    • start the camera then the computer
    • capture to your internal (system) hard drive
    • shut down the camera and computer
    • disconnect the camera and reconnect the external hard drive(s)
    • start hard drive(s) and computer
    • move captured files to external hard drive(s)
    • edit
    If you output back to tape or wish to view your work on an external Video (NTSC or PAL) monitor, you need to set up the camera to use the firewire out as the A/DV converter or VTR - which means reversing the steps:
    • copy the file back to the internal drive
    • shut everything down
    • disconnect the external drive(s)
    • connect the camera to the firewire port (and the TV to the camera if needed)
    • start the camera then the computer
    • play the file.
    One caveat here - You may have difficulty getting the file back to tape without dropping frames. Playing files off of the system drive is very demanding and they may have a hard time keeping up.
    All in all, if you do not have the option for second bus (i.e. iMacs, eMacs, iBooks, MacBooks) you may want to think about a computer with expandable options next time.
    There is the option of capturing using iMovie, but that brings on it's own set of problems and is not recommended.
    Good luck.
    x

  • Snagit v10 build 788 - unable to capture input - scrolling active window

    Hello,
    I use Snagit v10 build 788.
    I cannot use the "Scroll Active Window" option on Firefox 4 Beta.
    It does not work.
    I get the Snagit message : "Unable to capture input".
    Using Internet Explorer or on an other PC the Firefox v3.6, the "Scroll Active Window" option of Snagit v10 is working.
    How to solve it ?
    Thanks
    Caius

    FIXED!
    Guys, you will not believe how easy this is to fix! After hours of frustration I finally discovered a Firefox add-on called '''Screengrab'''. Install Screengrab, then right click in Firefox, choose Save, Complete Page - and you get a perfect scrolled page capture!
    Even better, you can open it in Snagit to work on it further (Screengrab saves it as a png)

  • Parallel processing open items (FPO4P)

    Hello,
    I have a question about transaction FPO4p (parallel processing of open items).
    When saving the parameters the following message always appears : "Report cannot be evaluated in parallel". The information details tells that when you use a specific parallel processing object, you also need to use that field to sort on.
    I my case I use the object GPART for parallel processing (see tab technical settings). In the tab output control I selected a line layout which is sorted by business partner (GPART). Furthermore no selection options are used.
    Does anyone know why the transaction cannot save the parameters and shows the error message specified above. I really don't know what goes wrong.
    Thank you in advance.
    Regards, Ramon.

    Ramon
    Apply note 1115456.
    Maybe that note can help you
    Regards
    Arcturus

  • How to limit number of parallel processes for a query???

    Hi,
    I have set table parallelism to degree (4 in my case) and when i run a query on that table i see on v$session that this query is using 8 parallel processes.
    Why my query is using all this processes?? Can i limit this number?? I think this will cause poor performance if all my parallel processes stay BUSY on v$pq_slave.
    1     1     P000     BUSY     22     0     8     0     2051     10     2     15     0     79179     76884
    2     1     P001     BUSY     22     0     8     0     2054     10     2     15     0     81905     77443
    3     1     P004     BUSY     2     0     1592     0     0     0     0     1592     0     1039     3
    4     1     P005     BUSY     2     0     1592     0     0     0     0     1592     0     1038     4
    5     1     PZ99     BUSY     533     0     0     0     1     3     0     0     0     1071     1107
    6     2     P000     BUSY     14     0     8     0     2053     10     3     15     1     53014     73297
    7     2     P001     BUSY     14     0     8     0     2048     10     2     15     1     51266     73318
    8     2     P002     BUSY     14     0     8     0     2052     10     2     15     2     51043     73271
    9     2     P003     BUSY     14     0     8     0     2053     9     2     15     2     49417     73327
    10     2     P004     BUSY     13     0     8     0     2055     9     2     15     2     68428     12468
    11     2     P005     BUSY     13     0     8     0     2059     10     2     15     1     69968     12473
    12     2     PZ99     BUSY     461     0     0     0     1     3     0     0     0     921     936
    Tks,
    Paulo.

    select /*+ PARALLEL(a,4) */ ...... from owner.table a;
    Or
    ALTER SESSION FORCE PARALLEL DML PARALLEL <degree>
    (But I am not sure whether this will affect the degree of select also ?)

Maybe you are looking for

  • Cannot log back into a disconnected RD session

    I have a 2012 R2 domain server that I RD into frequently. None of the GPO's I have are effecting RD. I need to have the ability to disconnect a RD session and reconnect to the same session. It seems like after about 20min the disconnected session jus

  • JSP, Web Layout, Tomcat

    Please help me with the next questions: 1)Oracle DB server and Oracle J2EE container are located in different places. The jsp in Oracle report web layout was generated. I put this JSP on the Oracle J2EE container and tried to run this jsp: http://loc

  • Get an Url for a resource

    Hi, I'd like to display a link to access a resource in a search component I have developped. For now I'm building a homemade Url with a static part and a variable part coming from the RID. My problem is that this homemade method only work for documen

  • Artwork is not saving

    Hello , I have problem with saving artworks in my Itunes . I will describe my problem . Each artwork i download via google to my deskopt , then i click to get info . After that i put there image of artwork from PC . Then it ask me if i wanna give to

  • Wrong upgrade version for Dreamweaver CS5.5

    Hey Everyone, I would really appreciate your help here. Our company has purchased around 12 copies of Adobe products, from the suites to individual items. We recently decided to order a couple of upgrades from Amazon. These are upgrades for Dreamweav