16:10 screens? custom order?

does anyone know if lenovo does 16:10 screens if the customer pays more? i heard some mention of it but it could be old news. i have to say i hate 16:9 screens offered on practically all pc laptops. there is a good 2inches of wasted space on the lcd framing/asseembly of almost all thinkpads that can totally accomodate a 16:10. 
ive been gone from the pc notebook market for many years as my currernt laptop is stil great but recently i just came back looking for something new and to my shock laptops are looking more like those toy vtech computers with tiny screens and large bezels and frames for kids.
Solved!
Go to Solution.

hausman wrote:
AFAIK no.
Sadly the same goes for the 4:3 screens. A 6 year old T60p with 4:3 screen had 1600x1200 pixels while today's 16:9 is only 1600x900. And the image quality is much poorer too. I'd be happy to pay more to get better but it's not an option.
Unfortunately, hausman is 10000% correct...in all segments of his post...
The last 16:10 ThinkPad was T410 and its i/s cousins...even T/W510 were 16:9 already...
Cheers,
George
In daily use: R60F, R500F, T61, T410
Collecting dust: T60
Enjoying retirement: A31p, T42p,
Non-ThinkPads: Panasonic CF-31 & CF-52, HP 8760W
Starting Thursday, 08/14/2014 I'll be away from the forums until further notice. Please do NOT send private messages since I won't be able to read them. Thank you.

Similar Messages

  • External Inventory Feed - Wish to Exclude Customer Order Stock

    We have an hourly inventory job, which writes available inventory to an external file.  Recently, we learned that the report is including material which has already been reserved for future customer orders (see for example in MD04).  We do not have an ABAP programmer on staff so I am posting our existing code below and would appreciate hugely an updated script.
    I've seen references in other searches to MD04 and use of function 'MD_MPS_READ_STOCK_REQMTS' as well as 'BAPI_MATERIAL_STOCK_REQ_LIST', but do not know how to incorporate this into the hourly job.
    As you can see, the report output is being pulled from MARD-LABST, unrestricted, but it needs to also exclude allocated customer order stock.
    Thank you in advance for looking.
    *& Report  ZMM_INVENTORY_FEED*&*&---------------------------------------------------------------------**&*&*&---------------------------------------------------------------------*
    REPORT  zmm_inventory_feed NO STANDARD PAGE HEADING.
    TABLES:mara,marc,mard,mvke.
    *-------------Types Declaration----------------------------------------*TYPES:BEGIN OF ty_file,
          text(500),
          END OF ty_file,
          BEGIN OF ty_mard,
          matnr    TYPE mard-matnr,
          werks    TYPE mard-werks,
          lgort    TYPE mard-lgort,
          labst    TYPE mard-labst,
          mstae    TYPE mara-mstae,
          maktx    TYPE makt-maktx,
          mvgr2    TYPE mvke-mvgr2,
          END OF ty_mard,
          BEGIN OF ty_final,
          supplier TYPE lfa1-lifnr,   "Supplierid
          matnr    TYPE mard-matnr,   "Item no
          labst    TYPE char13,       "Qty
          qtyback  TYPE char13,       "Qtyback
          qtyorder TYPE char13,       "Qtyorder
          itemav   TYPE c,            "Itemavdate
          itemdis  TYPE char13,       "Discount
          desc     TYPE makt-maktx,   "Description
          END OF ty_final.
    *----------Internal Table Declaration---------------------------------*DATA:it_mard   TYPE TABLE OF ty_mard,
         it_final  TYPE TABLE OF ty_final,
         it_file   TYPE TABLE OF ty_file,*----------Work Area Declaration--------------------------------------*
         wa_mard   TYPE ty_mard,
         wa_temp   TYPE ty_mard,
         wa_final  TYPE ty_final,
         wa_file   TYPE ty_file.
    *----------Local variable Declaration---------------------------------*DATA: lv_labst   TYPE char13,
          lv_labst_i TYPE i,
          lv_labst1  TYPE char13,
          lv_labst2  TYPE j_1itaxvar-j_1itaxam1,
          lv_mess    TYPE string.DATA lv_filename TYPE char100.*----------Selection-Screen Declaration-------------------------------*SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS:s_mstae  FOR mara-mstae OBLIGATORY,                     "Material Status
                   s_mvgr2  FOR mvke-mvgr2 OBLIGATORY,                     "Material Group
                   s_matnr  FOR mara-matnr,                                "Material Number
                   s_werks  for mard-werks,
                   s_lgort  FOR mard-lgort.PARAMETERS:    p_per(3) TYPE n DEFAULT 20,                             "Percentage
                   p_appl   TYPE rlgrap-filename DEFAULT '\\Appsrv02\Datadown\DropShip_SAP_Test\'. "File Path
    SELECTION-SCREEN END OF BLOCK b1.*----------End Of Declarations----------------------------------------*
    *AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_appl.*  PERFORM f4_filename.                     "F4 help for file path
    START-OF-SELECTION.
      PERFORM get_data.
      PERFORM process_data.
      PERFORM file_export.*&---------------------------------------------------------------------**&      Form  GET_DATA*&---------------------------------------------------------------------**       text*----------------------------------------------------------------------*FORM get_data .
      SELECT a~matnr
             a~werks
             a~lgort
             a~labst
             b~mstae
             c~maktx
             d~mvgr2 INTO CORRESPONDING FIELDS OF TABLE  it_mard
                           FROM mard AS a
                     INNER JOIN mara AS b
                             ON b~matnr = a~matnr
                     INNER JOIN makt AS c
                             ON c~matnr = a~matnr
                     INNER JOIN mvke AS d
                             ON d~matnr = a~matnr
                          WHERE mstae   in s_mstae              "Exclude Material Status Filteration
                            AND a~werks IN ('1100','1200')        "Plant in 1100 and 1200
                            AND mvgr2   IN s_mvgr2              "Exclude Material group
                            AND a~matnr IN s_matnr
                            and a~werks in s_werks
                            AND a~lgort in s_lgort.
      SORT it_mard BY matnr werks lgort.
      DELETE ADJACENT DUPLICATES FROM it_mard COMPARING matnr werks lgort.ENDFORM.                    " GET_DATA*&---------------------------------------------------------------------**&      Form  PROCESS_DATA*&---------------------------------------------------------------------**       text*----------------------------------------------------------------------*FORM process_data .
    *--------------File Header Information --------------------------------*
      wa_final-supplier    = 'Supplier Id'.
      wa_final-matnr       = 'Item Number'.
      wa_final-labst       = 'Total Qty'.
      wa_final-qtyback     = 'Qty Backordered'.
      wa_final-qtyorder    = 'Qty on Order'.
      wa_final-itemav      = 'Item NextAvdate'.
      wa_final-itemdis     = 'ItemDiscont'.
      wa_final-desc        = 'Description'.
      CONCATENATE  wa_final-supplier
                   wa_final-matnr
                   wa_final-labst
                   wa_final-qtyback
                   wa_final-qtyorder
                   wa_final-itemav
                   wa_final-itemdis
                   wa_final-desc    INTO wa_file
                                    SEPARATED BY ','." RESPECTING BLANKS.
      APPEND wa_file TO it_file.
      CLEAR :wa_final,
             wa_file.*------------------End File Header---------------------------------------*
    *------------------File Item Data----------------------------------------*
      LOOP AT it_mard INTO wa_temp.
        wa_mard = wa_temp.
        MOVE:wa_mard-matnr TO wa_final-matnr,  "Item No
             wa_mard-maktx TO wa_final-desc.   "Description
        IF wa_mard-werks     = '1100'.
          wa_final-supplier  = '6476'.         "Supplierid
        ELSEIF wa_mard-werks = '1200'.
          wa_final-supplier  = '6477'.
        ENDIF.
        IF wa_mard-labst IS NOT INITIAL.
          lv_labst1 = lv_labst1 + wa_mard-labst.
        ENDIF.
        AT END OF werks.
          IF wa_mard-mstae = 'AE'.
            wa_final-itemdis = '0'.        "Item Discontinued
          ELSEIF wa_mard-mstae = 'CM' OR wa_mard-mstae = 'DR'.
            wa_final-itemdis = '1'.
          ENDIF.
          IF lv_labst1 IS NOT INITIAL AND p_per IS NOT INITIAL.
            lv_labst = lv_labst1 * p_per / 100. "Qty
            lv_labst = lv_labst1 - lv_labst.
            IF lv_labst LT 0.                    "If Qty less than Zero Make it as Zero
              lv_labst = 0.
            ENDIF.
          ELSE.
            lv_labst = lv_labst1.
          ENDIF.
          lv_labst2 = lv_labst.                  "Rounding to Nearest Qty
          CALL FUNCTION 'J_1I6_ROUND_TO_NEAREST_AMT'
            EXPORTING
              i_amount = lv_labst2
            IMPORTING
              e_amount = lv_labst2.
          lv_labst_i = lv_labst2.
          lv_labst = lv_labst_i.
          CONDENSE lv_labst.
          CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
            EXPORTING
              input         = wa_final-matnr
           IMPORTING
             OUTPUT        = wa_final-matnr
          CONCATENATE wa_final-supplier
                      wa_final-matnr
                      lv_labst
                      wa_final-qtyback
                      wa_final-qtyorder
                      '          '"'00/00/0000' "wa_final-itemav
                      wa_final-itemdis
                      wa_final-desc INTO wa_file
                                    SEPARATED BY ','." RESPECTING BLANKS.
          APPEND wa_file TO it_file.
          CLEAR:lv_labst1,
                lv_labst,
                lv_labst2,
                wa_file.
        ENDAT.
        CLEAR:wa_mard,
              wa_temp,
              wa_final.
      ENDLOOP.*---------------------------End  File Item data----------------------*ENDFORM.                    " PROCESS_DATA*&---------------------------------------------------------------------**&      Form  FILE_EXPORT*&---------------------------------------------------------------------**       text*----------------------------------------------------------------------*FORM file_export

    What you said is exactly what I want! Very thankful for your help.
    Yes, I have found that in EBEW table that standard price is valuated with preliminary cost estimate because I don't give a sales order cost estimate but I give an sales order stock in the customizing - requirement class. So, I have this question that how the sales order stock is determined.
    In COPA customizing (COprofitability analysismaster datavaluationSet up valuation using material cost estimate), standard cost estimate or sales order cost estimate can be transferred into COPA value fields in our system.
    But, I have still have a question: I found in our system, preliminary cost estimate in the linked production order is determined for valuation of sales order stock in EBEW table. As sap online help says, cost component splits can not be transferred to COPA.
    So, according to SAP online help, I think what you said u201Cu2026..However , when we start thinking about the result of this cost to flow into COPA , this cannot happen as the Inventory was valued with a Preliminary csot estimate. So , the Online help says that it will not be able to transfer Result of Preliminary cost estimate into COPA for transferrring COGS details. System would always require a Standard cost estimate or a Sales order Cost estimate to flow Cost details into COPAu201D is correct.
    But, in our system, cost component can be transferred into COPA!? When I create a sales billing (invoice) with tcode VF01, it can create a profitability analysis document (shown in VF03) which it had a cost component split for that material in the sales order stock valuated with the preliminary cost estimate. Or where is stored for the Make-to-Order materialu2019s cost component split in COPA?
    That is the real point that confused me. Hope you can help me. Thanks very much.

  • Custom Order and returns

    Greetings,
    I ordered my MacBook Pro 1.83ghz with a 120gb drive and additional memory - at the time I did not realize the implications of a "custom order", namely that a return can't be done. I purchased the machine from a reseller as opposed to the Apple Store. I would like to return my whining machine - anyone one else in this situation that was able to accomplish a return?
    I'm checking out other options such as small claims court - I think Ontario has some strong consumer protection laws but would rather it not go in that direction.
    MacBook Pro 15 inch - w8617....   Mac OS X (10.4.6)  

    I am sorry to hear this. In lieu of going after the reseller, and they should have told you that they wouldn't accept any returns or exchanges, have you tried any of the whine work arounds, such as opening Comic Life and then closing it? Or do you have the screen hiss? I believe there is a fix for that if you send your computer in to Apple. Other than that, you could eBay the machine but would like take some loss on the product, which would be unfortunate. If all else fails, I might see how far you can take your complaint up the Apple food chain, so to speak. Ask to speak to a product specialist first and then go from there.

  • Not to save customer order if net amount zero

    Dear Gurus,
    I want SAP not to save customer order if net amount  = zero .
    How can I do it by customizing?
    Kind Regards,

    Hi,
    Include VBAK-NETWR field and screen as KKON  in the incompletion procedure in T.Code:OVA2
    Tick the check box IC Dialog while assigning incompletion procedure to sales document type in T.Code: VUA2
    System will nto allow the sales order to save if Net value field is Zero.
    Hope this helps.
    Regards,
    Sharan

  • Automatic release of customer order block for credit check

    Dear expert,
    Please i need your input on this, we have a scenario where third party customer order is automatically block for credit check at sales order. Now i want that after posting customer payment the sales order should be automatically release if the customer balance covers the value of goods required no need to manually release in VKM1. Is this possible is as per SAP? IF yes how can i do the settings
    thanks in advance

    yes u can do it in vkm1 is right but you can also do in credit management screen if ur fully controlled in credit management then u can go to abaper help
    if it is wrong plz suggest

  • Customer Order Tolerance Fields.

    These fields are not maintainable in VA01 and VA02 in our ECC 6.0 system.  We can't find in config where to allow and open these fields up to make them so the users can change the values of these two fields (over and under tolerance on the shipping tab of the order line). 
    These fields currently default in from the Customer Master, however, we want to allow the user to change them on the customer order line.  Where do we change our system (config) to allow this.
    thanks,
    David

    I found a system modification done to the shipping screen that un-checked the input toggle in the layout

  • FHD panel evaporated from customized order

    Hi, 
    I moved this from another tread and was going to post it in the T shipping forum but it didn't fit there either.
    I had sized up my W510 order w/ the FHD panel recently and tonight when I came back to actually order the unit, low and behold the FHD panel has evaporated from the customized ordering option. 
    I scanned other forums and found more stories for  mysteriously cancelled orders and constantly adjusting phantom ship dates for anything w/ the 1920 x 1080 "FHD" panels and now the FHD panels are no longer an orderable option on the customized web ordering site?  WTH?
    How could Lenovo so grossly underestimate the demand for these units with this panel?   If I or thousands of others dedicated "Thinkpad" customers wanted some BS smaller res, lower quality panel, and inferior overall quality product,  I'd buy another brand.  I've owned Thinkpads since they were first released.
    This backlog of orders, plus all of the lost sales from people like me does not reflect well on Lenovo or its supply chain - especially during this economy.  Someone placing an order for a machine in this class ought to have it at their door in 3-5 days maximum, not 3+ months - bad, bad, bad, bad, BAD!  And still worse yet, they yank the FHD panel from the ordering options and do not even post a note to page showing when the option will be again be available?    
    Do I now have to keep checking the Lenovo order site daily for the next 3-6 months until the FHD panel option magically "reappears" or is there some way, like with many other companies, to have Lenovo email me once the FHD panel is again available? 
    It also seems quite short sighted to removed the ordering option from the web site.  I understand not further ticking customers off by not shipping when promised (I'd be ticked off too) but to totally remove the option just shifts the burden of tracking this from Lenovo onto the backs of customers and keeps Lenovo further in the dark on the actual demand as they now have less info available to guauge the actual level of demand via their backorders. 
    Brilliant, just brilliant.    Thanks, G. Mobley

    Yeah, when I ordered a W510 earlier this year, the web site said it would delay the order 4+ weeks.  Which was techincally accurate, but entirely misleading. I have enough patience to wait 4-6 weeks. But now, my order status says it won't ship for 10+ weeks!
    Apparently there was a "labor crash" in China around the Chinese New Year. Many workers went home and realized they can make much more money back home in service jobs than in the city doing factory work. I can understand that -- who wants to sit in a stuffy sweatshop examining the pixels on FHD screens and breathing solder fumes 12 hours a day in the city; when they can be doing a more social and better-paying service or office job back home close to their family? So, the labor shortage has affected many Chinese manufacturers.
    However, most of these Chinese companies, like Asus and Lite-On, have been able to make adjustments to compensate for the labor shortages. I don't know enough about Lenovo's business to say what they should have done but at the very least, (1) I don't understand why Lenovo still had FHD panel listed as an option when they obviously could not possibly deliver it in a reasonable time frame. (2) Why is it just the FHD panel? That indicates not just a manufacturing problem but a management problem.
    After wating that long, this W510 better be the best computing device I've ever used, or I'm done with Lenovo.

  • Difference in currency rate between customer order and accounting document

    Dear gurus,
    While I am cretaing customer order SAP calculates currency from Exchange Rate="B" at OB08 screen. This situation results because of Currency type in customer master data. But in the accounting document SAP calculates currency from Exchange Rate="M" at OB08 screen. As a result; this is causes problems.
    I want SAP to calculate currency which is entered in customer master data. It might be M,B etc.. According to the CUSTOMER.
    How can I fix this issue?
    Thnks regards,

    Hi,
    In the copy routine from Sales Order to Billing, copy the exhcange rate from sales order.
    And then the billing will get the same exchange rate as in sales order and thus will also pass the same to the accounting.
    Regards,
    SDNer

  • Difference in currency  between customer order and accounting document

    Dear gurus,
    While I am cretaing customer order SAP calculates currency from Exchange Rate="B" at OB08 screen. This situation results because of Currency type in customer master data. But in the accounting document SAP calculates currency from Exchange Rate="M" at OB08 screen. As a result; this is causes problems.
    I want SAP to calculate currency which is  entered in customer master data. It might be M,B  etc.. According to the CUSTOMER.
    How can I fix this issue?
    Thnks regards,

    Hi,
    This is a complicated scenario.
    There are 3 currencies involved in any transaction
    Document currency (from customer master)
    Condition type currency (from condition record)
    Local currency (Currency of company code )
    During account posting in FI, the document currency will be converted into local currency and posting in local currency will be made. Also there is a posting in document currency also. For the conversion between document currency and local currency, by default M is used. For other exchange rate types, it should be enabled by means of user exits in sales order or invoice. The exchange rate which is available in invoice for this conversion (doc currency to local currency) is copied to acctg documnent. It is not freshly calculated in accounting document.
    Conversion from customer currency to document currency happens either through M or through the customer master exrate type.
    Now you decide how you want to handle the scenario. Customer currency to document currency can be done as  per the customer master you maintain. But if you want to convert document currency to local currency (provided customer currency and doc currency are same), then only M will be used in standard.
    If you are in a scenario where all the 3 currencies are different, then the way by which the system calculates the exchange rate is through an indirect triangulation process, which is little complex. In this case, it will use only one exchange rate type. Hence this scenario in your case will have problem. If you test all these scenarios, you will come to know.
    We faced this problem an year ago and then finally realised that it is not possible to use two xng rate type in one SD cycle. This is because the exchange rate type is stored in VBAK, VBRK and so on and hence it is not possible to use two xnge rates or the rate maintained in customer master throughout the cycle. The sales transaction is controlled by Cust master and FI transactions are controlled by M

  • I need to install the HP drivers on a laptop with a broken screen in order to get VGA port to work.

    OS: Windows 7 Home Premium SP1
    Hewlett Packard Model: 2000 2a20ca Notebook
    Oh my god please give me some insight here, it is so hard to find the right answers and I refuse to lose to this technical box that's driving me nuts! So here's the run down:
    My screen broke on laptop...fine. It was connected via HDMI to TV and working fine. Until one day it decided to not turn on. I think due to Windows updates and hubby had no patience so kept restarting
    I tried to reload Windows on it, not thinking about the drivers, and I'm pretty sure I managed to reload Windows. Now I need the drivers to install chipset, networking etc. (which I have a disc for)
    The problem is I cannot see the screen in order to click "install", I can't see the BIOS or the boot sequence. Ugh! And even if I could, the drivers are not installed to use the CD ROM or VGA port.
    I can HEAR Windows start up and turn on! Doo-DO-Doo-DO lol the darn thing is working!
    The monitor works in my other laptop.
    Would/Should the VGA monitor work if I could get it to start in safe mode?
    I've heard of a program that can streamline the driver's into a Windows installation disc so everything is installed altogether but how can I reinstall Windows if the drivers aren't loaded for the CD ROM?
    Is there a way to get the necessary drivers installed? or is this notebook now garbage?

    RocknRoll77 wrote:
    Seriously? 
    1.  The model number is the first thing at the top aside from the OS.
    2.  In my explanation it states:  "I have the drivers on a disk"
    Thanks for all your help!
    Getting the drivers is not the problem.  Getting the drivers installed on a laptop with a broken screen...is the problem.
    Ok, well sometimes you can't use external monitor to see what is happening in some laptops and the only real way to fix this is to fix the broken screen so you can reformat and resinstall the system again. Those are you only options at this point in time.
    I am a Volunteer to help others on here-not a HP employee.
    Replies aren't online 24/7 because of Time Zone differences.
    Remember in this Day and Age of Computing the Internet is Knowledge at your fingertips if you choose understand it. -2015-

  • Customer order actual activity report

    Dear experts,
    I am using make to order strategy and I have a multilevel BOM structure. I am following some semi-finished products individually for customer order and some for make to stock. I need a report to see the actual activity confirmations for a single customer order including all the activities of semi-finished products in BOM. For your help please.

    Hi Ahmet,
    This is rather a problem of material ledger multi-level settlement than of activity pricing. Material ledger will pick up the actual activity price correctly and will use the difference against the former activvity price as multi-level price difference on the production process. The problem is, if there are multiple outputs coming out of the process, as is resulting of the order combination process, material ledger will by default search for a apportionment structure (for joint production) in the material master of the main (or original) output material. As nothing will be maintained there, all the differences will go to this material.
    You can overcome the situation by a BADI implementation of BADI cost_split. There should be an example implementation in your system (if you have the Mill Products add-on active, as is indicated because you use Mill_oc) that enables to distribute the price differences by quantity of the outputs of a process. If you don't find the example implementation I could provide it to you.
    best regards,
               Udo

  • SAP Tables  for Open Customer Orders and Sales History

    Dear Experts.
    I am looking to get SAP SD related tables for the following,
    1) SAP tables for Open Customer Orders     
    From SAP, I need to get all tables that Contain all open customer orders for products.
    2) Sales History
    From SAP, I need to get all tables that contain the previous month's sales history (shipped customer orders).
    Please Help!!

    hi
    check the following link
    http://www.erpgenie.com/abap/tables_sd.htm
    hope it will help you
    regards,
    sreelatha gullapalli

  • What is the procedure for calling three screens in order?

    Hi friends,
                  Can anyone solve my problem of knowing how to call three screens.
    In one screen i will be give say emp-id and password
    it has to go to next screen have 2 radiobuttons functional and technical after selecting it has to go next screen where employee name timein and timeout will be there where i have to store employee name and timein and out in a table please its urgent can any one help with this. Creation of screens are perfect but only calling the screens in order and storing the data in a table is my problem.
    Solutions will be surely rewarded.

    hi,
    screens can be called by any one of the following methods:
    1.using a t-code
    2.from abap program
    if ur calling it from abap program, make use of CALL SCREEN
    syntax:
    CALL SCREEN <dynnr>.
    statement to call a screen and its subsequent sequence within that program. The flow logic of each screen calls dialog modules in the program that called the screen.
    When the screen sequence ends, control returns to the statement after the original CALL SCREEN statement.
    To termintate the screen sequence, use  LEAVE TO SCREEN.
    These statements exit the current screen and call the defined next screen. If the next screen is screen 0, the entire screen sequence concludes.
    please rewards points if useful.
    regards
    sandhya

  • Selection screen fields order in report painter report..

    hi experts,
    i have a  problem with selection screen fields order in report painter report.
    Actually in report painter report selection screen order is different compare to report writer report selection screen.
    how should i get the same selection screen fields order For  Report painter  report compare to Report Writer report ?
    For example, Report Writer selection screen order is:
      ledger:
      company code:
      period:
      current fiscal year:
      previous fiscal yer:
      previous quarter end period:
    where as Report Painter selection screen order is:
      ledger:
      previous fis year:
      current fis year:
      company code:
      period:
      previous quarter end period:
    please help me regarding with this.
    Thanks and Regards,
      NAGARJUNA.

    hi nagarjun,
    Go to Sq01, select the query and goto to change mode.go to the next screens till u reach Selection fields. Here u enter the NO field in the sequence which u want ot appear in the selection screen and it is done. Save and execute.
    Ex:
    Selection fields No
    Exclude Cancelled Lots 5
    Material number 1
    Plant 2
    Material type 3
    Inspection Lot Origin 4
    Regards,
    Lokesh

  • Problem when creating a customer order (VA01)

    I'm trying to create a customer order to sell a material which has serial no. I use transaction VA01.when i wrote the serial no of the material that gives an error "the serial no doesn't exist in SNUM".when i checked that table, i saw that there is no data. Probably some missing or mistake about customizing.
    Does anyone have any idea, what should i do???
    Thanks...

    Create serial number profile in <b>T.code: OIS2</b> and
    Please Assign the serial number profile to the material master (Sales orgn/plant data) present in the sales order. Then recreate the order.this solves your problem.

  • Line item screen (Customer, GL or Vendor),

    Hi
    In any Display line item screen (Customer, GL or Vendor), I am not
    able to see the field called "User ID" or "Entered By". How can i see
    the above line item screens with the field "User ID, Entered by" field.
    thanx in adv

    Hi,
    For GL line item display, Customer line item display and Vendor line item display you can use transactions codes FBL3N, FBL5N and FBL1N respectively. After the report is executed, you can click on layout icon and add the required fields.
    User name is there in the layout and you can add it in your layout and save it.
    Thanks
    Murali.

Maybe you are looking for

  • Office jet pro 8600 e print

    Hi all, ive been trying to set up the printer above for eprint so i need to set the email address. however when i try and set this up i print out the network configuration. my question is what is the "code" that is asked for? i try adding the printer

  • Nokia x6

    hi my nokia x6 is due to the bin, but before I do that I would love to save all my contacts and old msgs. Now the big deal is that the unlock switch is broken and right now I cannot even just browse them. After downloading the nokia pc suite I have

  • SAP, VBScript, import data to solution manager

    Hi, I'm  trying to import to Solution Manager a testset-structure (from Excel, but Excel is no problem) I could not find out, how to allocate in SOLAR01/02 a folder structure, testpackages and last but not least testcases, I did not even succeed to e

  • HT1977 I can't purchase apps without updating security info. Questions not there!

    Security questions need nswered but the questions aren't visible just the answers. Says the account has timed out and won't allow updates to occur.  No purchases can occur.

  • Blackberry Pearl as a modem on the mac

    Hi- I guess this is more of a pearl question...but here goes. My husband was able to use our Blackberry Pearl 8100 on his pc. Of course, the directions T-mobile provided for mac were out of date. I found these on another site: http://www.askdavetaylo