Automatic conversion of Preq into PO

Hi All,
Instead of having an MRP planner checking each p.req and to convert them manually in a PO, is there any possibility to an automatic process where, based on the vendor lead time, the p.req is automatically converted in a PO, released and sent to the Vendor?
Thanks,
Seshadri

Hi
There is a process of automatic PO generation against the PR.
Following pre-requisites need to be ensured for this functionality to run successfully:
1. Mark Auto PO checkbox in material master
2. Mark auto PO checkbox in vendor master
3. Maintain info records or scheduling agreements
4. Maintain source list with fix vendor indicator & MRP relevant indicator.
Schedule a background job for program RM06BB30 (Transaction ME59N) to run after the MRP run.
I would suggest not to set-up the release startegy for MRP generated PR & PO thereof.
Set-up an output type in PO with transmission medium 5 (External Send).
I hope this helps you.
Regards
Prasad

Similar Messages

  • I have taken off/turned off iCloud on my mac mini but when I write an email   and use contacts it will convert a non iCloud email to and iCloud email automatically.  I really don't want this. Any way to stop this automatic conversion?

    I have taken off/turned off iCloud on my mac mini (OS 10.8) but when I send an email and use contacts , it will convert the non - iCloud email to an iCloud email automatically.  Anyway to stop this automatic conversation?    

    Robert...
    the iCloud webserver wont accept my password for a .mac login, nor will it allow me to change it
    See if you can change your password >  Apple - My Apple ID
    If that doesn't help, launch iTunes on your computer.
    From the iTunes menu bar click iTunes / Preferences then select the Advanced tab.
    Click: Reset warnings and Reset cache
    Click OK.
    Restart your computer.
    If that that doesn't help...
    Moreover, when I try to go into my .mac account on the web,
    Delete all apple cookies and empty your browser cache.
    See if  you can access your account at iCloud.com

  • Automatic conversion of planned orders

    Hi PP Gurus,
    I have a requirement to convert planned orders to production orders automatically. I believe SAP standard does not offer this functionality.
    The possible solution seems to be writing new program which could be a copy of C041 transaction code.
    Did someone ever worked on this functionality?
    Request to share your experience and possibilities on this - Thanks
    Regards
    Seshu

    Dear Seshu,
    In my understanding there is no T Code for making the conversion of planned order into a production order as an automatic
    process.
    But you can use the T code CO41 for converting a list of planned order's into production orders.
    In many cases the planned order is only a proposal and only after converting it into a production order and releasing it then the
    exact shop floor activities starts like Good's issue.This activity is done by a production scheduler.So in case if you develop a
    program to convert automatically,then reservation gets generated for all the production orders, which is not recommended.
    Also check this link,
    http://www.sap-img.com/production/automatic-conversion-to-production-orders.htm
    Check and revert back.
    Regards
    Mangalraj.S
    Edited by: Mangalraj.S on Aug 11, 2009 10:04 PM

  • Automatically import a CD into iTunes

    Hi, How can I automatically import a CD into iTunes with all versions: AAC, AIFF, Apple Lossless, MP3 and WAV without needing to import them one format at a time? Thank you, Gabor Fulop

    Thanks for the additional info.  When you say that "The format that these machine need is either MP3, WAV or AIFF" do you mean that they can work with any these formats, or that each has a different requirement - one needs MP3, one WAV, one AIFF, etc?  In the first case I'd just choose the best compromise between quality and portability (which would probably be 320kbps MP3) and use that.
    In the other case, the best you're going to be able to do in iTunes would seem to be:
    Import the CD to iTunes using WAV (this gives you a "master" lossless copy)
    Change the import settings in iTunes to AIFF
    Select the imported songs, right-click and select Create AIFF version
    Change the import settings again in iTunes to MP3
    Select the imported songs again, right-click and select Create MP3 version
    This is still pretty clumsy as you'll end up with three copies (one WAV, one AIFF, one MP3) in your iTunes library - which doesn't, without using right-click > Get Info, allow you to see which copy is in which format.
    I suspect that your needs are probably better addressed using other tools - based on what I'm familiar with (and I'm not claiming these to be the best available), I would:
    use EAC to extract audio data to WAVs - this gives you the WAV version for your backing music
    use Foobar2000 to associate metadata (artist, title, album, etc.) with the extracted data
    use Foobar2000's conversion capabilities (it has plugins or extensions for just about every audio encoding out there, both lossless and lossy) to create AIFF and MP3 versions  - this gives you the AIFF and MP3 versions for your backing music
    import the MP3 versions alone into iTunes (assuming that you want to use iTunes as a media player and to sync content to iDevices) - I've said MP3 here rather than AAC since unless you're using high-end equipment (which, as a musician, I appreciate you might be!) the nominal quality benefits of AAC over MP3 are marginal at best

  • In Pages 5, Maverick, How do I stop automatic conversation of URLs to hyperlinks and seeing them underlined

    There used to be a preference setting in Pages.  Now it seems gone in Pages 5.   So how do I stop automatic conversation of URLs to hyperlinks and seeing them underlined in text.  Sometimes I want it, but not always.

    The preference setting to turn off links is gone. When you enter content that triggers link detection, a link character style gets applied. Right-click on the link, choose Edit Link from the menu, and then Remove.
    To prevent Pages from automatically detecting links, visit Edit > Substitutions > and deselect Smart Links.

  • Direct Conversion of smartform into PDF system has to take spool request ?

    does anybody know:
    Direct Conversion of smartform into PDF, system has to take spool request dynamically..
    i don't mean to use the SE38 calling PRG RSTXPDFT4 to transfer SAP sript into PDF.
    thanks
    SRIDHAR

    --strike Yes this is what I understood.
    In the structure job_output_info of your function you'll find your OTF data :
    st_ssfcrescl-otfdata --
      CALL FUNCTION smartform_fonction_name
            EXPORTING
    *     ARCHIVE_INDEX              =
    *     ARCHIVE_INDEX_TAB          =
    *     ARCHIVE_PARAMETERS         =
          control_parameters         = st_ssfctrlop
    *     MAIL_APPL_OBJ              =
    *     MAIL_RECIPIENT             =
    *     MAIL_SENDER                =
          output_options             = st_ssfcompop
          user_settings              = ' '
        IMPORTING
         document_output_info        = st_ssfcrespd
         job_output_info             = st_ssfcrescl " This is the one which contains OTF data
         job_output_options          = st_ssfcresop
        TABLES
       EXCEPTIONS
         formatting_error           = 1
         internal_error             = 2
         send_error                 = 3
         user_canceled              = 4
         OTHERS                     = 5.
    -- Then you just have to convert, using something like that : --
    * Convert OTF to PDF
      LOOP AT otf_data INTO w_otf.
        CONCATENATE w_otf-tdprintcom w_otf-tdprintpar
        INTO w_pdf.
        APPEND w_pdf TO i_content_txt.
      ENDLOOP.
      CALL FUNCTION 'SX_OBJECT_CONVERT_OTF_PDF'
        EXPORTING
          format_src      = 'OTF'
          format_dst      = 'PDF'
        CHANGING
          transfer_bin    = w_transfer_bin
          content_txt     = i_content_txt
          content_bin     = i_content_bin
          objhead         = i_objhead
          len             = v_len_in
        EXCEPTIONS
          err_conv_failed = 1
          OTHERS          = 2.
      v_size = v_len_in.
      pdf_itab_size = v_size.
      it_pdfout[] = it_pdf[].
    * Create the PDF File
      CLEAR it_pdfdata.
      REFRESH it_pdfdata.
    *  it_pdfdata[] = it_pdfout[].
      LOOP AT it_pdfout.
        MOVE it_pdfout-tline TO it_pdfdata-line.
        APPEND it_pdfdata.
        CLEAR it_pdfdata.
      ENDLOOP.
    -- The smartform creation and the PDF creation are done in the same time...--
    OK, So what do'nt you want to use the RSTXPDFT4 program ?
    Hope this helps,
    Erwan
    Edited by: Erwan LE BRUN on Aug 28, 2008 12:02 PM
    Edited by: Erwan LE BRUN on Aug 28, 2008 12:03 PM

  • Automatic conversion

    Hi,
    I would like to now if SAP KM can handle automatic conversion to a neutral documents formats (like PDF).
    TREX converts all the documents to HTML but this result is not available as a document in the portal (only when you use the HTML version link in the search results). I would like this result (HTML, PDF or some other format) as a new document...
    Who can help me out here?
    Thanks!

    Hello Simon,
    as far as I know, there's no mechanism in KM to convert documents automatically.
    But there is a business package called "Business Package for Web Editing"
    (find it <a href="https://www.sdn.sap.com/irj/sdn/developerareas/contentportfolio">here</a> by searching for 'web editing').
    This package contains a KM Service that convertes office documents to HTML-Files automatically using the "save as html"-functionality of MS Office. The result is quite excellent.
    Unfortunately this package is developed by SAP Consulting and they charge a fee for it.
    Please reward points, if this helped to solve your problem,
    Carsten

  • Conversion of FG into Scrap

    Dear All,
    Conversion of FG into Scrap.
    one step process (mvt. type 309)
    Accounting entry   
    scrap inventory a/c dr
    gain /loss on scrapping a/c dr.
    To, FG inventory a/c cr.
    two step process
    scrapping through 551 movt type -
    gain/loss on scrapping a/c dr.
    To, FG inventory a/c cr.
    generating scrap 902 movt. type  (customized) -
    scrap inventory a/c dr
    to gain/loss on scrapping cr.
    my question is our client is following two step proces is it correct. moreover gl getting hit is price difference instead of loss on scrapping. what is the correct scenario and which movement type should be involved.
    Regards,
    Divraj

    Hi Divraj,
    We follow the first step and i personally feel that this is the best method of scrapping of Finish Good.
    As the difference between the cost of FG and Scrap is going in Gain and Loss Account. IT IS NOT A PRICE DIFFERENCE.
    Regards,
    Shayam

  • Automatic conversions...A Bug? or just a feature(How to turn it off?)

    I Using TS 3.0(.0.12373) I seem to have stubbled over a annoying 'feature' which I can't turn off...Any one got ant ideas.......
    Every sequence file I load(eg from the \examples\) when When loaded the '*' appears next to the file name indicating a change has happend. When closing the file TS asked "......file modified due to automatic conversions TestStand performed when loading file".
    The only change that happened to the .seq file is a change to the Path, timestamps, and Version(From 3.0.0.12373 in the original to 3.0.0.12374 in the Updated one) at certain points in the file (found using a examine differences program ExamDiff.exe) examples below.
    Any ideas how this feature is switched on,
    and more importantly how to switch it off?
    Cheers
    Attachments:
    rtebeep.seq ‏18 KB
    rtebeep_new.seq ‏18 KB

    Wojtek -
    It appears that somehow you have edited an NI type and incremented the version number. Your debug work was correct, so looking at the sequence file you will notice that the following sections have a changed version number:
    [Action]
    %VERSION = "3.0.0.12374"
    [Error]
    %VERSION = "3.0.0.12374"
    Basically TestStand assumes that the newly edited NI type superceeds the one the TestStand finds in the sequence file. For most NI types, the default copy is stored in the type palette files and these probably have the 3.0.0.12374 version. Depending on which NI type was edited, a copy of the newly edited type might also be in the INI files that TestStand uses in the Cfg directory.
    In TestStand 2.x if a user attempted to
    edit an NI type instead of creating your own copy of the type, the sequence editor would warn them and suggest not editing the NI type. In TestStand 3.0, we wanted to be more strict and not allow editing of NI types at all, but the code did not work properly when released and instead it allows anyone to edit NI types without a warning. TestStand 3.1 now propertly prevents the editing of NI types.
    What I recommend is to search all INI files under TestStand and all your sequence files for the '%VERSION = "3.0.0.12374"' text and hand edit them to replace this text with '%VERSION = "3.0.0.12373"'. This should address the issue for you.
    If you have sent sequence files to others, and you do not want them to see the automatic conversion issue, their files should also be hand edited. Sorry for the inconvenience.
    Sincerely,
    Scott Richardson (NI)
    Scott Richardson
    National Instruments

  • Wondering if allowing my creative cloud single app membership to renew automatically will lock me into another 1 year term. Please advise. Thank you in advance!

    Wondering if allowing my creative cloud single app membership to renew automatically will lock me into another 1 year term. Please advise. Thank you in advance!

    subscription terms http://www.adobe.com/misc/subscription_terms.html
    or
    This is an open forum, not Adobe support... you need Adobe support to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • I have iPhoto 11, and whenever I upload photos, it does not automatically split the photos into events.

    This causes my photos to not show up in my events. I have to click "Show Event" myself. How do I set it to automatically put the photos into events? Also, once I DO get the pictures into events, then appear at the top, so I have to drag it all the way to the bottom of the events. How do I also set it to put the newest events at the bottom? Sorry if this is confusing....

    All photo imported into iPhoto automatically go into a new event.  If the photos are coming from a folder on your hard drive or other drive the Event name will be then same as the folder name.  Otherwise the event will be titled Untitled Event.
    The location of the new event within the other events will be determined by the EXIF dates of the photos being imported and how you have event sorting setup in iPhoto (View ➙ Sort Photos menu option).
    OT

  • IPhoto '11 (9.1.3) moves duplicated photo AND original automatically when copy/paste into another event

    I recently "upgraded" from 9.1.1 to 9.1.3 on OS X 10.6.8.  I prefer an older version of iPhoto.
    The main reason I "upgraded" was because I wanted to try to fix the issue that I have whenever syncing my iphone, which is that my iPhone would not use the "Make Key Photo" image that I selected in iPhoto as my main picture when scrolling through my albums/events in my iphone.
    Since this upgrade, I'm having an issue whenever I duplicate an image in iPhoto and cut the image and paste the image into another event, the duplicated image will paste AND the original automatically transfers/pastes itself into the event.  When I go back to the original event that I duplicated the image in, I notice that the original image is no longer there because it is now in the event that I cut and pasted the duplicate in. 
    I was trying to fix the key photo being my real key photo versus when my iPhone is synced it makes the first image in the event the key photo, but now I would like to also fix the original photo from automatically moving itself with the duplicated cut/paste photo issue. 
    How can this be resolved?

    This post by Terence Devlin is an excellent treatise on organizing photos with iPhoto: Better way to organize my images?: Apple Support Communities
    It's bound to give you good ideas on applying the concepts discussed to your own needs.
    OT

  • What is the formula for automatically entering todays date into Numbers.  In Quattro, it was '@today', but I cannot find it in numbers.  Thx

    What is the formula to automatically enter 'current date' into spreadsheet?  In Quattro, it was '@today', but I cannot find it in the Numbers spreadsheet.  Thx

    201,
    Do you want it to update or always show the date when entered?
    For updates, use the TODAY() function.
    For a static date, use Insert > Date and Time.
    Regards,
    Jerry

  • Several apps open automatically when I log into my new Air. How do I stop this from happening?

    Several apps open automatically when I log into my new Air. How do I stop this from happening?

    if "shldr2thewheel"s tip dosent help, you cant try to:
    disable the startup-items at the user & groups panel within the system preferences

  • How can I download a song without automatically launching/putting it into iTunes?

    How can I download a song without automatically launching/putting it into iTunes? I download my royalty-free music from VideoBlocks and it automatically launches iTunes and plays the song in iTunes. I just want to save it to a location without going through iTunes. How do I do so?

    Open your web browser's preferences and set it not to automatically open safe files. If you're using Safari, this option is in the General tab.
    (83800)

Maybe you are looking for

  • Noise on screen with mini DisplayPort to DVI adapter

    I want to connect my MBP 15" mid'09 to the Samsung S27B970D monitor using mini DisplayPort to dual-link DVI adapter. I'm using Club3D CAC-1151 adapter for this, which looks like it was made by BizLink Technology. There is an issue with this connectio

  • Can't get F7 external monitor switch to work on 3000 N100

    I am trying to connect an external monitor to my Lenovo 3000 N100 but I can't get Fn-F7 to switch monitors. It does nothing at all. Can anyone help me? Running XP SP3.

  • No widgets in Yosemite notification center

    I can only view the weather in the notification center.  The only other widget that can be enabled is Social.  I had stocks, calendar, and the calculator all working with Public Beta 6.  Does anyone else have this issue or know how to fix it?

  • Video preview during capture CS3

    Video preview during capture is not working even though settings are at preview video and audio during capture. The work around seems to be to go ahead record anyway (red button) then it works after I paste the captured audio onto the timeline. When

  • Read tables from different schemas in oracle

    Hi, I'm trying to write a code to run a query to get data from an Oracle server, the problem is that the query refers to multiple tables in multiple schemas... the regular way to do it in oracle (SCHEMANAME.TABLENAME) does not work in excel vba query