How can i convert  my invoice which is in smart forms to xml file

how can i convert  my invoice which is in smart forms to xml file.

Hi Anil,
Please go through this link:
1. XSF stands for XML for Smart Forms. It is important to contrast XSF with .... The eDocx script engine can provide a script to convert the file format to an 
http://www.ossincorp.com/Black_Box/Black_Box_4.htm
please rewrds if found helpful.
Regards,
Alok

Similar Messages

  • How can I fill structure from the line with contetnt of a XML file inside?

    How can I fill structure from the line with contetnt of a XML file inside?
    I have array of lines with XML documents inside. All XML's have the same structure.
    I need to fill array of structures (with the same structure like given XML's) from data of these XML's.
    How can I do this? I am trying Transformation with ora:parseEscapedXML, but receive error: "XPath expression failed to execute.
    Error while processing xpath expression, the expression is "ora:processXSLT("Transformation_1.xsl", bpws:getVariableData("ProcessedFiles"))", the reason is javax.xml.transform.TransformerException: javax.xml.transform.TransformerException: Could not find function: parseEscapedXML.
    Please verify the xpath query."

    Ive posted the new code but now I'm getting a FileAlreadyExistException error. How do I handle this exception error correctly in my code?
    import java.io.IOException;
    import java.nio.file.FileAlreadyExistsException;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.xml.sax.SAXException;
    public class MyDomParser {
      public static void main(String[] args) {
      DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
      try {
      DocumentBuilder builder = factory.newDocumentBuilder();
      Document doc = builder.parse("ENtemplate.xml");
      doc.normalize();
      NodeList rootNodes = doc.getElementsByTagName("templates");
      Node rootNode = rootNodes.item(0);
      Element rootElement = (Element) rootNode;
      NodeList templateList = rootElement.getElementsByTagName("template");
      for(int i=0; i < templateList.getLength(); i++) {
      Node theTemplate = templateList.item(i);
      Element templateElement = (Element) theTemplate;
      System.out.println(templateElement.getAttribute("name")+ ".xml");
      for(int i=0; i < templateList.getLength(); i++) {
      Node theTemplate = templateList.item(i);
      Element templateElement = (Element) theTemplate;
      String fileName = templateElement.getAttribute("name") + ".xml";
      Files.createFile(Paths.get(fileName));
      System.out.println("File" + ":" + fileName + ".xml created");
      } catch (ParserConfigurationException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      } catch (SAXException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      } catch (IOException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();

  • How can I convert Float numbers which are represented as 'E-05' to full precision

    I have over 6,000 records which all have 'E-05' in the field.
    It should actually be full precision, such as:  0.000046793055472781
    How can I convert all of these?  There are around 600,000 records in the whole table, so I only want to convert the 'E-05' records.  For some reason these are incorrect, but all the others are totally fine.
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

    If they are float values, they have the full precision you can get with a float value.
    Keep in mind that what you see in management studio is a textual representation of the value. It is not the value itself. A float value is stored as 53 bits of mantissa and an 11-bit exponent which is a power of 2.
    To view the value without the exponent, you can cast to decimal, although this will give you a slightly different value. You can also use the str function:
    DECLARE @f float
    SELECT @f = 0.000046793055472781
    SELECT str(@f, 20, 18)
    However, formatting of the value is best done in the presentation layer. You should not change the data you have in the table. But if the source is actually exact decimal values, maybe you should use a decimal data type instead.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • How can i distill the invoice which has not verified?

    hello evryone:
       my problem is I want to distill the invoice which has not 
       verified through the tcode MIRO.
       thanks in advance!

    Hello,
    Have you tried breaking your structure into 255 chunks? I don't know what the structure you are moving from looks like, but you should be able break it back up into the SOLI structure. The end of a line in SOLI doesn't create a Carriage Return/Line Break. You have to insert these yourself like in the following:
    * Create document
          clear mail_line.
          move 'This is a test E-Mail'(d01) to mail_line.
          concatenate mail_line
                      cl_abap_char_utilities=>newline
                      into mail_line.
          append mail_line to l_mailtext.
    What kind of attachment are you wanting to create - a text tab delimited file for reading in a spreadsheet application such as excel? You might try reassembling your data table into a single string with newlines where you need them. Then use function module SCMS_STRING_TO_FTEXT to turn it back into SOLI. This is what I have done in the past. I'm afraid without knowing more about your source structure and attachment type, this is about all I can tell you.
    Vasanth

  • How can I convert Bigint value which produced with Timespan?

    Below from MS SQL, tResultTime's datatype is Bigint
    Below from my C# project's UI and I need to get a result like "Elapsed Time".  How can I get that?

    CREATE TABLE Timing (
    StartTime DATETIME
    ,EndTime DATETIME
    ,ResultTime BIGINT
    ,ElapsedTime VARCHAR(20)
    insert into Timing (StartTIme, endtime) values
    ('2014-11-20 14:35:42','2014-11-28 14:36:15')
    DECLARE @MyNullTime TIME
    SET @MyNullTime = '00:00:00'
    SELECT StartTime,EndTime
    ,DATEDIFF(MILLISECOND, starttime, EndTime) AS 'tResultTime (MS)'
    ,cast(DATEDIFF(HOUR, starttime, EndTime) / 24 AS VARCHAR(5)) + 'day(s) '
    + cast(DATEADD(SECOND, - DATEDIFF(SECOND, EndTime, StartTime), @MyNullTime) AS VARCHAR(8)) AS 'Elapsed Time'
    FROM timing
    -Vaibhav Chaudhari

  • How to populate the values in the drop down list form the xml file ?

    I want to populate the drop down list values from a seperate xml file called ReferenceData. I created this file, which consists of a mapping entry in the form of ( key,value ) pair. Am mapping this xml file in to form by using rule named as getAppReferenceData.
    But the values are not getting populated in the form. And I have a doubt of, where should we keep that xml file? (under which path / folder ).

    what would help is if you showed what you do in the rule, either the code or a express trace of the rule.
    The other thing you need to know is where you want to get the file from. Yes java can read a file from anywhere on the system but there is a security layer in there which might prevent the file being opened. Have you allowed acces to the file via the security policy settings via java.io.FilePermission?
    WilfredS

  • HT201359 OK. But what about VAT billings? What about including these purchases as my Company expenses? How can I get legal invoices which I might be able to declare?

    Hello,
    I'm from Spain, Europe. I need to be able to declare the purchases my company does on iTunes and the App Store.
    In order to be able to do so, I need Apple to include the name of my company and its VAT Number on the billing data Apple has from me. Unfortunately, Apple's billing data form does not offer the possibility to write neither the Company's name nor the VAT number.
    From an European fiscal approach, any company that ommits the obligation of delivering invoices with VAT disclosure is actually committing a fiscal fraud.
    Shall I put a demand on Apple or shall anyone at Apple explain me why isn't a way to include my VAT number on my Apple Account so that invoices include may  company's name and VAT number?
    Thank you very much,

    HI,
    I forgot to follow up with the above. Thank you Hackintosh, your advice worked perfectly: I filled up a request, and Apple support team replied the following day. I received emails with the proper VAT invoices.
    Here is what I wrote, if it be useful for others:
    Hello Apple,
    I write to you regarding VAT charged and invoice for the electronic downloads from the Mac App Store. As you may know, there is no alternative way for a business to buy a software upgrade for Mac OS X for example. As I use my Mac Book Pro in my office for my business, I need VAT invoicing, as requested by EU and Irish laws.
    I searched from the Apple Community discussions here
    https://discussions.apple.com/thread/4715504
    and here
    https://discussions.apple.com/thread/2714929
    Please note that any purchase I made from the Apple Store with physical delivery has been invoiced properly with VAT.
    Please could you send me the VAT invoices for my 201x purchases below:
    - Order Number: MTyourNumber, Receipt Date: xx/x/xx, Receipt No. 987654321, Order Total: 23,99 €
    - Order ID: MTyourNumber, Receipt Date:  xx/x/xx, Receipt No. 987654321, Order Total: 27,99 €
    My VAT number is IE XYZXYZ.
    Kind regards,
    Always easier when one is polite and gentle

  • How can I convert a flash object on a webpage to a fla file?

    I made a flash effect for my friend's site and he won't let me get the flash back after a fight. I can see the effect on the homepage of his website. Is there any way I can get the flash to an fla file on my computer? Is there any way I can find the swf file on his websites system and convert it to an fla? Please help, thanks.

    Open the web page where this swf is placed then go for the source code by right clicking on page anywhere. Then find the name of the swf file like if the name is myFlash.swf then search it but if you do not know the name then just search .swf you will get the file path on your friend's web. like it would be yourFriendWeb.com/flash/flashFile.swf or what ever is the name. Then copy the link and paste on your web browser and when the swf is opened then save it by going to File menu.
    Now you have the swf file on your PC. Now the task is to convert it to fla. This thing can be done by a flash decompiler like Flash Decompiler Trillix. Decompiling will end up with your orignal fla file.

  • How can i convert the HTML information in XML form to a PDF?

    Hi does any body know how can i convert the content of an HTML field in a XML Form in a regular text to include in a PDF in a Java program?

    Hi ,
    On the tool bar you have an option "Browser" which is next to "HTML Editor" .
    You know that for using these elements wo have to map them with Data Schema.
    Step by step
    1. In data Model Under Data Schema Add a child and name it Read_More.
    2. In the left hand corner ,click on tab Type and from the drop down select "rid"
    3.Click on the "Browser" from the toolbar (as told earlier) and drag and drop it on the form.
    4. Drag the Data schema which u have made(Read_more) and drop it on the browser on form. On right hand side u will se the mapping done.
    5.Click on the "Browser" which is there in the form and on the right hand side of the form u will see the property window.
    6.In property window change the value of action property to "Item Entry point"
    7. Repeat step 3 and 4 in Render and show form but using "label" nad not browser.
    Do not forget to add Save button in Edit Form.
    This will solve your problem.
    PS:Rewards Point Please.
    Regards,
    Naveen Gupta

  • How can I convert a .dav in to quicktime?

    Hi!
    I have some footage from a cctv and I must to conver in to a quicktime.
    Anybody knows how can I convert?
    Thanks!

    http://smallbusiness.chron.com/open-dav-file-27899.html

  • How can I convert (or switch) the RGB percent values from the LR histogram into RGB values which are shown e. g. in PS/CameraRAW?

    In LR 5.5 (same in previous versions) the RGB values in the histogram are shown in percent (relativ) values. I prefere to see the absolute values, but I can`t find any way to switch. Maybe this option is intentional disabled, because LR works in 16-Bit mode this would result in values up to 2^16. But as i compared the relativ values from LR with the absolute values from PS i run into a conversion problem. The following example shows the differences:
    CameraRAW : RGB, 128,0,0
    Lightroom: RGB, 43,8%, 19,0%, 6,2%
    CameraRAW: RGB, 0,128,0
    Lightroom: RGB, 29,8%, 47,5%, 17,5%
    Mainly i have two questions:
    1. Is there any possibility to change the percent RGB values in LR to absolut values?
    2. How can i convert CameraRAW values to LR values (see above)?

    TThe reason that a design decision was made from the beginning of LR to show only the percentage values was that RGB values are dependent on the color space and the LR histogram and numerical readout are derived from the Develop module's display space which is a hybrid color space with ProPhoto RGB primaries and the sRGB TRC. Thus the numerical values in the display would be different from the exported RGB image (in an orthodox space) and it was feared that this would be misleading. When soft proofing was introduced, because it involved converting the display to an orthodox space, it became possible to use the 0-255 scale in that mode.

  • How can I convert a .pdf file to an Indesign CC file which is editable?

    How can I convert a .pdf file to an Indesign CC file which is editable?

    Hi btacme,
    I understand there are some third-party utilities that will allow you to convert a PDF to an InDesign file. But, as PDF is intended to be a final format, Adobe doesn't offer this capability. Are you unable to make the edits that you need by opening the PDF in Acrobat?
    Best,
    Sara

  • How can I convert an InputStream to a FileInputStream ???

    How can I convert an InputStream to a FileInputStream ???

    Thanks for you reply, however, I am still stuck.
    I am trying to convert my application (which runs smoothly) to a signed applet. The following is the original (application) code:
    private void loadConfig() {
    String fileName = "resources/groupconfig";
    File name = new File(fileName);
    if(name.isFile()) {
    try {
         ObjectInputStream in = new ObjectInputStream(new FileInputStream(fileName));
         pAndGConfig = (PAGroupsConfig)in.readObject();
         in.close();
         return;
    } catch(ClassNotFoundException e) {
         System.err.println("++ERROR: "+e);
    } catch(IOException e) {
         System.err.println("++ERROR: "+e);
    System.out.println("Can't find file: " + fileName);
    Because all code and resources now reside in a Jar file (for the signed applet), I must use the following line to access the resources:
    InputStream is = this.getClass().getResourceAsStream(fileName);
    I then need to convert the 'InputStream' to 'ObjectInputStream' or 'FileInputStream' so that I can work with it.
    I would be very grateful if you could help shed some light on the matter - Cobram

  • I recored a video with my ipad, downloaded it to my mac but I cant upload it to Youtube because the format IMG is not a video format. How can I convert it?

    How can I convert a video I took with my ipad on the format IMG to a supported format for Youtube?

    To upload videos to YouTube we have to make sure videos are in a format that YouTube accepts. Here’s the list of some well-known video formats which YouTube supports:
    WebM files (Vp8 video codec and Vorbis Audio codec)
    MPEG4, 3GPP and MOV files – (typically supporting h264 and mpeg4 video codecs and AAC audio codec)
    AVI (Many cameras output this format – typically the video codec is MJPEG and audio is PCM)
    MPEGPS (Typically supporting MPEG2 video codec and MP2 audio)
    WMV)
    FLV (Adobe – FLV1 video codec, MP3 audio)
    But I think you get the wrong video file. iPad recorded video files are in m4v, mp4, mov, avi format but not the img files. Anyway, if you need a video converter, Format factory or iFunia video converter are good choice.
    Good luck!

  • How can I convert an odg. file to a pdf. file?

    Hello, how can I convert an odg. file to a pdf. file?
    When choosing Drawing as template in OpenOffice, it saves projekt as odg. which apparently gives difficulties compared to pdf.

    Try this: http://www.convertfiles.com/convert/document/ODG-to-PDF.html
    Let me know if it helps,
    Kevin

Maybe you are looking for

  • TDS Business place & Secotion code issue

    hai, In FB60 we are making entry with TDS. Here business place and section code is required to fillup. If it is not maintained at the time of posting, then there will be a problem in Remittance challan creation. If we call the document which was not

  • Preflight Convert Color Problem

    Hello everyone. I work in the preprint division of a printing press. We have recently upgraded all our systems to x Acrobat Pro 10. We run the preflight utility on most of our files that we get in from our customers. However, to knock out a lot of 4

  • Lexmark Genesis s815 scaner is not working on mac mini

    Hello everybody. Please help if you can! I recently bought my mac mini and migrated my files and all the data from my previous mac mini, some of the files are comming originally from my old powerbook. I wrote this introduction just because people fro

  • Workflow for Treasury management

    Hi , Can anybody tell me how should i configure the workflow for Treasury management ? . Once the below t codes change the mail should go to the Treasurer ?  And here the Treasurer needs to pick up on Roles assigned .. For the  t codes TI10 , TI11, T

  • Wireless AP coverage area of 1042

    I've been tasked with deploying a new wirelss LAN for a call center in the Philippines.  I've considered going with a the 1042 10 pack and a 2112 wireless controller, in the hopes that 2 AP's per floor would be sufficient.  Can anyone tell me what a