JV upload - AR multi document upload

Hi
Can any body explain how to do the JV upload from excel format to SAP and Multi document upload (for AR). What is the T-code for it and steps to follow it.
Appreciate any help.
Thanks

Hi,
Here you have to design a excel macro sheet with parameters "Header Data" "Credit line Data" & "Debit Line Data"
Header Data columns : Invoice date, Invoice number, posting date, document currency.
Credit Line data Columns : Vendor Id, CoCd, amount of total invoice, posting key
Debit line data Columns : GL account, Cost center, Profit Center, WBS, Base line item amount, tax amount.
Based on useing the posting keys, SAP post the document as Invoice or Credit Note. Also, The total Credit amount ($ 300) have to match with Debit amount  (Line item 1: 50$, Line Item 2: $ 100 & Line Item 3 : $ 150) so you can split the debit balance to various GL accounts/ Cost Centers as per requirement.
Regards,
Srinivas

Similar Messages

  • Problem with Multi File upload example, help needed

    I got the code from the following location.....
    http://www.adobe.com/devnet/coldfusion/articles/multifile_upload.html
    And I've got it to work to some degree except I cant get the file transfer to work when pressing, Upload.   Below is what my debugger outputs.  Any thoughts on how to fix this or even what it means?
    At the very bottom of this message is the upload.cfm code.......
    Thanks in advance for the help
    <html>
    <head>
      <title>Products - Error</title>
    </head>
    <body>
    <h2>Sorry</h2>
    <p>An error occurred when you requested this page.
    Please email the Webmaster to report this error.
    We will work to correct the problem and apologize
    for the inconvenience.</p>
    <table border=1>
    <tr><td><b>Error Information</b> <br>
      Date and time: 12/07/09 22:25:51 <br>
      Page:  <br>
      Remote Address: 67.170.79.241 <br>
      HTTP Referer: <br>
      Details: ColdFusion cannot determine how to process the tag &lt;CFDOCUMENT&gt;. The tag name may be misspelled.<p>If you are using tags whose names begin with CF but are not ColdFusion tags you should contact Allaire Support. <p>The error occurred while processing an element with a general identifier of (CFDOCUMENT), occupying document position (41:4) to (41:70).<p>The specific sequence of files included or processed is:<code><br><strong>D:\hshome\edejham7\edeweb.com\MultiFileUpload\upload.cfm      </strong></code><br>
      <br>
    </td></tr></table>
    </body>
    </html>
    <!---
    Flex Multi-File Upload Server Side File Handler
    This file is where the upload action from the Flex Multi-File Upload UI points.
    This is the handler the server side half of the upload process.
    --->
    <cftry>
    <!---
    Because flash uploads all files with a binary mime type ("application/ocet-stream") we cannot set cffile to accept specfic mime types.
    The workaround is to check the file type after it arrives on the server and if it is non desireable delete it.
    --->
        <cffile action="upload"
                filefield="filedata"
                destination="#ExpandPath('\')#MultiFileUpload\uploadedfiles\"
                nameconflict="makeunique"
                accept="application/octet-stream"/>
            <!--- Begin checking the file extension of uploaded files --->
            <cfset acceptedFileExtensions = "jpg,jpeg,gif,png,pdf,flv,txt,doc,rtf"/>
            <cfset filecheck = listFindNoCase(acceptedFileExtensions,File.ServerFileExt)/>
    <!---
    If the variable filecheck equals false delete the uploaded file immediatley as it does not match the desired file types
    --->
            <cfif filecheck eq false>
                <cffile action="delete" file="#ExpandPath('\')#MultiFileUpload\uploadedfiles\#File.ServerFile#"/>
            </cfif>
    <!---
    Should any error occur output a pdf with all the details.
    It is difficult to debug an error from this file because no debug information is
    diplayed on page as its called from within the Flash UI.  If your files are not uploading check
    to see if an errordebug.pdf has been generated.
    --->
            <cfcatch type="any">
                <cfdocument format="PDF" overwrite="yes" filename="errordebug.pdf">
                    <cfdump var="#cfcatch#"/>
                </cfdocument>
            </cfcatch>
    </cftry>

    Just 2 things in my test:
    1) I use no accept attribute. Coldfusion is then free to upload any extenstion.
    Restricting the type to application/octet-stream may generate errors. Also, it is unnecessary, because we perform a type check anyway.
    2) I have used #ExpandPath('.')#\ in place of #ExpandPath('\')#
    <cfif isdefined("form.filedata")>
    <cftry>
    <cffile action="upload"
                filefield="filedata"
                destination="#expandPath('.')#\MultiFileUpload\uploadedfiles\"
                nameconflict="makeunique">
            <!--- Begin checking the file extension of uploaded files --->
            <cfset acceptedFileExtensions = "jpg,jpeg,gif,png,pdf,flv,txt,doc,rtf"/>
            <cfset filecheck = listFindNoCase(acceptedFileExtensions,File.ServerFileExt)/>
    <!---
    If the variable filecheck equals false delete the uploaded file immediatley as it does not match the desired file types
    --->
            <cfif filecheck eq false>
                <cffile action="delete" file="#ExpandPath('.')#\MultiFileUpload\uploadedfiles\#File.ServerFile#"/>
                <cfoutput>Uploaded file deleted -- unacceptable extension (#ucase(File.ServerFileExt)#)</cfoutput>.<br>
            </cfif>
    Upload process done!
            <cfcatch type="any">
                There was an error!
                <cfdocument format="PDF" overwrite="yes" filename="errordebug.pdf">
                    <cfdump var="#cfcatch#"/>
                </cfdocument>
            </cfcatch>
    </cftry>
    <cfelse>
    <form method="post" action=<cfoutput>#cgi.script_name#</cfoutput>
            name="uploadForm" enctype="multipart/form-data">
            <input name="filedata" type="file">
            <br>
            <input name="submit" type="submit" value="Upload File">
        </form>
    </cfif>

  • CF9 Multi File Upload Widget

    This new CF9 Multi File Upload widget looks great but it appears it is built using the old CFFILE code rather than that found in the new fileOpen, fileRead etc. functions - the difference being that the latter doesn't load the entire document in memory before writing which avoids several problems.
    Am I correct in that this new widget is built on CFFILE 'technology'?
    Thanks!
    Shane

    No - they do not work the same.  Unfortunately, there is no fileUpload.
    I cannot find a single example of how to use the new functions to perform a file upload.  This is the code I have come up with and it works fine - except the doc gets saved with the temp name instead of the 'real' name.
    <!--- get file name --->
    <cfset originalFileName = GetFileFromPath(FORM.sFile)>
    <!--- upload file --->
    <!--- instantiate object --->
    <cfset fileOb = fileOpen(FORM.sFile, "read")>
    <!--- move file from temp directory to final folder --->
    <cfset destinationfile = "c:\fileUploads\test\#originalFileName#">
    <cfif FileExists(destinationfile)>
         <cfoutput>A copy of #destinationfile# already exists.</cfoutput>
    <cfelse>
         <cfscript>
           FileCopy(originalFileName, destinationfile);
           </cfscript>
           <cfoutput>Copied: #originalFileName# <BR>
           To: #destinationfile#</cfoutput><BR>
    </cfif>
    <!--- close object --->
    <cfset fileClose(fileOb)>
    <cfset info = getFileInfo("c:\fileUploads\test\#originalFileName#")>
    I'm looking into using JS to set a hidden form value with the original name (file upload object defaultValue) but I'm still not particulary proficient at JS and I doubt it is necessary - I must be doing something wrong with these new CF8 file functions.

  • Getting a Page Cannot be Displayed error while uploading a Contract Document in SAP E-sourcing for size 500mb

    Hi Guys,
    I am getting a Page can not be displayed error while uploading a COntract Document in SAP-E-soucing 7.0.
    Maximum Size set in Our SYSTEM is :9765MB.
    Approx size of the Document tried is more then 300MB.
    Appreciate your help on this.
    Regards
    Tarun

    Hi Tarun,
    Please check the below system properties using system user login
    attachments.maxSizeKB.buyers - "Maximum size in KB of a employer-attached attachment file"
    attachments.upload.enable.buyers-  " Enable/Disable uploading of attachments by internal users"
    Also Please check with other attachment, contracts related properties in the System.
    Let me know if this helps.
    Thanks,
    Raj.

  • How do I upload a Pages document (resume) to a website?

    How do I upload a Pages document, my resume, when it only gives the option to choose a file, no copy and paste option? And when I click choose file, pictures are the only thing that come up. Thank you for your help!

    I have the same situation and is becoming a big problem, not just for uploading a resume on a job web site like Monster or Career Builders. It has become a bigger problem as you can't upload any other kind of document or file to any web site!!!! I have an iPad 4 Retina Display 64G that cost me $800 and what is the purpose of downloading the Pages App if you can't download anything! Everybody saying, you need to email, or you need to get iCab, etc.
    I bought a Nexus 7 about a year before the iPad, for $249 and I can do everything with it with no problem and I bought later the iPad thinking that is a much more powerful tablet, dead WRORNG!!! iPad is only for Games, Netflix, Apple TV and to Keep you baby kids quiet.

  • Document Upload into Webdynpro and transfer to SAP R/3?

    Hi Gurus,
    I have a requirement to offer a Document uploading option through Java webdynpro screen.
    I have referred the below link
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00062266-3aa9-2910-d485-f1088c3a4d71
    which has the steps till uploading the document into Webdynpro
    And also I need to offer an option of listing the attachments(that have been attached by the end user into to the JAVA webdynpro form) with the DELETE option ,How to do that?
    Now my requirement is to pass the document into SAP R/3? is there any RFC for that?
    Thanks in Advance,
    Dharani

    Hi Dharani,
    If we want to add Excel into Java webdynpro screen, then we are trying to create a table with invidual cells. This can be easily possible at Java Portal Perspective using Jakarta HSSF POI API.
    But we require at Webdynpro so , we can use the Context  feature available at Webdynpro to load the table. now we can load the table data into an excel and we can display it to end users in the form of Excel..
    to achieve this functionality pls use the below link
    Exporting table data to MS-Excel Sheet(enhanced Web Dynpro Binary Cache)
    Just in case if u need to achive through Portal Perspcetive in NWDS pls use this.
    Create an excel file from JAVA using HSSF api
    the advantage of these two methods is we can create mutable tables i.e. each cell of the table is accessable and can be modifed with using the code.
    Hope this will be helpful.
    Regards,
    Shaila

  • DMS Document upload: does it pass through sap DMS ?

    Dear All,
    We have a question concerning the transmission of documents from the client to DMS and the Content Server: does the document need to pass through the sap server ?
    Document upload (create document CV01N)
    Does the document go directly from the client to the Content server OR does it pass through the sap DMS before to be stored in the CS ?
    Document download (read document CV03N)
    Does the document go directly from the CS to the client OR does it pass through the sap DMS server ?
    This could be interesting to know for network performances.
    best regards,

    Hi Gurus
    is the cache server a default funtionality from the content server or any configuration is required from our part.
    is that the cache server acts as the RAM of our system?
    please explain the partitioning or biferfication of the Content server, as you told
    content server is divided into storage catagories and  this in turn in to content repositories,
    please  clarify below points,
    1)any server or PC can be made as Content server by insatalling the content server CD if iam right ?
    2) Practical and funtional benifits of partitioning content server into content repositories is it for authorization and storing data by naming convection or can it also help in copiying data from a specific content repository if needed, ( is content repositories a logical partition or practical partition like B,C,D, F drives of our PC hard disk)
    3) can /should there be multiple content server installation for a particular (production) client.
    4) Can Archiving  be done say by creating a separate content repository inside the same Content server, or is it mandatory to have a separate archiving server itself,
    please give some idea with examples
    Thanks and regards
    Kumar

  • Some chinese character file name not uploading in SharePoint Document Library?

    Hi
    Some Chinese character pdf file name not uploading in SharePoint Document Library. I am getting following error.
    1. File not found error if i would upload using file browse option in Doc Lib.
    2. Can't read from the source file or disk. if i would tried to copy and paste using "Open with explorer" options.
    File name is "LA(未签署).pdf"
    Note: This file has been converted from "TIFF" to "PDF".
    Thanks & Regards
    Poomani Sankaran

    Hi Poomani,
    For troubleshooting your issue, please let's verify the followings:
    Whether other pdf file which are not converted from "TIFF" and contain Chinese char could be uploaded into the SharePoint Document library.
    Whether other pdf file which are converted from "TIFF" and don't contain Chinese char could be uploaded into the SharePoint Document library.
    Please upload these pdf files into other libraries, compare the result.
    Please check the log file to find more information about this issue. The path of the log file is:
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • How to deal with Upload limit of Document Library

    Hi
    We are working on SharePoint Online (Office365). We have a requirement to upload files of 20GB+ size. I have come across a limitation that we can't upload files to document library whose size is more than 2GB. Please provide an clarification on this
    limitation.
    We want our user to upload files up to 20GB. Can we give him an option to upload file using SP Designer. If we can create a folder an user can open site in SPD then they can upload files. Is there any limitation of file size in folder.
    If this is not the feasible option kindly suggest us any other way by which we can fulfill this requirement.
    Regards
    Vikrant Kaushal

    Vikrant,
    Please see the SharePoint Online Boundaries and Limits document
    http://office.microsoft.com/en-gb/office365-sharepoint-online-enterprise-help/sharepoint-online-software-boundaries-and-limits-HA102694293.aspx#_SharePoint_Online_for_2
    The 2Gb file limit is a hard limit that cannot be exceeded in either on-premises or cloud based versions of SharePoint due to a SQL/File system limitation.
    The best bet that you can do is look at using a storage location based in perhaps Azure and then linking to this location from Office 365. Unfortunately you can't use search crawl for none Office 365 locations, so I would think about using a links list to
    surface the large files in SharePoint as a link item, thus making them available to search etc.
    Paul 
    Please ensure that you mark a question as Answered once you receive a satisfactory response. This helps people in future when searching and helps prevent the same questions being asked multiple times.

  • How to upload a PDF document to a website

    Using my iPad and Safari Browser I'm trying to upload a PDF document to a website.
    When I click on the website's button to "Choose File" I only get the options to select "Camera Roll" or "Photo Stream" or a video.
    I have the PDF document saved in iBook, Dropbox, Goodreader,  and Pages.  But those apps are not selectable as "Open In..." options - only Camera Roll and Photo Stream.
    Any way to make these app selectable, or get the PDF into the Camera Roll so that I can upload it to this particular website?
    Thanks,
    Q.

    Dear red555,
    This problem is existing for any website, which needs to upload file!,,
    This is about 2 days continuously looking for troubleshooting of this problem by searching the net and IPforums,and I found too many people suffering from this,,,,
    Does it need any special application to install?

  • How to upload a word document or pdf file to xk02 transaction

    hi all,
    i want to upload a word document or pdf file to xk02 trasaction
    please suggest me how todo this
    Thanks
    RAM

    Hi Pradeep,
    For creating PDF documents in Webdynpro Java you can use  "iText.jar" .
    to know more about creating PDF using iText refer these links.
    http://www.brothersoft.com/downloads/itext-jar.html
    http://www.lowagie.com/iText/download.html
    Regards
    Sridhar

  • How to upload and share document from pages

    how to upload and share document from pages app?

    Hello dannafromfl,
    Documents can be shared via File Sharing to iTunes or via Email.
    Pages for iOS (iPad): Send and receive documents in email messages
    http://support.apple.com/kb/PH3564
    Pages for iOS (iPhone, iPod touch): Share documents by connecting to your computer
    http://support.apple.com/kb/PH3598
    Cheers,
    Allen

  • Documents uploaded to icloud disappear when I turn off the IPAD

    documents uploaded to icloud disappear when I turn off the IPAD,I can see the documents only when icloud is open on the PC

    When you turn off any device, it will disconnect from the internet. My sense is that you're not quite explaining what's happening. Do you mean that when you turn it back on again it doesn't automatically reconnect? Do you mean the if it just goes to sleep (as opposed to being powered off) that it switches from WiFi to cellular? Or are you saying that you think that when you turn off the iPad, the router disconnects?
    If you're trying to say that the iPad disconnects from WiFi when asleep and switches to cellular, the solution is to keep it plugged into a power source.
    Best of luck.

  • Document Upload issue while clause creation

    Hi Experts,
    I am facing an issue where in When i try to upload a word document for creating clauses, I am successfully able to upload few documents and create clausw and some to the documents do not upload and i get an error though there is not much difference in the two documents in terms of formatting (only content differs).
    When i try to create contract from some of those created (Clause-->Section-->Contract Templates, i have uses those clause to create templates) templates, Contract generates for few and fails for few.( I get error " There is a problem with the Contract Generation web service ") This behaviour is weired.
    If anyone has information on this please help. I am using SAP Sourcing 9.0.15.
    regards,
    Vishal

    Hi Vishal,
    Usually this problem occurs when the Word service is facing some issues.
    Please try to restart the service and check.
    Hope it helps.
    Thanks
    Kushagra A

  • WORD document becomes blank or corrupted after being uploaded to a Document Library programmatically?

    Hi everyone,
    I uploaded a WORD document to a Document Library with this code:
    using (SPSite currentSite = new SPSite(SPContext.Current.Site.ID))
    using (SPWeb currentWeb = currentSite.OpenWeb("Departments"))
    currentWeb.AllowUnsafeUpdates = true;
    SPList myList = currentWeb.Lists["Commercial Agreements"];
    SPDocumentLibrary myLibrary = (SPDocumentLibrary)myList;
    SPFolder myFolder = myLibrary.RootFolder.SubFolders["aFolderName"];
    using (Stream fStream = FileUpload1.PostedFile.InputStream)
    byte[] _bytes = new byte[fStream.Length];
    SPFile myFile = myFolder.Files.Add(FileUpload1.FileName, _bytes, true);
    The document gets uploaded into the correct folder in the Document Library, however when I open it from SharePoint it is just a blank document. And sometimes it is corrupted and cannot be opened.
    If I upload a PDF using this code, the pdf cannot be opened. It says the file is corrupted.
    Any ideas?
    Thank you very much for your help in advance.
    Lin

    Hello,
    I just written sample code, please try this: (Note: This code is not tested so you might need to modify it)
    Stream fStream = FileUpload1.PostedFile.InputStream;
    byte[] _byteArray = new byte[fStream.Length];
    fStream.Read(_byteArray, 0, (int)fStream.Length);
    fStream.Close();
    string _fileUrl = myFolder.Url + "/" + FileUpload1.PostedFile.FileName;
    SPFile file = myFolder.Files.Add(_fileUrl, _byteArray, true);
    http://www.c-sharpcorner.com/blogs/4250/programatically-add-file-in-folder-in-sharepoint-document-li.aspx
    http://sharepointwings.blogspot.sg/2013/08/programmatically-addupload-file-to.html
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

Maybe you are looking for

  • Date selection in background

    Hi, i have to run a repot on 15th of every month in a part in the report i want to select the data from table bkdf with the foolwinf condition      The field is BKDF-DBEDT  All items with a date in the next 4 month should be       included on the rep

  • Display external html page in (Collapsible Panel widget)

    i everybody is there a way to display external html page in (Collapsible Panel widget) All the example a seen is with raw text in it is the panel can display different object instead of simple text At least a internal designed html page Thanks

  • CC: Fatal error in ccfe: Bus Error (core dumped)

    I'm trying to compile a file that's heavy on templates (both mine and boost's). After some time I get the following error: CC: Fatal error in ccfe: Bus Error (core dumped)ccfe consumes up to 390 mb aprox. What could be the cause of this? Could it be

  • Passing Select option to the sub routine

    Hi All , how can we pass  select option values to a subroutine , Thanks in Advance Vinay

  • MacBook Pro 2011 not charging green light on charger

    Bought my MacBook Pro early 2011, really took care of it, no problem till now. Was using it last night as usual and when plug in the charger this morning there's green light but not charging, usually when charging its orange, the battery level on the