PO Output for Communication doesn't work for POs created from a requisition

Hi gurus,
When I create a PO using the standard PO form, I have no problem generating the xml tags in the log file when I run the PO Output for Communication (using Debug option).
When I create a requisition from Iprocurement, it automatically generates a PO. If I run the PO Output for communication for this PO, it gives me a bunch of gibberish data in the log file. like little squares and symbols.
Can anyone help me on this. We are using R12.
Thanks in advanced!

This Program "PO Output for Communication" does effects in other parts.
I mean that this program actually sends an email (or fax or print) along with the PO in PDF attachment or in the TEXT format.
This program does other part than the above mentioned point also.If yes then provide me the information in which other parts this program effects.I believe it is only the part you mentioned above.
PO Output for Communication
http://docs.oracle.com/cd/E18727_01/doc.121/e13410/T446883T443960.htm#srs.poxpopdf
PO Output for Communication Search
http://www.oracle.com/pls/ebs121/search?word=PO+Output+for+Communication&format=ranked&remark=quick_search
Thanks,
Hussein

Similar Messages

  • I bought an app for my iphone version 3.1.3 and it is written in the requirements that it is compatible with IOS 3 or later and after installing it doesn't work.i bought it from the apple store.

    i bought an app for my iphone version 3.1.3 and it is written in the requirements that it is compatible with IOS 3 or later and after installing it doesn't work.i bought it from the apple store

    You could try reporting the problem to iTunes store support here: http://support.apple.com/kb/HT1933.

  • My phone's earphone doesn't work which was bought from USA last month,the china apple store didn't accept the free repaired,so what can i do now?

    my new iphone5s's earphone doesn't work which was bought from USA last month,probably it was cause by falling down on floor insidentally one day before I came back china , the problem is ,the china apple store didn't accept the free repaire even the phone was bought only one month age, I was so disappointed and realized the iphone 5s is so  fragile,although I previous iphone4 which was also bought from USA 4 years age, it also fell down many times, it still works well now.  what can i do now? send it back to USA for repairing? if like that,it will take almost two month to finish the all processes,that not only waste the time spent on the way, also waste expense on the expense,the important prlblem is,  I can't use the phone during the repairing~ please give me a solution as soon as you can ,thank you very much!

    You can send it to someone you know in the US to have them take it in for service or you can get on a plane and take it there yourself. You can not ship it to Apple in the US for service.

  • BADI BBP_CREATE_BE_PO_NEW  for PO created from Bid.

    Hi gurus.
    Iu2019m working in classic scenario, and I need to change PO data before to create the PO in ECC.
    When we create a PO form SC we can change data in BADI BBP_CREATE_BE_PO_NEW (methods FILL_PO_INTERFACE and FILL_PO_INTERFACE1) without problem. But when we create a PO from a BID the BADI doesnu2019t work.
    If we fix a break-point the system stop for PO created from SC, but doesnu2019t stop for PO from Bid.
    Any suggest?
    Thanks and regards.
    Raúl.

    What you can try is to use the BBP_DOC_CHANGE_BADI for BID: when price is 0: clear IR_IND (invoice expected) and GR_IND (goods receipt expected) on item level. Be prepared for SRM putting back those indicators though (SRM gets these from the vendor details).
    The badi you mentioned in your first post should be the one you have to use as you are in classic mode. I would raise an OSS note because the way you use the badi is correct - it should be called and if it doesn't SAP has to provide a solution.
    Maybe there is a user-exit in ECC in the function module that creates the order (BAPI_PO_CREATE1) as a (hopefully temporary) work around.
    Regards,
    Robin

  • FramePosicioningControl for processor created from list of images

    Hi,
    I need to create a FramePositioningControl for processor created from a list of bufferedimages.
    I 've followed the instructions in the next code:
    http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/JpegImagesToMovie.html and
    http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/Cut.html
    First thing i do is create a source stream for the list of bufferedimage: SourceStream class.
    Then i created a data source that contains an instance of SourceStream: ListImageDataSource class
    Finally i created a processor using an instance of ListImageDataSource.
    I get the next error when i try to create FramePositioningControl control for that processor:
    The processor does not support FramePositioningControl.
    The example program is the next. Its a little long but easily understandable.
    I test my program with a video file and it works but when i try test it from a list of images i get the error.
    Can it be because format chosen of every image? i use RGB but i dont know if that is correct
    I need to have a method called getFrame(int index) that returns the frame at the specified index.
    If a processor doesnt support framepositioningcontrol when it is created from a list of image, can i use a interface (seekable or other) to do that?
    import java.awt.Dimension;
    import java.awt.image.BufferedImage;
    import java.io.IOException;
    import java.util.Vector;
    import java.net.*;
    import java.io.*;
    import javax.imageio.*;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.sun.image.codec.jpeg.JPEGImageEncoder;
    import javax.media.Buffer;
    import javax.media.ConfigureCompleteEvent;
    import javax.media.ControllerEvent;
    import javax.media.ControllerListener;
    import javax.media.EndOfMediaEvent;
    import javax.media.Format;
    import javax.media.Manager;
    import javax.media.PrefetchCompleteEvent;
    import javax.media.Processor;
    import javax.media.RealizeCompleteEvent;
    import javax.media.ResourceUnavailableEvent;
    import javax.media.Time;
    import javax.media.control.FrameGrabbingControl;
    import javax.media.control.FramePositioningControl;
    import javax.media.control.TrackControl;
    import javax.media.format.VideoFormat;
    import javax.media.protocol.ContentDescriptor;
    import javax.media.protocol.PullBufferDataSource;
    import javax.media.protocol.PullBufferStream;
    public class PositionableVideo implements ControllerListener{
         Processor p = null;
         Object waitSync = new Object();
        boolean stateTransitionOK = true;
        int width = 0;
        int height = 0;
        FramePositioningControl fpc = null;
        FrameGrabbingControl fgc = null;
        int totalFrames = 0;
        ListImageDataSource ids = null;
        public static void main(String args[]){
             String [] images = {"http://farm3.static.flickr.com/2084/2068533005_87b8b15914_m.jpg",
                       "http://farm1.static.flickr.com/158/336360357_3a183e2e61_m.jpg"};
             Vector<BufferedImage> bivector = new Vector<BufferedImage>(images.length);
             for(int i = 0; i < images.length; i++){
                  System.out.println("Reading image: "+(i+1)+"/"+images.length);
                  try{
                       URL url = new URL(images);
                   bivector.add(ImageIO.read(url));
              }catch(Exception e){
                   System.err.println("Error loading images: "+e);
         System.out.println("Images read");
         PositionableVideo pv = new PositionableVideo(bivector, 25);
         pv.getClass();
    public PositionableVideo(Vector<BufferedImage> images, int frameRate) throws NullPointerException{
              if(images != null){
                   ids = new ListImageDataSource(images, frameRate);
              if(!open(ids)){ return; }
              System.out.println("JMFVideo created");
              else{
                   throw new NullPointerException();
         private boolean open(ListImageDataSource ids){
              try {
              p = Manager.createProcessor(ids);
              } catch (Exception e) {
              System.err.println("Cannot create a processor from the data source");
              return false;
              p.addControllerListener(this);
              p.configure();
              if (!waitForState(p.Configured)) {
              System.err.println("Failed to configure the processor");
              return false;
              // p.setContentDescriptor(null);
              // Query for the processor for supported formats.
              // Then set it on the processor.
              /*TrackControl tcs[] = p.getTrackControls();
              Format f[] = tcs[0].getSupportedFormats();
              for(int i = 0; i <tcs.length; i++){
                   Format fc[] = tcs[i].getSupportedFormats();
              if (f == null || f.length <= 0) {
              System.err.println("The mux does not support the input format: " + tcs[0].getFormat());
              return false;
              tcs[0].setFormat(f[0]);
              System.out.println("Setting the track format to: " + f[0]);
              // Put the Processor into realized state.
              p.realize();
              if (!waitForState(p.Realized)) {
              System.err.println("Failed to realize the processor");
              return false;
              // Prefetch the processor.
              p.prefetch();
              if (!waitForState(p.Prefetched)) {
              System.err.println("Failed to prefetch the processor");
              return false;
              System.out.println("start processing...");
              // OK, we can now start the actual transcoding.
              p.start();          
              //wait to images are ready: try{Thread.sleep(3000);}catch(Exception e){}
              // Create a frame positioner.
              fpc = (FramePositioningControl) p.getControl("javax.media.control.FramePositioningControl");
              if (fpc == null) {
              System.err.println("The processor does not support FramePositioningControl");
              return false;
              // Create a frame grabber.
              fgc = (FrameGrabbingControl) p.getControl("javax.media.control.FrameGrabbingControl");
              if (fgc == null) {
              System.err.println("The processor does not support FrameGrabbingControl");
              return false;
              return true;
         private boolean waitForState(int state) {
              synchronized (waitSync) {
              try {
                   while (p.getState() != state && stateTransitionOK)
                   waitSync.wait();
              } catch (Exception e) {}
              return stateTransitionOK;
         public void controllerUpdate(ControllerEvent evt) {
              if (evt instanceof ConfigureCompleteEvent ||
              evt instanceof RealizeCompleteEvent ||
              evt instanceof PrefetchCompleteEvent) {
              synchronized (waitSync) {
                   stateTransitionOK = true;
                   waitSync.notifyAll();
              } else if (evt instanceof ResourceUnavailableEvent) {
              synchronized (waitSync) {
                   stateTransitionOK = false;
                   waitSync.notifyAll();
              } else if (evt instanceof EndOfMediaEvent) {
              p.close();
              System.exit(0);
         class ListImageDataSource extends PullBufferDataSource{
    SourceStream streams[] = null;
    Time duration = null;
    public ListImageDataSource(Vector<BufferedImage> images, int frameRate) throws NullPointerException{
              if(images != null){
                   streams = new SourceStream[1];
              streams[0] = new SourceStream(images, frameRate);
              duration = new Time( ((double) images.size() / frameRate) ); //seconds
              else{
                   throw new NullPointerException();
         public PullBufferStream[] getStreams() { return streams; }
         public void connect(){}
         public void disconnect(){}
         public void start(){}
         public void stop(){}
         //Content type is of RAW since we are sending buffers of video frames without a container format
         public String getContentType() { return ContentDescriptor.RAW; }
         public Time getDuration(){ return duration; }
         public Object[] getControls() { return new Object[0]; }
         public Object getControl(String type) { return null; }
         class SourceStream implements PullBufferStream {
         Vector <BufferedImage> images;
              int width, height;
              VideoFormat format;
              int frameRate;
              int nextImage = 0;     // index of the next image to be read.
              boolean ended = false;
              public SourceStream(Vector <BufferedImage> images, int frameRate) {
              this.width = images.get(0).getWidth();
              this.height = images.get(0).getHeight();
              this.frameRate = frameRate;
              this.images = images;
              format = new VideoFormat(VideoFormat.RGB, new Dimension(width, height),
                        Format.NOT_SPECIFIED, Format.intArray, (float) frameRate);
              public boolean willReadBlock() { return false; }
              public int getFrameRate() { return frameRate; }
              public void read(Buffer buf) throws IOException {
              if (nextImage >= images.size()) { // Check if we've finished all the frames.
                   buf.setEOM(true);
                   buf.setOffset(0);
                   buf.setLength(0);
                   ended = true;
                   return;
              Object data = buf.getData();
              int maxDataLength = width * height * 3;
              // Check to see the given buffer is big enough for the frame.
              if (data == null || !(data.getClass() == Format.intArray) ||
    ((int[]) data).length < maxDataLength) {
                   data = new int[maxDataLength];
                   buf.setData(data);
              BufferedImage bi = images.get(nextImage);
              bi.getRGB(0, 0, width, height, (int[]) data, 0, width);          
              Save every image. It works
              try{
              OutputStream salida = new FileOutputStream( "frame"+data.toString()+".jpeg" );
              JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder( salida );
              encoder.encode(bi);
              salida.close();
              } catch(IOException e){}
              buf.setOffset(0);
              buf.setLength(maxDataLength);
              buf.setFormat(format);
              buf.setFlags(buf.getFlags() | buf.FLAG_KEY_FRAME);
    buf.setSequenceNumber(nextImage);
              buf.setTimeStamp( (long) (nextImage * (1000 / frameRate) * 1000000) );
              nextImage++;          
              public ContentDescriptor getContentDescriptor() {
              return new ContentDescriptor(ContentDescriptor.RAW);
              public Format getFormat() { return format; }
              public long getContentLength() { return 0; }
              public boolean endOfStream() { return ended; }
              public Object[] getControls() { return new Object[0]; }
              public Object getControl(String type) { return null; }
    Thanks so much                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Thanks.
    I found a way of doing it by creating a view and calling it recursively everytime a user swipes

  • I am trying to sign in to attend a session and it says 'Invalid user or password. Please try again.' I have reset my password and it still doesn't work. I created a new AdobeID and it still doesn't work. I need to attend this training. How can I get in?

    I am trying to sign in to attend a session and it says 'Invalid user or password. Please try again.' I have reset my password and it still doesn't work. I created a new AdobeID and it still doesn't work. I need to attend this training. How can I get in?

    Sorry to hear about this problem. What site are you trying to log in on? Is it a Mozilla site? Usually you don't need to register or sign in to a Mozilla site to use Firefox. Usually you can just go straight to where you want to go.

  • Applying Price list for sales order created from Internal Requisition

    I am using 12.0.5. I have created a price list and applicable discount. I am creating Internal Requisitions and Importing them into Order Management as Sales Order using "Create Internal Order" and "Import Request". But when the sales orders are created, the pricing flag is "Freeze Price" and to apply the price list, I have to change the pricing flag of each line and re-price order/ line. Is this a way around this such that Sales orders created from Internal Requisitions pick up the correct discounted selling pricing automatically after import?

    Hi Ravichandran,
    When the Internal Sales Orders are created via Order Import program, the pricing flag will be "Freeze Price" because the value of CALCULATE_PRICE_FLAG will be set to 'N' in the OE interface line table by the Create Internal Orders program. This is the standard functionality of the Oracle.
    However, if your requirement is to re-price the line (automatic application of discounts at the time of booking) after the SO is created then to avoid the manual repricing steps, you can write a custom program to update the CALCULATE_PRICE_FLAG to 'Y' for the OE Line records present in the interface tables itself. You need to make sure that this update happens before the Order Import program. You can create a Request Set to acheive this, for example...
    XXX Create Internal Orders (Custom Request Set)
    - Create Internal Order (Standard Oracle Program)
    - XXX Update PriceFlag for ISO (Custom Program to update the price flag)
    First run the above request set & then run standard Order Import program. So when SO is being booked, CALCULATE_PRICE_FLAG will be 'Y' i.e., Calculate Price, the required discounts will be pulled & the line will be re-priced automatically.
    I hope this is what you wanted to achieve. Let me know if you have any questions.
    Regards,
    Hemanth

  • Suppress NetPrice field for POS created with info records

    Hi ,
    What is the BADI used for Suppressing NetPrice Field for POS created with Inforecords(ME21n and ME22N).
    I dont find any user exit for this, so please can anyone say me what is the Badi used to meet the requirement.
    Thanks in advance,
    Donlad

    Hi sanjay,
    Suppressing in the sense, no changes should be made to net price field.
    The netprice should be suppressed only when po is a Production Po(Identified by account assignemnet Cateogery 'P') and material  has an inforecord.
    for other orders(overhead/nonbillable) using a material has an existing inforecord , the netprice field should not be suppressed.
    Waiting for your respopnse.
    THanks,
    Donald

  • What are the naming conventions used for aggregates created from Query?

    What are the naming conventions used for aggregates created from Query?

    Hi Reddy,
    As you know aggregates are baby cubes right.
    Aggregate names by default system has given as 6 digit number like 100831 but write the description by yourself.
    Here you have to remember fact table is created with the name
    like for ex: /BIC/F100831.
    while creating aggregates you can observe all options carefully till complete the creation process then after I am sure about
    your can get idea .
    If problem still persists with you let me know the same until
    get out of that.
    else assign points if this is sufficient.
    Thanks,
    Ramki

  • Release strategy for PREQs created from PM work order

    Hi All,
    I have an issue with determining  release strategy for purchase requisition for external services created via PM work order (iw31 transaction).
    We have activated release strategy for Purchase requisition based on the following characteristics:
    CEBAN_PLANT
    CEBAN_COST_CENTER_GROUP
    CEBAN_MANUAL
    Characteristic CEBAN_COST_CENTER_GROUP is defined via user exit based on the cost center used in the PREQ and a z table which contains all cost centers mapped to the corresponding  cost center goups.
    In the user exit we have consider to cases:
    The first one is when a purchase requisition is created with account assignment K (cost center) then system is checking the z table and determines the right cost center group.
    The second case is when a purchase requisition is created with account assignment F (internal order) then based on the order type and number the cost center in the order is defined and based on it the corresponding entry in the z table cost center group is assigned.
    The third case is when purchase requisition for services is created automatically from PM work order. In this case the PREQ is again with account assignment F, but at the time when user exit is checking the input parameters the real number of the work order does not exist and system can not defined the other parameters.
    We have defined  for this requisitions in the release strategy for characteristic CEBAN_MANUAL creation indicator " F".
    Has anybody of you defined release strategy for PREQs created out of work order before. How did you manage to trigger the release strategy?
    Best Regards,
    Desislava

    Hi,
    For PM order find the costcenter in the settlement rule of the order or else find the costcenter in the Location tab of the order.
    Consider this filed from order & write in the Z program to pick up the costcenter from there to find out the cost center group.
    Regards,
    Raj

  • Output for POs

    Hi,
      We are facing a problem with output types getting triggered for POs which are on hold. But I see that by SAP standard, output types donot get triggered for held POs.
    Condition records are maintained for the Porg and vendor combinations. When I try creating a PO, the output types get triggered immediately after I enter the vendor and purchasing organization.
    I would like to know if in the standard process, output types get triggered on saving the PO or while entering the values itself?
    Is there a way to stop the output types from getting triggered for the held POs? Is it alright if I wrtie a requirement (stop output trigger when EKKO-MEMORY is set)  and tag it to all the output types?
    Thanks
    Aparna

    Hi there
    Output will trigger on saving if you have the set up as "4" "Send immediately (when saving the application)"
    I have seen no way to create the output to trigger once you enter the values,, if there is any development you have done on this, check with ABAPer to check the code,,
    If there is no development,, You can chenge the setting as "3" Send with application own transaction, and after the save , you can go to Me9f to get the output of the PO..
    Hope it helps
    Thanks
    Senthil

  • Printing PDDoc with AFExecuteThisScript() doesn't work after an upgrade from SDK 5 to SDK8

    Hello,
    I have made an upgrade of my plug-in which was developed with the Acrobat 5 SDK. I upgrade it to Acrobat 8 SDK and my print function doesn't work anymore.
    Actually I print my document using a javascript trusted function instead the function provided by the C++ library for internal reason.
    Here below is the code used to print my document :
    char szJavaPrint[6000];
    sprintf(szJavaPrint,
    "pp = this.getPrintParams(); \r\n"
    // fill pp with parameters
    "pp.interactive = pp.constants.interactionLevel.silent; \r\n"
    "\r\n"
    "this.trustedPrint(this, pp);"
    PDDoc pdDoc = AVDocGetPDDoc(avDoc);
    AFExecuteThisScript(pdDoc, szJavaPrint, NULL);
    It was working with the Acrobat 5 SDK but the print seems to have no effect using the Acrobat 8 SDK. I know that there is a change between Acrobat 5 and 8 concerning the Character Set (currently I set the Character Set to "Not Set" in the Configuration Properties of the project) but I don't think that my problem comes from the Character Set.
    All ideas to resolve this problem are welcome.
    Kind regards,
    Joe

    See what happens if you remove the "setting of interactive to silent"...
    There is a restriction on silent printing in Acrobat, but I would not have expected that to be passed into this method - but it could have been overlooked and be a bug.
    Also, I don't recall a trustedPrint() method in Acrobat JS - check the documentation for the correct name of this function...

  • Change item category for PR created from SCM system

    Hi All,
    I want to change the item category field from value '7' to '0' for the purchase requests created from SCM system.
    I have tried the exit CIFPUR02.
    But the PRs are not getting created if change hte item category.
    Please advice how I can achieve this.
    Regards,
    Shobana.K

    Fixed it myself

  • Release Strategy for reservation created from PM and PS

    Dear All,
    How to configure the release strategy for reservation generated  from PM and PS.
    Regards,
    Atanu

    do you talk about release strategie for requisitions, or really reservations?

  • BAPI needed for goods receipt for delivery created from sales order

    Hi experts,
    I need help.
    I want to post goods receipt for the delivery created from sales order. I have tried out BAPI BAPI_GOODSMVT_CREATE but I am not able to post it.
    Is there any way to post this? I need BAPI and not FM MB_*....
    Thanks & REgards,
    Bhavin A. Shah

    Hi,
    Please refer to link,
    https://wiki.sdn.sap.com/wiki/display/Snippets/BAPI_GOODSMVT_CREATE-ABAP
    Regards
    Shree

Maybe you are looking for

  • How can i check if my apple care is on my name?

    Hello, i have got a mac book from someone and it has already had the apple care on it. I just called apple care to switch the ownership of apple care to my name, but i still wonder if the representative has changed for me. So i do not have to worry i

  • 24 inch LED display has strong odor

    Hello, I got the display for about 10 days now and every time the display is on for a short period of time (less than 7 mins), the display has a strange odor coming from the left side (if you were facing the display) speaker grill (where the hot air

  • ODAC questions for vs 2008

    Hello, 1)How do i determine whick ODAC version i am using with my visual studio 2008 2) If I were to instal the latest ODAC version, do i need to remove the older version first. If I do not remove the older version and install the newer version, how

  • Whole project is corrupted.  Is there a fix?

    I had another thread going about this project that is crashing multiple systems, despite being on two seperate drives. That's two drives containing the project on their own. So, if this huge project of ours is corrupt, how do we find the bad files an

  • DO I NEED TO KEEP MY IPHONE ON WIFI TO DOWNLOAD MY PICTURE ON PC BY ICLOUD? ITS LIKE BOTH DEVICE HAVE TO KEEP ON WIFI OR ONLY PC?

    just wanna know, if i wanna download all the picture from icloud , do i need to keep both device on wifi or only pc where i will download.