CS5 - Output a .m2ts file With DD 5.1

Hi all,
I have just installed my new copy of CS5 which is an upgrade from CS3.  (I had to reinstall due to the 64bit requirement).  Anyway, on my CS3 install with the mainconcept plug-in installed I could output to a m2ts file keeping DD 5.1.  I cannot see an option to do this on CS5... I assumed that you didnt need an additonal plug-in with this version as it natively handled AVCHD files?
How do I go about getting a .m2ts file?
Thanks in advance.
Rich

Hi Hunt, thanks a lot for replying.
Sorry, I perhaps didnt explain my issue very clearly...
...with my CS3 version I installed the MainConcept Pro plug-in which enabled CS3 to import and export m2ts files, and as I'm sure you know this file format supports DD 5.1.  Now, with CS5 it supposedly supports AVCHD (m2ts) files natively, and indeed I could drag a m2ts file from my camcorder into my project.  However, when I go to export the movie I dont get an option anywhere to allow me to save the movie as an m2ts file.  (FYI on CS3 with the MainConcept plug-in I had an option to Export to MainConcept Pro where I could chose the usual bitrate, DD 5.1 etc).  I dont know if the MainConcept Pro plug-in works with CS5.
Hopefully I have explained myself a bit better this time!
Thanks again.
Rich

Similar Messages

  • How to output a postscript file with .ps extension name in jsp?

    Hi,
    I could use a servlet to output a postscript file with .ps file extension name. But I tried to do the same with jsp, for some reason, jsp always outputs a file with .jsp extension name though the content is postscript. Could anyone help me on this? Here is my jsp code:
    <%@page contentType="application/postscript"%>
    <%@page pageEncoding="UTF-8"%>
    <%@page import="java.util.*" %>
    <%@page import="java.io.*" %>
    <jsp:useBean id="corresv" class="oiintranet.CorresVBean" scope="request"/>
    <%
    response.setContentType("application/postscript");
    String corresId = request.getParameter("Id");
    corresv.setCorresId(corresId);
    PrintWriter output = response.getWriter();
    output = corresv.getResult(output);
    output.flush();
    %>
    In the bean corresv:
    public class CorresVBean extends BaseBean {
    private String corresId;
    public void setCorresId(String s) {
    this.corresId = s;
    public PrintWriter getResult(PrintWriter output) {
    //get postscript file content from a socket, one string line each time until reaches "X_END"
    String str;
    while ((str = in.readLine()) != null) {
    if (str.equals("X_END")) break;
    output.println (str);
    output.close();
    }catch(Exception e) {
    e.printStackTrace();
    return output;
    Thank you in advance.
    Geraldine

    Hi
    Every time u want to make a file u need to make its extension. I am talking
    about general scenario like word, excel so even when u make spool file
    so u need to give extension.
    like
    Spool temp.sql
    it will save u r file as sql file.
    hope it will help
    regards

  • P PRO canot import VOB or M2TS Files With sound

    Why P PRO CS6 can not recognize VOB file and impots M2TS file with out sound.
    P PRO CS6 has these files as importable. Could you please help to see what the problem is?

    1st, read these two links
    Missing Presets http://helpx.adobe.com/premiere-pro/kb/features-presets-missing-premiere-pro.html
    Missing Activation http://forums.adobe.com/message/4626662
    2nd, More information needed for someone to help... click these links and provide the requested information
    -http://forums.adobe.com/message/4200840
    -http://forums.adobe.com/thread/416679
    -http://forums.adobe.com/thread/419406
    3rd, for the second person
    CS6 Bug AVCHD http://forums.adobe.com/thread/1004369?tstart=0
    -and http://forums.adobe.com/thread/1004369?start=0
    -and LOCK the media http://forums.adobe.com/thread/1077245
    Also, Read Bill Hunt on Audio Conforming http://forums.adobe.com/thread/726693

  • How to download a smartform output as excel file WITH EXACT LAYOUT.

    Hi,
         I have searched the forum but could not found any satisfactory answer. I have a smartform with a table, some texts and a logo. I have to write a code which will save the smartform output as excel file in the system keeping the layout of the smartform output EXACT.
    i.e., the excel file will contain the output with EXACTLY THE SAME layout as would have been for a pdf file (if the smartform output is converted to a pdf file) and the client can then edit the fields of the table in the excel file.  How can I achieve this? Please give a suggestion.. Thanks in advance.

    Hi Anirban,
    Your Requirement is to download a smartform to  microsoft  Excel .
    Well unfortunately we can only download data into excel which is in a tabular format i.e stored in internal tables we have function modules to do the same even u can do that using OLE2.
    If u try to download a smartform to Excel only format supported will be ASCII, if u will continue with that the smartforms text's will get downloaded to excel but whole data would be downloaded in a single Cell.
    Code to do the same is -
    >>>>
    CALL FUNCTION 'SSF_GET_DEVICE_TYPE'
      EXPORTING
      i_language = v_language
      i_application = 'SAPDEFAULT'
      IMPORTING
      e_devtype = v_e_devtype.
       CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          FORMNAME                 = w_form
    *   VARIANT                  = ' '
    *   DIRECT_CALL              = ' '
       IMPORTING
         FM_NAME                  =  w_fmname
       EXCEPTIONS
         NO_FORM                  = 1
         NO_FUNCTION_MODULE       = 2
         OTHERS                   = 3
      IF sy-subrc <> 0.
        MESSAGE E002(zcpm) WITH 'Smartform call fails'.
      ENDIF.
    wa_outopt-tdprinter = v_e_devtype.
    wa_ctrlop-no_dialog = 'X'.
    wa_ctrlop-getotf    = 'X'.
      CALL FUNCTION w_fmname "'/1BCDWB/SF00000025'
        EXPORTING
    *   ARCHIVE_INDEX              =
    *   ARCHIVE_INDEX_TAB          =
    *   ARCHIVE_PARAMETERS         =
        CONTROL_PARAMETERS         = WA_CTRLOP
    *   MAIL_APPL_OBJ              =
    *   MAIL_RECIPIENT             =
    *   MAIL_SENDER                =
        OUTPUT_OPTIONS             = WA_OUTOPT
    *    USER_SETTINGS              = ' '
        IMPORTING
    *   DOCUMENT_OUTPUT_INFO       =
        JOB_OUTPUT_INFO            = T_OTFDATA
    *   JOB_OUTPUT_OPTIONS         =
    *    document_output_info       = st_document_output_info
    *    job_output_info            = st_job_output_info
    *    job_output_options         = st_job_output_options
        TABLES
          T_FINAL                    = T_FINAL
          T_ZSDT_WAGONS              = T_ZSDT_WAGONS_1
          T_QTY                      = T_QTY
          T_QTY1                     = T_QTY1
          T_CON1                     = T_CON1
          T_CON2                     = T_CON2
          "T_ZTMM_OUTWB_TXN           = T_ZTMM_OUTWB_TXN
    EXCEPTIONS
       FORMATTING_ERROR           = 1
       INTERNAL_ERROR             = 2
       SEND_ERROR                 = 3
       USER_CANCELED              = 4
       OTHERS                     = 5
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    T_OTF[] = T_OTFDATA-OTFDATA[].
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
              format = 'ASCII'
              max_linewidth = 132
    * ARCHIVE_INDEX = ' '
    IMPORTING
              bin_filesize = w_bin_filesize
    TABLES
              otf   = t_otf
              lines = t_pdf_tab
    EXCEPTIONS
              err_max_linewidth = 1
              err_format = 2
           err_conv_not_possible = 3
    OTHERS = 4
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    if tabix_m = 1.
    *CALL METHOD cl_gui_frontend_services=>file_save_dialog
    *CHANGING
    *filename = w_FILE_NAME
    *path     = w_FILE_PATH
    *fullpath = w_FULL_PATH
    ** USER_ACTION =
    ** FILE_ENCODING =
    *EXCEPTIONS
    *CNTL_ERROR = 1
    *ERROR_NO_GUI = 2
    *NOT_SUPPORTED_BY_GUI = 3
    *others = 4
    *IF sy-subrc <> 0.
    *MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *ENDIF.
    CALL function 'TMP_GUI_BROWSE_FOR_FOLDER'
    EXPORTING
    WINDOW_TITLE = 'Select A File Folder'
    INITIAL_FOLDER = 'C:\'
    IMPORTING
    SELECTED_FOLDER = W_PATH.
    endif.
    CONDENSE W_PATH.
    concatenate W_PATH '\' wa_final-vbeln '.XLS' into w_FULL_PATH.
    ****************************************************************************Saving the PDF file on to Application server************************
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
       BIN_FILESIZE                     = w_bin_filesize
       FILENAME                         = w_FULL_PATH
       FILETYPE                         = 'BIN'
    *   APPEND                          = ' '
    *   WRITE_FIELD_SEPARATOR           = ' '
    *   HEADER                          = '00'
    *   TRUNC_TRAILING_BLANKS           = ' '
    *   WRITE_LF                        = 'X'
    *   COL_SELECT                      = ' '
    *   COL_SELECT_MASK                 = ' '
    *   DAT_MODE                        = ' '
    *   CONFIRM_OVERWRITE               = ' '
    *   NO_AUTH_CHECK                   = ' '
    *   CODEPAGE                        = ' '
    *   IGNORE_CERR                     = ABAP_TRUE
    *   REPLACEMENT                     = '#'
    *   WRITE_BOM                       = ' '
    *   TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *   WK1_N_FORMAT                    = ' '
    *   WK1_N_SIZE                      = ' '
    *   WK1_T_FORMAT                    = ' '
    *   WK1_T_SIZE                      = ' '
    IMPORTING
       FILELENGTH                      = w_filesize
      TABLES
        DATA_TAB                        = t_pdf_tab
    *   FIELDNAMES                      =
    EXCEPTIONS
       FILE_WRITE_ERROR                = 1
       NO_BATCH                        = 2
       GUI_REFUSE_FILETRANSFER         = 3
       INVALID_TYPE                    = 4
       NO_AUTHORITY                    = 5
       UNKNOWN_ERROR                   = 6
       HEADER_NOT_ALLOWED              = 7
       SEPARATOR_NOT_ALLOWED           = 8
       FILESIZE_NOT_ALLOWED            = 9
       HEADER_TOO_LONG                 = 10
       DP_ERROR_CREATE                 = 11
       DP_ERROR_SEND                   = 12
       DP_ERROR_WRITE                  = 13
       UNKNOWN_DP_ERROR                = 14
       ACCESS_DENIED                   = 15
       DP_OUT_OF_MEMORY                = 16
       DISK_FULL                       = 17
       DP_TIMEOUT                      = 18
       FILE_NOT_FOUND                  = 19
       DATAPROVIDER_EXCEPTION          = 20
       CONTROL_FLUSH_ERROR             = 21
       OTHERS                          = 22
    As u said ,u want to download a smartform to Excel it could be done but only if u r using a internal table and exactly printing line by line values in the smartform, But if u are performing calculation in between, using multiple internal table Work areas, structures, etc i.e if whole smartform is developed with many distributed windows , unfortunately it wont be possible to download a smartform to excel in such cases, because the whole output comes from multiple internal tables, calculations, etc all the data is not printed in a tabular manner so in such a case it would be just impossible to download the smartform  to excel.
    But we definitely have a workaround which could be done to download the data into excel.
    you can develop a ALV report with a header and footer u can define the header and footer of the alv according to the smartform and the middle portion would contain the tabular kind of data which u must be using as Smartform table to print the same.
    So if u have a similar kind of smartform with some header data, tabular data, and some footer data, then u can use ALV to do the same thing , advantage with ALV would be that u can easily download the same into excel.
    Other alternative is that u can Convert and download the smartform to PDF  and copy the same to an Excel wooksheet.
    These are all the possibilities with which u can do the same.
    Regards,
    Akash Rana

  • The scan output is a file with lines

    The scan output is always a file with vertical lines. Whatever I try the printer, with wireless or USB connection, as well as  scanning with HP scan or the App scan from Windows 8.1. The result is the same, ie, fuzzy lines.
    Note: as a previous post suggested, I also open the lid and clean the glass.
    I´m enclosing the output  file:

    Hi @TRuivo
    I am sorry to see your scan output looks like a muddy rainbow   I would be happy to do my best to help you with this!
    Do you have the printer connected directly to a wall outlet or is it in a surge protector or power bar? Even if you have been using a surge protector/power bar all this time and you feel it is not the cause, please connect it to a wall outlet just so we can eliminate the power source as the root cause.   Issues when Connected to an Uninterruptible Power Supply/Power Strip/Surge Protector
    In this document you will see, ISSUE: Problems or issues may arise when an HP LaserJet series printer is connected to an uninterruptible power supply (UPS), a power strip, or a surge protector
    ^ This is not limited to Laserjet printers.
    Let's perform a hard reset. To do so, leave the printer on and unplug the power cable for 1 minute. While it is unplugged, hold down the power button on the printer for 10-15 seconds to release any built up power, then after the minute has passed, plug the printer back in.
    Also, please download the latest firmware version to ensure your printer is up to date; DJ2540_188.exe
    I hope one of these recommendations helps to resolve the issue! 
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Help using m2t files with Final Cut! :D

    Hey everyone! I trying to work with a .m2t file of HD footage I've downloaded, I can't seem to open it with Final Cut or Motion, what will I need to do to access this file? Can anyone help!? Thank you

    Use MPEG Streamclip to demux/convert the m2t file(s) into whatever format matches your FCP Sequence settings.
    -DH

  • PS CS5 stalls when opening file with type layers

    Macbook Pro / 10.6.7 / 4GB RAM / 2GHz i7 / CS5 12.0.4.x64. No extra plugins or anything. New system, clean install from last week.
    When I open a file (any size/color/dimensions) that has type layers PS with hang for about 25 seconds, then come back just fine. If I clear the font cache (I use FontExplorer X 3) the problem will go away for a brief time (minutes?), then come back. Close and reopen a file, same hang. Close PS, reopen PS, reopen file, same hang.
    Files with no font layers are not affected — no hang, no delay, snappy... unless a file with type layers is already open, then there is the same delay.
    If a file with type layers is open in PS and hung on open, and I open/double-click it again from the finder I get another hang.
    Turing off font preview makes no difference, turning off OpenGL makes no difference.
    But, turning a font on or off in FontExporer does clear the problem for a while.
    Any thoughts?

    It looks like the plug in was the culprit. I have it turned off and haven't had the problem in a while (though I haven't used PS in a bit on text-heavy projects either).
    Thanks for the help.
    c27

  • Win 7 Pro 64-bit / DW CS5 crashes when opening files with external links

    open any html, php, etc with a link to an external file - could be any type
    dw cs5 crashes
    this is on a fresh, clean install of win 7 and cs5 suite. hard drive was wiped clean before installing
    Has anyone experienced this issue also?
    This is extremely annoying...  why I should pay for software that doesn't work?

    "Enable Related Files" isn't the fix for this issue. It's slightly different - I wanted to still load related files, but only the ones local to the file I was editing.
    The fix was to use DW's Resolve To IP Address feature. It required adding a registry value - it fixed the issue straight away
    This Adobe support doc helped: http://kb2.adobe.com/cps/887/cpsid_88742.html

  • CS5 installed cant associate file with CS4

    Not totally a photoshop only question cause it is happening with all the CS suites.
    What happened:
    Have CS4 on a iMac running 10.5.8 this is the main program we are all using in shop. The apprentice here need CS5 installed to do her course so we installed it on the machine
    Now we do not want her to do inhouse work in CS5 as her machine is the only one with it.
    Tried to associate illustrator indesign & photoshop files to CS4 but the system keeps defaulting back to CS5
    Question:
    Has anyone else had this problem and know how to fix it?
    Thanks in advance

    If you are double-clicking on an image file to launch the application, the newest version of the application will always launch.
    If you want to use an older version, you need to quit the newer version and then open the older version of the application.  Then use the File menu in Photoshop, File > Open, to open your file in the older version first.
    You cannot open an earlier version of Photoshop if a newer one is already running.  Newer versions, yes.

  • Viewing M2T files with PE7

    Greetings -
    I am trying for the first time to work with some HD video and am having many problems.
    The first is this:  I can import the files into Photoshop Elements 7 organizer just fine....but I never get a real image clip generated as a thumbnail....I just get the video icon.  When I double click on one of the clips, a full screen viewer comes up, but there is no image in it.  I can slide along the slider bar at the bottom of the viewer and it changes the little number on the bottom that indicates the number of seconds into the video you are, but I still see no video.  Pressing play doesn't do anything.
    I can also select the files and send them over to Priemiere Elements.  When they get there, I can see the clip in the upper left hand viewer (though it's quite jerky when I press play).  The video clips also have images in them as they sit in the timeline.  However, if I double click one of the clips in the timeline thereby bringing up a little "preview" window - that window also is just blank just like in Photoshop Elements.
    I'm having other problems spitting this stuff out to a disk......but one thing at a time.....
    Thanks for your help
    Mike Hubbard

    Hunt -
    The project settings are HDV 1080i 30.
    The files were loaded from a 32G Sandisk which was written to by a Sony HVR-MRC1 Memory Recording Unit which was firewire connected to a Canon XH G1s camera.
    Thanks for answering, by the way.....your avitar/icon thing always has a calming effect whenever I'm scanning these forums.
    Mike

  • Project Preset to use with m2t files in CS4

    I capture HD video from my Sony HDR-HC9 using the Sony capture utility.   The Sony capture utility can divide the capture into datestamp clips,  while Premiere Capture just does it as one file (If I am wrong about  this please let me know).
    I want to know what project preset I should use with these files.  I  want to edit HD at the best fidelity possible since I want to be able  to export to various media types from DV mpg (for my cable access  shows), youtube, DVD, and blue ray. 
    I just bought a Sony VPC-F1190X with Adobe Premiere Pro CS4  installed.  So far it works beautifully with the m2t files with the HDV  1080i30(60i) preset or with the ACH-I 100 1080i60.

    You question has been answered in the other thread.
    You might want to have a look at this:
    http://tv.adobe.com/product/premiere-pro/

  • DTS HD audio is missing from .m2ts file

    I am learning how to use Premiere Pro by extracting the musical numbers from a commercial blu-ray disk (which I purchased).  The master .m2ts files are fine, playing nicely in the appropriate player.  The .m2ts file audio is encoded with DTS HD-MA.  However when I bring the .m2ts file into Premiere Pro or Encore CS5 there is no audio.  In the browser by the thumbnail I see the video described (1920 x 1080 (1.0), 23.976 fps, but there is no audio description. Playing the preview I see the video without any audio.   I'm using a 12 cpu  MacPro August 2010, 48 gb ram.
    One possibility might be that I am lacking DTS-HD support.  However I was hoping that there might be some way to simply extract the clip from the master .m2ts file with the original audio, and then generate a new file just copying the master audio track (clipped), without processing.
    My goal is to transfer the clips to a PS3 in order to play the clips with the original audio bitrate (4-5 mbps).  Is this possible?  Unfortunately the PS3 has the same problem, it also plays the .m2ts file without the audio.

    Better use material you shot yourself, or get the original material from the copyright owner. As you noticed DTS is not supported, but the company that has given you (written) permission to edit their material may have the audio in an editable format.

  • Output in text file

    Hi
    I have two master & detailed table for eg emp,dept.
    I need my output in text file with delimiter ~ in the below format.
    10~accounting~newyork
    7782~CLARK~MANAGER~7839~6/9/1981~2450.00~10
    7839~KING~PRESIDENT~11/17/1981~5000.00~10
    7934~MILLER~CLERK~7782~1/23/1982~1300.00~10Rgds
    Vk

    well, go for it! Don't let us stop you ;)
    SQL> set colsep '~'
    SQL> select *
      2    from emp
      3  /
         EMPNO~ENAME     ~JOB      ~       MGR~HIREDATE ~       SAL~      COMM~    DEPTNO
    ----------~----------~---------~----------~---------~----------~----------~----------
          7369~SMITH     ~CLERK    ~      7902~17-DEC-80~       800~          ~        20
          7499~ALLEN     ~SALESMAN ~      7698~20-FEB-81~      1600~       300~        30
          7521~WARD      ~SALESMAN ~      7698~22-FEB-81~      1250~       500~        30
          7566~JONES     ~MANAGER  ~      7839~02-APR-81~      2975~          ~        20
          7654~MARTIN    ~SALESMAN ~      7698~28-SEP-81~      1250~      1400~        30
          7698~BLAKE     ~MANAGER  ~      7839~01-MAY-81~      2850~          ~        30
          7782~CLARK     ~MANAGER  ~      7934~09-JUN-81~      2450~          ~        10
          7788~SCOTT     ~ANALYST  ~      7566~19-APR-87~      3000~          ~        20
          7839~KING      ~PRESIDENT~          ~17-NOV-81~      5000~          ~        10
          7844~TURNER    ~SALESMAN ~      7698~08-SEP-81~      1500~         0~        30
          7876~ADAMS     ~CLERK    ~      7788~23-MAY-87~      1100~          ~        20
          7900~JAMES     ~CLERK    ~      7698~03-DEC-81~       950~          ~        30
          7902~FORD      ~ANALYST  ~      7566~03-DEC-81~      3000~          ~        20
          7934~MILLER    ~CLERK    ~      7782~23-JAN-82~      1300~          ~        10
    14 rows selected.

  • Joining files with the "cat" command

    I have four files, ending in .rar, .r00, .r01, and .ro2. They need to be joined. I have tried:
    cat filename1 filename2 filename3 filename4
    the result is an output string of apparent gibberish, with a lot of beeping noises. I let it run overninght and it was still the same in the morning with no results.
    I need to join these files.
    1. Is cat the right command to join them? If not, what is the correct command and how do I use it?
    2. If cat is the right command to join the files, what am I doing wrong?
    Thank you.

    Typically, binary files, e.g., archive and image files, have some structure to them. Catenating files with cat won't recognize or honor that structure, so the resulting file won't be useful.
    You're other problem, as already pointed out, is that cat's output defaults to your terminal window, so you need to redirect its output to a file with "> filename". Because it was a binary file, you saw gibberish and heard beeps.

  • Premiere CC 2014 won't recognise .m2ts files from project editied in CS5.5

    Hi,
    I'm trying to open a project I edited in Premiere CS5.5, but CC 2014 tells me .m2ts files aren't a 'supported compression type'.
    They worked in CS5.5, why not now? All are Dolby rather than LCPM audio, shot with a Sony NX70 camera or an FS100.
    Can you give me any alternative import workflow (that doesn't involve transcoding everything, and rebuilding clip by clip, preferably:-)! )
    cheers
    Scot
    (16 year professional broadcast Premiere veteran!) (now going a bit mad...)

    Well.... sort of... I was having a problem with old projects not recognising the .m2TS or .MTS files, and the same with importing to new projects. It seems to have disappeared with the last update, but now I have an issue with these files and with .MP4 files from my Canon XA20 either not dropping audio onto the timeline, or dropping audio but not the vision track. The workaround is to right click on the file and change the audio properties to 'adaptive'. Sometimes I have to set the interpret video setting to interlaced, upper field dominant, as premiere is occasionally seeing the files as progressive... and I only ever shoot interlaced. Weirdness.
    Once I do this, the files happily insert on the timeline.

Maybe you are looking for

  • Sending an e-mail from an ABAP report

    I would like to automatically e-mail a report to a user when the report is run. Can anyone tell me how to do this? Is there a function module I can use? Can a document be attached to the e-mail?

  • I can't retrieve my itunes library

    Here is my question, I recently deleted my old account on my computer and when I created a new account i lost all my files. Except for my Itunes, it seems that whenm I plugged in my I pod to the computer is synced to a new library and now I can't get

  • TS3694 my iphone no to br restored because an unkhown errer occured (6),,,,,,,,plzzzz help me

    my iphone no to br restored because an unkhown errer occured (6),,,,,,,,plzzzz help me at [email protected]

  • Message 06076 'Materials of requisition & item & alr. ordered in full'

    Hi Gurus.. I have the following parameters: Material = XXXX Plant = YYY Base Unit of Measure = BOT Bottle MRP Type = PD Lot Size = EX Rounding value = 12 Procurement Type = F Special procurement = 40 Strategy Group = 10 I have my PIR on date = 18.05.

  • Database conection

    i am the begginer for netbeans API , so i want to learn how to connect java GUI application with oracle database. if any one have tutorial, E-books , Referance links to learn this thing plese send to me.