Problem with W995 conversation

Hi, Im a new W995 user. Im encountering a very strange problem. i could not reply to my message through conversation. it doesnt get delivered because the number that got saved is different from the actual one. however i am able to reply through inbox.its very strange. can any1 help me plz
Solved!
Go to Solution.

http://www.sonyericsson.com/cws/support/mobilephones/downloads/subject/updateservice/w995?cc=lk&lc=e... Use the SE update application directly to re-install the software, instead of going through PC companion.Download it to your PC, run it, open it and follow the on-screen instructrions on how and when to connect the phone; the phone has to be switched off for this process in order to enable flash mode.When the application tells you that you already have the latest software, then select the "install" option at the bottom right of the page, which means to re-install the software.As for the apps that you mentioned, these are pre-loaded and so will be re-installed with the rest of the software.Let me know how you get on.

Similar Messages

  • Problem with type conversion and primary key during row fetch

    [Note, this error occurs in Oracle XE, APEX 2.1.0.00.39]
    I have been having a problem with Automatic Row Fetch:
    ORA-01460: unimplemented or unreasonable conversion requested
    So in an effort to resolve this, I created a PL/SQL process with the query below and was able to isolate the same error. The problem seems to come from one of the primary keys being a "number" type (APP_ID). The error occurs on the line:
    where u.app_id=:P5_APP_ID
    I have tried the following variations on this line in an effort to resolve this, but all generate the same error:
    1) where to_char(u.app_id) = :P5_APP_ID
    2) where u.app_id = to_number(:P5_APP_ID)
    3) where to_char(u.app_id) = to_char(:P5_APP_ID)
    I've also tried the laternate syntax "&__." and "#__#", but these don't function in the Source field and show up as syntax errors.
    Any suggestions are welcome.
    begin
    for r in (
    select app_name, apptype, appcreator, appurl
    from application_users u, application_info i
    where u.app_id=:P5_APP_ID
    and i.app_id=u.app_id
    and u.username=:P5_USERNAME)
    loop
    begin
    :P5_APP_NAME := r.app_name;
    :P5_APPURL := r.appurl;
    exception
    when others then
    raise_application_error(-20000,'In Loop Failure',true);
    end;
    end loop;
    exception
    when others then
    raise_application_error(-20000,'Out of Loop Failure',true);
    end;
    Thanks in advance,
    Barney

    I found a prior post referencing a similar issue and it was solved by using the "v(__)" syntax. This did resolve my issue, however, I have a quick follow-on which I'm hoping someone can answer quickly...
    Since the "v(__)" syntax won't work for the Automatic Row Fetch (at least to the best of my knowledge), I have to do a manual process. However, the manual query as shown above doesn't actually populate any of the form values through the bind variables. They all remain at their cached values from prior data entry on the form.
    Is using the bind variables for assignment incorrect, or is there something that must be done to get the updates to show up in the form (ordering of processes, etc.).
    My manual process is running in the Load: Before Header state so I would have expected it to update all of the fields.
    Thanks in advance,
    Barney

  • FCC: Problems with content conversion

    Dear all,
    I have a receiver FTP adapter with content conversion. In RWB I'm facing following error message:
    Adapter Framework caught exception: Exception in XML Parser (format problem?):'java.lang.Exception: Message processing failed in XML parser: 'java.lang.Exception: Consistency error: more fields found in XML structure than specified in conversion parameters! (Value 'FCOTUPI')', probably configuration error in file adapter (XML parser error)'
    The field with value FCOTUPI could be found in POS recordset. I double check the length of columns but couldn't find
    an error.
    CC configuration:
    Recordset structure: HEADER,POS,SUBPOS
    HEADER.fieldFixedLengths = 8,4,8
    POS.fieldFixedLengths = 8,20,15,3
    SUBPOS.fieldFixedLengths = 5,5
    HEADER.fixedLengthTooShortHandling = Cut
    POS.fixedLengthTooShortHandling = Cut
    SUBPOS.fixedLengthTooShortHandling = Cut
    As you can see by the names, I am using as XML to convert a structure with subnodes. In documentation it said
    that it is not allowed, but in some threads I found the information that structure could be processed.
    Any ideas how to solve this problem?
    Thanks
    Chris

    Dear Amit,
    thanks for your answer. I already checked this blog, but hoped for other solutions.
    My problem: I tried to map my hierarchical structure to a flat structure.
    Source
    Struc1 (0..unbounded)
    -Item1.1
    -Struc2 (0..unbounded)
    --Item 2.1
    --Struc3 (0..unbounded)
    ---Item3.1
    Target:
    Struc1 (0..unbounded)
    -Item1.1
    Struc2 (0..unbounded)
    -Item 2.1
    Struc3 (0..unbounded)
    -Item3.1
    But if e.g. the Struc2 appears two time it will be created two time in target structure before
    the Struc3 is created. But ths Struc3 belongs to Struc2 and should be created in flat file under
    Struc2 directly.
    How can we created a flat structure like this
    Struc1
    Struc2
    Struc3
    Struc3
    Struc2
    Struc3
    Thanks
    Chris

  • Problem with Color conversion ADM_Color to  AI_Color

    Hello friends,
    I think this is going to be the first post in this "Illustrator SDK Forum".
    I am having problem with 'Setting Art Work Colors'.
    I am trying to get the color value from the user through a ADM dialogue window, using the function
    sADMBasic->ChooseColor();
    The function is returning color in
    ADMRGBColor structure, whose members (
    red, green, blue) are of the type
    'short'.
    Now, I want to print a rectangular box art filled with that 'user selected color'.
    But the color I have with me is in the
    ADMRGBColor(each member of type 'short') and to draw that on a illustrator file, I need the type
    'AIThreeColrStyle'(each member is of the type AIReal).
    I had no idea how to convert
    ADMRGBColor to
    AIThreeColorStyle, but after lots of 'trial and errors', I arrived at this 'crude' solution.
    ADMRGBColor value was in the range
    0-65535 and
    AIThreeColorStyle was in the range
    0-1
    aiPathStyle.fill.color.c.rgb.red = ((float)admColor.red)/65535;
    This conversion was working fine on Windows, but on Mac its giving weird results. Can some one tell me the proper solution for this conversion problem?
    Thanking you,
    Vijoy~
    And thank you Adobe for givig us this "Illustrator SDK Forum".
    Forums Operations "Why there is no SDK forum for Illustrator?" 12/13/04 4:21pm

    The code above seems to work for me. I get the proper values in the rgb fields of the AIPathStyle struct. Are you sure you are filling in the remaining values in the struct (like fillPaint, overprint, etc.) with appropriate values?
    Hope that helps,
    -Frank

  • Problems with Quicktime Conversion, FCE2

    I am having problems using quicktime conversion. I want to export a 4 minute sequence into uncompressed AVI.
    Each time i do this i get an almost 4 gb file that is only the first 18 seconds of the sequence. (when i export to WMV I get the same problem, except its 30 seconds)
    I can export using compressed AVIs (such as DV-PAL), but the quality is not too good.
    I am simply trying to get the best quality and most-universally useable file to write out onto a data DVD.
    Any ideas/suggestions anyone?
    I have am using a PowerPC G4 laptop, FCE2, OSX tiger....
    Further problems: when i write this movie out to DVD with iDVD, and when it is in NTSC setting, black white lines appear on top of the black background parts in the movie, rather sporadically. I have written it out 3 or 4 times, and each time the frequency of the lines is different, but each DVD is unusable. In PAL setting this doesnt happen, but of course the quality is diminished, as the orig. footage was taken on an NTSC camera. I am in Europe, so this PAL/NTSC conversion thing is a neverending problem.... Is this an iDVD problem or a problem with my laptop's burner?
    Daniel

    Dear Tom,
    I appreciate you replying to my post, and am sorry for not getting back to you sooner, but i never received an email notification of a reply.
    The Nattress solution seems like a good route - is this compatible with FC Express 2?
    The purpose of this AVI export is to have the highest possible quality file in data form, which the (PC using) client will then be able to write out onto DVD, convert/edit himself, etc. I have written out the self-contained QuicktimeMovie data file for him, but he is unable to open that. When i write out the AVI file, it is over 4 times as big as the QTmovie file and only plays for the first 18 seconds.
    I am exporting to my internal harddrive (laptop).
    The end goal is to get this file eventually onto a PAL-BETA video. This is where the NTSC-PAL conversion problem comes in, and maybe the Nattress program could be the solution (although it initially seems a bit complicated to me).
    Another important part of this problem, is that iDVD writes out the original NTSC file with funny white lines going across the black backgrounds - so I cant write the best quality NTSC video onto DVD properly either. Each time I write it out, the frequency of these white lines is different. I dont know if this is a related problem, a Final Cut Express export problem, an iDVD problem, or a problem with my DVD writer. (I made the movie, exported it self-contained QTmov, imported it into a new file, did some color-correction, and exported the new final version. - maybe the problem stems from within this simple process? ? ? )
    (Regarding the WMV export: this is not so important, lets not deal with this now. I have flip4mac, downloaded free. My experience is that it doesnt really work.)
    So... any ideas or suggestions?
    i appreciate your help,
    Daniel

  • Problem with date conversion

    I have read some topics about it, but still have problem :-(((
    When I insert data, I don't have any problem with a date. It looks like this:
         Statement stmt = con.createStatement();
              stmt.executeUpdate("BEGIN " +
                        "INSERT INTO employee VALUES (" +
                        "employee_t(idnum.nextval,'John','Double'," +
                        "to_date('21.01.1975','DD.MM.YYYY'), 20000))" +
                        "END;"); Now I am trying to update, and get the error:
      String query = "BEGIN UPDATE employee SET " +
    "first_name ='"+getJtxtfldFirst_name().getText()+"', "+
    "last_name = '"+getJtxtfldLast_name().getText()+"', "+
    "date_of_birth = to_date('1982-03-11','YYYY-MM-DD'), "+
                                     "END; ";
    Statement stmt = con.createStatement();
                   int rs = stmt.executeUpdate(query);
                   stmt.close();The error:
    java.sql.SQLException: ORA-06550: line 1, column 149:
    PLS-00338: unable to resolve "DATE_OF_BIRTH" as a column or row expression
    ORA-06550: line 1, column 7:
    PL/SQL: SQL Statement ignoredI have tried different variants, tried to parse... Just can't find where I make the error.
    If I comment this line, with a date, there are no any exceptions.
    This code in sqlplus works fine.

    And besides that, you don't need to wrap your SQL
    with the PL/SQL "BEGIN" and "END" tags; why invoke
    the PL/SQL parser if you're not using any PL/SQL
    features?
    I suspect your underlying problem is that the column
    isn't actually named "date_of_birth".You are quete right. It was my faulf. There was a field date_of_birthday. The oracle could say it more preciesly.
    With the statement it works fine also.
    Thank you for the answer and sorry for disturbing, I have forgotten to update the database and was sure I copied the new files... But updated the old one.

  • Dynamic file name in receiver - empty line problem with content conversion

    Hi,
    I do a variable substitution from a filename node in my xml structure. Because I don't want to have the the filename in my flatfile i supress the output with the conversion parameters:
    filename.fixedLengthTooShortHandling = Cut
    filename.fieldFixedLengths = 0
    It's working but: the adapter is puting an empty line at the end of the file. If I even put the filename node at the top of the xml struture it generates the empty line at the top of the flatfile.
    Anyone has an idea? is there an other way to set the filename or how can I supress this empty line( I have to) ?
    Regrads
    J.

    Jorg,
    Actually speaking we cannot get rid of this with XI. You have to write a OS script to remove this.
    Else
    you add one more parameter as .endSeparator as backspace ie., 0x08. It will definitely remove the line but I think it is putting a square box at the end of previous line. Please check by giving this and let us know the updates.
    Regards,
    ---Satish

  • Aspect ratio problem with Quicktime Conversion from FCE HD 3.5

    I have a FCE 3.5 HDV project (16:9 aspect ratio) which I am trying to export using Quicktime Conversion for eventual web-streaming. I have tried various settings including "maintain aspect ratio" and the "letterbox" options. After every multi-hour attempt, the end result is just what I need, except the aspect ratio is always 4:3 and vertically squeezed.
    What settings should I use for a small to medium sized version of my movie for streaming on a website, but in the correct aspect ratio? I'd prefer a 16:9 Quicktime frame, or at least a 4:3 Quicktime frame with black bars.

    I too have been having some problems, same software. Export to iPod completely ignores the intended aspect ratio and is non-adjustable and squeezes the footage. It looks fine on the canvas but gets messed up on export. A 4:3 video that should be 640x480 ends up being 640x426, and a 16:9 video that should be 640x360 looks to be getting 640x426 as well.
    Currently, my work-around is to export to DV file, then export to iPod. Being a double encoding, it is quite wasteful in terms of time and processing power. Is there something else I can do?

  • Problem with file conversion from version 9.2.2 to version 10.1.0.71

    Hello everyone.
    I have a problem. In my database, i have a lot of artwork done with indesign 9.2.2. Since a while now I upgraded indesign and now I have the latest version 10.1.0.71 but I can't open my indesign artwork made with indesign 9.2.2.
    When I try, a dialog box appear and says : " La conversion a échoué : les données du fichier ne correspondent pas aux données attendues".
    What should I do ?
    Thank you in advance

    Hi,
    Ideally all files created in 9.2.2 should open fine in versions greater than itself.
    Did you happen to have some 3rd party plugin in 9.2.2 which is missing in 10.1 ? That can be one of the reasons for such errors.
    Are the files still opening in version 9.2.2? (assuming you still have 9.2.2)
    If there are no 3rd party plugins involved you can share the file with us at [email protected] and we can have a look and figure out the cause of the problem.
    Regards
    Javed

  • Problems with content conversion in File Receiver Adapter

    Hello, everybody.
        I have a RFC-to-File scenario with file content conversion. Everything is working well except that my file is generated with 2 blank lines at the top of it.
        The function module has 3 importing parameters (1 optional) and the file content comes from an internal table.
        Is it caused by the function module parameters? If yes, how can I avoid this, once I really need them? If not, does anyone have any idea?
        Thanks a lot,
        Marcos.

    Hi, Raj.
    Here they are the function module parameters:
    Importing parameters:
             ICARRIER     TYPE     CHAR1
             FPATH     TYPE     IPATH
             IFILE     LIKE     VBAK-BNAME
    Tables
             IYLASDS_RECPT     LIKE     YLASDS_RECPT
    The structure YLASDS_RECPT has only one field with a single line of the file. I am using this field as the <i>Recordset Name</i> inside file adpater parameters.
    There is no mapping between RFC and FTP messages.
    Thanks a lot,
    Marcos.

  • Problems with YouTube conversions

    Guys,
    I touched on this in another Q, but never got to the bottom of it, and it's getting worse...
    If I EDIT a QK .mov and post it on YouTube, it's not playing properly. The sound is out of sync, and if I have cut and pasted a section into the movie, it just stops at the edit and doesn't play the full movie, despite it showing the full runnintg time in the YouTube window.
    Also getting bad pixelation where I'm editing sections together, or splitting them.
    Any idea how to fix these problems, can they be fixed?
    Thanks.
    imac G4    

    "The way they encode FLV's on youtube...they play badly, pixelation and you lose sync with audio and video...This is very common on youtube."
    I don't find this to be true. Unless it depends on what type of computer you have, how much RAM you have, the type of ISP service or just maybe the type of videos you are watching.
    Me personally, I watch a lot of the music videos. Some by the artist themselves & some of the home grown amature ones which can be pretty funny.
    Granted some of it is pretty awful but the majority of the music videos (90%) are quite good visually, audio, nice pixelation with excellent syncing. Not like watching those old Saturday afternoon Japanese kung fu movies.
    Google Videos are pretty fair. AOL videos are quite good also.

  • MaxDB upgrade/heterogeneus system copy problem with unicode conversion

    Project goal:
    upgrade a Content Server Version 7.3.0.35   32bit Non Unicode to
    version 7.6.06.16   64bit Unicode
    I found and followed note 962019
    My plan (following the note): 
    -create a clone of the original Content Server (vmware clone)
    -as per note 962019 patched server 7.3.0.35 to 7.3.0.62 (> 7.3.0.57)
    -created index
    -on a fresh installed windows 2003 server 64bit i installed Content Server with build 7.6.06.16
    -using loadercli from the target server (7.6.06.16) exported data
    Now i was ready to start the import, as the note states:
    "if the database parameter _UNICODE is set to the value NO and you want to start the target system with SAP MaxDB Version 7.6, you can use procedure described here for the import into a target system only with SAP MaxDB Version 7.6.05 build 11 or higher"
    Having version 7.6.06.16 i was confident on such procedure, but my import stops immediatly with error:
    D:\exportKpro>loadercli -d PRD -u SAPR3,SAP -b import.sql
    Loader protocol: 'C:\Documents and Settings\administrator\My Documents
    \sdb\loader\log\loader.log'
    Loader packages: 'C:\Documents and Settings\administrator\My Documents
    \sdb\loader\packages'
    Error connecting user SAPR3 to database PRD on local host: -25005
    User (SAPR3) logon to database PRD failed: SQL error -8046 = Conversion from UNI
    CODE impossible: 7600 (error position: 1)
    And now i'm stuck with no hints on how to proceed.
    Thanks in advance.
    Regards
    Simone Zaffalon

    Hello Simone,
    as you're staying on Windows platform, there is no need for a heterogenous system copy.
    All you've to do is to upgrade the 32-Bit installation to your target release (why not use MaxDB 7.7 right away?).
    Once this is done, you can check whether the database catalog is still non-unicode (_UNICODE=FALSE).
    If it is, there is a catalog migration procedure you can use to change this.
    If the 32-Bit database is as you want it, take a full data backup.
    Then uninstall the 32-Bit software, install the same version of MaxDB in the 64-Bit fashion.
    Finally create the db instance by a restore of the backup.
    After a load_systab your database is fully ready to go!
    Just to stress this again: the _UNICODE parameter is not about your data!.
    It's about the database catalog.
    Having this parameter set to YES you can create e.g. tables named with Unicode characters.
    The parameter does in no way affect your business data!
    Since many customers ask why they should't use loadercli for a scenario like this:
    a) It's only supported if you must use it, that is, you change the byte-order of the OS platform
    b) it's way faster than export and import. We're talking about a few hours compared to days here!
    c) It's much safer and controllable to use backup/restore and SDBUPD and move on step-by-step than exporting all data into a big file chunk and hoping that everything will be fine afterwards.
    regards,
    Lars

  • My apple ID was the original without the email extension.  It caused problems with ITunes conversion after the last upgrade.  Tech fixed that issue but my MacBook defaults to the old ID.  Even though I have a new ID it defaults to the old.  iTunes is ok.

    How do I change my Apple ID, when it defaults to an old ID and ITunes is accepting another ID?  The IDis very old and does not contain an email extension.  I had a problem because of that earlier this year in my ITunes account and Apple fixed it.

    Get in touch with Apple again -> http://www.apple.com/support/appleid/.
    Good luck,
    Clinton

  • Problem with DNG conversion of Panasonic FZ-200 .RW2 file?

    When I convert a Panasonic FZ-200 .RW2 raw file using DNG Converter 8.6 on Windows 8.1 64 bit, I get a warning from ExifTool of "Invalid DistortionInfo."  Looking at the ExifTool source code, this happens when the length of the block containing the distortion information is not 32 bytes in length (which it is in the .RW2 file).
    This indicates to me that the DNG converter is not correctly rewriting some of the metadata correctly.
    Can anybody else reproduce this, and is this the proper forum for reporting this problem?

    I am seeing the same thing, both with the standalone DNG Converter 8.6 and DNGs saved from ACR 8.6:
    My question would be whether the DistortionInfo is supposed to always be 32-bytes according to some current standard or if there is somewhere else in the file that says how long the DistortionInfo area actually is so it's fine that it's not 32-bytes.  I mean is the DNGC doing something wrong or is EXIFTool too inflexible.

  • Problem with smartform conversion

    Hello i am trying to convert PO into SMARTFORM using this code..
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/convertSmartformtoPDFformat&
    but it is taking me to dump error and when i analyzed the source code where i am going wrong it is showing error with this line CALL FUNCTION "v_fm_name" . PLease suggest me the necessary to rectify my error.
    Thks

    Hello Amit,
    Thanks a lot for your reply please just check my code...
    DATA: it_otf   TYPE STANDARD TABLE OF itcoo,
          it_docs  TYPE STANDARD TABLE OF docs,
          it_lines TYPE STANDARD TABLE OF tline,
          st_job_output_info      TYPE ssfcrescl,
          st_document_output_info TYPE ssfcrespd,
          st_job_output_options   TYPE ssfcresop,
          st_output_options       TYPE ssfcompop,
          st_control_parameters   TYPE ssfctrlop,
          v_len_in                TYPE so_obj_len,
          v_language              TYPE sflangu VALUE 'E',
          v_e_devtype             TYPE rspoptype,
          v_bin_filesize          TYPE i,
          v_name                  TYPE string,
          v_path                  TYPE string,
          v_fullpath              TYPE string,
          v_filter                TYPE string,
          v_uact                  TYPE i,
          v_guiobj                TYPE REF TO cl_gui_frontend_services,
          v_filename              TYPE string,
          v_fm_name               TYPE rs38l_fnam.
    *CONSTANTS c_formname TYPE tdsfname VALUE 'ZREDDY'.
    CALL FUNCTION 'SSF_GET_DEVICE_TYPE'
      EXPORTING
        i_language    = v_language
        i_application = 'SAPDEFAULT'
      IMPORTING
        e_devtype     = v_e_devtype.
    st_output_options-tdprinter = v_e_devtype.
    st_output_options-tdprinter = 'locl'.
    st_control_parameters-no_dialog = 'X'.
    st_control_parameters-getotf = 'X'.
    .................GET SMARTFORM FUNCTION MODULE NAME.................
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        formname           = 'ZSMART'
      IMPORTING
        fm_name            = v_fm_name
      EXCEPTIONS
        no_form            = 1
        no_function_module = 2
        OTHERS             = 3.
    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 SMARTFORM............................
    CALL FUNCTION v_fm_name
      EXPORTING
        control_parameters   = st_control_parameters
       output_options       = st_output_options
      IMPORTING
        document_output_info = st_document_output_info
        job_output_info      = st_job_output_info
        job_output_options   = st_job_output_options
      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.
    ELSE.
    .........................CONVERT TO OTF TO PDF.......................
      CALL FUNCTION 'CONVERT_OTF_2_PDF'
        IMPORTING
          bin_filesize           = v_bin_filesize
        TABLES
          otf                    = st_job_output_info-otfdata
          doctab_archive         = it_docs
          lines                  = it_lines
        EXCEPTIONS
          err_conv_not_possible  = 1
          err_otf_mc_noendmarker = 2
          OTHERS                 = 3.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ........................GET THE FILE NAME TO STORE....................
      CONCATENATE 'smrt' '.pdf' INTO v_name.
      CREATE OBJECT v_guiobj.
      CALL METHOD v_guiobj->file_save_dialog
        EXPORTING
          default_extension = 'pdf'
          default_file_name = v_name
          file_filter       = v_filter
        CHANGING
          filename          = v_name
          path              = v_path
          fullpath          = v_fullpath
          user_action       = v_uact.
      IF v_uact = v_guiobj->action_cancel.
        EXIT.
      ENDIF.
    ..................................DOWNLOAD AS FILE....................
      MOVE v_fullpath TO v_filename.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          bin_filesize            = v_bin_filesize
          filename                = v_filename
          filetype                = 'BIN'
        TABLES
          data_tab                = it_lines
        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.
      IF sy-subrc <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    In this code it is showing dumperror with the call function v_fm_name....in the dump it is showing error like one parameter is missing...iam unable to recognize that parameter. Please if you can able to find help me to achieve this.
    Thks

Maybe you are looking for

  • Installing OSX onto a G3

    I have made a copy of OSX10.4.8 from my G5 and put it onto my Lacie external hardrive then hooked up the hardrive to my G3 using firewire. Once the lacie mounted on th desktop I was albe to open it up and find the OSX 10 copy, and drag it onto my des

  • Db_writer_process and async IO??

    we have ORACLE 10Gr2 on Redhar AS LInux server version 4.X. I checked one of database init.ora have following setup: db_writer_processes = 2 filesystemio_options = asynch DISK_ASYNCH_IO = true TAPE_ASYNCH_IO = true Based on what I know "db_writer_pro

  • Turning off browswer formats

    I have a report which I am running as an .rep file. This is a 10g report. I want to generate the report output in HTML. When I click on the browers print button, I get my browsers default headers and footers. Is there a way I can put a button or link

  • GET DATA command

    Hello, what is the APDU command for GET DATA? I'd like to extract card data(tag '66') information using JCOP. when I using the following command, there is a 6A 86 (Incorrect parameters) error. cm> /send 80CA006600 Please let me know the correct APDU

  • Love my new iBook, BUT...

    love my new iBook, as a matter fact, Apple Computer has helped me learn more about technology and expressing myself than I ever thought possible from any corporate entity. it's almost to the point that you can manifest an idea in yer head, with sound