Not able to print on Purchase order whatever we fill in item text

not able to print on Purchase order whatever we fill in item text, from where can we link to get printed item text on purchase order

while doing in quality whatever we fill in text in item details of p.o we are getting it printed on p.order
but same thing when we are doing in production we are not able to print on purchase order. where we should look out
for e.g in spro-mm-purchasing-purchase order..

Similar Messages

  • Not able to print a sales order

    I have maintained the sales order output. Although, I can preview the sales order, I can't print it. Any idieas why?

    Check the dispatch time set for the output type.
    Go to VA02->Menu Extras -> Output ->Header -> Edit.
    Check the value assigned in the column Date/Time. It may be assigned with 1 or 2. Change that to 3 or 4 and check.
    The output master records can be changed in t.code VV12.
    Regards,

  • Not able to print on samsung scx 4623f from windows

    I successfully installed bonjour on a pc, can see the printer connected to my time capsule, can add it as default printer, but while i can easily can print from mac book, when I try to print from the pc running windows 7 the printer warms up, but then it doesn't print. no error reported on the printer window, the file seems to be lost somewhere
    any idea?
    thanks a lot

    while doing in quality whatever we fill in text in item details of p.o we are getting it printed on p.order
    but same thing when we are doing in production we are not able to print on purchase order. where we should look out
    for e.g in spro-mm-purchasing-purchase order..

  • Not able to print purchase order..

    Dear All,
    I am not able to print one import  purchase order.
    I have checked everything and also able to print another import Purchase orders..but particular this PO print out is not coming.
    I have deleted message and again created the same..also condition record is maintained...
    Not able to see print preview also (Not generating)
    What could be the reason?
    Please help..
    Naren

    Hi Naren,
    try the note :111062.
    [https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=111062]
    Please check the setting mentioned in the note and revert.
    Thanks,
    Hrishi

  • Changing default printer in Purchase order

    Hi
    This is Mohammed. Khan, when we are working with these purchase Order T-codes (IW32, IW21, IW28, IW38) When ever we are trying to give purchase order print, than automatically it will take $MECH,at present this printer is not available in our landscape, if there I donu2019t know where this printer is defined exactly, I am searching this particular printer in Output devices(SPAD) but this is not available in that list, can any body tell me how to change the default printer, from purchase order printing list, and also let me know how to set different printer in the place of $MECH printer..
    Thank you,
    Regards,
    Mohammed. Khan

    Hi
    Try checking NACE transaction, for your output type the default printer assigned (in communication method). And also check defaults tab in user record in SU01 tcode.
    Thanks

  • Not able to print in duplex

    On this windows 7 PC, Since I upgraded from Acrobate Reader 8 to Adober 9 and reader10, I am not able to print in duplex mode. I works fine from another computer Windows XP using Adobe Reader 6.0 using the same shared and WiFi printers.
    Looking at the document file property in the advance tab, in the print dialog preset window, I am not able to change the duplex mode from grayed "Simplex" to Duplex.
    How do I fix this problem?
    See screen print picture

    Hi,
    The HP Deskjet 2520 does not support automatic print duplexing and therefore any checkbox will not apply for such.
    You may perform manual duplexng on Mac OS using the Pages to Print option as following:
    From the file used to print click the File menu and select Print.
    NOTE: The Print window might be minimized. Press on Show Details to show any available print option.
    From the main drop does menu select Paper Handaling.
    The main menu will usually list the program name (e.g. TextEdit).
    Will appear as Copies & Pages within Microsoft Office applications.
    Set the Pages to Print option as Odd Only, as well set the Page Order as Automatic and click on Print.
    After the odd-numbered pages have printed, reload the paper with the printed side facing up and repeat the process above by setting the Pages to Print as Even Only this time.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Not able to print anything on ATG Rest webservices

    Hi..I am new to ATG Rest.. Just for the heads up, i followed following steps :-
    1 ) Added rest module to MANIFEST.MF
    2) Created a custom class which looks like this -
    package com.sgs.utils;
    import atg.nucleus.GenericService;
    public class SGSdummy extends GenericService {
      public void dummy() throws Exception {
        logDebug("sdbfhj");
    3) Mapped it to the property file -
    $class=com.sgs.utils.SGSdummy
    $scope=global
    loggingInfo=true
    4) Configured the security for above component in restSecurityConfiguration.xml
    <rest-security>
    <resource component="/atg/commerce/order/dummy" secure="false">
    <!--  <default-acl value="Profile$role$admin:read,write,execute"/> -->
      <method name="dummy" secure="false"/>
    </resource>
    </rest-security>
    I commented acl as i really didn't need it for a POC plus it was throwing 401 unauthorized.
    5) Now I am calling it from chrome's Advanced Rest Client. However, status is 200 OK but I am not able to print a logDebug or sysout in my SGSdummy class.
         When i check console, it says "Depth 0 is greater than maximum depth 0"
         I tried to change maxDepthAllowed in configuration.properties but in vain..I need help to proceed.

    Now I am trying to create a REST request using custom client. I believe it should be a POST request as I am trying to call a method. My custom client looks like this :-
    package atg.rest.client;
    import java.io.IOException;
    import java.util.HashMap;
    import java.util.Map;
    import atg.rest.client.RestClientException;
    import atg.rest.client.RestComponentHelper;
    import atg.rest.client.RestResult;
    import atg.rest.client.RestSession;
    public class RestDemoClient {
      /** The m username. */
      private String mUsername;
      /** The m password. */
      private String mPassword;
      /** The m host. */
      private String mHost;
      /** The m port. */
      private int mPort;
      /** The m session. */
      private RestSession mSession = null;
       * Instantiates a new method call by rest.
      public RestDemoClient() {
       * Execute.
       * @throws RestClientException the rest client exception
      private void execute() {
       mSession = RestSession
         .createSession(mHost, mPort, mUsername, mPassword);
       mSession.setUseHttpsForLogin(false);
       Map<String,Object> params = new HashMap<String,Object>();
       params.put("atg-rest-input", "json"); 
       RestResult result = null;
       try {
        result = RestComponentHelper.executeMethod("/atg/rest/SGSdummy", "addOrder", new
          Object[] {}, params, mSession);
       } catch (RestClientException e1) {
        System.out.println(e1);
       try {
        if (result != null && result.getResponseCode() == 200) {
         System.out.println("Executed Successfully.");
        } else {
         System.out
           .println("Error while execution : Error Code ["
             + result.getResponseCode()
             + "] and Message ["
             + result.getResponseMessage() + "]");
       } catch (IOException e) {
        System.out.println("Error while execution Successfully.");
       * @param args
      public static void main(String[] args) {
       RestDemoClient stepUtils = new RestDemoClient(); 
       stepUtils.mUsername = "admin";
       stepUtils.mPassword = "admin";
       stepUtils.mHost = "localhost";
       stepUtils.mPort = 8080; 
       stepUtils.execute();
    But everytime i execute this, I get following exception :-
    atg.rest.client.RestClientException: java.io.IOException: Unauthorized Server returned HTTP response code: 401 for URL: http://localhost:8080/rest/bean/atg/rest/SGSdummy/addOrder
    Exception in thread "main" java.lang.NullPointerException
      at atg.rest.client.RestDemoClient.execute(RestDemoClient.java:64)
      at atg.rest.client.RestDemoClient.main(RestDemoClient.java:82)
    I tried different set of credentials but nothing seems to work out for me.
    However it always works fine for GET requests. I am able to see status as 200 OK but it never hits my addOrder() method in SGSdummy class, hence I am not able to print sysout in that method. For status 200 OK GET requests, my logs say "[JSONOutputCustomizer] Depth 0 is greater than maximum depth 0. Outputting object of class java.lang.String as string rather than continuing to nest."
    Can you give me some pointers how to run it without any errors plus it should print a random sysout in my custom class. Thanks

  • I'm not able to print photos in iphoto 11

    I'm not able to print photos in iphoto 11. This message appears; There were no themes located. Until at least one theme has been installed, this feature will be unavailable.

    If you purchased it in App Store, open Launchpad, press Option key and select X button above iPhoto. Then, open App Store, select Purchases and download iPhoto. If you purchases it in a disc, open Finder, go to Applications folder and delete iPhoto. Finally, insert the DVD, install iPhoto and open  > Software Update to update iPhoto

  • Excise rate and value is not getting defaulted from the purchase order

    Hi all,
    While capturing excise invoice , the excise rate and value is not getting defaulted from the purchase order and in Excise Item Tab BED,AED,ECS is Zero at both header as well as item level for only one material in STO process and if we are doing same process taking other material all things are coming perfectly and We are maintaining condition with respect to vendor,plant and material combination.Any input related to this will be helpfull and rewarded.
    Regards
    Vishal

    Hi,
    Follow STO Process for this;
    1.Create a vendor for the company code of receiving plant, using account group: 0007 using T-Code XK01.
    2. Assign this vendor to Delivering plant
    Go to XK02 >Purchasing view>Extras>Add. Purchasing data>Plant
    3. Create internal customer with the sales area of the vendor. Go To XD01
    4. In pricing procedure determination relevant to STO, assign document Pricing Procedure and customer pricing procedure appropriate for STO to get the pricing in the invoice.
    5. Maintain condition records for the relevant pricing condition.
    6. Some more setting for STO: Go to MM> Purchasing > Purchase Order > Set up STO > define shipping data for plants > Go to Receiving plant >assign customer here & Supplying SA (for billing) to Receiving plant here
    7. Go to MM > Purchasing > Purchase Order > Set up STO > define shipping data for plants > Go to Supplying plant and assign the sales area of receiving plant.
    8. Go to MM > Purchasing > Purchase Order > Set up STO > assign delivery Type & Checking rule
    Assign the delivery type to document type. In this case, Delivery type NLCC is assigned to Document type NB
    9. Go to MM> Purchasing > Purchase Order > Set up STO > Assign document Type, One step Procedure, Under delivery tolerance
    Assign the document type NB to supplying plant and receiving plant
    10. After all settings, Create the STO using T-Code: ME21N and maintain pricing conditions of freight and Save.
    11. In supplying plant Maintain condition record in sales using VK11 the same will flow in receiving plant when referring the OBD no during MIGO.
    10. Create Delivery: VL10G
    12. Picking, PGI: VL02N
    13. Billing: VF01
    Save the document and its done
    14. J1IIN - Outgoing Excise Invoice
    15. MIGO - Goods Receipt against outbound Delivery
    16. J1IEX - Capture & Post Excise Invoice
    Rgs

  • Not able to print PDF report from Oracle APPS

    adcmctl.sh version 115.17.
    We have a network printer HP Laserjet 4250 which is configured on our concurrent manager server of RH Linux OS. We are using HP LASERJET 4250 Postscript driver. We are able to print PDF's directly however through CC manager we are not able to print reports in Proper PDF format. Has anyone faced such an issue with Oracle Apps?

    user11996936 wrote:
    Has anyone faced such an issue with Oracle Apps?Maybe. Maybe not. Ask to the proper forum. Here you are in Peoplesoft forum.
    Nicolas.

  • Not able to Print the report

    <p>Hello All,</p><p>I am not able to print the report. When i click on the icon a blank form opens up. Is there something i need to do to see the form with some details.</p><p>Thanks</p><p>ram</p><p>&#160;</p>

    <p>Hi Ram,    </p><p>Can you give me some more details around your issue? How exactly are you building the viewer? Are you using the JSP Page Wizard that comes with Crystal Reports for Eclipse? If so, then can you tell me what application server you are deploying to?  All of these pieces may help narrow down the issue.  </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) <br /><br /> <a href="http://www.eclipseplugincentral.com/Web_Links-index-req-ratelink-lid-639.html">Rate this plugin @ Eclipse Plugin Central</a>          </p>

  • I am facing issues with my music on my iOS device. I have five devices connected to my apple id. And out of which a Windows Machine and iPhone is not able to sync the purchased songs on the the Windows machine and the iPhone.

    I am facing issues with my music on my iOS device. I have five devices connected to my apple id. And out of which a Windows Machine and iPhone is not able to sync the purchased songs on the the Windows machine and the iPhone. The iPhone4 shows the songs are not supported and on the Windows Machine the songs do not play completely. Can anyone advice what could have gone wrong ? Because rest of the devices are synced to MacBook and they are able to sync the content normally.  I have even subscribed to iTunes Match but the problem is still not fixed.

    Firstly...  a little Clarity...
    Devices refer to iDevices... iPod... iPhone... iPad. ..   Not Computers.
    Authoriation applies ONLY to Computers... of which there is a Limit of 5 per Apple ID.
    If the issue is with iTunes on your Windows Computer... Perhaps you need to Re-install iTunes...
    See Here... to Uninstall and Re-Install iTunes...
    http://www.apple.com/support/itunes/install/

  • About 2 weeks ago, not able to print all pages in a .pdf document using internet explorer 11?

    About 2 weeks ago, not able to print all pages in a .pdf document stored in a folder (I'm using Windows 7)? 
    It only prints 1 page then my Brother MFC-J4510DW Printer says "Please put another piece of paper in the feed slot"....the problem is the print setting is set to "manual mode" in Windows 7 rather than "general setting".  If you try to change the setting to "general", it will not accept the change.

    Hi.
    I did try using the printParams feature and it worked, but since I need to be able to print sets of non-consecutive pages,  I end up having to bring up the print dialogue multiple times and have the user set watermarks each time. 
    I decided to just create a new pdf in a temp directory containing the selected pages and open this document in a new window.  This works well and allows them to use the print button on the window to print, bringing up the print dialogue just once.  However, since I need to open the document in a way that shows the print button, I am using OpenInWindowEx, with AV_DOC_VIEW, and the option PDUseBookmarks or PDUseThumbs, rather than PDUseNone.  This displays a toolbar which also includes icons for creating a new pdf, deleting pages, etc.  I do not really want to include these icons on the toolbar.  Is there a way to remove unwanted icons from the toolbar, or make them invisible?
    Hope this makes sense.  Thanks for your help.
    Mary

  • Purchase Orders_ Multiple projects not permitted on a single purchase order

    Hi Guru
    Please assist:
    We are using the MM & PS for Purchase Requisition, the Account Assignment N and the buyers created PO with different Network numbers on one Purchase Order,
    I want to delete the purchase order and i am getting the message Multiple projects not permitted on a single purchase order
    How do i delete this PO, i have tried the delivery complete and final invoice tick its not working
    Regards
    Susan

    The Apple Configurator tool robbed my school of @ 60×4 apps.
    Here's my mistake. I bought all the apps needed for the whole school in one lump sum. i.e. 350 copies of Pages. Then happily went to Configurator and loaded the spreadsheet. Installed on all the student iPads. Then need the remaining licenses to gift to the teachers and @ 30 for the cart. NOPE! Once they are loaded in to Configurator you can never get them back. Apple said, “sorry”.
    I did this for the iWorks suite, iPhoto, &amp; neu.Annotate before I realized what was happening.
    This is what to do, in short. From the VPP account, buy the number needed for exactly what you need, just make sure, it's over 20, even if you only need 11, 20 copies is cheaper than 11 because they are half off at 20 or more. Get the spreadsheet generated by the VPP site for the 20 then buy for the next cart or site, it will generate a new spreadsheet of 20 you can give to the computer and its copy of Configurator.
    https://schoolipads.wordpress.com/2013/03/23/vpp-configurator-multiple-carts-or- locations/

  • Not able to print reader file

    When I convert MS Word files to Adobe Reader files, some people are not able to print them. Some of the content prints for instance, but some is missing. The graphics may print, but the text is missing.
    Any ideas?
    Thanks,
    Brian

    Thanks for the response Michael,
    Here is a file I converted from Word to a PDF that will only print the graphics.
    I am using Word 2007 and Adobe Reader 9 Pro. I have the CS4 suite. When I save, I am using the following parameters:
    Convert Document Information
    Enable Accessibility and Reflow with tagged Adobe PDF
    Create Bookmarks
    Convert Word Headings to Bookmarks
    I should add that changing and eliminating these parameters make no difference.
    Thanks,
    Brian

Maybe you are looking for

  • Convert this number to a date

    Hi, from my database there is a field for date and it is a number like this: 1295944970.   This corresponds to a date displayed as 1/25/2011 displayed on the website.   Does anybody know how to convert the data 1295944970 from the database date field

  • IE only: wwsec_app_priv.process_signon (User-Defined Exception) (WWC-41417)

    I am using Portal 3.0.6 in Sun SunOS 5.8. The site will be running in https mode. As everybody knows, 443 is the default port number for ssl mode. I setup the httpd.conf to 443. No problem. I ran ssodatan to relate Login Server to Portal - I had to s

  • Unable to get mouse (USB) or serial working.

    I have a MSI 865P board. Ive tried all drivers ive seen this far and am unable to get a USB installed or serial working. Any ideas?

  • Numbers spreadsheet in Mavericks

    I'm just starting to use Mavericks on a new MacBook. I moved a spreadsheet from my old computer and somehow have lost the menu ribbon at the top for formatting. I was playing around with full screen, so maybe that's what happened. I've fiddled with t

  • WCS 6.0 client traffic reports

    I've looked around in the reports trying to find one that generates the Client Traffic report on the Home page under the Client tab. It is just a plain and simple graph that shows how much bandwidth has been used. I've only seen reports that show how