Collective Entry of Mesurement Documents - Change / Display Mode

Hi All,
Is there any T code or table view or program to view / display the Collective entry of measurement documents?
We use T-code IK34 to make collective entries, but I am not able to find any T codes / menu path for viewing the same in change / display mode.
Pls. post your suggestions. Thanks in advance.........JK

Hi Muralidharan
Sorry, I am afraid not !
I want to view the data entered in IW34 as it is in display mode.
This is basically to ensure if all the values have been entered by the person who is entering the data in collective entry sheet.
Any clues, pls. help.
Tks and best regards.
Kannan J

Similar Messages

  • Change display mode

    Hello everybody iam having problem when i change a document from display mode to change mode fields are still grey and not maintainable and i have written below code for display mode .please go through this and suggest me necessary modifications for maintaing fields in change mode.
    case : sy-TCODE.
        WHEN 'FPE3'.
          loop at screen.
            if screen-name = 'FKKOP-ZFCACHBACKREF'
            OR SCREEN-NAME = 'FKKOP-ZFCACHBACKRSN'
            OR SCREEN-NAME = 'FKKOP-ZFCALASTPRSTAT'.
              screen-input = 0.
              modify screen.
              endif.
            endloop.
         endCASE.

    here is the sample code to change the fields from display mode to change mode...
    by default those r in display mode and if u uncheck the radio button go to change mode....
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE w_title.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(31) text-t05 MODIF ID bla.
    PARAMETERS: p_abkrs LIKE pa0001-abkrs.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: p_c_per RADIOBUTTON GROUP rad1 DEFAULT 'X' USER-COMMAND
    rad.
    SELECTION-SCREEN COMMENT 3(20) text-005 MODIF ID bla.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: p_o_per RADIOBUTTON GROUP rad1.
    SELECTION-SCREEN COMMENT 3(20) text-006.
    SELECTION-SCREEN POSITION 33 .
    PARAMETERS: p_pabrp(2) TYPE n MODIF ID bla,
    p_pabrj(4) TYPE n MODIF ID bla.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b1.
    INITIALIZATION.
    p_pabrp = '10'.
    p_pabrj = '2007'.
    SELECTION SCREEN EVENTS **
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF p_c_per = 'X'.
    IF screen-group1 = 'BLA'.
    screen-input = 0.
    MODIFY SCREEN .
    ENDIF.
    ELSE.
    IF screen-group1 = 'BLA'.
    screen-input = 1.
    MODIFY SCREEN .
    ENDIF.
    ENDIF.
    ENDLOOP.

  • IllegalStateException when changing display mode of JFrame

    My application has an information console inside a JFrame. The console is continually updating and repainting.
    I let the user drag this window wherever they want, resize it how they want, etc. I also give them the ability to select one of three display modes:
    - "Decorated Window"
    - "Undecorated Maximized Window"
    - "Undecorated Fullscreen Exclusive Window"
    The toggling between modes normally works well, but occasionally an "IllegalStateException: Buffers have not yet been created" is thrown by (from what I can tell), a component on the console that's trying to be repainted.
    Seems obvious to me that something doesn't like the fact that the JFrame has been disposed for an instant and can't deal with it appropriately. Question is, what the hell can I do about it?
    I believe everything continues fine despite the exception (although I have a hard time reproducing on my system), but still, it's a wart and I'd like to chop it off.
    Here's my code for changing the window mode.
    public void setDisplayMode(Component parent,
             ConsoleDisplayMode newDisplayMode) {
         GraphicsDevice device = this.getGraphicsConfiguration().getDevice();
         int state;
         switch (newDisplayMode) {
         case DisplayAsDecoratedWindow:
             // Add the decorations
             this.dispose();
             this.setUndecorated(false);
             this.setVisible(true);
             device.setFullScreenWindow(null);
             // De-iconify
             state = this.getExtendedState();
             state &= ~JFrame.ICONIFIED;
             this.setExtendedState(state);
             // Minimize
             state = this.getExtendedState();
             state &= ~JFrame.MAXIMIZED_BOTH;
             this.setExtendedState(state);
             break;
         case DisplayAsUndecoratedWindow:
             // Remove the decorations
             this.dispose();
             this.setUndecorated(true);
             this.setVisible(true);
             device.setFullScreenWindow(null);
             // Make sure it is de-iconified
             state = this.getExtendedState();
             state &= ~JFrame.ICONIFIED;
             this.setExtendedState(state);
             // Maximize
             state = this.getExtendedState();
             state |= JFrame.MAXIMIZED_BOTH;
             this.setExtendedState(state);
             break;
         case DisplayFullScreenExclusive:
             if (device.isFullScreenSupported()) {
              int choice = JOptionPane
                   .showConfirmDialog(
                        parent,
                        "Warning:\n\n"
                             + "This mode is meant for users with a multiple-monitor configuration.\n"
                             + "In this mode, the console controls the graphics device exclusively\n"
                             + "and other windows (such as the other TM windows and dialogs) cannot\n"
                             + "be displayed over the console.\n\n"
                             + "If you have a single monitor, use the mode called\n"
                             + "\""
                             + ConsoleDisplayMode.DisplayAsUndecoratedWindow
                                  .toString() + "\".\n\n"
                             + "Continue with this mode?",
                        "Confirm full-screen mode",
                        JOptionPane.YES_NO_OPTION,
                        JOptionPane.WARNING_MESSAGE, ChipIconFactory
                             .getWarningChipIcon());
              if (choice == JOptionPane.YES_OPTION) {
                  this.dispose();
                  this.setUndecorated(true);
                  this.setVisible(true);
                  state = this.getExtendedState();
                  state &= ~JFrame.ICONIFIED;
                  this.setExtendedState(state);
                  device.setFullScreenWindow(this);
             } else {
              JOptionPane
                   .showMessageDialog(
                        null,
                        "Your graphics device does not support full-screen mode",
                        "Unable to display in full-screen mode",
                        JOptionPane.ERROR_MESSAGE, ChipIconFactory
                             .getErrorChipIcon());
             break;
        }

    jneau wrote:
    My application has an information console inside a JFrame. The console is continually updating and repainting.
    The toggling between modes normally works well, but occasionally an "IllegalStateException: Buffers have not yet been created" is thrown by (from what I can tell), a component on the console that's trying to be repainted.Are you certain all your interaction with the GUI happens on the EDT?

  • Collective entry of Measurement document

    Dear Expert,
                          We running the collective entry list process through IK34 for measurement document.i would like to inform you that we have three measuring point(A,B,C) attached in particular equipment(Z).but we put only two entries in measuring point (A,B) through same entry list.than unable to entry for same measuring point(A,B).
    So, tell me how can this possible only two entry in measuring point(A,B) for same entry list.
    Regards,
    Akhilesh

    Hello,
    You created one equipment with 3 measuring points A, B & C. Now you have created the Measurement Entry List in IK34 with all 3 measuring points.
    In that list, now you want to enter the reading only for A & B but not for C.
    For this, put t - code IK34. Give the entry list number.
    In next screen, you will see all the measuring points.
    In that list, near measuring point "C", there will be one check box. Select that box & go to top where you will find delete button. Click that button. That will delete "C" temporarily from the list. Now you enter the readings for A & B.
    Then click save to save the document.
    that will create 2 Measurement documents.
    I hope this will help you. please come back to me still you have some more clarifications. Else grant points.
    Regards,
    Maheswaran.

  • After Start the Query, change Display Mode. WHERE ??? QD-BI7.0

    Hello Gurus,
    where can I change my Display Mode of the Query. I have 12 rows, but shows me only 4 rows. Then I have to scroll right with a button.
    Where Can I change something like that ?
    Thanks

    Vasanth,
    This is what I'm already doing in the program by setting the edit mode for the column '3_ATWRT'. But I want to switch from edit to display mode and back again. This is not working. Only when I buildup the fieldcatalog this is working?
    Kind regards,
    Richard Meijn

  • Document change/display - Profit Center / Cost center name

    Hi,
    We have a requirement where client wants to display the profit center and cost center names (short or long) when displaying or changing a parked or a posted document. As we all know SAP shows only the profit center and cost center code and not the description during the document display. After all the deliberations, this seems to be an important piece of information while posting a parked document or even viewing it as a posted document.
    What are our options?
    Any help is much appreciated.
    Regards,
    Subodh

    Thanks for your response Tamim.
    Profit center / cost center naming is following a different convention and we are in a roll out phase, therefore we can't think of first item.
    About match code, the requirement is not so much during the posting but primarily while releasing the parked document or viewing the parked / posted document - they want to see the description along side profit / cost center.
    I was looking for clues on any utilities / enhancements / BTE that I may use to bring extra fields during document display.
    Regards,
    Subodh

  • Display mode, Zathura.

    This nice article inspired me to use zathura with mupdf. The first big difference I recognized is, that mupdf displays pages continuous, while poppler always displays exactly one page. To read, mupdf is perfect, but I want to prepare a LaTeX beamer presentation. Hence it is not that joyful.
    Does anybody know, if I can change display mode in zahura? Maybe to "Display two pages" as well.
    Greets
    Btw: zathura is awesome!
    Last edited by manuelschneid3r (2013-04-17 10:17:58)

    For presentations you might want to look into slider, too:
    https://bbs.archlinux.org/viewtopic.php?id=147952&p=1

  • Excise duty & Educational Cess required display mode no manual entry allow

    We have automation program for creation of excise invoices for different customers. If I excute the program for the same system is allowing me to change / manual entry of excise duty, assessable value & ED Cess. Which is not required for our business rate and will be fixed, and I want to know where we can do the change for display mode.
    Excise invoice no manual entry possible.
    Regards,
    Vijay Sanguri

    Hi,
    Go to V/06
    Select your excise or cess condition type, go to details
    REMOVE TICK MARK OF AMOUNT / PERCENTAGE & VALUE
    Then it will appear in display mode in order & also in invoice
    Kapil

  • How to change qty field as change mode to display mode in VL32N

    Hi Guru's,
    My requirement is for particular users quantity field in VL32N to display mode remaining users it should be in change mode.
    We are already created a Security Object for this.
    Can you please anyone help how to approach this requiremnt. Is there any standard BAdI for this.
    Thanks in Advance.
    Regards,
    Sai Rama

    Hi
    There are Badi for this T-code
    VMDE0004                                Shipping Interface: Message SDPACK (Packing, Inbound)        
    VMDE0003                                Shipping Interface: Message SDPICK (Picking, Inbound)        
    VMDE0002                                Shipping Interface: Message PICKSD (Picking, Outbound)       
    VMDE0001                                Shipping Interface: Error Handling - Inbound IDoc            
    V53W0001                                User exits for creating picking waves                        
    V53C0002                                W&S: RWE enhancement - shipping material type/time slot      
    V53C0001                                Rough workload calculation in time per item                  
    V50S0001                                User Exits for Delivery Processing                           
    V50R0004                                Calculation of Stock for POs for Shipping Due Date List      
    V50R0002                                Collective processing for delivery creation                  
    V50R0001                                Collective processing for delivery creation                  
    V50Q0001                                Delivery Monitor: User Exits for Filling Display Fields      
    V50PSTAT                                Delivery: Item Status Calculation                            
    V02V0004                                User Exit for Staging Area Determination (Item)              
    V02V0003                                User exit for gate + matl staging area determination (headr) 
    V02V0002                                User exit for storage location determination                 
    V02V0001                                Sales area determination for stock transport
    You can try with any one of them V53W0001, V50S0001, V50Q0001, V02V0004, also you can proceed with table auhtorization as there is need to check one table before entring in T-code as  if user id is there then not able to edit.
    Here don't make code like need to maintain all id's, if id is there then not able to edit, so to whom you don't want to allow maintain their id's in that.
    Thanks
    Bhupinder Singh Arora

  • In VF03 display mode, Tax values are getting changed

    Dear Guru's
    We have implemented a routine for MWIG tax calculation in sales order. But we are not seeing the same values in billing document. I am not sure how i am seeing different values for tax in display mode, If i double click on MWIG i am seeing correct value, but on the screen it is different value. Any suggestions on how can i make sure the same routine from sales order is applied in billing document.
    Thanks
    Deepu

    Hi,
    I am assuming that both sales order and the billing document have the same pricing procedure. (and likely so).
    The pricing engine runs on every mode. i.e. creation/change and display mode. Sometimes, some of the values do not flow into KONV, KONP structures (or XKOMV, XKOMP) during the display mode at the first go. So, if you are comparing some of the values with these structures, then, it might not be successful.
    My suggestion here is, put a debugging point in the routine that you have assigned to MWIG and go into the document using VF03. System will go into debug mode. There you can see which value is not being filled or why is the condition not getting satisfied. That way you can be sure what exactly needs to be done.
    Hope this helps.
    Regards,
    Mukund S

  • How to get the mode (change/display/create/edit) of a CRM WEBUI

    Hi,
    I have a table(custom) in my CRM WBUI ServiceContratc Page. Now I want to hide this table in create mode.
    Could you please let me know, how can I know in which mode I am on WEB UI(Like Create/Change/Display)
    Thanks,
    Aparna

    Hello,
    use below method to check whether view is editable/display mode ...
    me-->view_group_context->is_view_in_display_mode( me ). here "me" refers to the implementation class of view.
    Regards,
    Sandeep Kumar B

  • Change item category Display mode  in sales order (Third Party )

    Hi all,
    I am creating sales order with reference to sales contract but at the time of sales order we don't have enoff stock to deliver to customer , so we have deiced to Third party sales process
    But the problem is while creating a sales order with reference to Sales contract the line item of the sales order in grad Mode ( Not changeable mode )
    Can any one guide me how sales order line item should be in active mode  so i can change the Item category as a TAS third party item category
    Help me regards this
    Thanks
    Rajesh

    Hi all.
    Thanks for response
    I maintain all configuration, But the problem is while creating Sales Order with reference to Contract
    the Sales Order line item in grad Mode i am unable to change item category as TAS
    i mean TAN is on Display Mode
    and we are using Varient config  for that material
    Please guide me where i need to Configure so system should allow me change item category in sales order please guide me
    Thanks
    Rajesh
    Edited by: RAJESH KUMAR on Jun 16, 2009 10:23 PM

  • ME22N : Change PO Line item to Display Mode, After All quantity has GRN

    Hi Experts,
    In ME22N,  PO change mode if the line item has checked with 'Delivery Completed' Indicator in 'Delivery' tab I want to shows that row always in 'Display' mode. Please help me to modify that table control within the exit. I'm using,
    Enhancement : MM06E005
    Exit Name : EXIT_SAPMM06E_012
    Regards,
    Rajasekaran.S

    Hi Raja,
    Think that this is a late reply but might be helpfull to others.
    To make an item in display only mode you will have to create an enhancement implementation in the below method,
    Class --> CL_TABLE_VIEW_MM
    method -->MODIFY_SCREEN_TC_LINE
    in implicit enhancement at the end of this method i code as below.
    data : lv_ekpo type ekpo.
    if <DYN_DATA> is assigned.
    move-corresponding <DYN_DATA> to lv_ekpo.
    if lv_ekpo-XXX is not initial.
    loop at screen.
      screen-input = 0.
      modify screen.
      endloop.
    endif.
    hope this helps.
    If you have a better solution kindly share the same.
    Regards,
    Taher

  • Unable to open the PM order in change and display mode

    Dear All,
    Am facing some issue that am unable to open the Maintenance Order in Change and Display mode.
    Can you provide the solution.

    Hi Thirupathi,
    Can you send us a screenshot or the error message information ?
    If it is due to status missing (SAP note available for the same)
    Regards
    Terence

  • How to get the screen number in the change/display FI Document screen?

    Hi guys,
    I was just wondering if there is a way, in the abap dictionary or otherwise, for me to detect the assigned screen number in the FI Change/Display Document screen (FB02/FB03)?
    I ask this because the screen number changes depending on the line item's posting key and G/L Account from my observation.
    Hope to hear from all of you soon.
    Thank you all and good day.

    Yes you can get by the SHDB transaction
    GO to SHDB. click on the new recording... give the name of the recording as ZFB02.. enter the tcode FI02 and press start recording..
    Put the Document and open all required screens.. you need to put the values in the required fields to be caputred in the recording.
    Come back and save.
    Now, if you are planning to make a BDC to change the FI document than you can use the BAPI BAPI_ACC_DOCUMENT_CHANGE.
    Regards,
    Naimesh Patel

Maybe you are looking for

  • Data acquisition with highly accurate GPS time stamping (hh:mm:ss:sss UT)

    A research group has developed a data acquisition system dedicated to daily observations of solar phenomena at radio waves using high time resolution (5-100 ms). First, the analog signal from the antenna (1000-2500 MHz) is sent to a spectrum analyzer

  • Touchsmart and Windows 8

    Im looking at a new Touchsmart (420-1100) and plan to upgrade to windows 8 but i keep reading stuff about how the screens wont work well for windows8 because of something to do with the "bezel" around it.....is this true? and should i wait for a true

  • Unable to update or restore iPad, any help?

    I need help to solve this problem. I can't update my iPad through iTunes. For several weeks now I've been trying it but get the same error 3194 or 3014 even after following all the troubleshooting steps. I ran iTunes diagnostics and here is the repor

  • Print Booklet fails to create PDF

    Greetings all, I've encountered a frustrating glitch in Print Booklet that doesn't seem to be mentioned in these forums or elsewhere on the web. I regularly use Print Booklet to create imposed PDF files with the following workflow: Click File > Print

  • How to launch application like word, excel, powerpoint or *.exe on client

    Hi, could anyone advise which iView or other portal application I have to use, to get an application like word, excel, powerpoint or *.exe on Clinet side (e.g. notepad.exe) working. Solution should be: I will klick in the fine navigation on the link