XML structure from Form Based Published Document

Hi experts,
I want to read the contents of a Form Based XML Document to my Web Dynpro project. I'm using this code to do so:
    wdContext.currentContextElement().setText(wdContext.currentTableContentElement().getObjectName());
    readXML(wdContext.currentTableContentElement().getLink());
IWDClientUser wdClientUser = WDClientUser.getCurrentUser();
com.sap.security.api.IUser sapUser = wdClientUser.getSAPUser();
//create an ep5 user from the retrieved user
com.sapportals.portal.security.usermanagement.IUser ep5User = WPUMFactory.getUserFactory().getEP5User(sapUser);
IResourceContext context = new ResourceContext(ep5User);
/Specify the path of ur document here./
RID pathRID = RID.getRID(wdContext.currentTableContentElement().getLink());
IResource resource = ResourceFactory.getInstance().getResource(pathRID,context);
InputStream in;
in = resource.getContent().getInputStream();
ByteArrayOutputStream out = new ByteArrayOutputStream();
byte[] buffer = new byte[4096];
int bytesread = 0;
while ((bytesread = in.read(buffer)) != -1) {
out.write(buffer, 0, bytesread);
String myData = out.toString();
wdContext.currentContextElement().setText2(myData);
The problem now is: When I'm reading the contents of a Form Based XML Document I'm getting HTML code from the document.
When I try to do the same with an XML document that wasn't created by a XML Form, I get the contents in default XML markup.
My question is: how can I get the Form Based XML Document to my Web Dynpro Project in default XML markup?
Thanks,
Edwin van der Palen

Hi E.,
I guess this an XML namespace issue. I'm creating XmlForms-style documents and had to add an XML namespace to my root element to make them visible as such:
Namespace xf = Namespace.getNamespace("xf", "http://www.sapportals.com/wcm/app/xmlforms");
root.addNamespaceDeclaration(xf);
So what I'd suggest to you is reading out the IResource and treating the content as XML:
Document document = new  SAXBuilder().build(content.getInputStream());
Element root = document.getRootElement();
Namespace xf = Namespace.getNamespace("xf", "http://www.sapportals.com/wcm/app/xmlforms");
root.removeNamespaceDeclaration(xf);
Hope this helps!
regards,
Christian

Similar Messages

  • Importing third party XML files into form-based publishing

    Hi,
    I want to import third party XML files into form-based publishing. My problem is that when I open the files, they are presented as normal XML files.
    The 'type' property is not set to "form-based publishing". That's the reason no form is linked to the XML file.
    Is there a way to change the value of this 'type' property? Then I can set it to "form-based publishing".
    Message was edited by: E. van der Palen

    Hi,
       You should take into account two things:
    1. XML Repository filter
    System Administration-System Configuration-KM-CM-Repository Filters-choose XML Forms Repository Filter
    edit it and add your repository.
    After that you have to restart it.
    2. Resource Type.
    You should modify cm_resourcetype property to set form-based publishing.
    You could edit this xml file using form builder and then set this parameter.
    Patricio.

  • TREX Indexing issue. Form based publishing XML files.

    In order to test my TREX indexing functionality, I have created a lot of test XML files (with form based publishing) containg test words.
    What I experiments is that TREX only index the words that is presented on the 'Show' form of the xml document. The template created in the XML Forms Builder that is used to present the document. But thing is, that I only want to index the words from the XML source file, not from the 'Show' form template. Because on that i only have a static label with constant text.
    How do I set TREX to index the source XML file and not the show form template representation of the file?

    Hi Flemming,
    this works as designed. If you want index the whole XML data, you have to store your XMLForms items in a repository on which no "XMLFormsResourceFilter" is defined.
    But if you do that, all the items are rendered as XML and not as HTML. So the SearchResult only gives you links pointing to XML files.
    The only way to index more informations (from my point of view) is to store your additional information into ResourceProperties (you have to design your XMLFormsProject). These properties can be found by the search, if they are set to "indexable=yes".
    Hope this helps
    --Matthias

  • How to change  XML  Structure from one form to another form using OO ABAP.

    Hi Experts,
    In my Scenario, i need to do ABAP Mapping in order to change Incoming structure from one form to another.
    My Input to ABAP Mapping (OO ABAP Program)would be :
         <A>..........</A>
         <B>..........</B>
         <C> .........</C>
         <D>..........</D>
         <E>..........</E>
         <F>..........</F>
    OO ABAP Program need to read this input and change the XML Structure into below form:
         <A>..........</A>
         <B>..........</B>
         <C> .........</C>
          <X>
                <D>..........</D>
                <E>..........</E>
          <F>...............<F>
    Please provide inputs (sample Code) to solve this issue.
    Thanks,
    Kish.
    Edited by: Kishore Reddy Thamma on Jan 22, 2008 2:51 PM
    Edited by: Kishore Reddy Thamma on Jan 22, 2008 2:52 PM

    Hi,
    Please provide sample code or Material for converting XML Structure from one form to another using OO ABAP and
    Steps for ABAP MAPPING.
    Thanks,
    Kish.

  • XML forms / news no more visible as Form-based publishing

    I 've a very strange behavior on my portal (EP 7.0 SPS10),
    I do publish a news via XML form => the news is displaied )
    After "some time" (sorry I was not able yet to force / understand how to reporduce the error) I can not see anymore the news (and I've full permissions on the folder, this does not seems to be related to validity)
    In fact the xml of the news does still exists (when I browse the folder). His type (Settings -> Properties -> System) has desapear. The news I can see have a Type = Form-based publishing.
    Does anyone already experience this behaviour ?
    How could I reset the property type to "Form-based publishing" ?
    Thank you
    Vincent

    Hello,
    Did anyone already experienced this behaviour, this becomes critical for me.
    I lost all me news one more time : the xml files are still there, but can not be displayed as news ...
    Please help
    Vincent

  • Form-based publishing

    Hi Experts,
    We have an issue with Form-based publishing.
    The documents (News Items) are stored in the KM repository as XML documents, but are edited and viewed in the browser using HTML forms. All of sudden all the News items under KM repository are converted to xml file due to copy/paste method at file system level (Not through KM). And the layout set (NewsBrowser) which we have used to render the news items are not working, it show an empty page.
    What could be the reason and is there any procedure so that we can restore all the news items as Form-based publishing.
    Thank you in advance
    regards
    sunil

    Hi,
    first backup the XML files ;o)
    Then try this (I suppose all the resources are from the same XMLFormsBuilder project):
    1) create a template XML forms news resource in the documents repository
    2) create a destination folder for the news in the KM
    3) copy all the XML to the dest. folder
    4) now goto (you have the ContentManager role) Content Management -> Reports -> Running Reports(related links) -> Goto reports -> Content Administration -> Mass operations -> Propagation of the properties
    5) click Start -> define name, set the location to the destination directory (for example /documents/newsforms/)
    6) click Commands -> check Propagate Properties -> set Property Template Resource to the RID of the template news you have created in the documents repository (for example: /documents/10e87f94-faf4-2b10-1bbb-a1e7aa71470f.xml), Properties for propagation set to "cm_resourcetype", check Overwrite Existing Properties
    7) click "Start"
    8) check the results
    9) enjoy
    Romano

  • Form-Based Publishing / Forms Availability API

    Hi all,
    someone knows if it's possible to manage automatically the forms availability through APIs?
    Or if i can use the RenderConfig.properties instead of the Form-Based Publishing iView of EP6 SP2 pl6, and in wich way.
    thanks!!
    Gennaro

    Hi Gennaro,
    (a) The Forms Availabiliy settings are stored in the ConfigFramework. So you can use the API for setting/getting data from the Config.
    (b) The RenderConfig.properties is deprecated. It should no longer be used. Since SP2 this file is only be read while startup and the data is merged into ConfigFramework
    Kind Regards
    --Matthias

  • Rating with Form-Based Publishing

    Hi everybody,
    i'm trying to get the Portal rating service to work with XML form-based publishing. The items to be rated are news, which are in a folder on which i already activated the repository service. Then I modified the layout set, adding in the resource renderer the appropriate command group to be displayed.
    The result is that i now have a command bar below the news, which can be clicked by users to rate it.
    Now I have to make the mean rating to be displayed, but it is more difficult than i thought. Here is a picture of what i would like:
    [Image|http://www.mypicturehost.com/show.php/57948_Immagine.jpg.html]
    where the red circle is the part still missing.
    Do you have any idea on what to do? I suppose that if i want to display the data, i have to add something to the XML, and to the XLST rendering it, too. I just don't know where to get that data, and how.
    Thank you in advance.

    Hello,
    I assume your layout set is rendering one of the forms you developed on a xml form project,
    open you project and check your Data Model, under Properties > Collaboration you might find
    the property Rating.
    If you can't see this property there, go on portal
    Content Management > Metadata > Property Metadata > Properties
    and search for cm_rating, make sure the Hidden+ parameter is uncheked, if it isn't, do so,
    save, refresh your data model and it should be visible.
    You can then assign it to a Control Selector and based on its values display the stars properly,
    or just assign it to a label and display as integer, doesn't really matter, once you have the Rating value
    you can work the way it suits you better
    kind regards,
    Rafael

  • How can I get the XML structure from a flat structure?

    Hi all,
    in my XI SP 12 I use a JMS adapter to read information using the WebSphereMQ transport protocol.
    The structure that I receive have this format:
    <Name_A.KeyFieldValue><Name_A.fieldName_A1_Value>...<Name_A.fieldName_AN_Value>
    <NumberRecordType_B><NumberRecordType_c>
    <Name_B.KeyFieldValue><Name_B.fieldName_B1_Value>...<Name_B.fieldName_BN_Value>
    <Name_B.KeyFieldValue><Name_B.fieldName_B1_Value>...<Name_B.fieldName_BN_Value>
    <Name_C.KeyFieldValue><Name_C.fieldName_C1_Value>...<Name_C.fieldName_CN_Value>
    <Name_C.KeyFieldValue><Name_C.fieldName_C1_Value>...<Name_C.fieldName_CN_Value>
    the problem is that in this structure each line is not separated by a carriage return or a comma, I have all the information in a single line:
    <Name_A.KeyFieldValue><Name_A.fieldName_A1_Value>...<Name_A.fieldName_AN_Value><NumberRecordType_B><NumberRecordType_c><Name_B.KeyFieldValue><Name_B.fieldName_B1_Value>...<Name_B.fieldName_BN_Value>...<Name_B.KeyFieldValue><Name_B.fieldName_B1_Value>...<Name_B.fieldName_BN_Value><Name_C.KeyFieldValue><Name_C.fieldName_C1_Value>...<Name_C.fieldName_CN_Value>...<Name_C.KeyFieldValue><Name_C.fieldName_C1_Value>...<Name_C.fieldName_CN_Value>
    and the customer don't want to insert a line separator.
    Then, the question is:
    How can I get the XML structure from this structure?
    If possible, I don't want to develop new Module and add it in the JMS Module Sequence.
    PS I have already read the article "How to Use the Content Conversion Module with the XI 3 J2EE JMS Adapter.pdf" and it doesn't seem to help me.
    Best Regards,
    Paolo

    To get context parameters from your web.xml file you can simply get the ActionServlet object from an implementing action object class. In the perform (or execute) method make the following call.
    ServletContext context = getServlet().getServletContext();
    String tempContextVar =
    context.getInitParameter("<your context param >");

  • Difference in XML structure from design time to run time

    Hi,
    My source message type that i have constructed has the following XML structure
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
          <ns1:Employee_MT xmlns:ns1="http://accenture.com/RoutingBasedOnContextobjects">
             <Record>
                <Emp_Header>
                   <Key/>
                   <Emp_ID/>
                   <Emp_Name/>
                   <Emp_Location/>
                </Emp_Header>
                <Emp_Weekly_Details>
                   <Key/>
                   <Week_No/>
                   <Week_Hours/>
                   <Week_Wages/>
                </Emp_Weekly_Details>
                <Emp_Summary>
                   <Key/>
                   <Total_Hours/>
                   <Total_Wages/>
                </Emp_Summary>
             </Record>
          </ns1:Employee_MT>
       </ns0:Message1>
    </ns0:Messages>
    Whereas when I test the scenario using a test file based on my file content conversion that I have configured in the sender file adapter the XML for the sender message type that is constructed is as follows
    <?xml version="1.0" encoding="utf-8"?>
    <ns:Employee_MT xmlns:ns="http://accenture.com/RoutingBasedOnContextobjects">
    <Record>
         <Emp_Header>
              <Emp_ID>1000888</Emp_ID>
              <Emp_Name>Alex</Emp_Name>
              <Emp_Location>PDC</Emp_Location>
         </Emp_Header>
         <Emp_Weekly_Details>
              <Week_No>1</Week_No>
              <Week_Hours>45</Week_Hours>
              <Week_Wages>900</Week_Wages>
         </Emp_Weekly_Details>
         <Emp_Weekly_Details>
              <Week_No>3</Week_No>
              <Week_Hours>45</Week_Hours>
              <Week_Wages>900</Week_Wages>
         </Emp_Weekly_Details>
         <Emp_Summary>
              <Total_Hours>90</Total_Hours>
              <Total_Wages>1800</Total_Wages>
         </Emp_Summary>
    </Record>
    <Record>
         <Emp_Header>
              <Emp_ID>1000880</Emp_ID>
              <Emp_Name>Sam</Emp_Name>
              <Emp_Location>PDC</Emp_Location>
         </Emp_Header>
         <Emp_Weekly_Details>
              <Week_No>1</Week_No>
              <Week_Hours>45</Week_Hours>
              <Week_Wages>900</Week_Wages>
         </Emp_Weekly_Details>
         <Emp_Weekly_Details>
              <Week_No>3</Week_No>
              <Week_Hours>45</Week_Hours>
              <Week_Wages>900</Week_Wages>
         </Emp_Weekly_Details>
         <Emp_Summary>
              <Total_Hours>90</Total_Hours>
              <Total_Wages>1800</Total_Wages>
         </Emp_Summary>
    </Record>
    </ns:Employee_MT>
    The actual message mapping has the XML structure as
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
          <ns1:Employee_MT xmlns:ns1="http://accenture.com/RoutingBasedOnContextobjects">
             <Record>
            </Record>
          </ns1:Employee_MT>
       </ns0:Message1>
    </ns0:Messages>
    whereas the XML structure that is being constructed by my sender file adapter is
    <?xml version="1.0" encoding="utf-8"?>
    <ns:Employee_MT xmlns:ns="http://accenture.com/RoutingBasedOnContextobjects">
    <Record>
    </Record>
    <Record>
    </Record>
    </ns:Employee_MT>
    Could someone tell me why there is difference in the XML structure that is being generated by my file sender adapter and how can I fix this problem.
    As a result of this when i copy the source payload from SXMB_MONI and put it in the test tab of message mapping the XML is not being well formed.
    Cheers,
    S

    these tag gets added automatically when u use multimapping concepts(by changing the messge type occ)
    copy ur entire source xml (from sxmb_moni) and paste it under the Messages and Message1 tags to test under ESR (test tab):
    something like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
    <ns0:Message1>
    <ns:Employee_MT xmlns:ns="http://accenture.com/RoutingBasedOnContextobjects">
    <Record>
    <Emp_Header>
    <Emp_ID>1000888</Emp_ID>
    <Emp_Name>Alex</Emp_Name>
    </Record>
    <Record>
    </Record>
    </ns:Employee_MT>
    </ns0:Message1>
    </ns0:Messages>

  • How to get username from Form-based login

    I am using form-based login in my web.xml file.
    When I attempt to access a protected .jsp page, I get sent to my login page as expected.
    When I enter my username/password successfully it forwards me to the .jsp page I was trying to go to, as expected.
    From that .jsp page, how do I get the username/password info from the login form? I looked at the session attributes, request attributes, and request parameters, but I don't see anything. Does the form-based authentication remove these variables?
    I need the username that is filled out in the login form, so that I can do custom work with it. I cannot ask the user for it again after they login, as that is inefficient and sloppy.

    Found it.
    request.getUserPrincipal().getName()

  • XML insert from forms

    Hi Guys,
    I have an xml file that I want to insert into a table using the database stored objects in Forms6i on Windows2000 server.
    I am using Oracle 8i DB with XSU package.
    My insert script is written in PL/SQL and saved as a stored procedure in the database.
    My script is running fine if I call it from SQL Plus. However, if I call it from forms (as a stored procedure with input parameters) the script runs well for the first time and if run again, the whole application freezes and I have to suppress it with CTRL-ALT-DEL. Even if I enter another time, I can't access the stored procedure or run my script again.
    The code I am using is the following:
    declare
    charString varchar2(80);
    finalStr varchar2(4000) := null;
    rowsp integer;
    v_FileHandle UTL_FILE.FILE_TYPE;
    begin
    -- the name of the table as specified in our DTD
    xmlgen.setRowsetTag('BILC_IMP_LC_MVTS');
    -- the name of the data set as specified in our DTD
    xmlgen.setRowTag('mappings');
    -- for getting the output on the screen
    dbms_output.enable(1000000);
    -- open the XML document in read only mode
    v_FileHandle := utl_file.fopen('E:\oracle\ora81\bin','okay.xml', 'r');
    loop
    BEGIN
         utl_file.get_line(v_FileHandle, charString);
    exception
         when no_data_found then
         utl_file.fclose(v_FileHandle);
         exit;
    END;
    dbms_output.put_line(charString);
    if finalStr is not null then
         finalStr := finalStr || charString;
    else
         finalStr := charString;
    end if;
    end loop;
    -- for inserting the XML data into the table
    rowsp := xmlgen.insertXML('BILC_IMP_LC_MVTS',finalStr);
    dbms_output.put_line('INSERT DONE '||TO_CHAR(rowsp));
    xmlgen.resetOptions;
    end;

    Lets take for example you are having the response in following format
    response := '<Response>
    <r><name></name><r>
    <r><name></name><r>
    </Response>'
    Convert it to XMLTYPE using the following
    xml_type := XMLTYPE(response);
    select extractvalue(xml_type,'/Response/r[1]/name') into result from dual;
    '1' in [1] refers to the index of the similiar node.(r node)

  • Nested XML structure from Oracle

    Using the SQL Adapter i BizTalk, calling a SQL Stored procedure on a MS SQL DB, I can get a nice nested XML structure using p JOIN ii and FOR XML AUTO, like this
    <p code="DK003">
    <ii stamp="2013-01-14T10:27:38.790"value="180.702052"price="184.000000">
    <d Dividend="2.50"DividendDate="2012-03-29T00:00:00" />
    </ii>
    <ii stamp="2013-01-14T10:27:38.790"value="181.702052"price="14.000000">
    <d Dividend="2.50"DividendDate="2012-03-29T00:00:00" />
    </ii>
    </p>
    How can I get the same on Oracle ??

    Hi E.,
    I guess this an XML namespace issue. I'm creating XmlForms-style documents and had to add an XML namespace to my root element to make them visible as such:
    Namespace xf = Namespace.getNamespace("xf", "http://www.sapportals.com/wcm/app/xmlforms");
    root.addNamespaceDeclaration(xf);
    So what I'd suggest to you is reading out the IResource and treating the content as XML:
    Document document = new  SAXBuilder().build(content.getInputStream());
    Element root = document.getRootElement();
    Namespace xf = Namespace.getNamespace("xf", "http://www.sapportals.com/wcm/app/xmlforms");
    root.removeNamespaceDeclaration(xf);
    Hope this helps!
    regards,
    Christian

  • Retriving the userid from FORM based authentication

    Hi All,I am using FORM based authentication against an NDS directory. After I transfer to j_security_check with my action, how do I retreive the userid from weblogic? Just to be clear, the entire application works correctly using form based authentication, I just need to get my hands on the userid.Thanks,Ian

    Try this: weblogic.security.acl.Security.getCurrentUser.getName()
    "Ian Douglas" <[email protected]> wrote in message
    news:3b448970$[email protected]..
    Hi All,I am using FORM based authentication against an NDS directory.After I transfer to j_security_check with my action, how do I retreive the
    userid from weblogic? Just to be clear, the entire application works
    correctly using form based authentication, I just need to get my hands on
    the userid.Thanks,Ian

  • Read xml-structure from a xml-document stored in a xmltype-column?

    Hello,
    I have several xml-documents stored in a table with a xmltype-column.
    Is it possible to read the structure of one xml-document? I need to know what data are exists in the xml-documents.
    I had read some hours here, but I dont find a suitable solution for that.
    To make a example, what I need:
    I have stored the following xml-document in the table:
    <?xml version = '1.0'?>
    <ROWSET>
    <ROW num="6">
    <EMPLOYEE_ID>105</EMPLOYEE_ID>
    <FIRST_NAME>David</FIRST_NAME>
    <LAST_NAME>Austin</LAST_NAME>
    <EMAIL>DAUSTIN</EMAIL>
    <PHONE_NUMBER>590.423.4569</PHONE_NUMBER>
    <HIRE_DATE>6/25/1997 0:0:0</HIRE_DATE>
    <JOB_ID>IT_PROG</JOB_ID>
    <SALARY>4800</SALARY>
    <MANAGER_ID>103</MANAGER_ID>
    <DEPARTMENT_ID>60</DEPARTMENT_ID>
    </ROW>
    </ROWSET>
    I need to return the following:
    ROWSET
    ...ROW
    ......EMPLOYEE NUMBER
    ......FIRST_NAME VARCHAR2
    ......DEPARTMENT_ID NUMBER
    Regards,
    Mark

    Hi,
    I was on a wrong way. The datatype is not stored in xml, this was a mistake from me.
    I needed something to printout some values from a xml-file. This xml-file was generated bei MS Excel. The data are in /Workbook/Worksheet/Table/Cell and I didnt know how to access it.
    I write for that the following:
    DECLARE
    v_xml XMLType;
    v_doc dbms_xmldom.DOMDocument;
    v_node dbms_xmldom.DOMNode;
    type t_values is table of varchar2(2000) index by binary_integer;
    v_values t_values;
    type t_table is table of t_values index by binary_integer;
    v_table t_table;
    procedure node_output (v_node in out dbms_xmldom.DOMNode)
    is
    v_nodelist1 DBMS_XMLDOM.DOMNodeList;
    v_nodelist2 DBMS_XMLDOM.DOMNodeList;
    v_anzahlnodes number;
    v_anzahlrows number;
    v_node_c dbms_xmldom.DOMNode;
    v_xmlmitarbeiterid number;
    begin
    v_nodelist1 := dbms_xmldom.GETCHILDNODES(v_node);
    v_anzahlrows := DBMS_XMLDOM.GETLENGTH(v_nodelist1);
    if v_anzahlrows = 0 or DBMS_XMLDOM.GETNODENAME(v_node) = 'Table'
    then
    if v_anzahlrows > 0
    then
    for i1 in 0..v_anzahlrows - 1
    loop
    v_node := dbms_xmldom.Item(v_nodelist1,i1);
    v_nodelist2 := dbms_xmldom.GETCHILDNODES(v_node);
    v_anzahlnodes := DBMS_XMLDOM.GETLENGTH(v_nodelist2);
    for i2 in 0..v_anzahlnodes - 1
    loop
    v_node := dbms_xmldom.Item(v_nodelist2,i2);
    v_node_c := dbms_xmldom.GETFIRSTCHILD(v_node);
    v_node_c := dbms_xmldom.GETFIRSTCHILD(v_node_c);
    v_values(i2) := DBMS_XMLDOM.GETNODEVALUE(v_node_c);
    end loop;
    v_table(i1) := v_values;
    end loop;
    for i1 in 1..v_anzahlrows - 1
    loop
    select SEQ_XMLMITARBEITER.nextval into v_xmlmitarbeiterid from dual;
    for i2 in 1..v_table(i1).count - 1
    loop
    dbms_output.put_line(v_table(i1)(i2));
    end loop;
    end loop;
    end if;
    else
    v_node := dbms_xmldom.GETFIRSTCHILD(v_node);
    for i in 0..v_anzahlrows - 1
    loop
    v_node := dbms_xmldom.Item(v_nodelist1,i);
    node_output(v_node);
    end loop;
    end if;
    end;
    BEGIN
    select inhalt into v_xml FROM xmlimport WHERE name = 'F23973/mitarbeiter.xml';
    v_doc := dbms_xmldom.newDOMDocument(v_xml);
    v_node:= dbms_xmldom.makeNode(dbms_xmldom.getDocumentElement(v_doc));
    node_output(v_node);
    END;
    This gives me all data from a xml-Excel-file. Is there a better way to do that? I have Oracle 10.2.
    Regards,
    Mark

Maybe you are looking for

  • Forms6i crashes on Windows 7

    I have installed Forms6i - 6.0.8.11.3 on Windows 7 SP 1 and it works fine but at times Form Builder crashes in middle of everything. Is there any patch I need to apply for this? I looked the Patch 18 but it tries to install it in a new home/folder th

  • Limiting the number of files being picked up by the sender file adapter

    We are running a file adapter to collect xml files from a legacy system in a shared network location.  The files are picked up, information is sorted and mapped, and then sent to a proxy on our CRM system to store the data.  Very simple and not-compl

  • Can't connect to bluetooth device and wifi really por

    Hi, I bought recently a Pavilion 15-p036tx and I can't connect to my bluetooth device as logitech audio adapter, toshiba bluetooth mose and phone HTC. I noticed as well that the wifi connection is realy por only 1strip. I have a old HP Pvilion I boug

  • What's the best way to import pieces of a DVD?

    I have about 20 DVDs of my family and kids and I'm trying to put together a little diddy with a lot of various clips of them into one movie, but I'm not sure the best way to do it. I really don't want to drag each DVD into my PowerBook and work from

  • I want to make deposit field mandatory in MB21

    Hello Gurus, can you help me in making deposit field mandatory in MB21 tcode. Rgs, Jayant.