Print out name of Approver

Dear Experts,
On an approved document - say Purchase Order is it possible to print out the names of the people who approved it using crystal report layouts on SAP 8.8 ?
Regards,

Hi Martin,
You can do it in Crystal report. refer following query
select po.Docnum,po.docdate,orgus.u_name as 'Generated By',appus.u_name as 'Approved By' from opor po
inner join owdd ow on po.objtype=ow.objtype and po.docentry=ow.docentry
inner join wdd1 w1 on ow.wddcode=w1.wddcode
inner join ousr appus on w1.userid=appus.userid
inner join ousr orgus on w1.usersign=orgus.userid
Thanks
SD

Similar Messages

  • Is It Possible To Print Out All The Names In Address Book At Once?

    I have got rather a lot of names and email addresses in my Address Book.
    I would like to print them on a few sheets of A4 but the only print options I can find are to print out a single card (with one name) at a time.
    Is it possible to print them all in one go?
    Ian.

    Yes, this is very easy. Select the 'All' group, then choose Print from the File menu. Choose your printing options from the menus and send it to your printer.
    Mulder
    If this answered you question, please consider awarding some points. Why Reward Points?
    iMac G4 700Mhz   Mac OS X (10.3.9)  

  • Separator page prints out with wrong name when printing from Outlook 2010

    Working with Windows 7 Enterprise, Outlook 2010.  We've set up our desk printers to print a separator page with the user's name, as several people use the same printers in our building.  Printing from IE, Word, etc. all work fine, and it'll print
    out the correct username on the separator page.
    When anyone attempts to print an Outlook email, it instead prints out my username.  We've found that it doesn't happen if they click on the "quick print" button, but it happens every time if they do "file > Print" or Ctrl+P.

    Hi
    As per the information and details provided by you that separator page prints out with wrong name when printing from Outlook 2010, please follow these steps: -
    To create a custom separator page file, use a text editor such as
    Notepad. On the very first line, type one single character, and then press
    Enter. The character on this line defines the character used as an escape character. For example, the following list assumes that this character is the at sign (@).
    Enter the escape codes for the functions you want, and then save the file with an .sep extension in the Windows System32 subfolder.
    In the Print Manager, select the printer that you want to use the separator page file with, and then click
    Choose Properties on the Printer menu.
    Click
    Details, specify the name of the desired separator page file in the
    Separator File box, and then click OK.
    Note:
    Put the custom separator page file in one of the following locations:
    In the %Windir%System32 folder.
    In a folder whose path contains a SepFiles folder. For example:
    Drive:\Folder\SepFiles\Subfolder
    I hope this information will be helpful for you.
    Thanks and regards
    Shweta@G 

  • HT203164 I used to be able to print labels for burned CDs with the cover being the playlist name and the other side the song titles...now the titles print out compacted, overlapping each other and illegible. I thought it was the printer but it happened w/

    I used to be able to print labels for burned CDs with the cover being the playlist name and the other side the song titles...now the titles print out compacted, overlapping each other and illegible. I thought it was the printer but it happened w/1 other printer as well,  which I used before for this exact thing w/no problem.

    Try cleaning the print head with rubbing alcohol wipe, then replace your print head. Keep pushing the Ok. 
    Go to this link and HP shows you how.
    support.hp.com/us-en/document/c01643079
    Lucky for me it worked!

  • How can I print out the contents of my hardrive

    I have a hardrive with about 200 video clips and need to print the titles for cross refrerencing. I was just going to "grab" screenshots but this will take about ten sheets of paper. How can I print out a list of all the files on the drive?

    I tried this Finder drag method & discovered that it is very important to set the blank TextEdit document to plain text before the drag (from the format menu or with Cmd-shift-t). If you don't, TextEdit attempts to load the content of the files!
    Once I discovered this, I tried the method with Find (Cmd-F) results & it works for that, too. This means that by choosing the right combination of search location(s) & search criteria, you can extend the method to filter the list to just about any files you want, which could be very handy.
    For instance, set the "Kind" criteria to "QuickTime Movie" & location to "Computer" & you get a list of every QT movie. Or set the search location to the folder containing the movies of interest & you get all of them, including ones in subfolders. You could also use the 'date created' or other search criteria to filter the list to a specific subset of movies (or whatever).
    If you need to do this often, you could create one or more 'Smart Folders' with the criteria preloaded for each search.
    The only drawback I see for either Finder based method is the full path one. If you are getting results from just one or a few folders, Find & Replace can delete any of the path name fairly easily, but it becomes a chore if there are a lot of different ones. Some other text editor, like TexEdit Pro, that supports grep searches would be handy here, but since I'm not up to speed on grep, someone else will have to explain how to use it for this, if they want.

  • Print program name for the dunning form F150_FR_DUNN_01 in sapscript

    Hi,
          I am not getting the exact print program name for the dunning form F150_FR_DUNN_01 in sapscript. After an extensive search I have come across few names of print program like SAPF150D2 and SAPLF150. But still I am not understanding which one to use for the form and also how to use it. I am unable to understand which include I should use to write my code.
    Kindly help me.
    Thanking you.
    Pujarini Patra

    Hi,
    Yes, you should be able to assign F150_FR_DUNN_01 in Dunning Forms customizing:
    and yes, I too would absolutely try to go for either a Smartform or even a PDF Form (if i'd have all the necessary setup for them, like Adobe Document Services, in the system already). I have Basis 702 SP  0011and FINBASIS 600 SP 0021, so all the following technicalities refer to those releases:
    The corresponding SAP sample Forms are:
    - F150_DUNN_SF for Smartform; and
    - F150_DUNN_SF for pdf Form (don't let the name confuse you )
    I'm not entirely sure if it's a good idea to try to convert/migrate Sapscript to Smartform and the Smartform to PDF Form - have never done that  myself and don't know how good/usable the migration result is. I just take the interface of Smartform from SAP and do the rest from scratch or by copying over the common parts of our existing custom forms.
    There are the SAP Standard wrapper FMs for SF and PDF forms already in the System:
    - FI_PRINT_DUNNING_NOTICE_SMARTF calling PRINT_DUNNING_NOTICE_SF and
    - FI_PRINT_DUNNING_NOTICE_PDF calling PRINT_DUNNING_NOTICE_PDF.
    So, theoretically, all you had to do to replace SapScripts (or even to enable all three form types) is to assign a custom BTE Event handler FM to event 1720 (for correct Application), which could detect, what type of form is assigned in Customizing and call the corresponding wrapper FM.
    As a sample for coding PDF form wrapper call one could take FI_PSO_EVENT_00001720_PDF (if you have IS-PS) in the system. I'd take out the IS-PS specific "business logic" like posting dunning charges (if it does not apply to my solution) and add the logic to decide, which wrapper to call.
    The confusing part about the customizing (Table T047E) to me is that there seems to be no form type defined anywhere in there... just the FORNR field for form name, which should apparently take the names of all three form types... I'd  try to extend that table with custom Form type field and try to regenerate Table Maintenance dialog for  view Cluster VC_T047_F... That would save the whole effort to try to detect the type for  form assigned...
    Another tip, in case you didn't know it already: you should be able to see all the Customizing paths, where T047E is involved, when you enter table name in SM30 and press "Customizing" and then "Continue w/o Specifying Project":
    The selected entry is the one you are looking for to assing your custom forms, I believe.
    cheers
    Janis

  • Invoice Print out problem

    Hi Gurus,
    In my invoice there are 4 line items.only last two line items are taxable and in print out system has to display the text on  below four items.Currently its showing the text as " CA Tax-GST 5% of 7,800.00 CAD which is wrong, as its showing the total value of all the four items, It has to display the text in this format " CA Tax-GST 5.% of 1900 CAD which is total of two taxable line items .
    We are using SAP scripts. Please let me know where I have to done the changes to show the text in above format.
    Regards,
    Hari Challa.

    Hi,
    First find out the output type to print the invoice and using this o/p type find the print program and layout name. Then copy the print program do the necessary modifications and assain the new program in o/p type.
    Regards,
    Jagadeesh.

  • Print out of Cheque

    Hi
    I am having problem in Cheque Printing. Kindly guide me in this regard. The steps involved in printing a cheque are as follows.
    1.   Posting an incoming invoice
    2.   Post the outgoing payment & take a printout of payment voucher (Currently done thru F.62)
    3.   After approval of the outgoing payment, the cheque has to be printed 
          separately.
    4.   I dont want to use the automatic payment program
    5.   I can't take a print out from FBZ5.
    6.  I want to print out cheque for a series of document numbers

    Hi Rajaram
    Please use Tcode F-58. See if it helps. Let me know if you need any other help.
    Please do award points if found useful.
    Regards,
    Karthik

  • Print out of Layout

    Hi,
    Need suggestion for getting print out put of GRN (in MIGO), Invoice verification (in MIRO) & service entry sheet. Request you to suggest on this.
    Regards,
    Ranjan

    Hi
    Check following are some of steps for GR collective printing from SDN only
    1. Maintain the Printer Name in SPRO->Matl Mgmt->Inv Mgmt and Phy Inv->Print Control->Gen Settings->Printer Setting
    2. Ensure that in SPRO->Matl Mgmt->Inv Mgmt and Phy Inv->Print Control->Gen Settings->Item Print Indicator, 1 stands for Matl Doc print out
    3. In SPRO->Matl Mgmt->Inv Mgmt and Phy Inv->Print Control->Gen Settings->Print Version, maintain Print Version 2
    4. In SPRO->Matl Mgmt->Inv Mgmt and Phy Inv->Print Control->Maintain Print Indicator for GI/Transfer Posting Documents
    5. In SPRO->Matl Mgmt->Inv Mgmt and Phy Inv->Output Determination->Maintain Output Types, for the Output types WE01, WE02 and WE03, ensure the foll:
    a. Default Values: Dispatch Time is 3 or 4 as per reqmt. and Tr medium is 1
    b. Print Parameter is 7
    6. In SPRO->Matl Mgmt->Inv Mgmt and Phy Inv->Output Determination->Printer Det->Pr Det by Pl/StoLoc, maintain the Output device for all your Plants
    7. Go to MN21, for Tr Type WE, Print Version 3, maintain Print Item as 1.
    Now the settings are ready for Printing Material doc
    8. While doing MIGO, ensure that in General Tab, you get "3 Collective Slip" beside the Print Indicator and you tick mark the field.
    9. Now depending on the setting in 5a, the Matl doc is printed. If it is 3, you have to print it using MB90. If it is 4, it is printed immediately.
    Regards,
    Archit

  • Print out of GRN document.

    Dear All ,
                                  Kindly help me as user is in need to take print out of GRN document as collective slip I need to  take out printout of grn.the prinout should contain collective
    slip that is all item in one slip.
    the slip should contain line item no.,material description,material no.,quantity,rate,total amount and sum total amount of all items together in the last page.
    vendor name,p.o. no.,plant,invoice no.,invoice date,posting date,grn no.,date,location,payment terms. Pl guide that what config are to be done in SPRO .
    SAP12

    Hai,
    Run MB02 transaction, enter material document number. Double click one line item and select messages. Separate screen will be opened to configure outputs. Give the required fields and save the document. Now Run MB90, you can take printout. Output Type: WE03 - Collective slip
    Note:
    Check following are some of steps for GR collective printing
    1. Maintain the Printer Name in SPRO->Matl Mgmt->Inv Mgmt and Phy Inv->Print Control->Gen Settings->Printer Setting
    2. Ensure that in SPRO->Matl Mgmt->Inv Mgmt and Phy Inv->Print Control->Gen Settings->Item Print Indicator, 1 stands for Matl Doc print out
    3. In SPRO->Matl Mgmt->Inv Mgmt and Phy Inv->Print Control->Gen Settings->Print Version, maintain Print Version 2
    4. In SPRO->Matl Mgmt->Inv Mgmt and Phy Inv->Print Control->Maintain Print Indicator for GI/Transfer Posting Documents
    5. In SPRO->Matl Mgmt->Inv Mgmt and Phy Inv->Output Determination->Maintain Output Types, for the Output types WE01, WE02 and WE03, ensure the foll:
    a. Default Values: Dispatch Time is 3 or 4 as per reqmt. and Tr medium is 1
    b. Print Parameter is 7
    6. In SPRO->Matl Mgmt->Inv Mgmt and Phy Inv->Output Determination->Printer Det->Pr Det by Pl/StoLoc, maintain the Output device for all your Plants
    7. Go to MN21, for Tr Type WE, Print Version 3, maintain Print Item as 1.
    Now the settings are ready for Printing Material doc
    8. While doing MIGO, ensure that in General Tab, you get "3 Collective Slip" beside the Print Indicator and you tick mark the field.
    9. Now depending on the setting in 5a, the Matl doc is printed. If it is 3, you have to print it using MB90. If it is 4, it is printed immediately
    the slip should contain line item no.,material description,material no.,quantity,rate,total amount and sum total amount of all items together in the last page.
    vendor name,p.o. no.,plant,invoice no.,invoice date,posting date,grn no.,date,location,payment terms
    You have to add the requirements in the print out form - smart form with the help of ABAPer. You can find this smat form in T code NACE - slect ME Invenotry management - Output type - WE03 - Go to processing routines - form name.

  • Print out of Excise invoice other movements.

    Dear All,
                   How can we take print out of Excise invoice other movements.what is the T-code & what is the program & form name.if is there any configration setting then tell please tell me the steps.
    Thanks & regards
    Pavan

    Hi,
    check J1IP T code
    thanks
    suresh

  • How do I print out an email -- just the email?

    With the change in recent email format, my ability to printout the email has disappeared. No problems before this rcent change. The 2 options available: the "File" option on the menu at top left of page, and the 3 horizontal bars indicating "menu" on the top right of page -- BOTH print out the whole page with the email itself truncated.
    Another irritating issue is my inability to find the email address of the sender. This has got to be easy to find, BUT I CAN'T find it!!

    Hi!
    To print out an email, first click on the email from the inbox. Now that you're looking at the email viewing pane, you can click "More" > "Print" (as seen in first image below). It will print the email.
    To find the sender's address, click on the sender's name (as seen in second image). A menu containing the address and other options to take will pop up. Mousing over the sender's name also shows the address.
    <hr>
    I hope that solved your problem!
    <i>If it did, would you please choose this answer as your solution? It would help other Firefox users to find help on the forums faster and more efficiently. Thanks!</i>
    And of course, feel free to post back if you need more help! You should contact Yahoo! [https://io.help.yahoo.com/contact/index?page=home&locale=en_US customer support] if you have further questions regarding their products, though; they'd be most able to quickly provide assistance. :)
    Happy browsing!

  • How can I print out specific categories on my outlook calendar

    After downloading latest version of Icloud. I am not able to print out specific categories on icloud calendar

    I tried this Finder drag method & discovered that it is very important to set the blank TextEdit document to plain text before the drag (from the format menu or with Cmd-shift-t). If you don't, TextEdit attempts to load the content of the files!
    Once I discovered this, I tried the method with Find (Cmd-F) results & it works for that, too. This means that by choosing the right combination of search location(s) & search criteria, you can extend the method to filter the list to just about any files you want, which could be very handy.
    For instance, set the "Kind" criteria to "QuickTime Movie" & location to "Computer" & you get a list of every QT movie. Or set the search location to the folder containing the movies of interest & you get all of them, including ones in subfolders. You could also use the 'date created' or other search criteria to filter the list to a specific subset of movies (or whatever).
    If you need to do this often, you could create one or more 'Smart Folders' with the criteria preloaded for each search.
    The only drawback I see for either Finder based method is the full path one. If you are getting results from just one or a few folders, Find & Replace can delete any of the path name fairly easily, but it becomes a chore if there are a lot of different ones. Some other text editor, like TexEdit Pro, that supports grep searches would be handy here, but since I'm not up to speed on grep, someone else will have to explain how to use it for this, if they want.

  • How can I print out my album list from ITunes?

    When I open up Itunes, I have over 400 albums and I would like to print out just the names of all my albums but I cant seem to figure out how. When I try to export my song list, it gives out way too much like every song on each album and it goes to wordpad and I want MS word. What can I do?

    You should have received emailed receipts for each item that you bought from the store. If you haven't got them then all that you can do is take screenshots of your purchase history.

  • How can I print out an Array List in my GUI program?

    I have an ArrayList of Objects which I want to print out in a TextArea in my GUI. I tried using setText(), but it seems like that can only handle strings. Does anyone know of an alternative method or some other way to get around this?

    Ok, I have an object name Instrument which contains a double price, String name, int numberInStock. In my GUIFrame class which creates the GUI obviously, I have a button listener that should print out my ArrayList in a TextArea when clicked on a button.
    Here is the code:
    private class showIResponse implements ActionListener{
              public void actionPerformed(ActionEvent e){
                   showText.setText(parseString(ali));
    it is still giving me an error saying "cannot find symbol method parseString(java.util.ArrayList<java.lang.Object>)"

Maybe you are looking for

  • Project code  wise aging

    dear   expert all parameter    from date  to to date , project code   one of my client requriment  i have  need   project  code wise  aging report . send  me the query.

  • Blackberry buttons not working, Please help!

    I was using my blackberry and all of a sudden the trackpad started have a slow reaction time. THen when i went to hit the button to select it wouldn't. Now if i press the talk key the letter jk come up, if i hit the blackberry button the letters ij c

  • Best PCI-X / PCI video card for Solaris 10?

    I don't mean "best" in the "latest, greatest, fastest" sense, I mean best to denote visual properties and rendering, support, basically. My current machine (Compaq SR5250NX) has a PCI bus ATI Radeon 9250 (256MB RAM) that XSun detects and uses as an A

  • Managed Library

    This is copied from a post back in 2009 1. Do I now have two copies of the original photos I copied into the folders first--the one I copied and one created by iPhoto? Assuming that you have a Managed Library, yes. If you're running a Managed library

  • Ajax Toolkit in SharePoint 2013

    I want to use Ajax controls in my visual web part in sharepoint 2013.i've dowloaded toolkit from the following url http://ajaxcontroltoolkit.codeplex.com/ Can anyone tell me steps to add ajax toolkit in my visual webpart project and any other necessa