Problem while attaching file to create service notification(IW51) iView

Hi,
We are using Create Service Notification (IW51) transaction iView (SAP GUI for HTML) in one of our portal workset.
Few users are facing issue while trying to attach file to the Service Notification. When they open the file dialogue to attach the file
it keeps on spinning and hangs, nothing proceeds further. Does anyone faced similar issue if so can you provide solution for this?
Regards,
Abhiram.

Hi,
Check the users experiencing issues java runtime on their systems. The file system object uses the JRE. Also check that if the java runtime is up-to-date and of teh same version whose systems are working, that their browser security setting as well as trusted sites have been configured correctly.

Similar Messages

  • Unable to attach file to create service notification(IW51) transactio iView

    Hi,
    We are using Create Service Notification (IW51) transaction iView (SAP GUI for HTML) in one of our portal workset.
    Few users are facing issue while trying to attach file to the Service Notification. When they open the file dialogue to attach the file
    it keeps on spinning and hangs, nothing proceeds further. Does anyone faced similar issue if so can you provide solution for this?
    Regards,
    Abhiram.

    << Do not post the same question across a number of forums >>

  • Problem in customer address while creating service notification using IW51

    Hi Experts,
    I am trying to create a BDC recording for creating Service Notification using transaction IW51. I have done the recording as follows. On the First screen I am entering notification type. Then on the next screen I am entering the Sold to party  and its address by clicking on the icon besides it. After that i enter Functional location, equipment, priority and req end date and save it.  When I am running this recording after transferring it to a progam , somehow the address disappears for the newly created notification. I am not able to figure out the reason. Kindly guide me.
    Thanks,
    Sonal

    I assume you have tried this with update mode = 'A'-all and watched it actually work correctly?  May I ask why the BDC instead of BAPI?  Is it because you're creating a new partner?  If so, are you pressing save on that partner creation?

  • IDOC to create service notification

    Hi All,
    I have a new task here to create service notification through IDOC.
    I've done some research on the IDOC type (SERVICENOTIFICATION_CREATEFR01) , the message type (SERVICENOTIFICATION_CREATEFROM), process code (BAPI) and the FM tied to this process code (BAPI_IDOC_INPUT1).
    I do found the FM that going to be called in this BAPI_IDOC_INPUT1 is IDOC_INPUT_SERVNOT_CREATE which will read data in segments and pass into BAPI_SERVNOT_CREATE to create the notification.
    My problem is, I've tried to pass in some data in BAPI_SERVNOT_CREATE (as I'm not sure what is the mandatory field in this BAPI in order to create notification.
    I passed in the NOTIF_TYP, NOTIFHEADER-EQUIPMENT and TASK_DETERMINATION. I tested this BAPI in sequence and the next FM to call is BAPI_SERVNOT_SAVE.
    The result: Failed.
    Can I know what is the mandatory field for this BAPI in order to successfully creating the notification?
    p/s: I read the documentation for this BAPI too but clueless.
    Thanks for the help.
    Best Regards,
    Jason

    Hi Harris,
    Thanks for the advice. After I used this BAPI to see what's the details in it, I tried to put in as much data as possible in the BAPI but without the external_number and task_determination marked as X.
    In the export parameters I get in NOTIFHEADER_EXPORT-NOTIF_NO I have this 00000000002.
    In the next BAPI to be called is BAPI_SERVNOT_SAVE, it requires to key in the NUMBER as the import parameters. Else, I won't be able to proceed.
    I key-ed in 00000000002 into the NUMBER field and obviously it was wrong....
    Please help....
    Thanks a lot.

  • Error message when try to create a Service Notification - IW51

    Hi Everyone!
    When the customer try to create a new Service Notification (IW51 transaction), they receive an customized error message: "No pricing reference  material for material [item code] not able to save". The price appears on the quantity contract by through of the Condition Price. So, I checked it this condition price on the VK13 transaction and it was inputed correctly and it is valid.
    Do you have any idea where can I verify what is the problem... Any tips will be welcome!
    Thanks
    Best Regards
    Claudia Kishimoto

    i don't have a dsee server in front of me at the moment to confirm but i would suspect that /usr/local/dsee/dsins1 does not exist.
    Can you ls /usr/local/dsee/dsins1? Does it exist?

  • Steps to create Service Notification in Customer Service Module

    Hi,
    Can anyone let me know the steps involved and the process to create Service Notification in Customer Service Module.
    Regards,
    Ram

    Hello SAP Guru's,
    I am Shankar from chennai.
    At present i have assigned to do the Customer Service process for our project.
    I had tried the BPP method for doing it.
    When i tried the Depot repair process from BPP i got error during billing process.
    Can any one guide me with the step by steps procedure to do the senerio.
    i searched the web for the process. but i couldnt able to find it.
    If any one has the complete step by step procedure to do the process pls help me.
    my id is ponshankar gmail com.
    Thanks in advance
    Warm regards,
    Shankar

  • Any Function module/BAPI to create Service Notification wrf to Contract

    Hi Experts,
    Is there any BAPI/FM to create service notification with reference to Contract.
    Thanks & Regards,
    Vishnu Priya

    .

  • Problem with attaching file to Sales Order

    Hello,
    In my company we have the possibility to attach files to sales orders, e.g. pdf files with the printing details.
    These files are added by the GUI user, this works fine.
    Now we have an extra order creation stream in which a pdf file has to be added to the SO without user interaction.
    I found a helpful link ( /people/rammanohar.tiwari/blog/2005/10/10/generic-object-services-gos--in-background )
    This program creates URL links with no problem, but the file generation is not implemented yet.
    I tried to add the file functions to his sample report but still have one problem. The file is uploaded, but not reported as a PDF file in sap. If I select the created attachment SAP allows only the saving of the attachment. After saving the created file is a good PDF file, it opens with PDF-viewers.
    Why does SAP not know this is a PDF file and report it as such (and open the pdf viewer when selected).
    Thanks, Frank.
    source-code:
    REPORT  zzfb_brc                                .
    * Report  Z_RMTIWARI_ATTACH_DOC_TO_BO
    * Written By : Ram Manohar Tiwari
    * Function   : We need to maintain links between Business Object and
    *              the attachment.Attachment document is basiclally a
    *              business object of type 'MESSAGE'.In order to maintain
    *              links, first the attachment will be crated as Business
    *              Object of type 'MESSAGE' using Message.Create method.
    *              Need to check if we can also use FM
    *              'SO_DOC_INSERT_WITH_ORIG_API1' or SO_OBJECT_INSERT rather
    *              than using Message.Create method.
    * I took this program and removed all the parts for adding URL's and
    * notes.
    * Include for BO macros
    INCLUDE : <cntn01>.
    * Load class.
    CLASS cl_binary_relation DEFINITION LOAD.
    CLASS cl_obl_object      DEFINITION LOAD.
    PARAMETERS:
    *  Object_a
       p_botype LIKE obl_s_pbor-typeid DEFAULT 'BUS2032',    "SO
       p_bo_id  LIKE obl_s_pbor-instid DEFAULT '0000757830', "example number
    *  Object_b
       p_docty  LIKE obl_s_pbor-typeid DEFAULT 'MESSAGE' NO-DISPLAY,
       p_msgtyp LIKE sofm-doctp        DEFAULT 'EXT'     NO-DISPLAY,
    *  Relationship
       p_reltyp  LIKE mdoblrel-reltype DEFAULT 'ATTA'.
    TYPES: BEGIN OF ty_message_key,
            foltp     TYPE so_fol_tp,
            folyr     TYPE so_fol_yr,
            folno     TYPE so_fol_no,
            doctp     TYPE so_doc_tp,
            docyr     TYPE so_doc_yr,
            docno     TYPE so_doc_no,
            fortp     TYPE so_for_tp,
            foryr     TYPE so_for_yr,
            forno     TYPE so_for_no,
           END OF ty_message_key.
    DATA : lv_message_key TYPE ty_message_key.
    DATA : lo_message TYPE swc_object.
    DATA : lt_doc_content TYPE STANDARD TABLE OF soli-line,
           ls_doc_content TYPE soli-line.
    * Create an initial instance of BO 'MESSAGE' - to call the
    * instance-independent method 'Create'.
    swc_create_object lo_message 'MESSAGE' lv_message_key.
    * Upload the pdf file, for now from the frontend, in the future from
    * the server.
    DATA:
    *  dsn(40) TYPE C VALUE '/usr/sap/trans/convert/1.pdf', "server location
    l_lines TYPE i. "filelenght
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename   = 'c:t1.pdf'
        filetype   = 'BIN'
      IMPORTING
        filelength = l_lines
      TABLES
        data_tab   = lt_doc_content.
    * no exceptions, the file is there in this example
    break brouwersf.
    ** the coding for the server input, for later
    *OPEN DATASET dsn FOR INPUT IN BINARY MODE.
    *IF sy-subrc <> 0.
    *  EXIT.
    *ENDIF.
    *READ DATASET dsn INTO ls_doc_content.
    *WHILE sy-subrc EQ 0.
    *  APPEND ls_doc_content TO lt_doc_content.
    *  READ DATASET dsn INTO ls_doc_content.
    *ENDWHILE.
    *CLEAR ls_doc_content.
    *CLOSE DATASET dsn.
    * define container to pass the parameter values to the method call
    * in next step.
    swc_container lt_message_container.
    * Populate container with parameters for method
    swc_set_element lt_message_container 'DOCUMENTTITLE' 'Title'.
    swc_set_element lt_message_container 'DOCUMENTLANGU' 'E'.
    swc_set_element lt_message_container 'NO_DIALOG'     'X'.
    swc_set_element lt_message_container 'DOCUMENTNAME' p_docty.
    swc_set_element lt_message_container 'DOCUMENTTYPE' p_msgtyp.
    swc_set_element lt_message_container 'DocumentSize'    l_lines.
    swc_set_element lt_message_container 'DocumentContent' lt_doc_content.
    swc_call_method lo_message 'CREATE' lt_message_container.
    * Refresh to get the reference of create 'MESSAGE' object for attachment
    swc_refresh_object lo_message.
    * Get Key of new object
    swc_get_object_key lo_message lv_message_key.
    * Now we have attachment as a business object instance. We can now
    * attach it to our main business object instance.
    * Create main BO object_a
    DATA: lo_is_object_a TYPE sibflporb.
    lo_is_object_a-instid = p_bo_id.
    lo_is_object_a-typeid = p_botype.
    lo_is_object_a-catid  = 'BO'.
    * Create attachment BO object_b
    DATA: lo_is_object_b TYPE sibflporb.
    lo_is_object_b-instid = lv_message_key.
    lo_is_object_b-typeid = p_docty.
    lo_is_object_b-catid  = 'BO'.
    *TRY.
    CALL METHOD cl_binary_relation=>create_link
      EXPORTING
        is_object_a = lo_is_object_a
        is_object_b = lo_is_object_b
        ip_reltype  = p_reltyp.
    * Check if everything OK...who cares!!
    COMMIT WORK.

    Hi,
    Welcome to the SDN Forums!!!
    You need to supply the PC file extension in the container element 'DOCUMENTTYPE'.
    swc_set_element lt_message_container 'DOCUMENTTYPE' p_msgtyp.
    In your case change the above statement as below:
    swc_set_element lt_message_container 'DOCUMENTTYPE' 'pdf'.
    <b>OR</b> change the default value of p_msgtyp to 'PDF'.
    Cheers,
    Ramki Maley.
    Please reward points if the answer is helpful.
    For info on awarding points click on this link: https://www.sdn.sap.com/sdn/index.sdn?page=crp_help.htm
    Message was edited by: Ramki Maley

  • Problem while testing a ABAP Web Service

    Hello,
    I'm facing a problem while testing a webservice for the BAPI BUPA_CENTRAL_GET_DETAIL. I have opened the Web Service Home page, and I get no error. I fill in the input values and then when I send the request, I get back an error which says "Authority check failed"
    Urgent help needed..
    Thanx,
    Anupama

    you need s_service and s_object authorization objects in your role.
    its explained in this document
    section 3.1 on page 7
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/92d80512-0a01-0010-32a3-cd3735bd9275
    Regards
    Raja

  • Japanese character problem while downloading file to application server

    Hello All,
    We are facing a strange problem while downloading a file to application server when file contains japanese text.
    We are downloading vendor and customer information in a flat file format on application server. When the login language is EN program show ouput in a properly formatted manner.
    When the login language is JA (japanese) program does download file with customer vendor data. I can see the description is japanese language but the formatting is gone for a toss.
    We are facing similar issue with other programs downloading files on the application server.
    I am using OPEN DATASET........ENCODING DEFAULT. and working on unicode enabaled ECC 6.0 system
    Quick help appriciated.
    Thanks!

    Hi
    Sometimes this also happens because of your desktop setting.Make sure that your OS also supports the JAPANESSE language.
    Ask your technical support team to enable them in your desktop.
    Thanks & Regards
    Jyo

  • Problem while uploading file from excel to internal table

    Hi,
        I am getting dump while i execute the program ,here is the code and the attach file ..
      plz check it out and let me know it's very urgent...
         this is the first time i am working with excel ,plz do the favour to me..
    thanks,
    ravi v ganji

    Hi,
        I am getting dump while i execute the program ,here is the code and the attach file ..
      plz check it out and let me know it's very urgent...
         this is the first time i am working with excel ,plz do the favour to me..
    thanks,
    ravi v ganji

  • Problems reading attached files in Mail 5.2

    After moving messages from inbox to different mailboxes, it sometimes happens that the attached file (exel, word...) disappears as an attachment and is no longer readable. > The content converts itself as a long text looking like this "CBAAAAYFAOwVzQfBwAAABgMAAOEAAgCwBMEAAgAAAOIAAABcAHAADQAAYWRtaW5pc3Ry...." and I can no longer save the file because it has disappeared!!!
    I don't want to PRINT or SAVE every attachment. I just want to keep the message as long as I might need it's content. But this is no longer possible nor reliable.
    CAN SOMEONE HELP ME??? Thank you :-)

    Disable Mac Mail.app Inline Image Attachments
    http://micahgilman.com/play/disable-mac-mailapp-inline-image-attachments/
    Force Apple mail.app to display attachments as icon
    http://www.sant-media.co.uk/2010/11/apple-mail-inline-attachments/
    Mail.app attachment as icon
    http://creativebits.org/mac_os_x/mail_app_attachment_as_icon/

  • Problem in attaching file

    Hi,
    I write the code for sending mail using javamail, it works fine for text message but when I attach any file the file content get inserted in mail and for images or pdf file not displayed proper, please help me out .
    Dnyanesh

    Hello Ashish,
    I used same code as u mentioned, but its not working correctly,
    I want to send mail to any email address through my progarm then how could use IMAP for receiving mail,
    I am attaching my code, please see if any correction, try to help me out if possible
    //**********************Code***********************************/
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    import javax.activation.*;
    public class mail
         public static void main(String[] args)
              try
              Properties properties=new Properties();
              properties.setProperty("mail.transport.protocol", "smtp");
              properties.setProperty("mail.smtp.host","host");
              Session session = Session.getDefaultInstance(properties,null);
              Transport transport = session.getTransport();
              transport.connect();                                             
              Address address = new InternetAddress("");//receiver's address
              Message message = new MimeMessage(session);
              message.setFrom(new InternetAddress(""));// sender's address
              message.setRecipient(Message.RecipientType.TO, address);
              message.setSubject("Test Mail");
                   MimeMultipart multipart = new MimeMultipart("attachment");
                   MimeBodyPart messageBodyPart = new MimeBodyPart();
                   messageBodyPart.setText("Attachment here");
                   MimeBodyPart messageBodyPart1 = new MimeBodyPart();
                   FileDataSource source = new FileDataSource("filename");// attaching file
                   messageBodyPart1.setDataHandler(new DataHandler(source));
                   messageBodyPart.setFileName("Hello.txt");
                   messageBodyPart.setDisposition("attachment");
                   messageBodyPart.setHeader("Content-ID","Hello.txt");
                   multipart.addBodyPart(messageBodyPart);
                   multipart.addBodyPart(messageBodyPart1);
                   //put parts in message
                   message.setContent(multipart);
                   transport.sendMessage(message, message.getAllRecipients());
              transport.close();
              catch(Exception e)
                   System.out.println("Exception in file:"+e);
    }

  • Problem while saving files

    Hello everyone,
    I have problem while wanting to save my projects. Nothing appears when I click on "Save" or "Save as". Ctrl+S doesn't work either. The only option that remains to me is closing my project, then it asks me if I want to save or not, then I save. But once it closed without asking me, I lost my work It's kind of annoying.
    I'm using Photoshop CS5
    Could anyone help me?
    Thanks.

    You likely don't have a display with a minimum of 768 pixels vertically.
    Hard to believe, but Photoshop's Save dialog will fail if you don't have a display that large.
    -Noel

  • Problem while connecting to remote corba service

    Hi, all.
    I'm new to Tuxedo/CORBA and want to run sample application. I follow all the instructions and everything's fine when I'm looking for local machine:
    Tobj_Bootstrap bootstrap(v_orb.in(), "");
    but when I'm lookin for remote service
    Tobj_Bootstrap bootstrap(v_orb.in(), "/ /MYHOST:2500");
    than running
    simple_client -ORBid BEA_IIOP
    I'm getting
    Can't connect to the domain : IDL:beasys.com/Tobj/InvalidDomain:1.0
    What went wrong? How can I use corba service on remote machine?\
    Thanks, Oleg.
    [att1.html]

    Hello, Peter.
    1. yes, my ubb-file contains ISL server listening process on
    file://MYHOST:2500 <file://MYHOST:2500>
    2. yes, ISL process booted successfully.
    3. yes, there's a ping to MYHOST.
    Here's my ubb file:
    *RESOURCES                              
    IPCKEY 55432
    DOMAINID simpapp
    MASTER SITE1
    MODEL SHM
    LDBAL N
    *MACHINES                              
    "MYHOST"
    LMID = SITE1
    APPDIR = "D:\bea\tuxedo8.0\samples\corba\simpapp"
    TUXCONFIG =
    "D:\bea\tuxedo8.0\samples\corba\simpapp\results\tuxconfig"
    TUXDIR = "d:\bea\tuxedo8.0"
    MAXWSCLIENTS = 10
    *GROUPS                                
    SYS_GRP
    LMID = SITE1
    GRPNO = 1
    APP_GRP
    LMID = SITE1
    GRPNO = 2
    *SERVERS                               
    DEFAULT:
    RESTART = Y
    MAXGEN = 5
    TMSYSEVT
    SRVGRP = SYS_GRP
    SRVID = 1
    TMFFNAME
    SRVGRP = SYS_GRP
    SRVID = 2
    CLOPT = "-A -- -N -M"
    TMFFNAME
    SRVGRP = SYS_GRP
    SRVID = 3
    CLOPT = "-A -- -N"
    TMFFNAME
    SRVGRP = SYS_GRP
    SRVID = 4
    CLOPT = "-A -- -F"
    simple_server
    SRVGRP = APP_GRP
    SRVID = 1
    RESTART = N
    ISL
    SRVGRP = SYS_GRP
    SRVID = 5
    CLOPT = "-A -- -n file://MYHOST:2500 <file://MYHOST:2500> "
    *SERVICES                              
    This file is not modyfied than one, proposed by the sample.
    Everything is perfect as long as I pass empty string to bootstrap object
    constructor. But when I try to pass file://MYHOST:2500
    <file://MYHOST:2500> to constructor and running
    simple_client -ORBid BEA_IIOP
    - I'm getting exception:
    Can't connect to the domain : IDL:beasys.com/Tobj/InvalidDomain:1.0
    Maybe I should do smth specific in order to listen to network
    connections?
    Thanks, Oleg.
    "Peter Holditch" <[email protected]> wrote in message news:[email protected]...
    Oleg,
    3 thoughts...
    Does your ubbconfig contain an ISL server listening on //MYHOST:2500?
    Did the ISL boot successfully?
    Is the dns working from the client machine? (can you ping MYHOST, or better telnet MYHOST:2500?)
    I hope that helps!
    Regards,
    Peter.
    Got a Question? Ask BEA at http://askbea.bea.com
    The views expressed in this posting are solely those of the author, and BEA
    Systems, Inc. does not endorse any of these views.
    BEA Systems, Inc. is not responsible for the accuracy or completeness of the
    information provided
    and assumes no duty to correct, expand upon, delete or update any of the
    information contained in this posting.
    Oleg Fainitsky wrote:
    Hi, all.
    I'm new to Tuxedo/CORBA and want to run sample application. I follow all the instructions and everything's fine when I'm looking for local machine:
    Tobj_Bootstrap bootstrap(v_orb.in(), "");
    but when I'm lookin for remote service
    Tobj_Bootstrap bootstrap(v_orb.in(), "/ /MYHOST:2500");
    than running
    simple_client -ORBid BEA_IIOP
    I'm getting
    Can't connect to the domain : IDL:beasys.com/Tobj/InvalidDomain:1.0
    What went wrong? How can I use corba service on remote machine?\
    Thanks, Oleg.
    [att1.html]

Maybe you are looking for

  • Can two users really share a photo library?

    The Apple website suggests that with Aperture and iPhoto two users can share a photo library on one mac. Here is the exact text at http://www.apple.com/uk/aperture/iphoto-to-aperture/ : iPhoto. Aperture. And the all-in-one library. Now iPhoto and Ape

  • Good receipt in production

    Hi experts,     when i have good receipt for the production order using t-code MB31 with movt. type 101 , when i save the record error shows "CO-doc. number assignment not possible for bus.trans. COIN in CO area FRND" . How to resolve this , thanks.

  • SNMP Configuration on solaris10

    Please can anybody put some light on SNMP configuration on Solaris 10.I am newbie on this.I read SMA Agaent on solaris 10 is NET-SNMP compliant.I need to monitor disk usage,CPU load ..So I configured snmpd.conf (inside /etc/sma/snmp) for this.The tra

  • Shutdown restarts after a few minutes and sleep shuts computer down.

    When I shutdown my computer, the shutdown process starts, computer goes into "logging off"  and continues for a few minutes before restarting automatically. When I go into "sleep mode" ,  computer appears to go into the proper mode, but a few minutes

  • Problem running Tomcat server

    Specifications : Tomcat server : 5.5 OS : windows XP Installed - configured - started service. Port set to 8443 in server.xml file as 80 and 8080 is engaged. Icon at the tool bar says the server is started. Opened browser, http://localhost:8443 Messa