Procurement of Diesel from filling station

Hi MM Gurus,
My client gets  Diesel from a filling station as and when required  and pays the Bill at the end of every month. My client is not raising any PO for this. Client is maintaing GRN for every GR. This activity starts after raising a  Purchase requisition by a User Department.
Please guide me how to map this scenario in SAP.

Quote from: ffulkerth on 08-March-05, 10:45:51
I have a program called my telly.
check it out.. you can export to a file, and then dbl click it to import into msipvs.
Thanks.
Do You know where to find it / eventually buy it ?
Regards Asbjorn.

Similar Messages

  • How do the Procurement of materials from projects?

    Hi Friends'
    How do the Procurement of materials from project s, here our Process is:
    Whenever our engineers on site see any shortages he will send a report thro our customized InfoPath request form. Then we decide depending on the material whether to order to USA or Procure locally. Some mechanical parts we procure locally. For this in PR we give reference of WBS element. Purchase department raise PO, we receive material, sent to site And finally we charge USA(parent Company)  for this amount against this project.
    For the items like electronic cards, Critical mechanical parts to be ordered to USA we send the InfoPath form to USA. We get weekly shipments from USA. We create PR and also PO. No action by our purchase dept. The FREE OF CHARGE (FOC) material is received to us. Stores will do MIGO and then we dispatch to Site.
    Friends please suggest how to do this Process through project systems. I need the entire configuration setting that we need to do and the process also, plz friends... I need these settings step by step.
    Regards,
    Hari
    Edited by: Hari  Krishna on Jan 3, 2009 12:39 PM

    suggest attend course PLM220
    If using only WBS then you have to raise PR from MM module and the material demand will not be driven from PS (except Easy Cost Planning)
    If using networks then assign material component to network activity and set the item category as non stock item - this will trigger PR from activity

  • How do I stop Firefox from filling in usernames and passwords when other people use my computer?

    When other people use my computer, how do I stop Firefox from filling in usernames and passwords?

    *Click the (empty) input field on the web page to open the drop down list
    *Highlight an entry in the drop down list
    *Press the Delete key (on Mac: Shift+Delete) to remove it.
    Remove saved Password(s):
    * Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    Password Manager:
    *http://kb.mozillazine.org/Password_Manager

  • About the error: "The account is not authorized to login from this station" when you access NAS devices from Windows 10 Technical Preview (build 9926)

    Scenario:
    With the release of Windows 10 Technical Preview (build 9926), some users may encounter an error message of “The account is not authorized to login from this station” when trying to access remote files saved in NAS storage. In
    addition, the following error log may also be found via Event Viewer:
    Rejected an insecure guest logon.
    This event indicates that the server attempted to log the user on as an unauthenticated guest but was denied by the client. Guest logons do not support standard security features such as signing and encryption. As a result,
    guest logons are vulnerable to man-in-the-middle attacks that can expose sensitive data on the network. Windows disables insecure guest logons by default. Microsoft does not recommend enabling insecure guest logons.
    Background:
    The error message is due to a change we made in Windows 10 Technical Preview (build 9926) which is related to security and remote file access that may affect you.
    Previously, remote file access includes a way of connecting to a file server without a username and password, which was termed as “guest access”.
    With guest access authentication, the user does not need to send a user name or password.
    The security change is intended to address a weakness when using guest access.  While the server may be fine not distinguishing among clients for files (and, you can imagine in the home scenario that it doesn’t
    matter to you which of your family members is looking at the shared folder of pictures from your last vacation), this can actually put you at risk elsewhere.  Without an account and password, the client doesn’t end up with a secure connection to the server. 
    A malicious server can put itself in the middle (also known as the Man-In-The-Middle attack), and trick the client into sending files or accepting malicious data.  This is not necessarily a big concern in your home, but can be an issue when you take your
    laptop to your local coffee shop and someone there is lurking, ready to compromise your automatic connections to a server that you can’t verify.  Or when your child goes back to the dorm at the university. The change we made removes the ability to connect
    to NAS devices with guest access, but the error message which is shown in build 9926 does not clearly explain what happened. We are working on a better experience for the final product which will help people who are in this situation. 
    As a Windows Insider you’re seeing our work in progress; we’re sorry for any inconvenience it may have caused.
    Suggestion:
    You may see some workarounds (eg. making a registry change restores your ability to connect with guest access).
    We do NOT recommend making that change as it leaves you vulnerable to the kinds of attacks this change was meant to protect you from.
    The recommended solution is to add an explicit account and password on your NAS device, and use that for the connections.  It is a one-time inconvenience,
    but the long term benefits are worthwhile.  If you are having trouble configuring your system, send us your feedback via the Feedback App and post your information here so we can document additional affected scenarios.
    Alex Zhao
    TechNet Community Support

    Hi RPMM,
    Homegroup works great in Windows 10 Technical Preview (9926 build), when I invited my Windows 10 Technical Preview (9926 build) joined in HomeGroup, I can access the shares smoothly:
    My shares settings is like this:
    Alex Zhao
    TechNet Community Support

  • Java receive files from different station ??

    Hi,
    I would like that a station can receive files from different stations in the same time.
    For that, I use multi-threading (with different socket TCP). I have just a problem, sometimes files received are empty or contains just the last line of file. I don't know why, I saw all datagrams on the network but at reception sometimes it reads just the end.
    The class to receive file functions when it receives just one file, but when files comes at the same time there are some problem.
    Is there a problem of thread ? (I start a thread but I don't know where stop it) or a problem in my class for receive file:
    For sending a file:
    while((len = fis.read(buffer,0,1024))!= -1)
              os.write(buffer, 0, len);
                   new LogFile().writeLogFileError     
    For receiveing file:
    while((len = is.read(buffer,0,1024))>=0)
    fos.write(buffer, 0, len);
    //when theres a problem, I receive -1 the first time, but I am sure data are sent to this station
    Is someone had same problem ?
    Thank you
    Maryline

    Maryline,
    its probably a better idea to use Stream Sockets, as opposed to datagrams, as the datagrams can be delivered in any order (hence end of file so soon possibly).
    On the Server Station do the following:
    import java.net.*;
    import java.io.*;
    private final int SERVER_PORT = 4567;
    private final int SERVER_BACKLOG = 100
    ServerSocket  server = new ServerSocket( SERVER_PORT, SERVER_BACKLOG );
    while (true) {
      Socket s = server.accept();
      //Start a new thread and pass the Socket s to it.
    }You also need to create ObjectInputStreams and ObjectOutputStreams to read and write the data
    ObjectInputStream input = new ObjectInputStream( s.getInputStream() );
    ObjectOutputStream output = new ObjectOutputStream( s.getOutputStream() );
    output.flush();On the client, you use
    Socket s = new Socket( SERVER_MACHINE_NAME, SERVER_PORT )
    ObjectOutputStream output = new ObjectOutputStream( s.getOutputStream
    output.flush();
    ObjectInputStream input = new ObjectInputStream( s.getInputStream() );
    () );You can then use
    output.writeObject( ANY_SERIALIZABLE_JAVA_OBJECT );to send the object, and
    JAVA_OBJECT_TYPE myObject = (JAVA_OBJECT_TYPE) input.readObject();to recieve the object.
    If its text data, you could read the data into a string field and send it
    I hope this gives you some ideas to hepl towards your solution
    Guy

  • Error reading from base station?

    I installed the airport extreme disk on my Dell pc(hoping to connect with cable modem) & the airport utility claims to have found a base station faa0c9, and IP address 169.254.72.207 (i didn't enter any of this information) but it will not 'continue' claiming error code 6753 an error occured while trying to access the base station make sure your network connection is valid and try again.
    i'm pretty sure my network connection is failed since i'm able to access the internet...
    help!

    I have a similar problem, I have reset everything, haven't tried changing the i.p. on the computer. If I have to do this everytime I listen to music, I think this is going to get returned, because it needs to be set to a particular I.P. to use DSL. Anyway, all I get is amber. I can see the base station in the admin program, but I can't do anything else (error reading from base station). If I turn on Wireless Zero Configuration like it suggests, then I can't see anything at all. If plug in via ethernet cables, I can't see anything at all. I've used a cross-over, a regular cable and used a switch to make sure there isn't cross-over issue but all I get it is flashing amber. Is it possible that the unit is just defective? Should I just return it and burn CD's? Sounds like there are a lot of issues with this, not to mention how I can use this and DSL with the same I.P. Anybody else had problems with ethernet?
    Thanks

  • Secondary domain controller not able to connect from work stations.

    We are using primary and secondary domain controllers. In which the secondary domain controller act as a replication server. actually the problem occurs while accessing the secondary domain controller from work stations I get the following error:
     "The trust relationship between this workstation and the primary domain failed".
    Any one please give as a solution.
    Thank you.

    Hi,
    Most simple resolution would be unjoin/disjoin the computer from the domain and rejoin the computer account back to the domain.
    There might be multiple reasons for this kind of behavior.
    Here are a few of them:
    Single SID has been assigned to multiple computers.
    If the Secure Channel is Broken between Domain controller and workstations
    If there are no SPN or DNS Host Name mentioned in the computer account attributes
    Outdated NIC Drivers.
    According your description, the second one may be the cause of your problem.
    When a Computer account is joined to the domain, Secure Channel password is stored with computer account in domain controller. By default this password will change every 30 days (This is an automatic process, no manual intervention is required).
    Upon starting the computer, Netlogon attempts to discover a DC for the domain in which its machine account exists. After locating the appropriate DC, the machine account password from the workstation is authenticated against the password on the DC.
    If there are problems with system time, DNS configuration or other settings, secure channel’s password between Workstation and DCs may not synchronize with each other.
    A common cause of broken secure channel [machine account password] is that the secure channel password held by the domain member does not match that held by the AD. Often, this is caused by performing a Windows System Restore (or reverting
    to previous backup or snapshot) on the member machine, causing an old (previous) machine account password to be presented to the AD.
    Follow below link which explains typical symptoms when Secure channel broken,
    Typical Symptoms when secure channel is broken
    http://blogs.technet.com/b/asiasupp/archive/2007/01/18/typical-symptoms-when-secure-channel-is-broken.aspx
    For detailed information, please refer to the link below,
    Troubleshooting AD: Trust Relationship between Workstation and Primary Domain failed
    http://social.technet.microsoft.com/wiki/contents/articles/9157.troubleshooting-ad-trust-relationship-between-workstation-and-primary-domain-failed.aspx
    Hope this helps.
    Steven Lee
    TechNet Community Support

  • Airport Express Network won't play music from Base Station and remote spkrs

    Is there any way i can hook up speakers to the base statino and the remote speakers? I am getting a message that says the base station is not configured to play music as part of the group. it says I can play music from base station, but not simultaneously with the living room speakers which i have set up on a repeater airport express.
    Thanks,
    PW

    Well, I can choose multiple speakers, "living room" and "computer," and they play out of both, but it will not play from multiple speakers if I include the base station, which is hooked up to speakers in my office. The base station will only play if I choose it exclusively, and I wondered if there was something i needed to do to configure the base station to enable it to play as well.
    PW

  • How do I remove station icons from "My Stations" in 12.0

    How do I remove station icons from "My Stations" in 12.0
    Spark

    Finally, a useful reply from Eric Ross. Thanks.

  • Can my itouch pick up tv audio from tv stations at the gym?

    Is my itouch able to pick up the tv audio from tv stations at the gym.  They are FM stations?

    No.  They do not hava FM receiver.  Get the iPod Nano

  • Reader Extended PDF,  Enable More Tools (includes from fill-in & Save)-

    Using Adobe Acrobat Pro XI version 11.0.6, I scanned a document to PDF and added a digital signature. I saved the PDF. I then reopened the PDF and saved it with a different name as follows:
    Save As Other…
    Reader Extended PDF
    Enable More Tools (includes from fill-in & Save)…
    When I email the PDF to be signed, the recipient opens the form in Reader XI, but immediately gets this message: "This document enabled extended features in Adobe Reader. The document has been changed since it was created and use of extended features is no longer available. Please contact the author for the original version of this document."
    This document was not changed; it was sent as an email attachment right after it was saved with extended features.
    What is the fix for this?
    I am using Window 7 Professional (64-bit).

    I have done it both ways. If I create a new form from a PDF, it will not allow me to save it directly to extended features. I have to do as you said:  save it, close it, and reopen it to save it as extended. Just adding a digital signature will allow me to save it directly with extended features. I have, however, done it with the save, close, and reopen method as well.
    The weird thing about all of this is that the person setting in the next office, running the same version of everything, has NO issues with this. Maybe it is a Windows setting???

  • Stop safari from filling in search bar as I type evan with search engine suggestions disabled?

    stop safari from filling in search bar as I type evan with search engine suggestions disabled?

    [[Location bar search]] has lots of information on this. If the steps here don't work for you or aren't clear enough, please visit that article.
    1. In the Location bar, type about:config and press EnterReturn.
    * The about:config "This might void your warranty!" warning page may appear. Click I'll be careful, I promise!, to continue to the about:config page.
    2. Search for the preference keyword.enabled.
    3. Double-click the keyword.enabled preference to toggle it between true and false.
    * false disables Internet Keyword searches.
    * true enables Internet Keyword searches.

  • TS5181 If you click on "Never play this song", will this eliminate this song from all stations? Or just that particular station?

    If you click on "Never play this song", will this eliminate this song from all stations? Or just that particular station?

    I am 100% certain. If I wasn't I would have said "I think" or "I'm pretty sure".
    Not only have I tried for myself but it is listed under the "Editing Your Stations" section of the support article (http://support.apple.com/kb/HT5848).
    It is no different than the More Like This option.
    They are all station specific so you can customize. None of these are global options. That is the purpose of having more than one station. What you ban from one station can be featured in another.

  • Using a Macbook Pro with OSX 10.9.2. When I am typing an email, I get 10  copies of it in the trash folder. How can I keep it from filling up my trash folder?

    Using a Macbook Pro and OSX 10.9.2. When I am typing an email, it fills my trash folder with multiple copies of the email before I send it. I can have over 10 copies every time. How can I keep this from happening and filling my trash folder?  I did not have these issues with previous version of OSX.

    writing Email produced in multiples in all mail
    Multi Copies of Drafts To Gmail Server

  • How Do I Stop Time Machine From Filling Up My External Hard Drive?

    Hi all -
    I have a 750GB OWC external hard drive on which I back up about 100GB of data from my MacBook using Time Machine, and also store a bunch of media files for work. Currently about 650GB of that is full, and that is mostly because of two Time Machine-related files: The "Backups.backupdb" folder, which is 135.15GB, and "MacBook_001b63336000.sparsebundle," which is 233.71 GB. That means that in the nine months since I bought the drive, about 370GB, or half its available space, has been eaten by Time Machine backups.
    I only back up so I have a bootable copy of all my current (not past) MacBook data if my MacBook is ever lost, stolen, or damaged. I am now very concerned that, if left unchecked, Time Machine will eat into the remaining 100GB of empty space. And my old external hard drive died precisely because it ran out of empty space. Some of my critical files were lost forever, and others I got back in pieces after several weeks of anguish and quite a bit of cash.
    Apple's support page addresses this concern (incredibly) by instructing me to buy another external hard drive. That solution is expensive for me, and what's the point, when Time Machine will eventually fill that one up too?
    So, my questions are:
    1. Is there any point at which Time Machine recognizes it's nearly out of hard drive space, and either stops backing up, or deletes old backups, or sends me a warning, or something?
    2. If not, is there a way I could designate a maximum size for Time Machine backups to take, such as 150 GB, that it cannot exceed?
    3. Partitioning has been suggested, but I don't know how. Any instructions?
    4. The OWC hard drive came with its own backup software. Should I just use that and shut up?
    It would be mighty ironic if the software I use to save all my data got so fat, it sacrificed all my data....
    Thanks in advance -

    Andrew Saks wrote:
    Hi all -
    I have a 750GB OWC external hard drive on which I back up about 100GB of data from my MacBook using Time Machine, and also store a bunch of media files for work. Currently about 650GB of that is full, and that is mostly because of two Time Machine-related files: The "Backups.backupdb" folder, which is 135.15GB, and "MacBook_001b63336000.sparsebundle," which is 233.71 GB. That means that in the nine months since I bought the drive, about 370GB, or half its available space, has been eaten by Time Machine backups.
    this is pretty confusing. have you been using it for both wireless and wired backups? the sparse bundle would only be created if you've used it for network backups. directly attached TM drives don't use a sparse bundle so it looks like you've got two separate backup lines. you should get rid of one as using both is very space inefficient.
    I only back up so I have a bootable copy of all my current (not past) MacBook data if my MacBook is ever lost, stolen, or damaged.
    FYI, TM backups are not bootable themselves. You can use the "full system restore from TM" utility on the leopard install DVd to restore your system from backups. That restored system will, of course be bootable.
    I am now very concerned that, if left unchecked, Time Machine will eat into the remaining 100GB of empty space. And my old external hard drive died precisely because it ran out of empty space. Some of my critical files were lost forever, and others I got back in pieces after several weeks of anguish and quite a bit of cash.
    Apple's support page addresses this concern (incredibly) by instructing me to buy another external hard drive. That solution is expensive for me, and what's the point, when Time Machine will eventually fill that one up too?
    So, my questions are:
    1. Is there any point at which Time Machine recognizes it's nearly out of hard drive space, and either stops backing up, or deletes old backups, or sends me a warning, or something?
    I'm not sure of the precise point (TM need some free space on the backup drive to operate) but yes, this will eventually happen. when it does, TM will inform you of this and will give you an option of either stopping TM backups and changing the TM drive or starting to delete old backups. If you choose the latter it will start deleting old backups to create space for new ones. this is done automatically.
    2. If not, is there a way I could designate a maximum size for Time Machine backups to take, such as 150 GB, that it cannot exceed?
    not unless you partition the drive.
    3. Partitioning has been suggested, but I don't know how.
    it's an option but not right now. you have too little free space left for a successful partitioning process. If you try, the process is sure to fail due to disk fragmentation.
    You need to get rid of A LOT of data if you want to try partitioning. also, fort the future, it's a very good idea to keep one partition entirely for TM and another for data. You'll avoid some of the problems you are having now.
    Any instructions?
    type "creating new volumes" in disk utility help.
    4. The OWC hard drive came with its own backup software. Should I just use that and shut up?
    don't. besides TM there are much better options out there. CCCloner and Superduper! are better than anything that OWC software has to offer.
    It would be mighty ironic if the software I use to save all my data got so fat, it sacrificed all my data....
    Thanks in advance -

Maybe you are looking for

  • Suggestion for a partially working play

    I have a Zen Micro, and while i can't say its always been the best to use, it has provided me a lot of use. But now I'm having some issues after it fell earlier today. After it fell when i powered it off and on (through battery removable, only way),

  • Serious performance problems after updating from 10.5.6 to 10.5.7

    I've got a Macbook Pro C2D 15" (late 2006). After updating the system from 10.5.6 to 10.5.7 and quicktime to 7.6.2, I experience serious performance problems which I have never seen before: -From time to time, kernel_task has peaks in activity monito

  • Issue when execute query in JAVA portal

    Hi all, I aways used the Query Designer 3.x and now im using the Query Design and i know that run with JAVA portal. So I have new issues and it not expected. When I run RSRT and select a query I have no problems running by ABAP but when I select JAVA

  • Problem related Integration directory

    Hi, I am sending an IDoc from SAP R/3 to SAP XI . In WE02 IDoc showing Status as 03 (sucess) but in SM58 it showing as Error 1) No service for system SAPBQA, client 300 in Integration Directory I checked the note 940313 but not able to resolve  it. 2

  • Load XML file into oracle database

    Hi i have a xml file and the XSD(Schema definition file for XML). i need to load the xml file into the database. Can you please tell me the best approach for this ?