Errro in Display print Document

Hi ,
While display the Print Document T-Code EA-40 , I am getting Following Error ,
*"Payment medium ID X in company code UINF, country E does not exist "*
Kindly guide me to resolve the error.
Regards
Sgar

Sagar,
I do not have active ISU system with me. However I 'd suggest you configure payment medium ID in IMG\Utilities\Billing....u need to maintain these values.
Rgds
Rajendra

Similar Messages

  • Writr off accounts not display in print document (ISU BILLING)

    Hi all,
    I got the problem with write off when a customer is changed to an indigent customer all their debt has to be written off which results their account to R: 0. The invoice does not pick up all write offs with regards to write off reason 11-Indigent accounts which cause a lot of invoicing errors.
    Please give me advice
    Thanks
    Ashok

    Thanks for your reply iam happy for that, i need some clarifications about this issue...
    when am i invoicing particular this account  the total amount of write- offs not display in the print  documents.
    Please advice me .
    With Regards
    Ashok

  • Error message 'Display only possible for print documents'

    Hi All,
    This issue is with the transaction code ME21N. When the user clicks on PRINT PREVIEW  it gives an error of 'Display only possible for print documents'. When the user clicks the MESSAGES tab and then COMMUNICATION METHOD tab it gives an error 'No communication data has been defined for transmission medium 6'. The vendor is not getting the order. Does anyone has any idea of what these error messages mean and where should I look further?
    Thank you,
    Regards,
    Shanu

    Hi
    this seems tobe relates to print program "" ask your ABABer what program he has written to send the PO to vendor your problam willbe solved.
    the moment you give the print it will ask the printer by  default LP01 then print immediately check you need to do that.then beground print program and partner you need check. whether this out type you have assigned to this partner or not (vendor).  check complecte condition technic.diffnettly it will works.
    i hope you have understood
    thanks &Regards

  • Displaying XML Document in new browser window

    Hi,
    I have a hyperlink on my page. When I click on it, it will open a new IE window and display xml document.
    The new window is displaying some of the xml and at the end displaying the following:
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    End element was missing the character '>'. Error processing resource 'http://localhost:28080/benchmark/faces/displayXMLDocu...
    However, I cut and paste the xml String where I write it to the HTTPServletResponse to XMLSPY and it displays correctly.
    Please let me know.
    Rgrds

    Here are the steps:
    1. I created page1 that has a hyperlink.
    2. Hyperlink property are set to display page2 in a new window. (popup).
    3. page2.prerender() method, I set the response to the following:
    public void prerender() {
    javax.faces.context.ExternalContext ec = this.getExternalContext();
    HttpServletResponse response = (HttpServletResponse)ec.getResponse();
    response.setHeader("Cache-Control","no-cache");
    response.setHeader("Cache-Control","no-store");
    response.setHeader("Cache-Control","must-revalidate");
    response.setHeader("Cache-Control","max-age=0");
    response.setHeader("Pragma","no-cache");
    response.setHeader("Expires","0");
    response.setContentType("text/xml");
    response.setBufferSize(5000);
    String xmlString = getRequestBean1().getBookingPnrDetailsXML();
    try{
    xmlString="<?xml version=\"1.0\" encoding=\"UTF-8\"?><root><test1>this is a test</test1><victor>Hello Victor</victor></root>";
    PrintWriter out = new PrintWriter(response.getOutputStream());
    log(xmlString);
    out.print(xmlString);
    }catch(IOException io){
    System.out.println("" + io.getMessage());
    io.printStackTrace();
    4.page2.jsp code is the following:
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
    <jsp:directive.page contentType="text/xml;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view/>
    <ui:page binding="#{displayXMLDocument.page1}" id="page1"/>
    <ui:html binding="#{displayXMLDocument.html1}" id="html1"/>
    <ui:head binding="#{displayXMLDocument.head1}" id="head1"/>
    <ui:link binding="#{displayXMLDocument.link1}" id="link1"/>
    <ui:body binding="#{displayXMLDocument.body1}" id="body1"/>
    <ui:form binding="#{displayXMLDocument.form1}" id="form1"/>
    </jsp:root>
    please let me know.
    Rgrds.

  • Problem Printing Documents - No Doc Flavors Supported

    Hello everybody. I've been trying to implement a print feature in my applications and I've had absolutely zero luck. Basically, I'm trying to print the contents of an html file. However, there are no PrintServices that show up on my machine that support DocFlavors text/html, or even text/plain.
    I searched all over the Internet, but the only tutorials I found involved printing GUI components. I tried putting everything in a JEditorPane and then printing it, but the table is so large horizontally, it runs off the side, so I don't think that route will work.
    I checked IRC, scanned through all of Sun's tutorials and print service API documentation, and even searched around for open source Java word processors so I could check how their print features are implemented, but I can't find anything to help me figure this out. I know there has to be a way, though... or stuff like EIOffice and ThinkFree.com wouldn't be able to work. Can somebody please point me in the right direction?
    Here's the current code I have:
              //display print dialog
              DocFlavor df=new DocFlavor("text/html; charset="+DocFlavor.hostEncoding,"java.io.InputStream");
              PrintRequestAttributeSet attributes=new HashPrintRequestAttributeSet();
              attributes.add(new javax.print.attribute.standard.JobName("NutraSmart Menu",null));
              PrintService[] services=PrintServiceLookup.lookupPrintServices(df,attributes);
              PrintService service=null;
              if(services.length>0)
                   service=ServiceUI.printDialog(this.getGraphicsConfiguration(), this.getX()+50, this.getY()+50, services, services[0], null, attributes);
              else
                   JOptionPane.showMessageDialog(getContentPane(),"No print services could be found to print this menu.","Error printing menu",JOptionPane.ERROR_MESSAGE);
                   nutrasmart.debug(nutrasmart.ERROR,"Could not find any services to print menu");
              //print menu
              if(service!=null)
                   try
                        //create temporary HTML file to print from
                        File tmpfile=File.createTempFile("nsmenu",".html");
                        tmpfile.deleteOnExit();
                        String tmpfilestr=tmpfile.getPath();
                        export_HTML(tmpfilestr);
                        FileInputStream tmpfilestream;
                        try
                             tmpfilestream=new FileInputStream(tmpfilestr);
                        catch(FileNotFoundException e)
                             JOptionPane.showMessageDialog(getContentPane(),"A problem was encountered while preparing the menu to print.","Error printing menu",JOptionPane.ERROR_MESSAGE);
                             return;
                        //print document
                        DocPrintJob pj=service.createPrintJob();
                        Doc doc=new SimpleDoc(tmpfilestream,df,new HashDocAttributeSet());
                        pj.print(doc,attributes);
                   catch(Exception e)
                        JOptionPane.showMessageDialog(getContentPane(),"There was a problem with printing the menu.","Error printing menu",JOptionPane.ERROR_MESSAGE);
                        nutrasmart.debug(nutrasmart.ERROR,"Error printing file",e.getMessage());
              }

    Really we have a crazy font management.
    We have more than 9000 fonts in the /Library/Fonts
    To avoid conficts between the the installed system fonts and the Document font folder, we don't use the document font folder, so that we use always the /Library/Fonts/ fonts installed. Anyway some time ago we also used the Document Font folder and we got the same problem.
    I think that your idea about closing the document before the printing process has been finished is very interesting. What I do is :
    doc.print(print_preset);
    doc.close();
    But I don't how can I test if the document is being closed before finishing the printing process.
    Regards

  • Print Templates print preview window closes unexpectly when printing document

    This is a cross posting from Internet Explorer Web Development after a suggestion that this forum would be a better location. See
    https://social.msdn.microsoft.com/Forums/ie/en-US/351e1245-b606-4467-9f3c-1c72f9cdf9ea/print-templates-print-preview-window-closes-unexpectly-when-printing-document?forum=iewebdevelopment.
    I have raised an issue through Connect for this:
    https://connect.microsoft.com/IE/feedback/details/1134168/ie9-to-ie11-print-templates-print-preview-window-closes-unexpectly-when-printing-document, but I would like some more visibility of the issue as my customers thought my application was closing when
    they printed a document.  I also don't know if an issue in Connect gets any priority support via MSDN, but this forum does.
    This looks to me like a problem in the IE Print Templates startDoc API call, but if there is a more appropriate forum to raise this issue in please let me know.
    In the application where I use print templates, the window closing is not in it self a problem because the Javascript that is calling startDoc also closes the Print Preview window when the print is finished.
    The fact that the application looses focus and can be hidden by the windows of other applications when the Print Preview window is closed by startDoc is the issue noticed by our customers, so I need a fix preferably, or a work around at a pinch.
    Details of the issue reproduced below.
    When using IE Print Templates, the startDoc function is causing the print preview window to close.  This behaviour started with IE9, and is still present with IE11.
    When an application is using print templates (see
    https://msdn.microsoft.com/en-us/library/aa753279(v=vs.85).aspx) for print functionality, this has the effect of causing the application to become hidden by any other application window once printing from the print preview window has started.  It is
    actually this behaviour that started me looking at this issue as the users thought the hosting application had closed.
    Print Templates are not accessible by using IE as a web browser, but only when using the WebBrowser Control to embed IE in an application.  The reference for this feature is available from this url:https://msdn.microsoft.com/en-us/library/aa753279(v=vs.85).aspx
    and a sample Microsoft application that demonstrates the use of Print Templates can be used to demonstrate the problem (required for the reproduction steps).  The application is available via this article and searching for "download spiffy".
    Steps to reproduce the problem:
    To see the full effect of the issue, first ensure there is a window from another application (like Windows Explorer) that will cover the sample applications window if brought to the foreground (making the Windows Explorer window full screen works).
    Start the sample application (and ensure that the full screen Window Explorer is the next application to activate).
    Then in the drop down box in the top right corner of the UI select Template8.htm.
    Click the Print Preview button that is just below the drop down box (this will open a new Print Preview window).
    In the new window click the Print… button (this will open a Print dialog).
    Click the Print button at the bottom of the Print dialog.
    The Print dialog closes (expected) and then the Print Preview window also closes (not expected), however the document is still printed successfully.
    When the Print Preview windows is closed unexpectedly, the Windows Explorer window is brought to the foreground (obscuring the sample applications window).
    If you reselect the sample application and click the Print Preview button again, the Print Preview dialog is not displayed unless you restart the application (this looks to be a symptom of the same issue, not a separate problem).
    To see that the Print Preview window appears to be closed by the startDoc call, use the resource editor in Visual Studio (the exe can be opened directly by File | Open | File…) to edit the HTML resource "TEMPLATE8.HTM" (I found I needed to delete
    it and add it back in for the change to stick), find the startDoc call and add two alerts, one on the line before and one on the line after.  When IE is accessing the template, it is being done using the name of the executable (so do not rename the modified
    version of printtemplates.exe, make the changes to a copy in a different directory if you don't want to change the original).  Start the modified version of the application and follow the same steps as in the reproduction.  This time, after clicking
    the Print button in the Print dialog, the dialog will close, the first alert will pop up, then the Print Preview window will close, then
    the second alert will pop up.
    Thank you,
    Warren.

    Hi Shu,
    I have noticed that the print templates API is listed as part of the Legacy APIs. 
    Is this just because it hasn't changed or is not new?  Or does this mean that it is no longer maintained and may be removed (or at least deprecated) at some point in the future? 
    It would good to know if we should start planning for the implementation of a different method of printing.
    I understand that the sample application is no longer maintained, but I also think that the Print Template API that it uses has not changed, and so should still work (and it does mostly).
    If the Print Preview window was being closed as a result of using the Print dialog (and if it had behaved the same way with IE8) I would be willing to go with the by design argument.  
    I have found that the Print Preview window is not closed until startDoc is called, and it closes before control is returned from the startDoc function. 
    Just as part of investigating and try to find a workaround, if I call window.close(), any alert calls made no longer display the alert window after the close call. 
    Alert still functions after startDoc has closed the window however. 
    The is not the sort of consistent behaviour I would expect from something that is by design. 
    Also while investigating, I found that calling startDoc after calling window.close() results in an exception with the error code -2147467259 (0x80004005), this is probably quite normal and expected, but does indicate that the Web Browser Control should
    not be closed till after printing.
    I had found that old thread, and I had concluded it was the same issue, but it was also aimed at different aspect of the problem (which I see in the sample application, but not my application). 
    The visible issue I have is that my users think the application has been closed because after clicking print (on the Print dialog) the application gets hidden by other windows from other applications. 
    This aspect affects the sample in the same manner and so it was a convenient way to demonstrate the problem.
    If IE connect do not look at this issue any time soon, do I have any other avenues to resolve this issue?
    Thank you,
    Warren.

  • Problem in displaying XML document from database

    Hi I am getting only record in printing xml file which takes from data base.
    Here is my programme.
    Document doc;
    ����public void processTable(Connection con, String tableName)
    ����{
    ��������try
    ��������{
    ������������this.iColumnCount=0;
    ������������HashMap hm = new HashMap();
    ������������//XML related Interfaces
    ������������DocumentBuilderFactory dbf;
    ������������DocumentBuilder db;
    ������������Element rootElement = null;
    Element colData = null;
    ������������Element relElement = null;
    �����
    ������������//Database relevent Interface
    ������������ResultSet rslt = null;
    ������������DatabaseMetaData dmd = null;
    ������������ResultSetMetaData rsmd= null;
    ������������//Initilize the Factory Classes
    ������������dbf = DocumentBuilderFactory.newInstance();
    ������������db = dbf.newDocumentBuilder();
    ������������doc = db.newDocument();
    ������������//Assign the root elements to document
    ������������rootElement = doc.createElement("entity");
    colData = getColMetaData(tableName);
    ������������rootElement.appendChild(colData);
    ������������doc.appendChild(rootElement);
    ������������TransformerFactory tFactory = TransformerFactory.newInstance();
    ����������������Transformer transformer = tFactory.newTransformer();
    ����������������transformer.transform(new DOMSource(doc),
    ��������������������new StreamResult(new FileOutputStream(tableName+".xml")));
    ��������} catch (Exception sqle)
    ��������{
    ����������������e.printStackTrace();
    ��������}
    ����}
    ����/**
    �����* Method getColMetaData.
    �����* @param tableName
    �����* @return Element
    �����*/
    ����private Element getColMetaData(String tableName)
    ����{
    ��������try{
    ������������ResultSet rslt = null;
    ������������ResultSetMetaData rsmd = null;
    ������������DataTypeMap dtp = new DataTypeMap();
    ������������HashMap hm = new HashMap();
    ������������hm = dtp.DataTypes();
    ������������Connection con = db.createConnection();
    ������������Statement stmt = con.createStatement();
    ������������String sQuery = "select * from " +tableName;
    ������������rslt = stmt.executeQuery(sQuery);
    ������������rsmd = rslt.getMetaData();
    ������������Element rooElement = null;
    ������������//Element currentElement =null;
    ������������iColumnCount = rsmd.getColumnCount();
    ����������������Element currentElement = null;//doc.createElement("field");
    // rootElement = doc.createElement("column");
    ����������������for (int i = 1; i <= iColumnCount; i++)
    ��������������������{
    currentElement = doc.createElement("field");
    ������������������������currentElement.setAttribute("DBFieldName",rsmd.getColumnName(i));
    ������������������������currentElement.setAttribute("FieldName",rsmd.getColumnLabel(i));
    ������������������������
    ��������������������}
    ��������������return currentElement;
    ��������catch(Exception ee){
    ������������logger.info(ee.getMessage());
    ��������}
    ��������return null;
    ����}
    Here 'return currentElement;' return the collection of elements.But when I print
    document it is giving only last element.I am not getting how only one record is printing even it has more records
    please help me in this regards.
    here the out put:
    <?xml version="1.0" encoding="UTF-8"?>
    <entity>
    ��<field DBFieldName="X_TYPE" FieldName="X_TYPE"/>
    </entity>
    -krish
    [email protected]

    Problem in displaying the XML Data from database
    Hi I have requirement of generating the XML from database.I could able to acheive partially.
    I am giving the problem below.
    public void processTable()
    Element rootElement = doc.createElement("entity");
    Element colData= getColMetaData(tableName);
    rootElement.appendChild(colData);
    doc.appendChild(rootElement);
    //print the document
    /*getColData method as follows*/
    private Element getColMetaData(String tableName)
    try{
    ResultSet rslt = null;
    ResultSetMetaData rsmd = null
    Connection con = db.createConnection();
    Statement stmt = con.createStatement();
    String sQuery = "select * from " +tableName;
    rslt = stmt.executeQuery(sQuery);
    rsmd = rslt.getMetaData();
    iColumnCount = rsmd.getColumnCount();
    Element currentElement = doc.createElement("field");
    for (int i = 1; i <= iColumnCount; i++)
    currentElement.setAttribute("FieldName",rsmd.getColumnName(i));
    currentElement.setAttribute("Position", parseString(i));
    rootElement.appendChild(currentElement);
    return currentElement;
    catch(Exception ee){
    logger.info(ee.getMessage());
    return null;
    /* End of Method*/
    Here when I printing the document it is giving out put like :
    <entity >
    <field FieldName="X_ID" Position="1"/>
    </entity>
    The is displaying only one field information even though table contains more then one column.If we maintain all the aboue code in single method it is working fine.I want to decouple the like above.Bcz I may have more then one set of elements like this.
    Please help in this regards,
    -Krish
    [email protected]

  • Print document's name in Event Log ID #307 on Server 2012

    Creating a new printer server using Windows Server 2012.  Everything is working out fine so far, however I just ran into one problem that didn't happen in our Server 2008R2 print server.
    When looking at print jobs that have completed under:  event logs --> Microsoft --> Windows --> PrintService --Operational, I have noticed that Event ID 307 is not displaying the printed document's name in Server 2012 (it did for Server 2008R2). 
    In Server 2012, the document name simply displays as "Print Document" instead of displaying the document's name.
    Anyone have any ideas on how to get the document's name to properly display in the event logs?
    Thanks for any help.

    Hi Alan,
    I have configured a Server 2012 R2 standard as print server to manage printers and Monitor the print usage of users, however I am not getting the Print logs (Event Log ID 307) in the default event logs directory on the print Server.
    I perform some search and come to know that it’s a known problem in Server 2012 and there is Hotfix available. I installed the Hotfix mentioned here
    http://support2.microsoft.com/kb/2938013/en-us , but still logs are not getting generated.
    I also made the below setting for the logs.
    Creating Registry entry
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows NT\Printers] "ShowJobTitleInEventLogs"=dword:00000001
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Printers] "ShowJobTitleInEventLogs"=dword:00000001
    The policy name: Computer Configuration \ Administrative Templates \ Printers
    Allow job name in event logs
    Keep printed Docs setting is also enabled on all the printers installed on Print Server.
    Noting seems to be working here or am i doing something wrong here.
    Regards
    Mukesh

  • Printing document from FB03

    Hi
    We are on ECC 6.0.  After displaying a document in FB03, if i wish to print it, only the line items are passed for output (in spool) not the header data.
    If i go to Document - Print preview and then print, complete document is passed to output.
    Also when i display in Fb03,  print icon on the Menu bar on the top is grayed out, however, it is enabled just above the line item on doc display
    Any ideas what is the way for printing document and how can i enable the print icon on the menu bar
    Thanks a lot
    Shiv

    Hello
    Check the print program which is defaulted for the particular screen.
    Discuss with the ABAPer to copy and modify according to the desired output.
    It is possible that some script or form also need to be corrected.
    Regards
    Suresh

  • Cannot print document with added barcode text boxes

    G'day
    I'm adding two text boxes to an illustrator document with Applescript, but when I go to print, ?I get an error 'Cannot print the illustration. The Color Management settings are inconsistent.'
    The error message is not error trappable.
    I have to barcode thousands of documents a year, and this is a big deal breaker. Is there any fix, please?
    Regards
    Brian Christmas
    try
      set printerName to my theLargePagePrinter as string
      set paperOptions to {class:paper options, name:largePaperSize}
      set jobOptions to {class:job options, designation:all layers} # , print options:printOptions}
      set colorOptions to {class:color management options, profile kind:printer profile}
      set flatOpts to {class:flattening options, clip complex regions:true, gradient resolution:360, rasterization resolution:360}
      set printOptions to {class:print options, printer name:printerName, paper settings:paperOptions, flattener settings:flatOpts, job settings:jobOptions, color management settings:colorOptions}
      try
      set p to 17
      tell application "System Events" to tell process "Adobe Illustrator"
      click menu item "Fit to Artwork Bounds" of menu 1 of menu item "Artboards" of menu 1 of menu bar item "Object" of menu bar 1
      end tell
      end try
      set p to 18
      say 7
      print document 1 options printOptions
      say 8
      on error errmsg number errnum
      tell application "System Events" to display dialog "Error in printing illustrator document. " & errmsg & " number " & errnum giving up after 40
      end try

    G'day Owen, & W_J_T.
    Unfortunately your suggestions did not work for me.
    I've tried using the GUI to access the print dialog box, but as usual with Adobe, they've stuffed that up too. What I did find however, that the print dialog box recognised keystrokes, and always defaults to the Printer box when opening.
    Also, the Printer box sets itself to a matching item of whatever key is pressed, and so does the Printer Preset box.
    So, even tho I can't select any given box, provided I have a Printer Preset set, I can access it by the following (slower) method...
    activate
      tell application "System Events" to tell process "Adobe Illustrator"
      keystroke "p" using command down
      keystroke (character 1 of (my theLargePagePrinter as text)) as text
      repeat 17 times
      keystroke tab
      tell current application to delay 0.1
      end repeat
      keystroke (character 1 of (my theLargePagePrinter as text)) as text
      keystroke return
      end tell
    Note that if you have more than one printer or Printer Preset starting with the same letter, then you'll have to use more than just the first character of your printer name.
    Regards
    Brian Christmas

  • Word styles not appearing in Print Document Appearance dialog

    My custom list styles in Style Mapping.dot are not appearing in the Print Document Appearance dialog when I try to map CSS styles to Word styles.
    The styles do appear in the template when I open it in Word. They appear in the styles task pane whether I select "In current document" or "In use" in the Style Pane Options dialog in Word. The styles have the same name (such as "Bullet" or "Number") in Word as the CSS styles in RoboHelp.
    I tried saving Style Mapping.dot as .dotx, thinking that RoboHelp 8 might work better with the current template type, but no help. I tried adding the template to the same folder as the Normal.dotm template is in and opening it there. No improvement.
    Oddly, the built-in Word styles List, List 2, & etc and List Continue and its series appear in the Robo dialog, but the styles List Bullet and others in that series do not appear.
    I suppose I could modify the list styles that do appear in Robo and map them to my CSS list styles, but that feels a bit like a desperate kluge.
    Does anyone know what might be wrong, either with my Word template or with Robo, that might be causing what seem to be perfectly good Word styles to not present themselves for mapping?
    Thanks again,
    John

    Peter,
    I think your discussion of this problem could explain the situation and propose a workaround more simply than it does.
    Based on your article, I assumed that Robo displays only the built in Word list styles such as List and List Continue (since those were the only styles showing up in the style mapping dialog and since your example shows matching a Robo style named List Mapping to a Word built in style named List). I assumed I would have to match my Bullet style to a style named List in Word, and match the indented bullet style to List 2, and so on. The actual situation is that Robo, for some godforsaken reason that only idiots would understand, will not show a Word style if any numbering (bullets or numbers) is applied to it. That is, one does not have to avoid a class of styles called “List styles”, one only has to avoid applying numbering to the styles until later.
    Thus the workaround is to create the word styles (with names that match the Robo styles!) that contain every attribute you need EXCEPT the numbering. That is, I can link Bullet to Bullet and Number to Number and Indented Number to Indented Number, and so on and on, as long as I have all the Word styles in the template with their numbering set to None.
    Then after I generate the document, I can modify the styles to add the appropriate numbering, and voila!
    Currently scrolling the doc & modifying styles. Might be a glimpse of daylight.
    John
    From: Peter Grainge [email protected]
    Sent: Thursday, October 13, 2011 8:47 AM
    To: John Dawson
    Subject: Word styles not appearing in Print Document Appearance dialog
    Re: Word styles not appearing in Print Document Appearance dialog
    created by Peter Grainge<http://forums.adobe.com/people/Peter+Grainge> in RoboHelp - View the full discussion<http://forums.adobe.com/message/3969382#3969382

  • Restriction in Output on transaction VF03 - Display Billing Document

    Hi Experts,
    Is there any way to restrict the Output on transaction Display Billing Document, I mean, on transaction VF03 and after you select a Billing document (Document number), go to Billing Document -> Issue Output to. This is because we currently have an Output Selection with two message types and what we need is to restrict one of the message types for a group of persons.
    Can this be restricted using authorizations? Is there any way to restrict this?
    I made some tests using system trace (ST01) but I couldn't find the way to restrict this.
    Can somebody help please?
    Best Regards,
    Erik Espinosa

    The message types are invoice forms.
    We have implemented an electronic invoice schema in our organization, and now when you want to print an invoice the system gives you two options for printing a document. Each of the options are message types that manage certain values and put them in a print form, so what we want to do is that only managers can access to option1 and the rest of the organization can access option2.
    This means that when managers try to print the invoice using option2 the system won't let them. They only will print invoices from option1.
    I tried to look for an authorization object in order to try to force the restriction with it, but I couldn't find one.
    This objects are called output types and what we need to do is restricting the use of the output types based on values for option1 and option 2 using Z roles.
    Regards,
    Erik
    Edited by: Erik Fernando Espinosa Zambrano on May 16, 2009 9:59 AM
    Edited by: Erik Fernando Espinosa Zambrano on May 16, 2009 10:01 AM
    Edited by: Erik Fernando Espinosa Zambrano on May 16, 2009 10:03 AM

  • Printing Document

    Hi All,
    On clicking a button called "DISPLAY" we are able to open the document from sharepoint and display the document using the following code.
                  lo_window = lo_window_manager->create_external_window(
                   url            = 'http:// ...............................   .doc'
                  modal          = abap_false
                  has_menubar    = abap_true
                 is_resizable   = abap_false ).
                  is_resizable      = abap_true ).
    Now, I have a button called  "PRINT"  in my webdynpro screen.
    When i click this button it has to read a document from sharepoint and print the document.
    Any pointers of how to read this document and print the same (without opening the document) would be helpful.
    Thanks in advance.

    Hello,
    printing is always going to be a very device specific process. A user might not even have a printer installed on (for example their iPad that they are running your app on).
    If you can know which platform you are running on you could probably use the ACFExecute "UI" element to directly launch MS Word, launch the doc and print it. - There might even be some parameters you could pass to the application to make it print in the background - immediately to default printer.
    The point is that you can't get WDA to do this - as it cannot interact (other than through ACFExecute, upload, download) with the applications installed on your client machine - it is (apart from these exceptions) sandboxed to the browser.
    By launching the new window/URL you are just trusting that your client is able to interpret that URL and find the right means of rendering it. It just happens that the machines you are using know what a .doc file is and how to read it...

  • Display / Print the settlement run. (MEBI)

    Hi All,
    Please assist here.
    I am trying to dispaly / print the settlement run via MEBI. Unfortunatly the document cannot display / print the form.
    I get the messages:
    1.No messages for initial processing exist
    2.No messages for repeat processing exist
    What could be the problem here?
    Configuration has been done to maintain message determination for settlement run.
    Please advice.

    Hi ,
           Please check Settlement run Field value....May its not correct......
    Regards

  • Tcode for display Invoice Document

    Hi,
    I want to know the tcode to display the invoice Document.
    Note: im aware that In MR90,i can fill Invoice Doc. Number & Fiscal year for printing the invoice.
    Regards,
    Baskar

    Hi,
    MIRO - Enter Invoice
    MIR7 - Park Invoice
    MIRA - Enter Invoice for Invoice Verification in Background
    MIR4 - Display Invoice Document
    MR8M - Cancel Invoice Document
    MRBR - Release Blocked Invoices
    MIR5 - Display List of Invoice Documents
    MIR6 - Invoice Overview
    MR90 - Output Messages
    MIR4 and MIR5 will solve your query, also you can try MR11.
    regards,
    Prashant Rathore.

Maybe you are looking for

  • HT4061 Need help...my I-pad is frozen on an i-cloud backup update, and OK button won't work.  How do I fix?

    Hi all!  I can't get into my i-pad because the screen is frozen on an i-cloud back-up alert.  The OK button won't respond.  I can't even turn off the i-pad.  Please help if you can.  Thank you!

  • Update field to a specific time

    Hello, Is is possible to update a column from a table, when sysdate is equal to a select which returns a date? for example: i have a YEARS table, with 2 columns, start_date and end_date. periodically in this table are inserting years. when sysdate=st

  • Stop posting to accounting

    Hi all, I need to create an SD transaction, where the customer does not need to pay tax due to gov policy. The tax condition type is not allowed to be posted to accounting. But, this tax condition type is needed to print the tax report, which describ

  • Mac address book blank after MS Office update

    After using the stupid MS Office Updater on prompt, I find that all my contacts are missing from my Mac Address Book! I didn't even install Outlook but the stupid Updater did. My contacts aren't there though and sync is off. I tried restoring the Add

  • Ichat Keeps Telling Me My Password is Incorrect

    I have an AIM account that I have been using for years and I eventually got a mac and put it into Ichat, everything worked perfectly. All my friends were transfered and everything. However, after a year a symbol came up next to my username. It was a