Report to Save data in XML format

Hi,
I am getting data in XML format through a RFC. I want this data to be saved as an XML file by opening a 'Save As' dialog box so that I can choose a destination and save the file there. Please provide me code for writing such a report program. It would be better if someone can provide me the area in SAP Help where I can find such material.
Thanks in advance!!
Regards,
Saurabh

Hi,
Use the class cl_gui_frontend_services.
For more info please see this.
save_dialog func module
Cheers
Vinod

Similar Messages

  • How to write the oracle data as XML format. (.XML file)

    create or replace procedure pro(p_number )
    is
    cursor c1 is select *from emp where empno=p_number;
    v_file utl_file.file_type;
    begin
    v_file := utl_file.fopen('dirc','filename.txt','w');
    for i in c1 loop
    utl_file.put_line(v_file,i.ename || i.empno ||i.job);
    end loop;
    closef(v_file);
    end;
    Now my client want instead of .txt file he need .xml files
    File should contains xml tags. can any one help regarding this.. with one example.
    How to write the oracle data as XML format. (.XML file)

    hi,
    hope this example will do something....
    SQL> select employee_id, first_name, last_name, phone_number
    2 from employees where rownum < 6
    EMPLOYEE_ID FIRST_NAME LAST_NAME PHONE_NUMBER
    100 Steven King 515.123.4567
    101 Neena Kochhar 515.123.4568
    102 Lex De Haan 515.123.4569
    103 Alexander Hunold 590.423.4567
    104 Bruce Ernst 590.423.4568
    SQL> select dbms_xmlgen.getxml('select employee_id, first_name,
    2 last_name, phone_number from employees where rownum < 6') xml
    3 from dual;
    *<?xml version="1.0"?>*
    *<ROWSET>*
    *<ROW>*
    *<EMPLOYEE_ID>100</EMPLOYEE_ID>*
    *<FIRST_NAME>Steven</FIRST_NAME>*
    *<LAST_NAME>King</LAST_NAME>*
    *<PHONE_NUMBER>515.123.4567</PHONE_NUMBER>*
    *</ROW>*
    *<ROW>*
    *<EMPLOYEE_ID>101</EMPLOYEE_ID>*
    *<FIRST_NAME>Neena</FIRST_NAME>*
    *<LAST_NAME>Kochhar</LAST_NAME>*
    *<PHONE_NUMBER>515.123.4568</PHONE_NUMBER>*
    *</ROW>*
    *<ROW>*
    *<EMPLOYEE_ID>102</EMPLOYEE_ID>*
    *<FIRST_NAME>Lex</FIRST_NAME>*
    *<LAST_NAME>De Haan</LAST_NAME>*
    *<PHONE_NUMBER>515.123.4569</PHONE_NUMBER>*
    *</ROW>*
    *<ROW>*
    *<EMPLOYEE_ID>103</EMPLOYEE_ID>*
    *<FIRST_NAME>Alexander</FIRST_NAME>*
    *<LAST_NAME>Hunold</LAST_NAME>*
    *<PHONE_NUMBER>590.423.4567</PHONE_NUMBER>*
    *</ROW>*
    *<ROW>*
    *<EMPLOYEE_ID>104</EMPLOYEE_ID>*
    *<FIRST_NAME>Bruce</FIRST_NAME>*
    *<LAST_NAME>Ernst</LAST_NAME>*
    *<PHONE_NUMBER>590.423.4568</PHONE_NUMBER>*
    *</ROW>*
    *</ROWSET>*
    ask if you want more assistance.
    thanks.

  • How to view BIW  data in XML format

    hi guys ...
                 just wondering if it is possible to view BIW data in XML format ,if yes how .
                        I am looking to pass this  XML formatted data in to another server.
    venkat

    Hi venkatesh
    Look at this link
    http://help.sap.com/saphelp_nw04/helpdata/en/33/f3843b0af3de0ee10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/33/f3843b0af3de0ee10000000a114084/content.htm
    will give u idea
    regards
    NR

  • How to download the report data in xml format

    Hi All,
    how to download the report data (sql/interactive) in xml format...
    Thanks,
    Vinoth

    You will want to do something like this:
    http://spendolini.blogspot.com/2006/04/custom-export-to-csv.html
    except customize it for xml.
    hth,
    John

  • Uploading data from xml format

    Hi Experts,
                       i am working under ' ZTOOLREV ' transaction which is plant maintainence. i maintain one rfc in se37.
    import parameters are  mandatory fields entering in this application ,   export parameters are for the errors -
        it is of error structutre name.
    further i am creating one web service using transaction ' WSCONFIG  ' .  so it will be coverted in xml data.
    now my client will enter data in xml it has to come to sap and store in sap. and show if any errors.
    my requirement is the data is coming from xml format. i have to upload data from xml.
    what is the function module should be used to upload the data anad also what function module should used to handle errors?
    here in this case i am using gui_download. but i want to put in export parameters.
    which i maintained previously.
    please guide me experts.
    i can get a solution for this query because there are so many experts are there in sdn.sap.

    Hi Chaitanya,
    You may use the following program to upload your xml data into internal table
    REPORT z_read_xml_file.
    PARAMETERS: p_filnam TYPE localfile OBLIGATORY
    DEFAULT 'C:\Documents and Settings\ssaha\Desktop\test.xml'.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_filnam.
    DATA: l_v_fieldname TYPE dynfnam.
    l_v_fieldname = p_filnam.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    program_name = syst-cprog
    dynpro_number = syst-dynnr
    field_name = l_v_fieldname
    IMPORTING
    file_name = p_filnam.
    START-OF-SELECTION.
    TYPES:
    BEGIN OF ty_tab,
    name TYPE string,
    value TYPE string,
    END OF ty_tab.
    DATA:
    lcl_xml_doc TYPE REF TO cl_xml_document,
    v_subrc TYPE sysubrc,
    v_node TYPE REF TO if_ixml_node,
    v_child_node TYPE REF TO if_ixml_node,
    v_root TYPE REF TO if_ixml_node,
    v_iterator TYPE REF TO if_ixml_node_iterator,
    v_nodemap TYPE REF TO if_ixml_named_node_map,
    v_count TYPE i,
    v_index TYPE i,
    v_attr TYPE REF TO if_ixml_node,
    v_name TYPE string,
    v_prefix TYPE string,
    v_value TYPE string,
    v_char TYPE char2.
    DATA:
    itab TYPE STANDARD TABLE OF ty_tab,
    wa TYPE ty_tab.
    CREATE OBJECT lcl_xml_doc.
    CALL METHOD lcl_xml_doc->import_from_file
    EXPORTING
    filename = p_filnam
    RECEIVING
    retcode = v_subrc.
    CHECK v_subrc = 0.
    v_node = lcl_xml_doc->m_document.
    CHECK NOT v_node IS INITIAL.
    v_iterator = v_node->create_iterator( ).
    v_node = v_iterator->get_next( ).
    WHILE NOT v_node IS INITIAL.
    CASE v_node->get_type( ).
    WHEN if_ixml_node=>co_node_element.
    v_name = v_node->get_name( ).
    v_nodemap = v_node->get_attributes( ).
    IF NOT v_nodemap IS INITIAL
    attributes
    v_count = v_nodemap->get_length( ).
    DO v_count TIMES.
    v_index = sy-index - 1.
    v_attr = v_nodemap->get_item( v_index ).
    v_name = v_attr->get_name( ).
    v_prefix = v_attr->get_namespace_prefix( ).
    v_value = v_attr->get_value( ).
    ENDDO.
    ENDIF.
    WHEN if_ixml_node=>co_node_text OR
    if_ixml_node=>co_node_cdata_section.
    text node
    v_value = v_node->get_value( ).
    MOVE v_value TO v_char.
    IF v_char <> cl_abap_char_utilities=>cr_lf.
    wa-name = v_name.
    wa-value = v_value.
    APPEND wa TO itab.
    CLEAR wa.
    ENDIF.
    ENDCASE.
    advance to next node
    v_node = v_iterator->get_next( ).
    ENDWHILE.
    LOOP AT itab INTO wa.
    ENDLOOP.

  • How to map data in xml format to BAPIs tructures?

    A webservice call to an external system from XI, is returning data to XI in xml format.
    This needs to be formatted to map to the structure of BAPI from SAP.
    I searched and found several threads pointing to do transformations.
    But I am not sure where to start. So this thread is being posted.
    Please help.
    Thanks,
    Ven

    The thing is my data is being retrieved from webservice call a bit different.
    here is the sample data that I need to map to two structures of BAPI - Housinginfo, Houseresponsersults.
      <?xml version="1.0" encoding="utf-8" ?>
    - <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    - <soap:Body>
    - <GetResidentsResponse xmlns="http://empur.org/XLSWebSvc/XLS_Interface">
    - <GetResidentsResult>
    - <Residents xmlns="">
    - <Resident LastName="Xyz" FirstName="Abced" MiddleInitial="T" STX="1234567" Houseid="45622" SubDivName="xyz homes">
    - <Houses HousesName="villa ben" HousesId="1550" HousesStatus="P" HousesStatusDate="09/22/2009 15:26:54" HousesScore="90">
      <Street StreetCode="2538" StreetName="Victoria" StreetStatus="c" StreetStatusDate="09/22/2009 12:25:38" />
    - <Street StreetCode="2539" StreetName="Vicotria Ln" StreetStatus="p" StreetStatusDate="09/22/2009 15:26:54" StreetScore="90" ProctorID="3572" OwnerName="DONNA Perl">
      <HomeInteractions HomeNum="25873" ResidentResp="C" LayoutLawn="C" Judged="c" />
      <HomeInteractions HomeNum="25884" ResidentResp="B" LayoutLawn="B" Judged="c" />
      <HomeInteractions HomeNum="25896" ResidentResp="B" LayoutLawn="B" Judged="c" />
      <HomeInteractions HomeNum="25918" ResidentResp="D" LayoutLawn="D" Judged="c" />
      <HomeInteractions HomeNum="25919" ResidentResp="D" LayoutLawn="D" Judged="c" />
      <HomeInteractions HomeNum="25924" ResidentResp="A" LayoutLawn="A" Judged="c" />
      <HomeInteractions HomeNum="25948" ResidentResp="t" LayoutLawn="t" Judged="c" />
      <HomeInteractions HomeNum="25952" ResidentResp="C" LayoutLawn="A" Judged="w" />
      <HomeInteractions HomeNum="25953" ResidentResp="C" LayoutLawn="C" Judged="c" />
      <HomeInteractions HomeNum="25954" ResidentResp="D" LayoutLawn="D" Judged="c" />
      </Street>
      </Houses>
      </Resident>
      </Residents>
      </GetResidentsResult>
      </GetResidentsResponse>
      </soap:Body>
      </soap:Envelope>

  • Data in XML format (XML files) to BW?

    Hi,
    My customer is interested in loading data to BW (from 3rd party system) in XML format. Are there any advantages of doing this (compared to traditional ascii files)? How about disadvantages (BW version is 3.5) ?. How to get started with this one, I noticed there is a possibility to create a XML data source. Is this able to take XML files into BW or what?.
    Any help highly appreciated!

    Hi Jimmy,
       Have a look:
    http://help.sap.com/saphelp_nw04/helpdata/en/9b/821140d72dc442e10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/55/014e3c97f6bb3ee10000000a114084/content.htm
    Hope it Helps
    Srini

  • Report is not displayed in xml format.

    Hi,
    We have a test station based in teststand 4.1 and labview 8.6 code modules.
    From one day to another, the xml report is blank, no character is displayed. That in Operator interface or sequence file execution in teststand editor.If the report format is changed to ASCII or HTML, then runs OK.
    The first step taken was to reload the directories "Cfg\*.ini" and "teststandmodels\Stylesheets\*.xls" from another test station that runs ok. Not solved.
    The second option was to uninstall and reinstall teststand. Also not solved the problem. Then I suposse that this problem is caused for a file or parameter that is not dependent of Teststand, but I don't really know.
    Any suggestions would be appreciated.
    Regards,
    Bergidum.

    Thanks for your help Sendia,
    Yes, I have already tried Computer mother test and all type of reporting options. Only ASCII and and HTML report formats generate visible results.
    Also on-the-fly-reporting is my option by default.
    Before format and reinstall the operating system (windows XP) and reinstall the NI package, I would like to know the origin of the malfunction because there are other five test stations working properly, but if the same problem appears in a new station, then to know the solution.
    Thanks for your attention,
    Bierzo.

  • How to download data in xml format from a jsp in IE

    In my program, I am trying to download xml data from jsp. The problem I am facing is that the downloaded page opens in the browser itself. I want it to open in a new page. The same code works fine with csv and pdf format.

    Hello
    I am using a link that calls a javascript function. To show the file download box, I have used setContentType and setHeader functions in the jsp. Thanks.

  • Group SQL data in XML Format

    Hi All,
    I have t-sql result set (Shown in image). I want to convert it into xml data format (like the code under Edit this code section).
    There can be any number of clients and any number of projects. Can some one please help me out on this.

    declare @t table
    client varchar(100),
    project varchar(100),
    amt varchar(100)
    insert @t
    values('client1','project1',100),
    ('client1','project2',200),
    ('client2','project1',150),
    ('client2','project2',250),
    ('client3','project1',300),
    ('client3','project2',400)
    SELECT client as [li],
    (SELECT
    project AS [li],
    amt AS [li/u1/li]
    FROM @t
    WHERE client = t.client
    FOR XML PATH('ul'),TYPE)as [li/*]
    FROM
    SELECT DISTINCT client
    FROM @t)t
    FOR XML PATH('ul')
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How to save data in html format while user click a save button in jsp page

    Hi All,
    I have the following requirement
    If user click on the Save Button it should display a window which allows the user to select the directory and the data is stored in the Internet Explorer Format.
    Could please anybody suggest me how to impletment the above requirment in jsp page.
    It's very urgent. Please replay ASAP.
    Thanks
    Rajeshwari

    Analyzing ur ques ...
    If user click on the Save Button it should display a window which allows the user to select the directory and the data is stored in the Internet Explorer Format.hmmm..
    There is no html object type which supports directory selection for download. There is only an input type="file" which however is related to an upload scenario.
    By downloading the file using output stream u can achieve what you want.
    You simply need to do the following things ..
    a) Write to an output stream
    b) Set the content type to "text/html" for your response
    Example ....
    response.setContentType("text/html");
    response.setHeader("Content-disposition",
    "attachment; filename" +
    "Example.html" );
    javax.servlet.ServletOutputStream stream = res.getOutputStream();
    StringBuffer text = new StringBuffer(1024);
    text.append("some text . . . ");
    text.append("more text . . . ");
    stream.write(data);
    stream.close();

  • Storing data from Java Pogram(data in xml format) to SAP R/3

    Hi,
    I am having a java program which results me an xml.
    I want to dump the data to SAP R/3.
    What are the different ways/techniques should i use,to achieve the result?
    Thanks for your reply,
    regards,
    cg

    Hi,
    In simle terms can you explain me in more detail.
    lest say my java application produces xml as:
    <xml>
    <fname>myfirstname</fname>
    <lname>mylastname</lname>
    thanks for your reply,
    reg
    cg

  • Data Export in XML format

    Dear SAP Gurus;
    I had developed a <b><u>HR Data Extract Report</u></b> to export data in CSV format, but one of our vender application needs data in XML format - any assistance in writing code will be highly <b>appreciated</b> and reward points are <b><i>assured</i></b>.
    Best Regards,
    Aslam Riaz

    Hi We are also in version 4.7.
    Use the code below as refefence.  It works.  Please close the issue with appropriate points if helps.  Good luck.
    Selection Screen
    SELECTION-SCREEN BEGIN OF BLOCK selscr WITH FRAME TITLE text-s01.
    PARAMETER:p_file TYPE rlgrap-filename MODIF ID fil." Output File Name
    SELECTION-SCREEN END OF BLOCK selscr.
    Data Declaratiion
    TYPES: BEGIN OF address,
            street(20) TYPE c,
            apt(10)    TYPE c,
            city(20)   TYPE c,
            state(2)   TYPE c,
            zip(10)    TYPE c,
           END OF address.
    TYPES: BEGIN OF person,
            name(20) TYPE c,
            ssn(11) TYPE c,
            dob(12) TYPE c,
            address TYPE address,
           END OF person.
    DATA: BEGIN OF employee OCCURS 0,
           person TYPE person,
          END OF employee.
    Data for xml conversion
    DATA: l_dom TYPE REF TO if_ixml_element,
                  m_document TYPE REF TO if_ixml_document,
                  g_ixml TYPE REF TO if_ixml,
                  w_string TYPE xstring,
                  w_size TYPE i,
                  w_result TYPE i,
                  w_line TYPE string,
                  it_xml TYPE dcxmllines,
                  s_xml LIKE LINE OF it_xml,
                  w_rc LIKE sy-subrc.
    DATA: xml TYPE dcxmllines.
    DATA: rc TYPE sy-subrc,
    BEGIN OF xml_tab OCCURS 0,
                  d LIKE LINE OF xml,
    END OF xml_tab.
    Initialization
    INITIALIZATION.
    At Selection-Screen On Value Request
    AT SELECTION-SCREEN.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    Validating file
      PERFORM get_local_file_name USING p_file.
    Start-of-selection
    START-OF-SELECTION.
    Populate the internal table
      PERFORM populate_data.
    Create xml file
      PERFORM create_xml.
    END-OF-SELECTION.
    Down load the xml file
      PERFORM download_xml.
    *&      Form  populate_data
          text
    -->  p1        text
    <--  p2        text
    FORM populate_data .
      REFRESH employee.
      CLEAR employee.
      MOVE:   'Venu Test One'        TO employee-person-name,
              '111-11-1111'          TO employee-person-ssn,
              '01/01/1900'           TO employee-person-dob,
              '1111 Sanzo road'      TO employee-person-address-street,
              '111 A1'               TO employee-person-address-apt,
              'BALTIMORE'            TO employee-person-address-city,
              'MD'                   TO employee-person-address-state,
              '21209'                TO employee-person-address-zip.
      APPEND employee.
      CLEAR  employee.
      MOVE:   'John Smith'           TO employee-person-name,
              '222-22-2222'          TO employee-person-ssn,
              '02/02/1888'           TO employee-person-dob,
              '2222 John Smith road' TO employee-person-address-street,
              '222 B2'               TO employee-person-address-apt,
              'SANFRANSISCO'         TO employee-person-address-city,
              'CA'                   TO employee-person-address-state,
              '99999'                TO employee-person-address-zip.
      APPEND employee.
    ENDFORM.                    " populate_data
    *&      Form  create_xml
          text
    -->  p1        text
    <--  p2        text
    FORM create_xml .
      CLASS cl_ixml DEFINITION LOAD.
      g_ixml = cl_ixml=>create( ).
      CHECK NOT g_ixml IS INITIAL.
      m_document = g_ixml->create_document( ).
      CHECK NOT m_document IS INITIAL.
      WRITE: / 'Converting DATA TO DOM 1:'.
      CALL FUNCTION 'SDIXML_DATA_TO_DOM'
        EXPORTING
          name         = 'EMPLOYEE'
          dataobject   = employee[]
        IMPORTING
          data_as_dom  = l_dom
        CHANGING
          document     = m_document
        EXCEPTIONS
          illegal_name = 1
          OTHERS       = 2.
      IF sy-subrc = 0.
        WRITE 'Ok'.
      ELSE.
        WRITE: 'Err =',
        sy-subrc.
      ENDIF.
      CHECK NOT l_dom IS INITIAL.
      w_rc = m_document->append_child( new_child = l_dom ).
      IF w_rc IS INITIAL.
        WRITE 'Ok'.
      ELSE.
        WRITE: 'Err =',
        w_rc.
      ENDIF.
      CALL FUNCTION 'SDIXML_DOM_TO_XML'
        EXPORTING
          document      = m_document
        IMPORTING
          xml_as_string = w_string
          size          = w_size
        TABLES
          xml_as_table  = it_xml
        EXCEPTIONS
          no_document   = 1
          OTHERS        = 2.
      IF sy-subrc = 0.
        WRITE 'Ok'.
      ELSE.
        WRITE: 'Err =',
        sy-subrc.
      ENDIF.
      LOOP AT it_xml INTO xml_tab-d.
        APPEND xml_tab.
      ENDLOOP.
    ENDFORM.                    " create_xml
    *&      Form  get_local_file_name
          text
         -->P_P_FILE  text
    FORM get_local_file_name  USING    p_p_file.
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
        CHANGING
          file_name     = p_p_file
        EXCEPTIONS
          mask_too_long = 1
          OTHERS        = 2.
      IF sy-subrc <> 0.
        MESSAGE i007(zu).  " 'Error in getting filename'.
      ENDIF.
    ENDFORM.                    " get_local_file_name
    *&      Form  download_xml
          text
    -->  p1        text
    <--  p2        text
    FORM download_xml .
      CALL FUNCTION 'WS_DOWNLOAD'
        EXPORTING
          bin_filesize = w_size
          filename     = p_file
          filetype     = 'BIN'
        TABLES
          data_tab     = xml_tab
        EXCEPTIONS
          OTHERS       = 10.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
       SKIP 5.
       WRITE:(15) 'The ', p_file , 'is created successfully'.
      ENDIF.
    ENDFORM.                    " download_xml

  • Legacy data(mapping to be done by xi (in xml format)) to sap using idoc .

    hi all,
    I need to work in an object in which requirement is like , the source data is directly extracted from legacy and input file is made. now i need to create an interface program which will be used to create purchase req. in weekly basis.  now according to functional specification xi team will  map the source data in xml format and then  through idoc data is to be pushed into sap. i am confused about the step by step senario from source data to final pr creation . please clarify if somebody had worked on this kind of situation.

    Hi i encounter like this but in SD side,
    from legacy ->XI -> SAP (create SO)
    then from created SO via IDOC my requirement is to post delivery then billing.
    I think in your case the PR is already created and to be process to PO.. better check and fully understand the flow with your team.

  • Problem with Save data with report

    Post Author: ramprosoft
    CA Forum: General
    Hi,
    I am new to CR and using Crystal Reports XI with SQL Server 2000.
    I'm not able to remove the saved data in a report. I have played around different options, but unfortunately I'm not able to remove the data. I have checked variouse places in web above this issue not able to find a solution, so decided to open a new post. The problem is :
    I have created a simple report and saved with-out data (1st version) the file size was 16KB. After few changes I have saved the same report with Data, the file size become 1065 KB. Its perfect and I can view the report in Report Viewer. Great Stuff!. Now the Testing completed, I would like to move this report to production environment, I notice that I'm unable to remove the data. I have played around various tricks like below, but it didnt work well.
    Trick 1:
    Uncheck: File->Options->Reporting (tab)->Save Data With Report.
    Check: File -> Options -> Reporting (tab)->Discard Saved data on Open,
    Uncheck: file-> Report Options -> Save Data With Report.
    File -> Save Data with Report (Not selected)
    Opened the report and try "save" and also tried "save as", still the size is 1065.
    Trick 2:
    I enabled all "Save Data with report" feature. Deleted all the rows in the table related to the query, previewed the report and Saved the report with "Save Data with report" featuer. But now, the funny part happen, the file size increased to 1070kb, instead of reducing. Worst Stuff!!!
    Trick 3:
    Updated the latest version of Patch and tried above tricks, still i'm not able to remove the data.
    Appreciate, if you could help me to fix the problem.
    thanks in advance

    Post Author: salmanq
    CA Forum: General
    Hi, This
    post is very informative, however I would like some specific information. If
    someone can help me then please send me a private message. Best Regards,
    Wholesale Pages UK Dropshippers
    | Wholesale Suppliers
    Australia Wholesalers and
    Dropshippers | Dubai Property and Real Estate

Maybe you are looking for

  • Unable to activate Hyper-V on Windows 8.1 pro x64

    Hi there, I tried to activate Hyper-V on my desktop : 1. Add/Remove Features 2. Add Hyper-V, and all subsets 3. Click OK. 4. Click Restart when prompted. 5. Computer will reboot and then work on configuring features.  I got the error message "Unable

  • Acrobat doesn't obtain online license in one Win 7 Profile, but will in another.

    Acrobat 8 Professional loaded fine, but would not download a license..The screen to do so appears, but even though the Accept button flashes when 'clicked on', nothing happens.  The widow must be X'ed out. Making a new profile ( a new user on the sam

  • BILLING DATE GETTING COPIED FROM PGI...

    Hi Team, I have got an incident,user is stating that she recently found that the billing date is getting copied from the PGI dat and that was not configured earlier...so i jus want to show her that it is working as per conigured...so can you please s

  • Production order - post date - cannot change

    Hi, could anybody, especially from SAP, explain me the background and reason, why user cannot change the PostDate field in OWOR table of production order after the order is created? And seccond related question is, why item gen. entry and exit are wi

  • Possible to use Machine (not User? Account?

    Hi there - We have an Xsan based video production facility with three workstations. We would like to have users log on to a machine and have iChat launch into an account specific to that machine. Because we use Open Directory and host our users home