Exports - How do we create ARE document

Hi dudes,
How do we create ARE document in exports scenario.
write in details about the entire processing.
regards,
madhav

Dear Madhav
On your comments
"write in details about the entire processing"
have you searched the forum whether any inputs is there ??
Already lot of threads are there on CIN especially on ARE1 and ARE3.
Coming to your question, ARE1 can be created using TCode J1IA101.  TCode to create BOND for ARE1 is J1IBN01.
This can be entered while creating ARE1 with reference to excise invoice.
thanks
G. Lakshmipathi

Similar Messages

  • Help! How do I create a document with an imported PDF in 300dpi using a FOGRA27 colour profile?

    I am a new Indesign user and I have been working with GIMP for the last year creating single colour print-ready PDFs. But now I need to create a document with a FOGRA27 CMYK colour profile and a resolution of at least
    How do I create a document with an imported PDF in 300dpi using a FOGRA27 colour profile?
    I can import the PDF by creating a new document and finding the PDF in places, but it's bad quality.
    The only colour profile I can find under View - Proof Setup is FOGRA39, but I need FOGRA27!
    Help help help, I need to get these files printed in two days!
    Thanks so much..
    xx

    Proof Colors doesn't change the file's color management, it just lets you see what the color values would look like if they are printed unchanged on different output devices. If you want to actually convert the color from one CMYK space to another, it's probably better to do that in Acrobat—Tools>Print Production>Convert Colors.
    There's very little difference between Fogra27 and Fogra39—Fogra27 allows more total ink 350 vs. 330.
    There's nothing you can do to improve the quality of low res images

  • How do I create pdf documents on my mobile device, LG Model MS695, Android Version: 2.3.6?

    How do I create pdf documents on my mobile device?  It is an LG Optimus M+ Smart phone,  Model #: MS695, Android Version: 2.3.6   Thanks, KLynn K.

    Adobe CreatePDF mobile app

  • HT4075 I don't have any problems merging the documents by dragging, but when I try to save and open afterwards, only the last shown doc was saved, not the combined files I wanted to merge. I tried save and export, how can I create the file after merging?

    Hi, I'm having trouble saving the documents when merging in Preview. I don't have any problems merging the pdf documents by dragging them in preview, but when I try to save and open afterwards, only the last shown doc was saved, not the combined files I wanted to merge. I've tried save and export, but none merge the documents after saving... how can I create the file (with all the pdf files) after merging?

    That's a comment in the file. It has no effect at all.

  • How do I create a "document-centric" Web Service?

    By document-centric I'm talking about receiving a SOAP message on the server-side, where the initial parsing and security processing (this aspect is very important) is performed but then allowing the developer to access the delivered "payload", i.e. the XML, and perform whatever mapping/processing that is required without automatically mapping to the "standard" auto-generated Java objects.
    It is important that the client receives the "full" complex WSDL and can therefore generate their proxy classes with whatever tool (or language) that is appropriate.
    On the server side we do not want to create hundreds (if not thousands) of Java Bean clases as we already have the legacy code to map XML to Java. The idea is that JAX-RPC only instantiates the SOAPElements that represent the "raw" message, or, if possible, doesn't instantiate any objects whatsoever.
    I've spent many days now trying to find a single well-worked example for this type of Web Service without success - many, many references of the style "..and you can then create a document style web service.." but without the all important "how".
    From what I've read a custom type-mapping and/or serializer/deserializer could be the answer but again no good, solid examples are forthcoming.
    Another alternative seems to be to create the server side stub-classes using a "dummy" WSDL with the elements set to "anyType" but then distribute the "genuine" WSDL to the clients - we've got a simple example of the kind working but I don't like the idea of "tricking" the system in this way.
    I'm working with WASD 5.1, which in theory conforms with JAX-RPC so any ideas offered here should also apply in that environment.
    Has ANYONE successfully created a service of this type?
    Any help with this issue would be very much appreciated and rewarded (with Duke Dollars of course).
    Chris.

    Chris,
    I too noticed that most vendors take the RPC centric approach. Its because most of the industry examples of how WSs were used were simple enough to implement using RPC and anything more (document literal) would add to the complexity of implementation. This is something that is feared by many developers, especialy the .Net crowd who seem to want everything done through a wizard menu interface and don't care about other WS implementations at all.
    This is sort of changing. J2EE 1.4 is WS-I compliant, so when you compile server side ties from WSDL you can specify a document literal option and WS-I compliance. This gives you access to the SOAPElement objects. There's still issues with going between W3C DOM and SOAP elements but that's just API inconvenience, not a show stopper. As the inudustry develops more complex WSs we will see the vendors change their tools to better support this...
    Anyway, some more help...
    I use the the following wscompile options to build from WSDL for document literal WSs.
    wscompile.bat -d . -nd . -s . -f:documentliteral -f:wsi -keep -model model.gz -import config.xml
    wscompile.bat -d . -nd . -s . -f:documentliteral -f:wsi -keep -model model.gz -gen:server config.xml
    My "wrapper" elements look like this...
    <xs:element name="AComplexXMLResponse">
         <xs:complexType>
              <xs:sequence>
                   <xs:element ref="myNS:MYComplexXMLType"/>
              </xs:sequence>
         </xs:complexType>
    </xs:element>
    If I do this:
    <xs:element name="ASimpleXMLResponse">
         <xs:complexType>
              <xs:sequence>
                   <xs:element name="AName" type="xs:string"/>
              </xs:sequence>
         </xs:complexType>
    </xs:element>
    I still get the JAXRPC language bindings to a string, but in my case I don't really care. This may well be different for you.
    What I do to manage these elements is to split up the WSDL, WS wrapper element definitions and actual data XML schema definitions into separate documents. This means I have a WSDL which IMPORTS my message schema (this is where I define wrappers for in and out XML) which INCLUDES the actual DATA XML schema that I have.
    The WSDL import looks like this:
    <types>
         <xs:schema>
              <xs:import namespace="http://schemaURI" schemaLocation="./relativePath/WrapperElementSchema.xsd"/>
         </xs:schema>
    </types>
    The wrapper element schema has:
    <xs:include schemaLocation="./ActualDataSchema.xsd"/>
    This way I can easily replace the wrapper documents with just anyType references if something doesn want to play nice. The data schema file and the WSDL stay the same. This minimises the impact on what you have to change in your distribution. This is important as the WSDL is often generated on the fly by your WS environment and so can not be easily changed once you build your WSs, but the schema files it references are easily changed without affecting your code.
    Another reason for the wrapper elements was a JWSDP 1.2 issue (I don't know if this has been fixed in 1.3), where if you had the same method parameter signature in a web service (the parameters it took were the same XML types, for instance if you have an add and update methods for the same document input) JWSDP would get confused at runtime. It did not take account of the SOAP action that came along with the request to determine which operation to call. It just took the incoming XML, saw that it was of a certain type and it passed it to the first operation that took this element, which is VERY wrong. By using the wrapper elements, I could give all my input and output elements for each method different names (I used a naming stragegy that appended a 'request' or 'response' string to the method name to form a method parameter element name. This is a pain in the ass, but works and does wonders for interoperability with other WS vendors. Like I said before, I've got this working with JWSDP, BEA and .Net servers and clients.
    Hope this helps,
    If you think there is a real need for a public HOWTO on this, I could write one with a full step by step guideline that shows where I broke my legs getting this stuff to work. But this would eat into my sleep time :-/ TO JUDGE INTEREST I call on all people interested in a tutorial to respond to this thread (esp people involved with the JWSDP WS tutorial documentation). If I get 5 or more different people responding I will loose some sleep for the good of this community. Otherwise, I will just try to help you when I have time to read the forums.
    Kuba

  • How do I create a document?

    i cant figure out how to create a document so i can upload it on another web page

    Hi kathey123,
    Are you trying to create a PDF file that you can link to from a web page? To create a PDF file, you can use either Adobe PDF Pack or Acrobat. If you'd like to try Acrobat, consider downloading a free 30-day trial from www.adobe.com/products/acrobat.html.
    Best,
    Sara

  • How to block creating Billing document if no accounting doc generated

    Hi,
    In Brazil, after create Billing Document a new document called Nota Fiscal is also created.
    But I can't allow creating Billing Document and Nota Fiscal if i have a problem during the releasing process of the Accounting Document.
    How Could I to do for block the creation of those documents if i had a problem in releasing the accounting document ?
    Best Regards.
    Kleyson Rios.

    HI,
    with out creating a billing document we can not expect accounting document details.
    once u create a billing document then we come to know whether accounting doc is created or not. if not created then we hav top analyze why it is not created.
    do one thing u have to check all configuration settings before creating a billing document.
    Srini

  • Indesign CS4- how can I create a document with more 10 pages?

    Hi,
    I have just begun to practise with Indesign. I want to create a tale with 22 pages. My question is how?
    At the moment it's half solved, because I have done 10 sheets and each is 2 pages, but I need 2 more.
    When I want to add more pages, alert message advise me that's no possible. The maxium is 10.
    Thisaction have donetrough page menu.
    Do it exist any trick?
    _ other question: edit maestra page:
    How is the procedure forediting maestra page? I want to add number page, a headline.
    Urgent! It's a delivery extra urgenT!
    Thanks a lot

    I'm not sure if I understand the way your document is set up currently. It sounds to me like you have created single InDesign pages that each contain a two-page spread for your finished document. This is not a good method for laying out anything longer than will fit on the front and back of a single sheet of paper.
    Instead you should be making your InDesign document using the "facing pages" option and setting the page size the same as the folded size of the finished booklet. If you have color that bleeds, add a bleed allowance in the document setup dialog (click the show more options dialog). When your booklet is printed the pages need to be arranged back cover/front cover, inside front/inside back, page last/page 1 and so forth so they appear inthe correct order after binding. This is easily automated if the pages are separate, but if they start out on the same sheet it is up to you to get the order right from the beginning, and it is difficult to do design work in printer's spreads layout. Keeping pages in consecutinive order allows you to design in the same view that your readers will see.
    I'm not sure what the error message about the limit of 10 is, but it sounds like you are trying to make a single spread for the whole document. You can have a maximum of 10 pages in a single spread. The question is why do you want so many pages next to each other? Does the document fold out this way? A "normal" book uses many two-page spreads. You can add pages normally by dragging a master page icon into the live page area in the panel, or using the "insert pages" command from the panel menu.
    To edit a master page, double-click its name. Add your page number in a text frame by inserting a "current page marker" special character in the frame.
    Peter

  • How to automatically create xml documents ?

    Hi,
    I have created an xml form with specific fields and properties. Now, I want to automatically create a large amount of xml documents based on it.
    Is there any means to do this ?
    Thanks,
    Loïc LEVEUGLE

    You cannot automate applying usage rights with Acrobat. For that you'd need to use Adobe's LiveCycle Reader Extensions.
    How exactly are you currently converting XML into fillable forms? Are you using an XDP to somehow convert to an XFA-based PDF?

  • How can I create a document with piece-making?

    Hello Community,
    I am looking to create a template document that allows quick inserting and removing of pre-made statements for a list, yet are editable to a degree.  I am imagining I would be able to use the
    Repeating Section Content Control with Drop-down Content Control.
    I hope the description and example below help.  The goal is to streamline client letter creation while still allowing for some robust editing ability.  My hope is that I can use Word (preferred), Access, or Visual
    Basic (least preferred); or a combination of Word & VBA.
    As an example:
      Heading
    This is a simple statement.
    This is a complex statement, you were born <year>, and
    <number>.
    This is a complex statement, you were born <year>, and <number>.
    [[[ Add statement {Drop-down} ]]]
    Thanks!

    Hi
    I did not quite understand what you need.
    For Drop-down list content control, we can modify the values and display name by clicking
    Properties on the ribbon.
    Pre-set all the Drop-down list content control, add all statements in Drop-down list properties.
    To add statements, we can simply click the drop-down list and select the right one we need.
    If you need more help on code, we recommend you post in the following forum:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=worddev
    Tylor Wang
    TechNet Community Support

  • How can I create a Document object from a text file (myFile.txt)

    Hi everybody:
    Thank you for reading this message.
    I am trying to find a method to convert a text file ( I have it in a File object) to a Document object.
    I read the Java API but it is strange, I do not know if I have to create an AbstractDocument, it is really strange for me.
    Any comment is welcome,
    Regards,
    JB

    Document is an interface, and AbstractDocument is abstract, so you
    can't create either of those directly. Assuming you are dealing with a
    a plain text file, you could do something like
    // Not catching any exceptions that get thrown
    File file = /* file you already have */
    String eol = System.getProperty( "line.separator" );
    int eolLen = eol.length();
    FileReader reader = new FileReader( file );
    BufferedReader buffer = new BufferedReader( reader );
    PlainDocument doc = new PlainDocument();
    for ( String line = buffer.readLine() ; line != null ; line = buffer.readLine() ) {
        int len = doc.getLength();
        if ( len > 0 ) {
            doc.insertString( len, eol, null );
            len += eolLen;
        doc.insertString( len, line, null );
    }and now you have a document.
    : jay

  • How can I create a document with two columns in which the text in the left hand column flows to the left column on page 2,3 etc, and doesn't interfere with the text I want to place in the right? Pages 5.

    I'm using pages 5 and want to comment in a right hand column, on a (latin) text which I wish to place in a left hand column.
    Ideally I'd like to be able to copy and paste the latin text and see it flow over into the left hand column on multiple pages.
    At the moment it is impossible for me to keep the text only in the left hand column Any help!?
    B

    Columns do what columns do, flow from the bottom of the left hand column to the top of the right hand next column. So won't do what you want.
    Your tag says you are using OS X 10.5.8 but you say you are using Pages 5 so one or the other is not correct.
    If you migrated up to Pages 5 what did you do with your previous Pages '08 or '09?
    Because Pages 5 is missing over 100 features, one of which is Textbox linking, that would allow to flow down through a series of Textboxes set up like columns.
    What you can do is run the Latin text down a narrow document to the left and add individual Textboxes to the right and put your English translations in those. The Latin will flow but the English will not.
    Peter

  • How can I create template documents for non-InDesign users to edit the text of later?

    I'm looking to produce a small system for people within my company to edit and print labels as needed that comply with our internal design standards. I would like to use InDesign to produce a few templates for labels that people could then edit one or two fields later on, things like item name and ID number. I'm not averse to producing a small application in XCode that users can start up, enter their data and it saves the printer-ready label sheet to their desktop. I started out using Acrobat Pro, but I'm running into trouble embedding fonts for use in form fields, centering text, and outputting a filled-in pdf for print use, and not a form that submits info to an email or server. If InDesign is the wrong tool for the job of setting up a template like this, please feel free to suggest another route.

    I would direct you to the Acrobat forums, personally. You can enable rich-text formatting of Acrobat form fields from within Acrobat Pro, and also IIRC embed fonts for use in form fields. If you can spec out what you mean by "fine detail that we'd need" then we, or someone over at the Acrobat forums, can tell you whether or not rich text in Acrobat forms will work for you. I suggest this to you because centering text for Acrobat form fields is dead easy, so I suspect you've not investigated the tools available in Acrobat after you've exported the PDF from InDesign.
    Post-export PDF data merge sounds like, I dunno, variable-data printing? which doesn't sound like it would fit your case.

  • Appraisal Document : How do we create Appraisal document PA or PSA Wise.

    Hi Expert,
    Is there any way to create Appraisal documet either PA or PSA  wise.?
    Like we have relationship 608 for Orgunit (O) and Tempalte (VA) can we create realtionship between PA & VA  or PSA & VA?
    Regards,
    Mahesh

    Hi
    PHAP_PREPARE does not look @ enterprise/personnel Structure
    You need to customize the transanction code
    Below link could help you.
    Integrating PHAP_PREPARE with Customer Specific Prepare Appraisal Docs Program
    http://www.sapdiary.com/index.php?option=com_content&view=article&id=18711:integrating-phap_prepare-with-customer-specific-prepare-appraisal-docs-program&catid=81:data-services&Itemid=81
    Thanks
    RAjdeep
    Edited by: rajdeepk on Dec 27, 2011 6:49 AM

  • How to create a Document object from a string.

    If I use the following code, the input String cannot contain "\n", otherwise, it generates errors.
    in the following code, inputXMLString is a String object that has xml content.
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = factory.newDocumentBuilder();
    Document document = builder.parse(new InputSource(new StringReader(inputXMLString)));          How can I create a Document object from a string with "\n" in the string?
    Thanks.

    If I use the following code, the input String cannot
    contain "\n", otherwise, it generates errors.That's going to be a huge surprise to thousands of people who process XML containing newline characters every day without errors.
    Perhaps your newline characters are in the middle of element names, or something else that causes your XML to be not well-formed. I'm just guessing here, though, because you didn't say what errors you were getting.

Maybe you are looking for

  • Data source active/inactive button grayed out in LBWE

    Hello, When I was activating the Logistics datasource in LBWE, my data source status became red and the Active/Inactive button grayed out? how can I make this data source active again? Thanks, KK

  • Material Document not geting posted Error Message RW011

    Dear Friends, The users have created the Material Document thru Invoice Verification, however when we view the Follow on Document, we get the message - Accounting Document not generated, message RW011. How to check the error and find out the reason f

  • How to add Photoshop CC 2014 to the "Open With" dialog?

    Hi! As mentioned in my previous dialog. THe new Photoshop CC 2014 does not appear as programm in my Open With dialog, so I tried these steps: Double click on a NEF or PSD file Select a program from a list of installed programs Checked again "Other pr

  • Want to upgrade 8.1.5 database into 10.2.0.2 and implement RAC.

    Hi, I have two different databases running on 8.1.5.0 and 8.1.7.4 and the size of databases are 110GB and 130GB. Now we want to upgrade this database into 10.2.0.2 and implement RAC. Could any one suggest the best way/document to upgrade database int

  • Restrict Automatic serial number calculation for Production order release

    Hi, I need the solution for following requirement. Release production order(CO02) . Then go to Menu header-> Serial Numbers. Here I am getting serial numbers automatically as the material used in production order is set for automatic serial number ca