How to rise a PO to my client And how to treat this stock in our company.

Hi All,
My company is Software company.My company is having many clients.Whenever we require some materials for client project we will rise a requisition to particular client  and he will supply the material with free of cost. After completion of  his product he will take away his material from my company.So please give me a solution how to handle this scenrio in SAP.
Regards,
Purush.

Hi,
Which category your cleint material belongs to :
1. He provides you a Raw material, your company processes it creates a FG out of it and send back FG to client
OR
2. He provides you some tools , your company uses them for job, there is no change in state/value of tool, you send back the tool after usage
Pls reply because both scenarios have diff treatment in SAP.
Cheers
Dheeraj

Similar Messages

  • L_TO_CONFIRM - differences posted to 99 - how to set this stock as blocked?

    I am using fuction module L_TO_CONFIRM for some RF processing and I have been asked that where the differences are posted to 999, can this stock also be blocked so as to remove it from the view of MRP.
    I cannot see how I can do this with this function module as there is no flag to set it to blocked.
    Does anyone have any ideas?
    Regards
    Larissa Maryniuk

    Larissa,
    A useful note on top of Jurgen's.
    Potentially you can cause havoc using LI21 (Clear Differences in IM) as it will allow you to enter any Storage Type.  There is a table where you can exclude Storage Types from being used with LI21.  It makes sense to set this for all Storage Types (except 999 !).
    IMG \ LE \ WM \ Activities \ Physical Inventory \ Clear Differences (Interface to IM)
    2nd option.
    Regards,
    Nick

  • How to host a vCard on our company website

    I recently went to a website and under the company's contact
    information they had their vCard which when clicked automatically
    downloaded to my desktop. I thought this was a good idea and wanted
    to do the same thing.
    So I created a company vCard in my Address Book and exported
    the card to my desktop. I then launch Dreamweaver MX 2004 for the
    Mac and added the vCard to our company's contact page. When I
    previewed it in Dreamweaver the link worked and the file downloaded
    to my desktop.
    I uploaded the vCard and updated contact page to my server.
    However, now when I click on the vCard link it goes to another page
    with nothing but text. The text appears to be a raw representation
    of my vCard info. But definitely not what it should of looked like.
    Let alone it didn't download to my desktop as a separate vCard.
    Now, I can right click and do "Save Linked File to Desktop"
    and the vCard shows up just fine.
    So it appears to be an HTML issue where I need the file to
    automatically download when clicked instead of going to the text
    representation of the vCard.
    Does anyone know how to do this?

    > but my options
    > might be limited right now.
    first, since i don't have the url, use a tool that will give
    the header/mime
    info for the file's url to confirm that my guess is the
    problem.
    there are plugins for firefox that give this info.
    there are online tools also.
    random results from google:
    http://www.askapache.com/online-tools/http-headers-tool/
    http://www.hashemian.com/tools/browser-simulator.htm
    http://www.webmaster-toolkit.com/http-header-viewer.shtml
    Put in the full link to the .vcf file into the above forms.
    If it comes back as undefined or text, and not the mime type
    with the
    text/v-card i mentioned earlier, that confirms my guess that
    either no mime
    type or a generic guess at a text mime type is being sent for
    that file type
    from their hosting. Then send a request to the support at the
    ISP to add a
    correct mime type to the hosting for this file type.
    If they won't do that- then making it a compressed .zip file
    is probably the
    only other choice.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Multiplayer game: how to synchronize client and server

    Hi there, I'm wondering how to synchronzie client's and server's frame number?
    I have a multiplayer spaceship(2D) game running at constant 30 FPS, since I use "frame number" to determine if a packet is too late or not, so I would like to have server and client both start frame 1 at the same time, but I have no idea how to do so, can anyone give me a hint?
    well, if you want more details(may not be too much relevant to my problem, but any way, for anyone who interested):
    I use UDP(my teammate implemented a TCP version, it's working but TCP is just way too stupid, lagging and some unknown problems produce very funny result). So far, on client side, input(key strokes) is sent via network immediately, but processed 2 frames later locally. So on lan, server will likely get the packet before it's time to process it, thus solve the packet delay problem a little bit).
    Example: If user pressed fire button at frame 5, it's sent immediately to server, then at frame 7, client engine processes this "fire" event, and likely, server will get this packet at frame 6 or 7, then it can just processes it in time as well.
    So there's a problem, server and client must both running the same frame number at the same time(maybe not exact, but gotta be very close).
    By the way, I need some suggestions implementing the server, my brain hurts just thinking about it, I hope I will never have to code network stuff again: Server runs at 30FPS(but only broadcast game state at 6FPS), it just sit there between frame 1~4, get all packets and store them, then between frame 4~5, processes all the packets recieved, then broadcast the result(game state), client recieves it, will treat this game state as "correct game state for frame 5". I use this way because it solves packet delay and out of order packet to some extend.
    However, say, if server broadcasts the game state for frame 5 at frame 5, then client is likely to recieve it at frame 7 or even later, how can client use it?
    So, together, if you have suggestion or solution for my server and client implementation, please let me know, thanks heaps. I'm in quite a desperation at the moment.
    P.S: I also posted this synchronizing problem at the socket programming forum, hope you guys (and girls) dont mind, since this is a place talking about game, that is a place talking about network, so I thought might be good to have suggestions from people in different programming area.

    Why does the client need to have the same frame number as the server? I think a good way to do it would be as follows:
    - Client sends all of the user's commands to the server (i.e. accellerate left, accellerate right, start firing, etc).
    - Server processes these to update game state and every so often sends updates to the clients, saying something like "at frame 7, user X is at (10, 10) and user Y is at (20,20) and firing south".
    - Clients process all updates from the server, as long as it hasn't seen any update from a later time yet. So if it recieves the update from time 10 before the update from time 9, it only does the one from time 10. It tries to move things smoothly, taking into average time between updates (if there are 100 ms between updates and on the next frame, user X should move 10 units, then move 1 unit every 10 ms).
    By the way, it is possible to use TCP in games. Most MMORPG games use it. I don't know whether it's fast enough for a spaceship game, but it might be worth trying to fix the code you have. Try to keep packets small (use bytes for event type codes, player numbers, etc), group multiple events into one packet if they are all available at the same time, flush() the output stream as soon as you send one, and don't use a buffered stream or reader when reading them.

  • Session Variable? -How do I treat this

    Hello,
    I am writing an application that is tracking the results
    arriving from various selected stations (230 of them). My
    application will dynamically displays only stations for which
    results have been received. I plan to have my page refresh every 5
    minutes to update the results list.
    Now based on results received I will update a report page, so
    I need to set a variable that changes every time my query result
    set changes and then I will pass this new value to the report page
    for processing. I am confused about how to treat this variable.
    Should I use set it as a cookie or a session variable? (but it
    could change many times during the session)? TIA

    Hi,
    Your questions is not clear, so I'm not sure if this is what
    you are looking for.
    Let's forget for a moment how the data gets there, and let's
    focus on the report.
    You have a databases that get's constantly updated with
    new/changing records. It's sounds to me like you need to timestamp
    your data, and when the report page is opened, you need to
    aggregate data from now()-5 minutes to now() and display them.
    The refresh for the page every 5 minutes needs to be done
    with javascript (window.setTimeout)
    cheers,
    fober

  • Communication between two jvm (client and server)

    Hi ,
       I want to access the UME service of the SAP J2EE Container using a stanalone client application.
    So the client would be running on remote JVM.
    Here we use the JNDI service to communicate between the client and server.
    p.put(Context.INITIAL_CONTEXT_FACTORY,"com.sap.engine.services.jndi.InitialContextFactoryImpl");
                        p.put(Context.PROVIDER_URL, providerURL.trim());
                        p.put(Context.SECURITY_PRINCIPAL, securityPrinciple.trim());
                        p.put(Context.SECURITY_CREDENTIALS, securityCredentials.trim());
                        Context ctx = (Context) new InitialContext(p);
                        Object objRef = ctx.lookup(ejbName.trim());
    I want to know that is the communication between the client and server secured in this scenario
    Best Regards
    Manoj

    Okay, the client and server VMs are different implementations of the Hotspot engine. Hotspot basically takes the Java bytecode from your .class files and turns it into native machine instructions at runtime. (The optimizations are actually much more complex than that, but that's the basic concept.)
    The client VM is so named because it's designed to be used for GUI-type applications interacting with the user. It is designed to have a quicker startup and smaller memory footprint.
    The server VM uses more memory and is typically slower at starting up than the client VM, but can often perform ridiculously fast. This of course depends completely on the particular code being run, and you should probably profile and see which VM works better for your application.
    Some interesting optimizations are performed by the 1.4.1 server VM, such as: removal of array-bounds checks (when it determines that the index can't become out of bounds), inlining of methods, and more.
    Here is a link to more info if you're interested:
    http://java.sun.com/products/hotspot/docs/whitepaper/Java_HotSpot_WP_Final_4_30_01.html

  • Adobe Creative Cloud - How To Share Files With Clients and Colleagues | Creative Suite Podcast: Designers | Adobe TV

    In this episode of the Adobe Creative Suite Podcast, Terry White shows how to share Photoshop, Illustrator and InDesign Files with clients and colleagues and all they'll need is a browser to comment and see your Photoshop Layers.
    http://adobe.ly/10ZjpE4

    Terry,
    I guess I miss something. How can I share a folder of photos? When I return from a shoot, I select 20 of the pictures and need to share them with my client to pick up the favorites. Am I supposed to copy and past an URL for each image separately?
    Sometimes I also work with a colleague, I need to share my favorites with him. Same issue.
    We have tried Adobe Cloud, and then went for Dropbox. There we can share a folder and he can put even his pictures in it as well. That's what I call collaboration. And it is free (unlike Adobe Cloud). If you have some word in Adobe, please tell them to either drop it and make a deal with services like Dropbox, or make it properly.
    Thanks.
    Vaclav

  • Async tcp client and server. How can I determine that the client or the server is no longer available?

    Hello. I would like to write async tcp client and server. I wrote this code but a have a problem, when I call the disconnect method on client or stop method on server. I can't identify that the client or the server is no longer connected.
    I thought I will get an exception if the client or the server is not available but this is not happening.
    private async void Process()
    try
    while (true)
    var data = await this.Receive();
    this.NewMessage.SafeInvoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    How can I determine that the client or the server is no longer available?
    Server
    public class Server
    private readonly Dictionary<IPEndPoint, TcpClient> clients = new Dictionary<IPEndPoint, TcpClient>();
    private readonly List<CancellationTokenSource> cancellationTokens = new List<CancellationTokenSource>();
    private TcpListener tcpListener;
    private bool isStarted;
    public event Action<string> NewMessage;
    public async Task Start(int port)
    this.tcpListener = TcpListener.Create(port);
    this.tcpListener.Start();
    this.isStarted = true;
    while (this.isStarted)
    var tcpClient = await this.tcpListener.AcceptTcpClientAsync();
    var cts = new CancellationTokenSource();
    this.cancellationTokens.Add(cts);
    await Task.Factory.StartNew(() => this.Process(cts.Token, tcpClient), cts.Token, TaskCreationOptions.LongRunning, TaskScheduler.Default);
    public void Stop()
    this.isStarted = false;
    foreach (var cancellationTokenSource in this.cancellationTokens)
    cancellationTokenSource.Cancel();
    foreach (var tcpClient in this.clients.Values)
    tcpClient.GetStream().Close();
    tcpClient.Close();
    this.clients.Clear();
    public async Task SendMessage(string message, IPEndPoint endPoint)
    try
    var tcpClient = this.clients[endPoint];
    await this.Send(tcpClient.GetStream(), Encoding.ASCII.GetBytes(message));
    catch (Exception exception)
    private async Task Process(CancellationToken cancellationToken, TcpClient tcpClient)
    try
    var stream = tcpClient.GetStream();
    this.clients.Add((IPEndPoint)tcpClient.Client.RemoteEndPoint, tcpClient);
    while (!cancellationToken.IsCancellationRequested)
    var data = await this.Receive(stream);
    this.NewMessage.SafeInvoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    private async Task Send(NetworkStream stream, byte[] buf)
    await stream.WriteAsync(BitConverter.GetBytes(buf.Length), 0, 4);
    await stream.WriteAsync(buf, 0, buf.Length);
    private async Task<byte[]> Receive(NetworkStream stream)
    var lengthBytes = new byte[4];
    await stream.ReadAsync(lengthBytes, 0, 4);
    var length = BitConverter.ToInt32(lengthBytes, 0);
    var buf = new byte[length];
    await stream.ReadAsync(buf, 0, buf.Length);
    return buf;
    Client
    public class Client
    private TcpClient tcpClient;
    private NetworkStream stream;
    public event Action<string> NewMessage;
    public async void Connect(string host, int port)
    try
    this.tcpClient = new TcpClient();
    await this.tcpClient.ConnectAsync(host, port);
    this.stream = this.tcpClient.GetStream();
    this.Process();
    catch (Exception exception)
    public void Disconnect()
    try
    this.stream.Close();
    this.tcpClient.Close();
    catch (Exception exception)
    public async void SendMessage(string message)
    try
    await this.Send(Encoding.ASCII.GetBytes(message));
    catch (Exception exception)
    private async void Process()
    try
    while (true)
    var data = await this.Receive();
    this.NewMessage.SafeInvoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    private async Task Send(byte[] buf)
    await this.stream.WriteAsync(BitConverter.GetBytes(buf.Length), 0, 4);
    await this.stream.WriteAsync(buf, 0, buf.Length);
    private async Task<byte[]> Receive()
    var lengthBytes = new byte[4];
    await this.stream.ReadAsync(lengthBytes, 0, 4);
    var length = BitConverter.ToInt32(lengthBytes, 0);
    var buf = new byte[length];
    await this.stream.ReadAsync(buf, 0, buf.Length);
    return buf;

    Hi,
    Have you debug these two applications? Does it go into the catch exception block when you close the client or the server?
    According to my test, it will throw an exception when the client or the server is closed, just log the exception message in the catch block and then you'll get it:
    private async void Process()
    try
    while (true)
    var data = await this.Receive();
    this.NewMessage.Invoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    Console.WriteLine(exception.Message);
    Unable to read data from the transport connection: An existing   connection was forcibly closed by the remote host.
    By the way, I don't know what the SafeInvoke method is, it may be an extension method, right? I used Invoke instead to test it.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Deleting DC from both client and DTR - How to ?

    Hi
    How to delete a DC completely both from the client and the DTR repository so that I can create it with the same DC name and package structure again.
    Please Help
    Regards
    Ananda

    Hello ananda,
    maybe this will help you.
    How to complete remove a track
    SAP-Note 855537
    Also check the Java Development Infrastructure Forum for such topics.
    regards,
    Markus

  • If I install the Mail server on a Mac Mini as a server, can my users utilize Outlook as their mail client and how will it be different for them?

    If I install the Mail server on a Mac Mini as a server, can my users utilize Outlook as their mail client and how will it be different for them?

    Your users can utilize Outlook no matter where your email is hosted at.
    how will it be different for them
    different from what?

  • How to create client and server app using node.js in firefox os.

    I want to create a client and server app using node.js for firefox os. Please suggest me how to create a apps.
    I want to send a request from client to server and based on client request, service reply to client.
    If any links available, Please share it.
    Thanks

    Hi sb00349044,
    The SUMO forums focuses on end-user support.
    For questions about developing for Firefox OS, you will find better guidance in MDN, StackOverflow, and mailing lists:
    * [https://developer.mozilla.org/en-US/Firefox_OS MDN - Firefox OS]
    * [http://stackoverflow.com/questions/tagged/firefox-os StackOverflow - Firefox OS]
    * [https://lists.mozilla.org/listinfo Mailing Lists at Mozilla]
    Thanks,
    - Ralph

  • HELP! How do I create a page for clients and talent to login and info...

    I need to create a page for interested clients to register to my site and then browse talent for promotions...I also need talent to be able to register and store their photographs and information so that potential clients (and I) can browse through their info... This obviously needs to be two different things...How do I do this???

    This old thread may help:

  • How to know the size of a client and an instance ?

    hi,
    How to know and measure the size of a client and an instance ?
    comment and advice will be appreciated.
    regards,
    kent

    Hi Kent,
    I always measure the size of the complete DB (instance) with DSPLIB *PRINT in batch - the very last line is the size. You could have a look into DB02 as well.
    The client size is more complicated ...
    You could do a "test-client-copy" - there it reports a size - but this size is far too small normally ....
    Regards
    Volker Gueldenpfennig, consolut international ag
    http://www.consolut.de - http://www.4soi.de - http://www.easymarketplace.de

  • What is Dashboard Client and how do I close it?  I use OSX Mavericks on my iMac.

    What is Dashboard Client and how do I close it?  I use OSX Mavericks on my iMac.

    Hi there kburgee! Other can be anything from App Data (information saved from apps like game progress, or passwords) to or old messages that you haven't deleted! The absolute best way to clean up some space is to restore your iPhone.

  • How corba client and server find Naming service

    hello
    i want to ask how corba client and server find the Naming service ?
    10x

    By using a well-known port (I think the default for JavaIDL's NS is 1049) on a well-known address (localhost).
    As these values are not really standard, you can specify them when starting the server and client (+-ORBInitialPort 1050 -ORBInitialHost localhost+). See the documentation .

Maybe you are looking for

  • How do i delete a word document using shortcut?

    I have just bought a MacBook air & have installed Word etc onto the machine. I cant find how to delete documents in Word, it used to be easy!

  • I am unable to activate my reserved data why is this happening?

    i have called technical support but they were unable to help because my account has a glitch that cant be fixed i need help!

  • Application error event id 1000

    Hello I have a problem with application error. Since Im new here, I cannot post any links, so I can only describe it as best as I can. The error happens few minutes after I start my computer. It shows as mncjywbe.exe stopped working. When I look at e

  • Safari has stooped loading some regularly used sites but loads as a guest user

    A couple of weeks ago safari stopped loading Facebook but it loads in Firefox and as guest user in Safari. It has now stopped loading Ebay UK but as with Facebook it loads as a guest. This only happens, so far with my macbook, iPad and iPhone are ok.

  • ZMP Charging/Plug I

    I have had my ZMP for about 2 weeks. It did not come with a DC charger so I must charge it from the USB. I have the lastest firmware installed. My problem is, the player never seems to fully charge. Actually I think that it charges and maybe fully, b