AT+CMGW command problem

Hi all,
I am sending AT commands to the mobile phone using the bluetooth channel but I am facing a peculiar problem.
When i send the command AT+CMGW="+919899879920"<CR>"HELLO THERE"<CTRL_Z> to the mobile phone then rather than writing only the message on the sim card's memory the phone writes the whole of the command in the same format in the SMS record.
I have come to know that there is a listener attached to the EF_SMS file in the operating system of the card. Is it true? does this listener gets activated when the SMS file gets updated.
hope to hear some answers,
Rahil Talwar.

thank you guys. i have solved the problem. for anyone who faces the same problem just remember that after every carriage return sent to the modem you have to read the response from the modem and only after that send the next message.
Thanks once again.

Similar Messages

  • SQL Command problem in Application Express 3.2.0.00.27

    To Oracle Application Express Development Team,
    Yesterday I installed Oracle Application Express 3.2.0.00.27.
    While doing my r&d, I came across one problem in SQL Command.
    For example I wanted to run sql "select * from tab"
    When I checked "Autocommit" checkbox it worked fine.
    But when I unchecked the "Autocommit" checkbox it gave me following error:
    ORA-01003: no statement parsed
    Please check post
    http://www.oraclebrains.com/2009/03/sql-command-problem-in-application-express-3200027/ for more details.
    Cheers

    I can't find the log file (a good indication that something went wrong)
    Here's the transcript of the session...
    SQL> startup upgrade
    ORACLE instance started.
    Total System Global Area 599785472 bytes
    Fixed Size 1288820 bytes
    Variable Size 264242572 bytes
    Database Buffers 331350016 bytes
    Redo Buffers 2904064 bytes
    Database mounted.
    Database opened.
    SQL> @apxpatch.sql
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    Wrote file apxset.sql
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    SQL>
    SQL> @apxldimg.sql
    PL/SQL procedure successfully completed.
    Enter value for 1: C:\Documents and Settings\jtench\Desktop\My Downloads\Oracle\apex_3.2.1
    old 1: create directory APEX_IMAGES as '&1/apex/images'
    new 1: create directory APEX_IMAGES as 'C:\Documents and Settings\jtench\Desktop\My Downloads\Oracle\apex_3.2.1/apex/images'
    Directory created.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    Commit complete.
    timing for: Load Images
    Elapsed: 00:03:30.03
    Directory dropped.
    SQL>

  • PL/SQL Procedure Calling Java Host Command Problem

    This is my first post to this forum so I hope I have chosen the correct one for my problem. I have copied a java procedure to call Unix OS commands from within a PL/SQL procedure. This java works well for some OS commands (Eg ls -la) however it fails when I call others (eg env). Can anyone please give me some help or pointers?
    The java is owned by sys and it looks like this
    CREATE OR REPLACE AND COMPILE JAVA SOURCE NAMED "ExecCmd" AS
    //ExecCmd.java
    import java.io.*;
    import java.util.*;
    //import java.util.ArrayList;
    public class ExecCmd {
    static public String[] runCommand(String cmd)
    throws IOException {
    // set up list to capture command output lines
    ArrayList list = new ArrayList();
    // start command running
    System.out.println("OS Command is: "+cmd);
    Process proc = Runtime.getRuntime().exec(cmd);
    // get command's output stream and
    // put a buffered reader input stream on it
    InputStream istr = proc.getInputStream();
    BufferedReader br = new BufferedReader(new InputStreamReader(istr));
    // read output lines from command
    String str;
    while ((str = br.readLine()) != null)
    list.add(str);
    // wait for command to terminate
    try {
    proc.waitFor();
    catch (InterruptedException e) {
    System.err.println("process was interrupted");
    // check its exit value
    if (proc.exitValue() != 0)
    System.err.println("exit value was non-zero: "+proc.exitValue());
    // close stream
    br.close();
    // return list of strings to caller
    return (String[])list.toArray(new String[0]);
    public static void main(String args[]) throws IOException {
    try {
    // run a command
    String outlist[] = runCommand(args[0]);
    for (int i = 0; i < outlist.length; i++)
    System.out.println(outlist);
    catch (IOException e) {
    System.err.println(e);
    The PL/SQL looks like so:
    CREATE or REPLACE PROCEDURE RunExecCmd(Command IN STRING) AS
    LANGUAGE JAVA NAME 'ExecCmd.main(java.lang.String[])';
    I have granted the following permissions to a user who wishes to run the code:
    drop public synonym RunExecCmd
    create public synonym RunExecCmd for RunExecCmd
    grant execute on RunExecCmd to FRED
    grant javasyspriv to FRED;
    Execute dbms_java.grant_permission('FRED','java.io.FilePermission','/bin/env','execute');
    commit
    Execute dbms_java.grant_permission('FRED','java.io.FilePermission','/opt/oracle/live/9.0.1/dbs/*','read, write, execute');
    commit
    The following test harness has been used:
    Set Serverout On size 1000000;
    call dbms_java.set_output(1000000);
    execute RunExecCmd('/bin/ls -la');
    execute RunExecCmd('/bin/env');
    The output is as follows:
    SQL> Set Serverout On size 1000000;
    SQL> call dbms_java.set_output(1000000);
    Call completed.
    SQL> execute RunExecCmd('/bin/ls -la');
    OS Command is: /bin/ls -la
    total 16522
    drwxrwxr-x 2 ora9sys dba 1024 Oct 18 09:46 .
    drwxrwxr-x 53 ora9sys dba 1024 Aug 13 09:09 ..
    -rw-r--r-- 1 ora9sys dba 40 Sep 3 11:35 afiedt.buf
    -rw-r--r-- 1 ora9sys dba 51 Sep 3 09:52 bern1.sql
    PL/SQL procedure successfully completed.
    SQL> execute RunExecCmd('/bin/env');
    OS Command is: /bin/env
    exit value was non-zero: 127
    PL/SQL procedure successfully completed.
    Both commands do work when called from the OS command line.
    Any help or assistance would be really appreciated.
    Regards,
    Bernard.

    Kamal,
    Thanks for that. I have tried to use getErrorStream and it does give me more info. It appears that some of the commands cannot be found. I suspected that this was the case but I am not sure about how this can be as they all appear to reside in the same directory with the same permissions.
    What is more confusing is output like so:
    SQL> Set Serverout On size 1000000;
    SQL> call dbms_java.set_output(1000000);
    Call completed.
    SQL> execute RunExecCmd('/usr/bin/id');
    OS Command is: /usr/bin/id
    exit value was non-zero: 1
    id: invalid user name: ""
    PL/SQL procedure successfully completed.
    SQL> execute RunExecCmd('/usr/bin/which id');
    OS Command is: /usr/bin/which id
    /usr/bin/id
    PL/SQL procedure successfully completed.
    Regards,
    Bernard

  • Custom command problems on Mac OS X

    I am seeing a problem with custom context commands in our custom connector that is also reproducible with the sample FTP connector shipped with the SDK.  I am using Adobe Drive 3.2.0.41 on Mac OS X 10.8.2
    For my test I am connecting to a FTP server and attempting to run the "File Properties" command from a file's Adobe Drive menu in Finder.  When I first start Drive and connect, the command works and the "File Properties" dialog appears as expected.  However, if I disconnect, reconnect, then browse back to the file and attempt the command again, the File Properties dialog does not appear.  The Finder window does kind of "grey out" as if another dialog is about to be shown, but it never is. I don't see any kind of error messages in the CS5ServiceManager logs. 
    If I disconnect, close Drive, kill the AdobeDriveCS5 and CS5ServiceManager processes with Activity Monitor, and then restart Drive and reconnect, the custom commands work again.
    Has anyone else experienced these kinds of problems with custom commands on Mac OS after a disconnect/reconnect cycle?
    Thanks,
    Brian

    Our only other environment we could set up was on Mac OS 10.7.5, and we could not reproduce the issue.  Based on that it would appear to be something new with Mac OS 10.8.

  • Host Command Problems on 9i Unix

    I am using web froms 9i running on a Unix server with 9iasr2. I am trying to manipulate files on the server not the client. I have tried:
    host('rm -f /mypath/filename.txt')
    host('rm -f /mypath/filename.txt',NO_SCREEN)
    host('touch /mypath/filename.txt')
    host('touch /mypath/filename.txt', NO_SCREEN)
    host('mv /mypath/file1.txt /mypath/file2.txt')
    The file I am trying to delete is one that was transfered using the webutil file transfer.
    I have tried to check the status with:
    IF NOT Form_Success THEN
         Message('Error -- Message not sent.');
    ELSE
         Message('Message Sent.');
    END IF;
    I always get back 'Error...'
    The directories have permission open to everyone. Therefore I would of expected no problems with doing a touch to create a file.
    Any ideas?

    Thanks Ino. That was it, the full path for the unix command itself was missing. I knew it was something simple. =)

  • InDesign command problems

    I work with Adobe CS 5. Using Configurator 3, I have created a panel in InDesign for the commands I use most often. However, I have run into the following problems:
    Some commands (e.g., Margins and Columns or Span Columns and some others) give me only a split-second flash of (presumably) a dialogue box but then nothing more.
    Some commands don't ever respond.
    Some commands work at first, but then, if I edit or recreate the panel, some of the previously working commands (e.g., Insert Hair Space, Clear Overrides, and some others) simply
    stop working.
    Also, I have tried to use some Widgets, but they never show up (e.g., the horizontal rule or the rectangular container). No color adjustments seem to be available for the panel, and nothing adjusts automatically.
    Some commands that I find inside InDesign -- such as the Balance Columns or Unbalance Columns commands that should be available on the control panel -- don't show up in searches on either word.
    I can edit a panel and sometimes get some of the previously working functions back, by removing them and placing them again. But that doesn't work every time (and is annoying to have to do), and even this does not help the commands that have never responded or which only flash me and then are gone. Nor does completely trashing the original panel and recreating from scratch fix the latter condition, though sometimes when I do this, some of the commands that have occasionally worked will again work in the new panel. But usually, some others that worked previously, now won't.
    SUMMARY: It seems the commands that WILL work, won't work consistently. And the ones that never worked yet, never will.
    Configurator 3 seems to be a great idea -- I was very happy to find it the other day, and the presentation video I watched about its upgrades for CS6 seemed encouraging. But so far, it does not seem like an idea whose time has come ... unless there is something I'm doing wrong or some reason why some commands don't work in CS5. If this is the case, please let me know. I also use Photoshop extensively and wanted to create a panel for it, but I'm not going to bother if Configurator 3 is truly so inconsistent as it seems.
    Does anyone have any thoughts, advice or experience with the program along the above lines?

    I'm sorry to hear that. If possible, could you send you panel to [email protected]? I will have a look.
    Do you make sure that you selected InDesign CS5/CS5.5 when creating panel for InDesign CS5?

  • Tux Commander Problem

    Hi,
    i have a problem with tux commander, while browsing my system directories works just fine, whenever i try to click on the application menus i get an error that says:
    An Unhandled exception has occured
    invalid floating point operation
    and my entire desktop locks. I use GNOME if that helps and i installed tuxcmd from community version 0.5.70-1.
    Can anyone help?

    I'm running LXDE with openbox.
    Same error (i think) with doublecmd-git from AUR when clicked on configuration - options:
    [eee@701 ~]$ doublecmd
    Start watching
    [WARNING] Out of OEM specific VK codes, changing to unassigned
    [WARNING] Out of unassigned VK codes, assigning $FF
    Double Commander 0.4.6 alpha
    Revision: 2753M
    Build: 2010/04/26
    Lazarus: 0.9.29-23335
    Free Pascal: 2.4.0
    Platform: i386-Linux-gtk2
    This program is free software released under terms of GNU GPL 2
    (C)opyright 2006-2009 Koblov Alexander ([email protected])
    and contributors (see about dialog)
    Executable directory: /opt/doublecmd/
    Loading configuration...
    Loading icon theme DCTheme
    Theme hicolor not found.
    Creating TFileSystemFileSource
    TColumnsFileView.Create components
    TColumnsFileView.Create components
    frmMain.frmMainShow
    Language dir: /opt/doublecmd/language/
    TApplication.HandleException Access violation
    Stack trace:
    $B744A1FE
    $082AE9AC
    $081D997B
    $081D8BEA
    $0819796C
    $08197565
    $081984DA
    $08197A61
    $08197565
    $081984DA
    $08196601
    $08273985
    $0823FB2E
    $0823EEDC
    $0823EE4F
    $08197565
    $081984DA
    frmMain.Destroy
    Destroying TFileSystemFileSource when refcount=0
    WARNING: TLCLComponent.Destroy with LCLRefCount>0. Hint: Maybe the component is processing an event?
    [eee@701 ~]$

  • Jdk1.2.2 java commands problem on win98, win2000 and XP

    To Whom It May Concern:
    I have just bought a new PC and made 3 partitions on the hard drive, each of them has 10G space, to installed 3 operation systems on each of these partitions, win98se, win2000 and XP. Then I installed jdk1.2.2 on each of these operation systems. However, when I go into the �\jdk1.2.2\bin directory and run the executable commands, eg. javac and java etc., get the following different error messages on different operating systems. I have spent a lot of time on trying to fix these problems, however, no any luck. It will be very appreciated if you super expert can have some help on them.
    win98se
    After run the javac command, get the following error message displayed on a prompt with a Close and a Details buttons.
    This program has performed an illegal operation and will be shut down.
    If the problem persists, contact the program verdor.
    After click the Details button, get the following message:
    JAVA caused an invalid page fault in
    module SYMCJIT.DLL at 019f:500bf974.
    Registers:
    EAX=00000e03 CS=019f EIP=500bf974 EFLGS=00010206
    EBX=006539a0 SS=01a7 ESP=0063f894 EBP=00000e7f
    ECX=0000009f DS=01a7 ESI=00000e7f FS=3557
    EDX=00000003 ES=01a7 EDI=05110010 GS=0000
    Bytes at CS:EIP:
    f3 a5 ff 24 95 48 42 0c 50 8d 49 00 8d 74 31 fc
    Stack dump:
    500bf8c7 0000027f 500c42b0 5007cc24 05110010 00000e7f 0000027f 007608c0 00000283 006a81a8 006539a0 0063f940 006539e8 05110010 006539a0 00000e7f
    win2000
    After run the javac command, get the following error message displayed on a prompt with a OK button.
    java.exe has generated errors and will be closed by Windows. You will need to restart the program.
    An error log is being created.
    XP
    After run the javac command, get the following error message displayed on a prompt with a Send Error Report and Don't Send buttons.
    java.exe has encountered a problem and needs to close. We are sorry for the inconvenience.
    If you were in the middle of something, the informaiton you were working on might be lost.
    Please tell Micorsoft about this problem.
    We have created an error report that you can send to us. We will treat this report as confidential and enonymous.
    To see what this error report contains, click here.
    thanks and regards!
    ZhiCheng

    http://java-virtual-machine.net/tech-faq.html
    is a great link.
    It claims to have a newer, fixed version of problem DLL, SYMCJIT.DLL . Try that.
    The page has an Intel link that is out-of -date. The current Intel link is
    http://support.intel.com/support/processors/pentium4/sb/CS-007990.htm
    "CPUID detection for Intel� Pentium� 4 processor system"
    In two lines, they recommend:
    dir /s SYMCJIT.DLL
    ren SYMCJIT.DLL SYMCJIT.OLD
    Of course, Java will run slower, but JIT is a machine-specific concept and this *.DLL was coded to fail if it did not recognize the CPU type. Maybe not a great decision, but there you are.

  • Unknown command problem

    hi my problem is that i am creating a maze game. the maze is a 2d array of integers. and fed in threw a reader and loaded.
    static void play(){
    try {
    //creates a buffered reader
    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
    //boolean varible is set to true when the program is running until exit is typed
    boolean running = true;
    while (running){
    //a new String varible which is used for input
    String line = in.readLine();
    //when the game is being played a line string says you typed. + line
    //the +line is what the user typed
    System.out.println("You typed "+line);
    //if the user types south call the south method;
    if(line.startsWith("south")){
    south();
    //if the user types east call the east method
    else if(line.startsWith("east")){
    east();
    //if the user types west call the west method
    else if(line.startsWith("west")){
    west();
    //if the user types north then call the north method
    //this is not case sensitive
    else if(line.equalsIgnoreCase("north")){
    north();
    // check if they have reached the goal
    if(currentX == goalX && currentY == goalY)
    System.out.println("You have reached the goal!");
    //print out the maze after each turn(this was only used for testing purposes)
    print();
    //if the user types exit then change the value of running to false and exit the java console
    //it also calls the equalsIgnoreCase this method will allow entry in any case
    if (line.equalsIgnoreCase("exit")){
    running = false;
    // else
    //          System.out.print( "Unknown command: " + line );
    the problem is that if the user types in an invalid command i want to display this error message.
    when i run the program however i get the error every time even though the move happens the error message is still displayed. i only want the error message to display when an invalid command is typed
    i am a beginner so please use basic language.
    thanks jon

    Use the code formatting tags when you post code.
    hi my problem is that i am creating a maze gameTrue, if you weren't creating a game, you'd probably have no problem.
    threw a readerWhere did you throw it?
    i am a beginner so please use basic language. Put your "unknown command output" and exit check blocks directly after the check for "north"

  • Unix command problem

    Sometimes I'll use the 'bg' command to run a process in the background so I can do other tasks in the same terminal window.
    For some reason, I still get the output of the process even though I said BG, not FG (foreground, of course).
    My roomate runs Linux and he doesn't have this problem, does this make sense to anyone?

    Let me make sure that I understand correctly. I assume that you start a job, then type ctrl-z to suspend it and then type bg to put it into the background.
    If so, and if you are getting output to the screen, then I would conclude that the screen is still the standard output device. What I would do is redirect the output to a file. In fact, you can start the job in background mode. If your process is myjob, then this command
    myjob > outfile &
    will send the output from myjob to the file outfile and the "&" puts the job into the background.
    I hope this helps.
    EMAC G4 1.0 GHz   Mac OS X (10.4.4)  

  • C# using TransactionScope with sqlite command problem

    I have a sqlite data table named Customers. And I use few functions to change customer's data like name, TP, address, Email etc.
    Here are my functions.
    changeName(int id, string newName);
    chgangeTP(int id, string newTP);
    changeAddress(int id, string newAddress);
    changeEmail(int id, string newEmail);
    changeNotes(int id, string newNotes);
    But the problem is if user wants to change both Name and Address at once, he calls both changeName() and changeAddress() functions.
    But the the database file could still be locked when the program calls the second function changeTP().
    So I searched about this and found that TransactionScope could solve this problem.
    Q. I want to know, If I write something like below, would it make sure the commands won't edit the Address while database is locked for change the name ?
    using (SQLiteConnection con = new SQLiteConnection(conString))
    con.Open();
    using (TransactionScope scope1 = new TransactionScope())
    SQLiteCommand commandToChangeName = new SQLiteCommand();
    commandToChangeName.Connection = con;
    commandToChangeName.CommandText = changeNameQuery;
    commandToChangeName.ExecuteNonQuery();
    scope1.Complete();
    using (TransactionScope scope2 = new TransactionScope())
    SQLiteCommand commandToChangeAddress = new SQLiteCommand();
    commandToChangeAddress.Connection = con;
    commandToChangeAddress.CommandText = changeAddressQuery;
    commandToChangeAddress.ExecuteNonQuery();
    scope2.Complete();

    Hi friend,
    SQLite is a third-party software library. This is out of our support. Please ask their official forum
    http://www.sqlite.org/support.html for help. Thanks for your understanding.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • At User-command Problem

    Dear Friends
    i have big problem
    below i saved my program code.
    SET PF-STATUS 'SD012_MENU2'. its button also coming to the display screen, my problem is when i click on the "New Remarks" button (FUNC01) i want to call another screen
    but i unable to trigger the any kind of events i done in the screen
    i used AT USER-COMMAND  also but problem still there
    please look this and let me know how can i solve this problem.
    1. Selection Screen (Customer Menu 01) when click on the button ALV list Displaying
    2. In ALV list (Customer Menu 02)  when click on the button list Displaying (list with write statment)
    3. In list (Customer menu 03) when click on the button i want to call screen but in this part any button not working (only display)
    Thanks in advance
    Hope,
      you can understand about my problem. 
    *&      Form  CREATE_REMARKS
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM CREATE_REMARKS .
    *  BREAK ITNR.
      LOOP AT IT_ALLOCATION2 INTO WA_ALLOCATION2.
        IF WA_ALLOCATION2-FLAG = 'X' AND WA_ALLOCATION2-DOCTP = 'LP'.
          SELECT  VBELN POSNR SEQNO CNGDATE CNGTIME CNGUSER REMAK
            INTO  CORRESPONDING FIELDS OF TABLE IT_ZSD012_002
            FROM  ZSD012_002
            WHERE VBELN EQ WA_ALLOCATION2-EBELN
            AND   POSNR EQ WA_ALLOCATION2-POSNR.
          IF SY-SUBRC = 0.
            SET PF-STATUS 'SD012_MENU2'.
            PERFORM WRITE_REMARKS.
            CALL SCREEN '1012' STARTING AT 5 5 .
          ELSE.
            CALL SCREEN 1012 STARTING AT 5 5 .
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " CREATE_REMARKS

    Hi,
    Try this
    Create a PF Status,say you have created 'SD012_MENU2'.
    In this PF STATUS create one button.
    Now while using call function 
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         i_callback_program                = sy-repid
         i_callback_pf_status_set          = 'SD012_MENU2'
         i_callback_user_command           = 'C_USER_COMMAND'
         is_layout                         = er_layout
         it_fieldcat                       = t_fieldcat
        TABLES
          t_outtab                          = t_final
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    FORM SD012_MENU2 USING p_extab TYPE slis_t_extab.
      SET PF-STATUS 'SD012_MENU2'.
    ENDFORM. " STATUS
    FORM c_user_command  USING r_ucomm LIKE sy-ucomm
                                                    rs_selfield TYPE slis_selfield.
      IF  sy-ucomm EQ 'POST'.  here post is button name
      PERFORM something.     here you want to go to some other screen.
      ENDIF.
    ENDFORM.

  • ODI file append with unix command problem

    Hi everyone,
    I will apennd multiple files to a main file in a directory.I wrote jython code like this:
    import os
    sourceDirectory = "/home/oracle1/Desktop/test"
    inFileNames = "#FILE_NAMES"
    inFileNamesList = inFileNames.split(" ")
    inFileIDS = *"'a','1','2','3'"*
    inFileIDSList = inFileIDS.split(",")
    i = 0
    for item in inFileNamesList:
         command ="awk 'BEGIN {OFS=\"" + "#FILE_DELIMITER\"" + "} {print $0,\"[|]\"" + *inFileIDSList* + ",\"[|]\"NR}' " + sourceDirectory + os.sep + item + " >> " + sourceDirectory + os.sep + "#SESS_CURR_TS"
         os.system(command)
         i = i + 1
    Now my problem is here :
    Yu can seee my inFileIDS values.Ana I have splitted comma and then first I will write file then *inFileIDSList[i]* and at the and NR
    But character a is not written.Number values is appended but character values is not appended.
    Why it can be so ?
    someone has an idea about this problem
    Coluld anyone help me to solve this problem?
    Regards

    import os
    sourceDirectory = "#SOURCE_DIRECTORY"
    inFileNames = "#FILE_NAMES"
    inFileNamesList = inFileNames.split(" ")
    inFileIDS = "#FILE_IDS"
    inFileIDSList = inFileIDS.split(",")
    i = 0
    for item in inFileNamesList:
         command ="awk 'BEGIN {OFS=\"" + "#FILE_DELIMITER\"" + "} {print $0,\"\"*FILENAME*}' " + sourceDirectory + os.sep + item + " >> " + sourceDirectory + os.sep + "#SESS_CURR_TS"
         os.system(command)
         i = i + 1
    My original code is above.Now I am printing file datas and I want to print file name that are being ready.
    First print$0(all line) and field_delimiter(;) and then I will print filename which file is processed.My output file will be like this:
    all line;FILENAME
    But I write FILENAME into awk command it returns with path .So for example likie this:/d102/odi/uca/arrival/data/T02344903302310.txt .But I want to print only file name without paths.
    I want to print T02344903302310.txt so my output file will be like this:
    all_line;T02344903302310.txt and there are many files like this.
    Could anyone has an idea?

  • Could not complete the last command : problem with toast 10

    Hi, I am trying to burn blu ray content with Toast 10 Pro (blu-ray content burned to DVD). I have created the content (Quick Time movie) with FCP 7 (into an MOV file). And then added it to Toast 10. Then I tried to create disk image. It gave me this error:
    could not complete the last command because there is a problem with the source material: Error code - 18771.
    I tried to directly burn DVD also, and also not successful. Anybody has the same error and how to solve it?
    Thanks a lot, and happy new year.

    I posted some more experiences with using TOAST on Roxio forum. I thought I'd share them here.
    1. 98 video clip limit. I have been helping my parents and some friends to produce un-edited videos after their vacations, etc. And I quickly ran into this 98 video clip limit, to the point I had to produce multiple DVDs for them.
    2. Error 18771 issue. This happens if the individual video clips are too long. If I edit the video using FCP or FCE, and produce, say, half an hour of video, put it into a MOV file. Then add it into Toast. It will encounter this issue. So, the way I dealt with it, was to produce shorter video clips. So far it has been working out for me.
    3. Between video clips, I am not sure how to do transition. So far, between clips, there is this annoying pause. I would rather, either it just immediately jump to the next clip. Or, out of my own choice, insert some kind of transition. Not sure how to do that. If fellow toast users can point me in the right direction, that will be certainly appreciate it.
    4. I have not been able to get the Chapter Markers from FCP to effectively show up and be reflected in Toast as it defines the menus and chapters. Again, this may be because of my own lack of knowledge. If somebody can give me the pointer to do it, again, very much obliged.
    Message was edited by: seantshen

  • Put Key Command Problem

    Hi everyone ,
    I'm trying to change my card's default key to some other key .
    My card supports GP 2.1.1 and JCRE 2.2.1
    My default keys are :
    I've tried put key command (after opening secure channel ) with defferent P1 and P2 and key versions but I recieve errors , bellow is my APDU logs :
    I'll appreciate it if anyone could help me to find the correct byte setting for p1 and p2 parameters and key version .
    Best Regards,
    Vivian

    Hi,
    What is the status word being returned by your command? Also, can you post the host challenge and response to INITIALIZE UPDATE for the APDU session so I can recreate the session keys to compare key data field values? The only thing I can see with that APDU that may cause you any issues is the Le is not present. The PUT KEY command will return the KCV's on success. Other than that, the only problem could be the encryption. Are you using the session DEK key to encrypt the key values?
    Cheers,
    Shane

Maybe you are looking for