Report to see the output of VLPOD transaction

Hi Gurus
     I have configured Proof of delivery concept to caputre loss of Quantity due to moisture. can any body tell me about standard report to see the output of VLPOD transaction.Full points for the correct solution.

Hi,
Try the t-code VLPODL, hope can help you!
Good day
Tao

Similar Messages

  • How to see the output of a FORM of REMITTANCE ADVICE ( PAYMENT ADVICE )??

    Hi Experts,
    I got a SAP Script of REMITTANCE ADVICE (also known as PAYMENT ADVICE).
    And I know the VENDOR #.
    I need to see the output of this SAP Script on the screen, so, let me know that, How to test it/see its output. (I know, seeing the Customer statemet from the tx of F.27), I mean, wht r the transactions etc. stuff.
    thanq

    You should create a variant for payment advice and you can use the same while executing the t.code:F110.
    Once payment run has been completed system will generate a spool for payment advice. You can view that payment advice through t.code:SP01.

  • Not able to see the output

    Hi all
    when i run my request using XML Report Publisher .request completes without error.
    but when i see the output it shows me a message dialogue box saying
    File does not degin with '%PDF-'
    though my template is of rtf type.
    any idea
    pls help

    What is the Output type of the concurrent program ?
    check if that is PDF?

  • Report: to see the Invoices with Printing Errors

    Hi.
    Please help us in getting the report: to see the Invoices with Printing Errors
    The problem is that, at first there has been a problem and the invoice was not printed but we did not notice that it was not printed.
    There has to be a report, where we can see the invoices with printing errors.
    Thanks,
    Amar

    Hi,
    You can use the the standard Tcode:VF31.
    Process the record if it has errors the line turns to red.Select the check box and click on the Log(Shift+f6)
    You will be able to see the error messages for the output type:
    Regards,
    Saju.S

  • Where to see the output of my Application Engine Program ?

    Folks,
    Hello. I am creating my first AE program in Application Designer and test it in the 2-tier mode. I open the AE program in Appication Designer and click Edit ->Run Program. Then open the log file to see its execution and know the AE program is running out. But I don't know where to see the output of the AE program.
    The AE program is only executing a SQL "select" statement. Its output is the ResultSet of the SQL.
    Do any folks know where to see the output of the AE program ?
    Thanks in advanced.

    The AE program is only executing a SQL "select" statement. Its output is the ResultSet of the SQL.
    Do any folks know where to see the output of the AE program ?The output of the select didn't go anywhere. You have to actually do something with the values selected. App Engine selects them and puts them in memory (if you tell it to through %Select), but where those values go depends on you. If you have a DoSelect, then your next action may be an SQL insert/update/delete or even another %Select. If it is another %Select, then I would expect your next action to be Call Section or PeopleCode.
    If you just want to select data and print it to the app engine log file, then I would setup a step with a DoSelect/%Select and then a PeopleCode action. In your PeopleCode action, use MessageBox(0, "", 0, 0, "The value in field MYFIELD is " MYREC_AET.MYFIELD);
    I wrote a blog post a few years ago with additional tips and tricks for AppEngine output: http://jjmpsj.blogspot.com/2008/05/appengine-output-tricks-reporting.html.

  • Not able to see the output in sost when sending the image in email body

    I am sending the image in email body and when m trying to see the output in SOST then it showing a page 'you are not connected to the internet'
    I am able to see the output when m saving local objects but when m saving it in some package its showing me this page
    Kindly help it
    Regards
    Pratham Kapoor

    Hello Prakash,
    Thanks for the reply
    I am able to see the mail in SOST but when I click on the Display Document to see the content of the mail then I am getting this error of 'you are not connected to the internet'
    My Program is to put the logo in my email body
    I am sending you the attached image

  • How to run the report and show the output in excel file

    salam
    how to run the report and show the output in excel file,
    how to run the report and print the o/p via printer
    how to run the report and send the o/p via mail
    thank u all

    Hi,
    There are Parameters DESTTYPE, DESFORMAT and DESNAME. You can set these parameters to get as you want.
    1) Output in Excel File
         ADD_PARAMETER(PL_ID, 'DESTYPE', TEXT_PARAMETER, 'FILE');
         ADD_PARAMETER(PL_ID, 'DESFORMAT', TEXT_PARAMETER, 'DELIMITED');
         ADD_PARAMETER(PL_ID, 'DESNAME', TEXT_PARAMETER, '<file_name>.XLS');2) output to printer
         ADD_PARAMETER(PL_ID, 'DESTYPE', TEXT_PARAMETER, 'PRINTER');
         ADD_PARAMETER(PL_ID, 'DESNAME', TEXT_PARAMETER, '<printer_name>');3) Email - Have to configure SMTP and all. ( i didn't checked it)
         ADD_PARAMETER(PL_ID, 'DESTYPE', TEXT_PARAMETER, 'MAIL');
         ADD_PARAMETER(PL_ID, 'DESNAME', TEXT_PARAMETER, '<email_id>');Regards,
    Manu.
    If this answer is helpful or correct, please mark it. Thanks.

  • Is there any report to see the Latest GR receipts materials wise

    Dear Experts,
                              is there any report to see the Latest GR receipts materials wise , thanks in advance
    regards
    rajakarthik

    transaction MC.A
    Execute it.
    if you see the result, then press F6 to add the date fields to the screen.

  • Is there any report to see the consumption details?

    Hi,
    Is there any report to see the consumption details? with material number or without material number?
    Regards,
    Sattuj

    There are a no of ways from where you can get your desrired data....
    Table mver---used for material consumption.
    T code mcre---again used in consumption reports,
    Table MVER gives you detail of Material Consumption
    Also, MSEG (MENGE) and S026 (ENMNG) ... Pls restrict the selection condition for material with movement type 261 in table MSEG
    Tables
    DBERCHV Consumption History
    DVER Material Consumption for MRP Area
    You can get all the consumption details in MB51 report by selecting relevnt movement types. And MB5S also.
    For Repetetive :-
    Check this T Code MCRP,which gives you the exact material consumption datewise or order wise.
    *Report MCRE is widely used for the material cosnumption than checking in COOIS.*
    Also these reports can help you.
    MCPF Material analysis: Dates
    MCPO Material analysis: Quantities
    MCPW Material analysis: Lead time

  • Where to see the output of batch file run in java

    I use RunTime.getRunTime.exec() to run a batch file, it seems going fine. But I can not see the output of the batch file. For instance, the batch file is to print sth on the screen, but it wont display under java.
    Why and how?
    Thanks

    You get the Process and from that yoo use getInputStream().
    You need to read the stream in a seperate thread since if it fills the buffer it blocks the thread (which would be your main thread.)

  • How can i see the output of a form

    I am having one driver program and form.From these two how can i see the output.

    Hi Sunny
    You might already know; but for the driver program; a smartform is just a function module.
    (In the smartform; this function module name can be found in the menu tab Environment -> Function Module Name.)
    Note: The FM 'SSF_FUNCTION_MODULE_NAME' is obviously the correct way of getting the FM name from the smartform name !!
    So all you need to do is call this function module passing any variable / tables you need to pass to the smartform from your driver program.
    Hope it helps
    Neer

  • Automatic scheduling of report and send the output  to user via email

    Good Morning,
    Please i need to scheduled report and send the output via email in Discoverer . Please can someone assist in how to achieve this ?

    Hi,
    You cannot schedule and email a Discoverer report using standard Discoverer scheduling. You have to use a third party scheduler and Discoverer Desktop running on a windows PC.
    This presentation has some more details on how to do this.
    Rod West

  • T-code/Report for seeing the existing entire GL master data

    Dear Experts,
    Is there any t-code/Report for seeing the existing entire GL master data at chart of accounts level and company code level.
    example :
    GL a/c no    company_code   account_group   shrt_text    long_text     tax_category      open_item_management   etc
    172500           1000                  Balance sheet   tds pay      tds payable    *                                 X
    Thanks in Advance
    Regards,
    T.Kartheek
    Moderator: Please, search before posting

    Dear expert
        you can use f.10 or f.08
    2.  GL Account Balances (Totals & Balances )             S_ALR_87012301
    3.  GL Line Items                                                            S_ALR_87012282
    4.Display of Changed Documents                                  S_ALR_87012293
    5. Chart of Accounts                                                       S_AL:R_87012326
    6.. GL Account List                                                      S_AL:R_87012328
    7.. Display Changes to GL Accounts                             S_ALR_87012308
    Regards
      Ajeesh.s
    Edited b

  • Cannot see the output file in my first project

    Hi,
    I follow the instructions of Exercise in Chapter 4 of CAP-0501 to make the project. I wonder why I cannot see the output file in 'C:\CAPExercises\0501\exercises\Active_Project\Output'.
    There are two things I would like you know.
    1. I do not have the file 'prjFileXferInput.xml', but find and copy a xml file. Is this a problem? Does CAPS have any special requirement on schema for the input file?
    2. Is '\' and '/' a problem for Java CAPS? I notice the book using 'C:/CAPExercises/0501/exercises/Active_Project/Output�, while it is 'C:\CAPExercises\0501\exercises\Active_Project\Output' on windows. I am working on a standalone Windows 2000 computer.
    By the way, can anyone give me a confirmation that '/' and '\' is not a problem for Java CAPS, as the server or application take care of it? Is it true?
    Thanks,

    I am answering my own question. The project works.

  • I have transefer function like (1/(s^2+s+​5)) and i have a square wave input , i want to use this transfer function with this input to see the output , how can i do that , with example please.

    i need to know also how to represent this transfer function in labview, try to send me example. answer me at my mail

    "st" wrote:
    > answer me at my mail
    give a valid e-mail first, and your name, we don't like to help anonymous
    people
    > try to send me example.
    how much do you pay ?
    > i have transefer function like (1/(s^2+s+5)) and i have a square wave
    > input , i want to use this transfer function with this input to see
    > the output , how can i do that
    First you have to know what you are doing, like an engineer : you have a
    Laplace, continuous time transfer function but LabView handles discrete
    signals only. Use matlab/simulink if you want to simulate continuous time
    systems easily...
    If you definitely want to use LabView, the first step is to discretize your
    continuous-time transfer function, i.e. decide a sampling rate and convert
    it to a "z transfor
    m". Then you can directly use the "IIR Filter.vi" as I
    said earlier.
    Philippe Guglielmetti - www.dynabits.com me at my mail

Maybe you are looking for

  • Getting error while using cl_gui_frontend_services= gui_download

    Hi Experts, I am using class method cl_gui_frontend_services=>gui_download for downloading a file and i getting an error that of type compatible of internal table with formal parameter DATA_TAB of class cl_gui_frontend_services. My code is as follow

  • Does 5870 support ACD/VGA/HDMI at the same time?

    I have a 5870 video card in my 2010 Mac Pro. One mini displayport (mDP) is connected to a 27" ACD. Currently I have the second mDP connected through a mDP-to-VGA adapter to a 17" VGA monitor. Everything works fine. I decided to free up the second mDP

  • Third party access to Business Catalyst admin console: dashboard freezing

    Hi, My client can't access his admin console in Business Catalyst to edit the website we've built for him. He's using both a Mac G5 2.1gh power pc OS 10.4.11 and a Mac Laptop 2.2gh intel core duo 10.6.8. He follows this link http://www.slowhome.co.uk

  • Route in B1

    Dear All, we have created 4 udfs to reflect route management. The UDFs contains of : 1.Route 2. Truck capacity 3. Car No. 4. Alternative truck All are in BP master data. In these following cases, the UDFs are needed : 1. Create Picking List by route

  • I am trying to transfer my music from itunes to ipad mini.

    Tried sync-ing it many times, but the files just wouldnt move over. Am i doing something wrong? I got this mini last week and set it up from icloud from my iphone 5 back up. So what should i do now?