CSV file template for Uploading PO confirmaiton

Dear all,
We have activated Badi for Upload PO confirmations for a supplier in SNC 7.0.
Request if any of you can please let me know where can I find the CSV upload file template.
Thanks,
mahesh.

Hi Mahesh,
You can download the CSV file from Tools-->Download center(select purchase order confirmation.
To create a purchase order confirmation, you enter X in the To Be Confirmed column of the schedule line. If the schedule line has an X, you can change the following data:
■Quantity
■Delivery date
Note
Depending on the system set-up, for example if you have set up Customizing for POs to allow shipping dates to be used instead of delivery dates, you can change the shipping date.
End of the note.
■Confirmed price
Note
If you leave the Confirmed Price field empty in all schedule lines of an item, the requested price is used. If you enter a value in the Confirmed Price field of one of the schedule lines, or in more than one schedule line, but those values are the same, the system uses that value as the confirmed price for the item. However, if you enter two or more different confirmed price values in the schedule lines of an item, the system regards this as an error, and the item is not processed.
End of the note.
■Confirmed MPN
■Confirmed Mfr
■To reject the PO item, you enter an X in the To Be Rejected column of the schedule line that has an X in the Requested column.
Now upload this file in Tools->upload center.
See the below link for more information.
http://help.sap.com/saphelp_snc70/helpdata/EN/b4/79223dc5b54b36899ea4f731a712f6/frameset.htm
Regards,
Nikhil

Similar Messages

  • Problem in Creating Source Files (Templates) for Original Application Files

    Dear Friends,
    I am trying to ccreate "Source Files (Templates) for Original Application Files" . I checked the link
    http://wiki.sdn.sap.com/wiki/display/PLM/Templates-Document+Management
    I created a new DOc. type TMP with no statuses, checked in KPO, assigned no. ranges.
    Created  DIR & assigned the template file, checked into storage category. DIR no. 10000000390 created.
    In Workstation application "DOX" in define templates for originals : doc. type: ZGA, application: DOX; language- EN; no - 01; In source doc- entered doc. type- TMP, doc. no.- 10000000390, part & version
    Assigned for required source file copy" ZGA doc. type. -- Default Appl. as "DOX" workstation application.
    Now created a DIR with ZGA doc. type, when clicking on originals , DOX prompted and clicking on "create with template" . TMP doc. 10000000390 template open in a new window. I edited & saved. close the MS word window. When comes to DIR, it prompted, Original was changed Do you want to save the original?.
    clicked on yes.
    Saved the ZGA DIR. When I saw the new ZGA DIR created it didn't capture. Where I went wrong ?
    Regards,
    Sai Krishna

    Dear Ravindra,
    By going this below link, it seems we can use template for creating ne wdocument & attach the same.
    http://wiki.sdn.sap.com/wiki/display/PLM/Templates-Document+Management
    Following messages if you read, it may be clear.
    By having templates in place we can utilize the pre-defined documents instead creating right from scratch.
    Entries can be done in the Template and save the document.
    Templates are used for standardization and uniformity. By using templates time consumption for creation of documents will reduce as most of the details are maintained in the master template and the same can be utilize by using the template when creating documents.
    If in DMS editing functionality is not there what is the use of templates- documentation?
    Regards,
    Sai Krishna

  • One file maximum for uploads with Safari, Opera, FireFox and Chrome to OneDive

    Some Windows 7 users have complained to they can only mark one file maximum for uploading with Safari, Opera, FireFox and Chrome to OneDive

    Hi,
    You mean that you access OneDrive via web browser?
    From my tests, everything is normal and it seems there is no setting in browser to configure this number.
    if I misunderstand this issue, please give us more information on it.
    Alex Zhao
    TechNet Community Support

  • Template for uploading account trial balance

    Hi,
                Is there any template for uploading trial balance of chart of accounts  in SAP Business One.
    Thanks in Advance.
    Thanks and Regards,
    Jai

    hi
    Go in Financial > Financial Reprt Template > Choose balance Sheet
    Create new template and Assign a Name
    Click on "Generate Std Chart Of Account"
    Update > Ok
    Same for other template
    Thanks
    Kevin

  • DTW template for uploading Intial Quantities

    hi,
    Can anybody of you tell me what is name of DTW template for uploading
    intial quantities ?
    Thanks,
    A.Jeyakanthan

    Thank you all for reply
    In oStocktaking
    template contains itemcode,warehouse & quantity.
    We also require price to uploaded with initial quantities,
    how to do it ?

  • How to set the default file name for upload

    Hi All,
    I have the following BSP app for a file upload of a csv file. I want the page when displayed show the default file name to be loaded as c:\db1\currentPM.csv
    What changes do I need to make to get the default file name in the BSP app.
    Thanks
    Karen
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content id               = "content"
                   design           = "classicdesign2002design2003"
                   controlRendering = "sap"
                   rtlAutoSwitch    = "true" >
      <htmlb:page title="File Upload " >
        <htmlb:form method       = "post"
                    encodingType = "multipart/form-data">
              <htmlb:textView text   = "File:"
                              design = "STANDARD" />
              <htmlb:fileUpload id          = "uploadID"
                                onUpload    = "UploadFile"
                                upload_text ="Upload"/>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    On Input Processing
    event handler for checking and processing user input and
    for defining navigation
    DATA: EVENT TYPE REF TO IF_HTMLB_DATA,
          DATA TYPE REF TO CL_HTMLB_FILEUPLOAD,
          LV_OUTPUT_LENGTH TYPE I,
          LV_TEXT_BUFFER TYPE STRING,
          FILE_NAME TYPE STRING,
          FILE_PATH TYPE STRING ,
          INTERN TYPE TABLE OF  ZALSMEX_TABLINE.
    DATA: LT_BINARY_TAB TYPE TABLE OF SDOKCNTBIN .
    TYPES: BEGIN OF TY_TAB,
           FIELD1(2) TYPE C,
           FIELD2(2) TYPE C,
           FIELD3(2) TYPE C,
           FIELD4(2) TYPE C,
           FIELD5(2) TYPE C,
           END OF TY_TAB.
    DATA:  WA_TAB TYPE TY_TAB,
           IT_TAB TYPE TABLE OF TY_TAB.
    TYPES: BEGIN OF TY_LINE,
              LINE(255) TYPE C,
           END OF TY_LINE.
    DATA:  WA_LINE TYPE TY_LINE,
           IT_LINE TYPE TABLE OF TY_LINE.
    EVENT = CL_HTMLB_MANAGER=>GET_EVENT_EX( REQUEST ).
    IF EVENT IS NOT INITIAL AND EVENT->EVENT_NAME = HTMLB_EVENTS=>FILEUPLOAD.
      DATA ?= CL_HTMLB_MANAGER=>GET_DATA( REQUEST = RUNTIME->SERVER->REQUEST NAME = 'fileUpload' ID = 'uploadID' ).
      FILE_NAME = DATA->FILE_NAME.
      FILE_PATH = FILE_NAME.
      IF DATA IS NOT INITIAL.
        CALL FUNCTION'SCMS_XSTRING_TO_BINARY'
         EXPORTING BUFFER = DATA->FILE_CONTENT
         IMPORTING OUTPUT_LENGTH = LV_OUTPUT_LENGTH
         TABLES BINARY_TAB = LT_BINARY_TAB .
        CALL FUNCTION'SCMS_BINARY_TO_STRING'
        EXPORTING INPUT_LENGTH = LV_OUTPUT_LENGTH
         IMPORTING TEXT_BUFFER = LV_TEXT_BUFFER
         TABLES
         BINARY_TAB = LT_BINARY_TAB.
        IF SY-SUBRC = 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        SPLIT LV_TEXT_BUFFER AT CL_ABAP_CHAR_UTILITIES=>CR_LF INTO TABLE IT_LINE.
        IF SY-SUBRC = 0.
          LOOP AT IT_LINE INTO WA_LINE.
           SPLIT WA_LINE AT CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB
            split wa_line at ','
            INTO WA_TAB-FIELD1 WA_TAB-FIELD2 WA_TAB-FIELD3 WA_TAB-FIELD4 WA_TAB-FIELD5.
            append wa_tab to it_tab.
          ENDLOOP.
        ENDIF.
      ENDIF.
    ENDIF.

    Also, I missed another point.
    In the folder c:\dbdata I have a number of CSV files on the user frontend. I would like the BSP application to get the list of files in the folder and process them one after the other. How can I get the list of files on the folder in the user PC and how to process them one after the other.
    I want the form to display only the default folder and once I press on upload it must process all files and display the status of processing on the same page.
    Please kindly share ideas how I can implement this app.
    Thanks
    Karen

  • Wrong period values in Text template for upload of Plan data (KP06/KEPM)

    Hi,
    We are facing an issue in the upload template in text format for Upload of Cost Centre Planning data (Transaction KP06) in ECC 6.0.
    We have some User defined layouts for Excel upload of plan data. If we save the file as a text (tab delimited) file, the Period values above the Column"Period" do not correspond to the correct periods in ECC 6.0. for e.g. the values above Period 1, Period 2, Period 3 are shown as 6, 5, 4 instead of the correct values 1,2,3. These values are considered by the system for uploading the Planning value in the appropriate Periods and hence the values entered in the Column Period 1 in the text file are incorrectly uploaded by the system in Period 6 based on the values generated by the system in the text file.
    However, we do not encounter this issue in the 4.6C system where the values are correctly shown.
    We are facing a similar issue with the text upload template for Sales Planning data in CO-PA (Transaction KEPM), where the values generated by the system do not correspond to the correct period.
    Regards,
    Rajaram

    Hi Christian,
    Thanks for the quick reply, i followed your earlier reply in the below thread and resolved the issue. Thanks.
    How to delete CO plan data
    Hi Ajay,
    Thank you, We are uplaoding through KP06, Menu -->Extras --> Excel Planning --> Upload.
    Regards,
    Raj

  • Check CSV file name while uploading file?

    Hi All,
    I am uploading data from CSV file.. That part is working fine.
    Now i want to check CSV file name. Ex : CSV file name = W1234H4321AB.
    I want to check 6th letter, if 6th letter is eq 'H', i want to upload data otherwise should display some message.
    I tried by reading this attribute, but i declared this type as XSTRING, i checked value after using get_Attribute in  lv_datasouce. It contains some XSTRING value. How to get CSV file name??
    Cheers,
    Venkys.

    >
    Thomas Jung wrote:
    > >I want to check 6th letter, if 6th letter is eq 'H', i want to upload data otherwise should display some message.
    >
    > Everything that you have been told about using the filename property of the FileUpload is correct. However you should note that the filename will not be available until after the file has already been upload to the server. So you can't stop the fileUpload based upon a check of the filename - its too late and the upload has already occured.
    yeah that is true. but is there anyway to check it otherwise.
    or we need to wait for something in coming versions 7.3 or 7.4.

  • Creating an offline PDF template for upload and submit

    Hi Gurus,
    I'm very new to Adobe Interactive forms and will need your advise.
    From the tutorials, when we create a offline PDF application that can upload a PDF for submission, we were always given the sample template PDF file provided by the tutorial. (travelrequest.pdf)
    Now I need to create my own offline PDF template by myself so I can integrate to my WD program to include uploading the offline PDF template and submitting to backend.
    the offline PDF must be editable and save via acrobat reader.
    Any further notes or documentations that I can follow up to? Cos most of the doc I found doesn't teach me how to go about creating the PDF template for offline use in the first place...only the backend and WD integration which I already know.
    Please help! Thanks!
    ps: points will be generously awarded to answers.
    Regards,
    Jansen

    Hi Jansen,
    As far as I know the WAS 620 only supports to output your Forms and Scripts to PDF Format but they are not interactive.
    The Adobe Interactive Forms Solution is only available from WAS 640. You can design your forms either in ABAP transaction SFP or in NWDS(Netweaver Developer Studio) Form Designer.
    For craeting forms in WD ABAP, have a look at the links below:
    SAP Interactive Forms by Adobe
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b7/64348655fb46149098d95bdca103d0/frameset.htm
    Web Dynpro ABAP
    http://help.sap.com/saphelp_nw2004s/helpdata/en/77/3545415ea6f523e10000000a155106/frameset.htm
    regards,
    harman

  • File formats for uploading/download

    Hi Experts,
    Loading of data(master/transaction) involved two steps.
    1. Loading file to Data files folder .
    2. From Data file folder to BPC application.
    For step1, what are BPC allowed file formats? Is it only .txt & .csv?
    For step2 , what are BPC allowed file formats?
    For downloading data from BPC to flat files, what are allowed file formats?
    thanx,

    Hi,
    You should be able to check the DEFAULT_EXTENSIONS parameter in the application set parameters to see what is allowed and control allowed file types. You can see the documentation on this topic here: [http://help.sap.com/saphelp_bpc75_nw/helpdata/en/f7/d21edd2f4c4f78b0a5be2b16e19ca1/frameset.htm]
    As far as file types for export, this is determined by the data manager package exporting the data. I believe the delivered data manager packages usually export in a CSV format with a file extension of your choosing, but a custom package could export data in any format required.
    Ethan

  • CSV file template - values in columns

    Hi experts,
    I'm with a requirement to upload transactional data from a CSV file. And it's working, but with values in lines like below:
    CostCenter        P_ACCT             Time                  Amount
    1101450               341010101     2012.DEZ          56000
    1101450               341010102     2012.DEZ          4000
    1101450               341010103     2012.DEZ          13000.99
    Just in terms of to make the user's life easy, considering that this way the file will have thounsands of lines, I would like to know if is possible to upload data from a CSV file with the key figure in columns. Something like:
    CostCenter        P_ACCT             JAN          FEB         MAR        MAY        JUN          JUL          AUG  ........
    1101450               341010101     56000     56000     56000     56000     56000     56000     56000........
    1101450               341010102     4000     56000     56000     56000     56000     56000     56000........
    1101450               341010103     13000.99     56000     56000     56000     56000     56000     56000........
    If I can't manage this in BPC, I'll have to create a macro to put the values in lines.
    Regards!
    Lucas

    You can use a transformation file to get this in a couple of ways I think.
    See the help file topic on *MVAL (NW 7.5 version)
    http://help.sap.com/saphelp_bpc75_nw/helpdata/en/b8/a76a1ca9ac4ca698259a8ff397bb61/frameset.htm
    Also you could try this (from the help file)
    *<Dimension> =<value1>,<value2> has the similar effect of an *MVAL command in the mapping section. This type of header occurs only in the beginning of the data file, not in the middle.
    *CATEGORY=ACTUAL
    *TIME=1999.JAN, 1999.FEB, 1999.MAR,1999.APR
    *ENTITY, ACCOUNT, PRODUCT
    *AMOUNT UK, SALES, SEDAN, 100, 200, 300, 400
    Good luck!

  • Mozilla takes out path of file - Problem! - need full file path for Upload

    There are pages on my site that process the uploading and storing of files (images) from the client's computer, and while IE leaves the full path of the file (like C:\myphotos\jpeg\example.jpg), Mozilla only passes the name of the file (like example.jpg), which is no good! I need to have the full path of the image file in order for it to work.
    How do I fix this issue?
    Here is a snippet of my servlet code, within the code I commented where the problem occurs...halting my servlet from continuing to process...but only in Mozilla.
    List items = upload.parseRequest(request); // Create a list of all uploaded files.                    
    Iterator it = items.iterator(); // Create an iterator to iterate through the list.                                                                                                         
    while(it.hasNext()) {                                             
         FileItem item = (FileItem)it.next();
            File f = new File(item.getName()); // Create a FileItem object to access the file.
            //THE STATEMENT BELOW HALTS THE REST OF THE SERVLET FROM PROCESSING
            //BECAUSE THE FILE PATH IS INCOMPLETE
         FileInputStream fs = new FileInputStream(f);
    //...Any input is appreciated,
    Love2Java

    BalusC wrote:
    According to your post history you've done webapps for more than 2 years. More than enough time to understand how HTTP works and so on. You even had ever posted a topic related to uploading files. Seriously, I am highly surprised.I am a self taught programmer, and yes, I have been learning code, working on my project, for quite some time, but I am not an 'expert' in ALL areas of development/programming, so excuse me if I 'lack' certain knowledge in certain areas. I'm also running/testing on a local machine, obviously, so, like I said in my last post, I didn't realize that that was the ONLY reason IE worked with my code for uploading.
    Now getting back to the topic of my post, if we could....I just want to get this problem I'm having fixed asap, so I can continue working on my project. If you will kindly continue to help me, I naturally would appreciate it.
    The download page for Apache has been fixed, and I downloaded the commons.io package, the latest. I added the .jar to the appropriate directories, and to my classpath. I must be missing something. I compiled a program and the compilation error says "cannot resolve symbol" on FileFilterUtils. What am I missing or not 'seeing'?

  • Import CSV file Skype for Mac

    Cannot seem to import contacts.  It is well hidden if it is possible, if not, it is a ridiculous omission.
    Dear Skype;
    Please add the feature of importing contacts from a CSV file, or better yet from a google account.

    There is no way to import contacts directly into Skype for Mac from a CSV file. However, you can import contacts (with email and phone information) into Contacts.app. These system contacts can then be viewed in Skype using the Mac Contacts feature. See Preferences > General > Show Mac Contacts.
    Part of the reason that it's not currently possible to import contacts in this way is because of the hadshake required: you must send a contact request to each contact you wish to add to your list. This includes a message explaining who you are, and why they should add you. Most people won't be able to receive a call or IM from you until they've accepted your contact request.
    One last thing: your contact list is stored in the cloud. So when you log into Skype for Mac, you'll see your list of contacts just as it was on your Android device (for example).

  • How to increase max file size for uploading

    hi i have a form that uploads a file and save it in a database..my problem is when it exceeds 2MB it doesnt save in my database. the page doesnt show any error also.
    i use multipartrequest..here is multipartrequest...
    MultipartRequest multi= new MultipartRequest(request,"/var/www/myuploads/",1000*1024, new com.oreilly.servlet.multipart.DefaultFileRenamePolicy());my application server in tomcat, and my database in mysql..
    do i need to set something in tomcat to increase the file size that i can upload?
    i need help asap..thanks in advance.

    tyr to split ur file into separated files
    and then upload them,
    it is preferable not to upload a big sized file

  • Error in when No file selected For Upload Form

    Is there a way to create an upload form that when no file is
    selected to be uploaded will not return an error message even if
    the submit button is clicked?
    Thanks,
    Craig

    h2ojefe wrote:
    > Sorry for the confusion. I guess the best way for me to
    describe it, is this.
    > The customer using the website decides on certain
    critieria whom he would like
    > to send a picture
    Send a picture where, by email, to the server?
    > by first conducting a query of about 20 names (each with
    a
    > unique ID) in a database. The names of the people
    meeting the sql select
    > statement are then populated in a table, where one row
    is the name, the second
    > row is the gender, and the third row is his/her own
    unique upload form that
    > will go into her/his own directory.
    If you upload the images to the same directory you can insert
    the name
    of the image into the database and use the same path for all
    images.
    Sorry, I'm really not understanding you here at all, I'm just
    not
    getting it, which may well be my fault.
    >
    > I would like each upload form to be a named derived from
    the unique ID of the
    > 20 names,
    You could set the name to the value of the ID column in your
    database.
    >including the unique upload directory. Does that make any
    more sense?
    > Let me know because I am soooooo close and you have been
    a big help so far.
    Still not sure why you need a unique upload directory, whats
    that for?
    Cheers jojo
    Adobe Community Expert for Dreamweaver 8
    http://www.webade.co.uk
    http://www.ukcsstraining.co.uk/
    Extending Knowledge, Daily.
    http://www.communityMX.com/
    Free 10 day trial
    http://www.communitymx.com/joincmx.cfm

Maybe you are looking for

  • Windows Vista/iTunes will not recognize 3GS

    I've never had this problem before, my iPhone/Laptop has been working fine for the few years that I've had it. Not only will the iPhone not show up on iTunes, but it's not even showing up on My Computer. I've attempted almost every troubleshooting me

  • Adope Acrobat 9 Standard - Form text field expand

    I have created a form with fili-in text fields.   Some of the fields as they are being completed may require the text field to expand.   In Acrobat 9 standard is it possible to have the text field in a form expand?  Any help wpuld be greatly apprecia

  • Music wont transfer to Nano -- error message

    My songs will not transfer to my nano. I keep getting this message: itunes.exe--corrupt file. \ipod_control\itunes\itunesprefs is corrupt and unreasable. please run chkdsk utility. any ideas on how to fix? thanks.

  • Issue in processing the Credit Memo Request

    Hi Experts, I have a price difference credit memo request created (Order Type PR10). While processing it through VF01, it is getting updated rate (for updated materials) hence total value is exceeding the value of credit memo request. How can I proce

  • One problem with constraints missing in source and target database....

    DB Gurus, In my database I am going to export and import data using datapump but dont specify CONTENT clause. so when I start working on my application, I came to know there are some constraints are missing. now how to check what are the constraints