Set up attachments for Purchasing docs

HI everyone
I am working on SSP and most of the configurations are done. however i need to set up attachments for shopping cart & PO. Could anybody tell me what are the steps of configurations i need to follow.Any help would be appreciated.
Awaiting your replies.
Naveen

Hi,
  You have to do the foll to set up attachments for SC :
1>activate the BADI in SRM
BBP_CREATE_REQ_BACK with method FILL_REQ_INTERFACE
2>do the settings in DC10 and DC30
DC10 - create a Document type for SRM
DC30 - Maintain all relevant extensions ,
In DC30 for the required file type do the settings e.g.
WS appln =XLS
Description= MS excel
Archieve Idn=*
File suffix=xls
file format=*.xls
Mime type=application/msexcel
appl icon=(select sxcel icon)
BR,
Disha.
PLs reward points for helpful answers

Similar Messages

  • Standard/Custom program to set deletion flag for Purchase Requistions

    Hi all,
    If any of you know the Standard/Custom program to set deletion flag for purchase requistions, please let me know. It would be of great help.
    Thanks in advance,
    Karthik

    Hello
    Bapi BAPI_REQUISITION_DELETE will help you.

  • PS - Set Commitment only for Purchase order

    Hi experts,
    I would like to know if its possible set in the Customizing, the  Commitment just for Purchase Order.
    Because, currently we have fixed Purchase Requisition and Purchase Order.
    Thanks in advance.
    Nacho

    Hi,
    SAP Note:955107 addresses this problem. You may refer the note, but for easy reference, relevant portios of the note are quoted below:
    Quote begins:
    Symptom
    The purchase requisition commitment should not be taken into account in the availability control.
    How can this be achieved?
    Reason and Prerequisites
    This is a customer request.
    It should be possible to enter purchase requisitions with any amount and only the resulting purchase orders should be checked by an availability control.
    Solution
    For Releases 4.6C, 4.70, 5.00 and 6.00 first implement the corrections from Note 955106 if you have not already done this.
    Afterwards proceed as follows.
    1. Create a utility program ZBPFCI21 of the 'Subroutine Pool' type. For the source code of the program refer to the attached correction instruction 488705.
                  Caution: Do not use a different name than ZBPFCI21.
    2. Adjust the source code within the utility program ZBPFCI21 as follows:
                  When the residual order plan should not be included in the assigned value of the availability control, activate the line
                           CLEAR cd_flag_pr_commitment_avac.
                  (That is, delete the sign '*' in front of the line.)
    3. Save and activate the ZBPFCI21 utility program.
    4. Reconstruct the assigned values of the availability control (Transactions KO31 for orders or CJBN for projects).
    Quote ends.
    Kindly acknowledge, if it meets your requirement.
    Muraleedharan.R

  • Storing Attachments for Purchasing Documents

    Standard SAP functionality for purchasing document attachments stores the files on the SAP Database (for both SRM and ECC).
    /cisap/edoc/<SYSID>/<filename>
    SAP does not appear to provide a straight forward way to configure a different storage location on a file server. Post go live, and before space runs out in the database, a new approach will have to be implemented for the physical storage location of purchasing document attachments.
    MY Client would prefer to store these attachments on a file server.
    Please suggest me how to do it,
    Thanks & Regards
    Sada

    Cancelled.

  • How to set print form for Purchase order in SPRO txn.

    Hi,
         I need to find out the name of the smartform used to print purchase order.
    Cheers
    Senthil

    HI,
    go to SPRO - MM - Purchasing - Messages - Output Control - Message Types - Define Message Types for Purchase Order
    select the message tyoe and then click on processing routines and you will get the form name..
    Thanks & Regards,
    Kiran

  • IPod Touch Set Up - Password for Purchases?

    I just bought my daughter an iPod Touch. How can I set up her iPod so that it connects to my iTunes account, but make it so that she cannot make purchases on her own?

    Restrictions are covered in the manual:
    iPod touch User Guide (For iOS 5.0 Software)

  • How to set partial delivery for Purchase Order line item

    Hi Team
    We have created a PO for 100 quantity along with 25% over delivery tolerance.  We have done 5 GRNs totaling for 95 quantity.  when we try to do another 10 quantity, system not accepting the GRN.
    I want to set the partial delivery for this line item.  Please help how to do this.
    regards
    Ravi

    where did you check the underdelivery tolerance of 0?
    the PO is the place to check, changes in material master will notz effect existing POs.
    if you removed the delivery complete indicator and the item still does not show up in MIGO, then set the "propose all items in MIGO settings"
    if it still does not show up, then you might have other restrictions like confirmations , last goods receipt etc.
    the error 'Document does not contain any selectable item" is often discussed in this forum, you will find numerous threads that list what you have to check.

  • Restrict GOS attachments in IW32 for specific doc type

    My requirement is we would like to restrict the Services for object
    attachments for specific doc type in IW32 transaction.
    Can blocking be made on doc type level?
    In this case jpg, bmp, and gif should be allowed, but blocking dwg, doc, xls, pdf etc.
    Didn't find any option in SGOS transaction or SGOSATTR table.
    Any suggestions are welcome..

    PARAMETERS: p_key TYPE swo_typeid OBLIGATORY,
    p_type TYPE swo_objtyp OBLIGATORY,
    p_file TYPE c LENGTH 100 OBLIGATORY,
    p_desc TYPE so_obj_des OBLIGATORY.
    data wa_kan1 type kna1.
    DATA: ls_fol_id TYPE soodk,
    ls_obj_id TYPE soodk,
    ls_obj_data TYPE sood1,
    ls_folmem_k TYPE sofmk,
    ls_note TYPE borident,
    ls_object TYPE borident,
    lv_ep_note TYPE borident-objkey,
    lv_offset TYPE i.
    DATA: it_objhead TYPE STANDARD TABLE OF soli,
    it_content LIKE STANDARD TABLE OF soli,
    wa_content LIKE soli.
    ls_object-objkey = p_key.
    ls_object-objtype = p_type.
    **if objtype = kna1 then 
    HERE I CHEK CUSTOMER NO U PUT YOUR OBJ ID AND USING SELECT QUERY U CAN CHECK DOC.TYPE
    select *from kna1 into wa_kna1
    where kunnr = p_key
    if sy-subrc <> 0.
    exit.
    endif.
    TRY.
    OPEN DATASET p_file FOR INPUT IN BINARY MODE.
    WHILE sy-subrc = 0.
    READ DATASET p_file INTO wa_content.
    APPEND wa_content TO it_content.
    ENDWHILE.
    CLOSE DATASET p_file.
    CATCH cx_sy_file_access_error.
    MESSAGE 'Error reading file' TYPE 'E'.
    ENDTRY.
    CALL FUNCTION 'SO_CONVERT_CONTENTS_BIN'
    EXPORTING
    it_contents_bin = it_content[]
    IMPORTING
    et_contents_bin = it_content[].
    Edited by: kk.adhvaryu on Mar 9, 2010 10:54 AM

  • Table for parked and posted vendor bills for purchase order.

    Gurus
    In which table purchase order histroy data is stored? Is there any standard report for viewing following
    po no,PO date,line item no.,material code,ordered quantity,GRN date,GRN qty,GRN amount,parked qty,parked amount,posted qty, posted amount.
    Atul Kulkarni.

    Hi,
    PO history could be seen from table EKBe.
    Rest of the details can be seen in EKKO (header table for purchasing document) and EKKO (line item for purchasing doc).
    Regards,
    Ashwini.

  • Set Tolerance Limits for Price Variance when PO-based Purch.Requisition

    We must garanty that Price from Purch.Requisition will be the same at PO.
    IF some variance occur a error messag must be sent to user and PO could not be saved.
    I found at customzing under SPRO > Materials Management > Purchasing > Purch.requisition > Set Tolerance Limits for Price Variance .
    Reading the help of customizing it mean the system consists what we need..
    I have created tolerance limit NB, and set limits for all checks as 0,01.
    When I will activate messages as recommended on help no messages 601 and 602 have the text that guide us to correctly setting.
    The help mention that after create tolerance limit we must set this tolerance by document type..but I didn’t find this field at customzing
    Does anyone can help me ?
    See the help on customizing below…
    Set Tolerance Limits for Price Variance
    In this step, you can define percentage-based and value-based (absolute) tolerance limits for price variances between purchase orders and purchase requisitions. Variance types are mapped out in the SAP system by tolerance keys.
    You define the tolerance limits for each tolerance key and assign your tolerance key to the document types for purchase requisitions. The tolerance limit then applies for all documents of this document type.
    When processing a purchase order, the system checks whether the unit price of a purchase order item differs from the unit price of a purchase requisition item. If you have configured, activated and defined tolerance limits in document types, variances are permitted in the tolerance limits. If the variance exceeds the tolerance limit, the system issues a warning. If you have defined a percentage-based and a value-based absolute tolerance limit, the strictest of the two variances will apply for this check.
    Note
    You can determine whether the system messages (601 and 602) appear as warnings or error messages in step "Define Attributes of System Messages".
    To do this, go to the Materials Management IMG and choose Purchasing -> Environment Data -> Define Attributes of System Messages.
    Requirements
    The tolerance key must be defined in step Define Tolerance Key.
    Activities
    1. Define tolerance limits for each tolerance key.
    2. Define the tolerance key in step Define Document Types.
    Thx  and best regards,
    Ale

    HI
    SET   TOLERANCE  LIMITS  FOR PURCHASE  REQUISITION  UNDER THE  DEFINE  DOCUMENTS   FOR PR
    AFTER  SETTING  TOLERANCE  LIMITS  WHILE  CREATING  PURCHASE  U  WILL   GET  BASED ON  TOLERANCE  LIMITS  THERE   FOUR   WAYS  TO  SET  TOLERANCE  LITS 
    1
    ABSOLUTE VALUE
    2
    PERCANTAGE
    3
    TOTAL  PO  VALUE
    4
    QUANITY  BASED  PRICE  PER  UNIT
    OK  BYE

  • HOT TO SET THE OUT PUT MESSAGE FOR PURCHASE ORDER

    As i was saving the Purchase order in Me21n the error message that came up was " NO OUTPUT MESSAGE SET FOR THE PO " HOW  DO I SET THE OUTPUT MESSAGE AND SET THE PO PRINT SETTING KINDLY HELP.

    Hi
    First of all Execute  program RSNAST0F in SA38 .
    Following are some steps for PO message printing
    Maintain Output of Purchase Order
    1. Condition Table
    SPRO &#61664; Material Management-> Purchasing -> Message -> Output Control->Condition Tables->Define Condition Table for Purchase Order
    Select:
    Purchasing Doc. Type,
    Purch. Organization,
    Vendor
    2. Access Sequences
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Access Sequences->Define Condition Table for Purchase Order
    3. Message Type
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Types->Define Message Type for Purchase Order
    Ex:
    EF---> ZNEU
    Select “ZNEU” and double click on “Mail title and texts” and go to
    EN- New Purchase Order Print Out,
    Select “ZNEU” again and double click on “Processing routines,
    Select “ZNEU” again and double click on “Partner Roles
    4. Message Determination Schemas
    4.1. Message Determination Schemas
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Schema->Define Message Schema for Purchase Order-> Maintain Message Determination Schema
    4.2. Assign Schema to Purchase Order
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Schema->Define Message Schema for Purchase Order-> Assign Schema to Purchase Order
    5. Partner Roles per Message Type
    SPRO -> Material Management-> Purchasing -> Message -> Output Control-> Partner Roles per Message Type ->Define Partner Role for Purchase Order
    6. Condition Record
    Navigation Path: SAP Menu-> Logistics -> Material Management -> Purchasing-> Master data->Messages-> Purchase Order-> MN04-> Create
    ZNEU -> ZNB
    Now you create PO(ME21N) and maintain the text and save it. Go to ME22N and print the PO by giving output type ZNEU).
    Vishal...

  • HT5731 I purchased doc mcstuffins on the iPad. Downloaded several times which takes at least a day to do. Still unable to view episodes. Akers for a frustrated mommy & 3yr old. Did I just waste $30????

    I purchased doc mcstuffins on the iPad. Downloaded several times which takes at least a day to do. Still unable to view episodes. Akers for a frustrated mommy &amp; 3yr old. Did I just waste $30????

    El3ees wrote:
    I will be taking my laptop in on monday morning again and im assuming i will be waiting for another 4 weeks maybe more.
    Don't take your laptop back. Find out the number for Apple Care in your part of the world and call them. Tell your story to them. If the person on the phone can't help you, ask for their supervisor. Keep asking for supervisors until you get exactly what you want to get. If that mean you want to get the problem fixed without having the computer gone for four weeks, then keep asking for supervisors till you get someone who can do that for you.
    Be prepared to be on the phone for a while, so arrange a speaker phone, water to hand etc. Be patient.
    As for "crappy computers"--my MBA has worked flawlessly since the day I got it. As good if not better than any Apple laptop I've ever had, and I've had several.This is the thing though, there is a percentage of failure rate that occurs in electronics. It occurs whether we're talking about televison sets or toasters. If it's electric, it has that failure rate. Now sometimes a thing will be bad and in that case the word gets out and everyone knows that particular electronic has surpassed the normal failure percentage. The Airs, however, have not done that. Their reputation, so far, has been incredibly solid and good. So you can assume that you, unfortunately, got one out of that small percentage of electronics that have an issue.
    Laptops, let us remember, are doing a lot in a very small area. A lot can go wrong, and it's pretty amazing how many don't, especially given how many are made and sold. Sometimes we get the bad apple in the barrel, it doesn' t mean that the company making it has gone down hill. We hope the manager of the store, or the company, or someone will do right by us. If they don't, then we need to make sure they do. Keep asking for upper management till you get what you want.

  • HT204053 What's the best way to set up a family of devices in order to use one apple id for purchases on itunes and the app store?

    we are trying to face time between devices, but it won't work whn multiple devices are tied to one apple id.
    How do you designate one id to pay for purchases and one so that we can facetime from device to device?

    The ID used for purchasing is in Settings>Store.  This ID does not need to be the same one used for other services such as FaceTime, iMessage, etc. (in fact you're far better off if you use separate Apple IDs for these other services).  To change the ID used for iMessage, go to Settings>Messages>Receive At, tap the ID at the top, sign out, then sign back in using a separate (and unique) ID.  You can similarly change the ID used for FaceTime in Settings>FaceTime.  To sycn data with iCloud such as calendars, contacts, etc., without merging your data across devices, set up different iCloud account with different Apple IDs for each device.  You can go to Settings>iCloud and turn off syncing for your data, and when prompted, choose to keep the data on the device.  Then scroll to the bottom and tap Delete Account.  Then set up a new iCloud account using a different Apple ID for each device and turn data syncing back on in Settings>iCloud.
    This article may be of interest: http://www.macstories.net/stories/ios-5-icloud-tips-sharing-an-apple-id-with-you r-family/.

  • HT204053 I have one apple ID for purchases and then my mobile me ID where I use for email.  So I have set my cloud with my mobile me name, while keeping my purchases the original name.  Will my purchases be recognized as purchases when backup is finished.

    I have one apple ID for purchases and then my mobile me ID where I use for email.  So I have set my cloud with my mobile me name, while keeping my purchases the original name.  Will my purchases be recognized as purchases when backup is finished.

    Welcome to the Apple community.
    So long as you are logged into the iTunes Store, using the correct ID and password (settings >store), then you will always have access to your apps, books, music, TV shows etc etc bought via the iTunes Store on that account.

  • Purchased a new Apple TV and the remote double clicks each time I press the button. It worked fine during set up and for the first two days.  I have since moved it and this problem started. Restarted,reset,unplugged,change remotes, no change.Help please.

    Purchased a new Apple TV and the remote double clicks each time I press the button. It worked fine during set up and for the first two days.  I have since moved it and this problem started. Restarted,reset,unplugged,changed remotes, no change. Latest software update. This is really annoying.  iPhone remote app works just fine.  Any suggestions?

    That's one of the weird things.. it recognizes it maybe 10% of the time. And usually, only after I do the two-button reset. Problem is.. since it won't charge above 2%, anytime I try to do a restore or anything like that using iTunes, my device shuts off and I lose whatever progress I'd made.
    So, an update... after reading through a bunch of similar complaints (there are literally 1000's of them so there's NO WAY this isn't somehow ios7 related, thanks a lot APPLE ) I decided to try a restore in recovery mode. After 3 hours and several disconnections... I ended up having to just set it up as a new iPad, as the restore did nothing. Weirdly though... as I was doing the restore in recovery mode.. I noticed I'd gotten up to a 10% charge.. higher than it's been since September, so after setting it up as a new device, I turned it off and plugged it in using the wall charger. 2 hours later and I was up to 38%. Still not great, as my iPad, before ios7 could've fully charged twice in the amount of time it took for me to now get 28% more of a charge. And that's with a fully cleaned out device.. so that really ***** and I'm now more confused than ever.
    But I'm gonna leave it overnight charging and see what I come up with tomorrow. Sadly, when I paid $600 for it in February, I never expected to have to play "wait and see" with it...

Maybe you are looking for

  • Unable to import from Sony Mini DV DCR-HC46

    I'm attempting to import video from a Sony Mini DV camcorder DCR-HC46 using a Sony iLink cable. iMovie seems to recognize that the camera is attached and control it (clicking Import or Play will cause the camera to start playing). However though the

  • How do you reset an apple ID password, when you can't remember (or reset) the password of the linked account?

    Hello! Finally got around to restoring the settings on our old iPhone 4ses, however, in order to do so for my husband's old phone, we need to turn off 'find my iphone'.  The problem is that he cannot remember his apple ID password (and never set up t

  • Why can't I import a legally purchased CD to Itunes 7.5?

    Help Me!!! I recently made the switch from Windows to Mac and all of the sudden I don't have "change privileges" when importing cds to itunes. I've tried all the changes posted so far (eg: Checked the correct error box, checked the MP3 box, etc). Any

  • PSE12 won't open my CR2 files.

    I just reinstalled PSE12 and LR5 and cannot open raw files in PSE12. The error message says my camera is not supported. Im using a Canon 70D, my raw format is CR2, and Elements tells my my Camera Raw plug-in is Version 8.

  • Badi for middleware ERP - CRM

    Hi We are replicating business partners from ERP to CRM, but we do not want to have the id number to be replicated from the ERP. Does anyone know a Badi that can remove the id number before sending the data to CRM? Thanks Claus