MIGO : need vendor material no field ( IDNLF ) as input / output field

Hi friends  ,
My requirement is : In MIGO transaction 
                             under material tab for item detail  ( SAPLMIGO      SCREEN NO : 310 )
                             to make vandor material no ( IDNLF ) AS Input enable  .
i have make field as i/p o/p field in screen attributes but it's still in display mode for MIGO transactiom
kindly reply me with elaborated step  .
Thanks & Regards
Digvijay Rai

Hi,
First of all, why do you want Vendor Batch no & material no while doing receipt against process order.  You can enter the same while doing a GR against Purchase order & same can be tracked using some reports.
As you said, since you are doing a receipt against the Process order, vendor doesn't come in picture. Hence the vendor batch no: or vendor material no: wont be populated as per Std.SAP.  You can check for some enhancements/BAdi's in MIGO transaction to populate the same.
Thanks & Regards,

Similar Messages

  • Radio Buttons + Required Input/Output Fields in Dialog Programming

    Hi All,
    Please find the below issue.
    I have 2 Radio buttons
    RB1 and RB2 defined in group RG.
    And by default RB1 is selected.
    I also have 3 Input.Output Fields.
    F1 , F2  & F3.
    Now before displaying the Screen for the end user,
    I need to display as follows:
    A)   
    RB1 = X -
    > Selected.
    RB2  = Space -
    >Not Selected.
    F1 -
    > Visible.
    F2 & F3 -
    >Invisible.
    B)
    RB1 = space -
    > Not Selected.
    RB2  = X -
    >Selected.
    F1 -
    >Invisible.
    F2 -
    >Visible.
    F3 -
    >Visible.
    When i am debugging, the value of RB1 is not X though it is selected on the screen (by default due to Radio Button Group) & hence the below code is not working.
    *_PBO:_*
    LOOP AT SCREEN.
    IF RB1 = 'X' AND ( SCREEN-NAME = 'TXT2' OR SCREEN-NAME = 'TXT3' ).
             SCREEN-INVISIBLE = 1.
    ELSEIF RB1 = 'X' AND ( SCREEN-NAME = 'F2' OR SCREEN-NAME = 'F3 ).
             SCREEN-ACTIVE = 0.
    ENDIF.
    Modify Screen.
    ENDLOOP.
    But when i select RB2 = X on the screen.
    Value is getting populated .
    Waiting for your hints/ideas/suggestions
    Thanks
    Sri.

    Alright, you defined the radio buttons and grouped them. Did you also assign Fcode to the radio button group? if not already assigned the assign something to FctCode to the radio button. If you can double click on one and assign a name, this will automatically assign to other one. If you already did that... just ignore it.
    Next, by defualt, RB1 will not be having 'X' though it shows selected but you can always make it by just writing the following statement in PBO (If you dont want to mislead anybody)
    if RB1 = space and RB2 = space.
      RB1 = 'X'.
    endif.
    If you have already done that the next step would be.... Assign a screen group value to the fields F1, F2 and F3.
    for example, double click on the field F1, add GR1 in groups in first box and do the same for field text/label if any. Same way, assign GR2 to F2 and F3.
    Then add the following code in PBO. (Someone or you can write it better. This is just an example)
      LOOP AT SCREEN.
        if RB1 = 'X'.
           if screen-group1 = 'GR2'.
              screen-input = 0.
              screen-invisible = 1.
           endif.
        endif.
        if RB2 = 'X'.
           if screen-group1 = 'GR1'.
              screen-input = 0.
              screen-invisible = 1.
           endif.
        endif.
        MODIFY SCREEN.
      ENDLOOP.
    Good luck... It is working code.,

  • How to get center alignment of Input/Output field in Module Pool

    Hi Friends,
    I am using Input/Output field in my Module pool program. Dynamically i am submitting the text to Input/Output field. What i want is i want to display the submitted text as center. By default It is displaying left aligned.
    Thank U in advance.
    Mahender.

    Hi,
    Use syntax "Centered".
    take one variable push into the field
    write w_variable1 to w_variable2 centered.
    next push the varaible to Destination screen input/output Field .
    Make sure the Field the Character Type.
    Prabhud@s

  • How can i make the input/output field to a multiple lines in ModulePool...

    hi all...
    can any one please let me know, is there any possibility thru Module Pool program where i can make the input/output field to a multiple lines...
    say, when we drag & drop the input/output field on the screen - it'll come with single line display. so, how to make the same field to multiple lines field.
    rather i can say my question like, how to increase the height of the input/output field.
    Desired Functionality:
    • The user wants to display a long text.
    • now the input/output field should not display the record as a single line, now the field has to display the text in multiple lines (something like wrap option in ms excel).
    hope u got my question...
    please help me in this regards...

    hi Rengith, i'm not using Text Field, i'm using Inpu/Output Field to display the long text.
    If u mean text field as input/output field then can u let me know the process for this, how to do the same thru module pool program...
    Edited by: murashali on Mar 18, 2008 1:36 PM

  • Regarding input output field of the screen painter

    Hi Experts,
    I want to increase the height of the input output field in the screen painter.
    ie, multiline input output field.Is there any means?
    Or is there any alternative other than the input output field?
    Thanks & Regards,
    Soumya.

    hi,
    when u drag n drop some fields in the screen goto to one of the corners of dat fields drag to the extend u want to increase.
    or in attributes section  for u length n width of dat fields are available just increase to your wish.
    if helpful reward some points.
    with regards,
    Suresh Aluri.

  • How to change height of Input/output field in dialog program

    How to change height of Input/output field in dialog program.
    I want to big message text box like e-mail message box.
    so could anybody help me on this please
    Thanks
    Basu

    Hi,
        This is not possible directly.Place the icon button in the table field.when u click on that button a popup window will appear in that window place the text editor there u can write text and u can save it ok..
    Award points if helpful.
    Kiran Kumar.G.A

  • Setting value of input/output field of screen in abap program

    I have a screen.I have added a input/output field in my screen.The purpose is i just want to display a text in that field upon PBO through my abap program.I m a newbie.PLS help me
    Also can i use textfield instead of input/output field for this purpose.if so then wats the difference between both of them

    Hi
    To display a text in I/O element, go to the PBO of this screen and
    assign the text to your I/O element.
    Lets say if TEXT_IO is the name of ur UI element, and you want to display "Hello" into it, do it as follows:
    TEXT_IO = 'Hello'.
    Must ensure that the type of this UI element is CHAR type and you define its lenght properly.
    to display "Hello", length would be 5.
    Hope it will solve ur query.

  • Retain all form field values after input text field validation failure

    Hi,
    I have a form with 1 input text field, one Command button and one h:selectManyListbox. when User enteres some values in input field and clicks on command button named Add, the value is validated. If input is invalid, then an error message appears next to the field. If input is valid, then the value is added into h:selectManyListbox. Adding to list box is done using Ajax4Jsf.
    Probelm:
    Let's assume user entered 3 valid values one after another and all are added into the list box. When he enters a wrong value, and error message appears. however, the entered values in list box goes away. Is there a way to retain the values even after validation failure.
    Code is given below;
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
    <%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
    <%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
    <h:panelGroup>
         <h:outputLabel for="inputEmailId1" value="Email Id: " />
         <t:inputText value="#{bean.newEmailId}" id="inputEmailId1" maxlength="100" size="40" immediate="true">
              <t:validateEmail message="Enter a valid Email Id." />
         </t:inputText>
         <t:message for="inputEmailId1" styleClass="errorStyleClass" />
    </h:panelGroup>
    <t:panelGroup style="text-align: left;" >
         <a4j:commandButton value="Add" styleClass="buttonsSub" action="#{bean.addSharedEmails}"
              reRender="inputEmailId1, selectedSharedEmails" />
    </t:panelGroup>
    <t:panelGroup style="text-align: left;">
         <h:selectManyListbox id="selectedSharedEmails" size="8" style="width:100%;" immediate="true">
              <f:selectItems value="#{bean.sharedEmails}" />
         </h:selectManyListbox>
    </t:panelGroup>
    Thanks in advance,

    Use the attribute "binding" instead of a "value". This will remember the value. You can also make sure that you dont have anything in your constructor or class level that initialises that value to "" or null. Because if JSF is remembering your value but your initialization that gets triggered before the page loading resets it to default values then you need to change that part of the code.

  • Error: input/output field not defined in subscreen.

    Hello Experts,
    I have defined a subscreen for transaction MM41 and when I try to put the statement: 'FIELD: MARA-ZZPARENT'
    there is an error saying input/output not defined. I already declared this in layout and it is there in element list.
    What causes this error? Thank you guys!

    Hi,
    What you can do is create a new ztop include from the existing top include.
    Define the field in ZTOP include.
    And in the main program change the statement for include top to include ztop.
    Hope this helps you.
    Regards,
    Tarun

  • How can i add input/output fields in the subscreens

    Hi folks,
    I want to create two subscreens onto a main screen.
    For that, i went to se51 and defined a main screen e.g.1100. with normal screen attributes.
    Again, in the se51 initial screen i gave screen number e.g.110 with subscreen attribute.When i go to layout of subscreen i am unable to add any field or push button to that..
    My issue is to display the drawn data on a subscreen.
    Thanks for your answers in advance.....
    Regards,
    Ranjith.T.

    hi for subscreens do like this..
    REPORT ZDATEDIFF.
    SELECTION-SCREEN BEGIN OF SCREEN 500 AS WINDOW TITLE title.
                                        PUSHBUTTON 2(10)  but1 USER-COMMAND cli1,
                                        VISIBLE LENGTH 10.
    Parameters: p_name like sy-uname,
                p_pas like sy-uname lower case.
    SELECTION-SCREEN skip 1.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 2(70) text-001.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF SCREEN 500.
    *title = 'HAI VENKAT LOGIN PLEASE'.
    CALL SELECTION-SCREEN '0500' STARTING AT 10 10 ending at 70 14.
    AT SELECTION-SCREEN OUTPUT.
    loop at screen.
      check screen-name eq 'P_PAS'.
      move: 1 to screen-invisible.
      modify screen.
    endloop.
    start-of-selection.
    if p_pas = 'venkat'.
    write:/ 'this is working'.
    endif.

  • Update vendor material no. from info record to contract

    Hello
    I'm trying to update the vendor material no. (IDNLF) in the contract from the info record.
    I have an updating job of vendor material no. for info records and I want it to update the number also in the contract automatically. (copy from EINA_IDNLF to EKPO_IDNLF)
    Is there a way to do it??
    Both the info record and the contract already exist.
    Thanks

    If the info record is already exist and then you are creating contract than it will automatically copy the Ven mat number

  • Update vendor material no. from inforecord to contract

    Hello
    I'm trying to update the vendor material no. (IDNLF) in the contract from the info record.
    I have an updating job of vendor material no. for info records and I want it to update the number also in the contract automatically. (copy from EINA_IDNLF to EKPO_IDNLF)
    Is there a way to do it??
    Both the info record and the contract already exist.
    Thanks

    Hi
    Could you explain waht you mean by updating job do you mean vendor details.
    Generally vendor details are global details so once you update vendor master record when you are creating contract or changing contract then it automatically directs to update vendor master record.
    hope it helps.
    Edited by: ppkk on Oct 29, 2008 10:57 AM

  • Updation of INPUT Request fields in PI sheet automatically from xMII system

    Hi,
    We are getting the consumption data(Material Weight and Batch) from xMII in SAP browser based PI sheet through Z function module as a parameters .These values needs to updated automatically in PPPI_INPUT-REQUEST fields (PPPI_MATERIAL_CONSUMED & PPPI_BATCH),so that PI_CONS(Consumption) process message will be created automatically.
    We are facing problem to update the input request fields(PPPI_MATERIAL_CONSUMED and PPPI_BATCH) automatically in Browser based PI sheet.
    Can you please help us out to populate the input request fields automatically in PI sheet to automate the xMII with SAP PI sheet. I can provide the screen shots of PI sheets and configuration of process management if required.
    Thank you
    Warm Regards
    Darga Ali

    Hello Udayan,
    The issue is in SAP PI Sheet.
    We are getting the data from xMII into variables through function module and able to populate these values in PI sheet,But we need to update these values directly in input request fields ,so that it will create a process message and updated the process order with material consumption data.
    Is there any functionality available in xMII ,to update the vaules directly in input request fields in PI sheet.
    Thank you
    Warm Regards
    Darga Ali

  • Problem with adding output field in Bank Details(Infotype 0009)

    Hi All,
    I hav a criteria like, when i select a value for a field corresponding value should be displayed in input/output field just beside the selected field.
    To make you understand the criteria more clearly.In infotype 0009 we hav Bank key.When we select a bank key corresponding Bank name is displayed just beside Bank key field.How to achieve that functionality.
    Can anyone help please. Its urgent...
    Thanks a lot...
    Sandeep.

    To make my question more clear.I have created a new field in bank details infotype.Similar to the field Bank key in 0009 Infotype.As soon as a select the Bank no through F4 functionality i want the Bank no no to be selected and at the same time i want Bank name to be displayed just beside this field.
    In short with 1 selection i want both Bank no n Bank name to be selected.
    If i hav ti write the code where should i write the code.I hav also created a structure .I presume i need to write a logic for this requirement.But i dont know where to write the logic.

  • Use E-commerce Attributes to create an input text field

    Hey BC Community,
    Wondering if anyone has been able to create any specialized code to use an e-commerce attribute field as a input text field?
    I have a clients that needs to capture various input fields from the customer on the Large Product view.  Unfortunately I have no more open slots (yup - used up all 4 custom slots, unit type, product meta, etc.) so I can use the "How to Set Up Special Instructions Box" idea, as I need to put the <input> fields in a Content Holder, as not all of these products have this required input fields.
    Long story short, does anyone know how to use the {tag_attributes} area of the e-commerce platform to create user input fields, which will of course, populate into the Shopping Cart as well?
    Thanks,
    Aaron

    Your the third person to ask about this today:
    Open Field Attribute

Maybe you are looking for

  • Conversion of characteristic values before displaying in Bex Analyzer

    Dear all, does anybody know whether it's possible to get influence on the manner in which a characteristic is embedded into an BEx Analyzer sheet (may be via user exit, function module exits or something else) . In our project we have characteristics

  • FrontRow.app gone

    Hey all, I've got a problem. I've been using my new 1.66ghz Intel core duo Mac Mini as a TV system for watching dvd's on my hdtv via a dvi to hdmi cable, and playing itunes via optical to my speaker system and have been loving it. But, the other day,

  • Connect horizontal with vertical spry menu

    Hi, I am a beginner, so maybe this is a stupid question... But here we go Is there a way to "link" horizontal and vertical menu bars together? I'll try to give an example... The horizontal bar (main menu, in the header of the page) is: Item 1        

  • IPhoto vanishes

    How is this possible, iPhoto has vanished from my machine, what makes this all the more interesting is I have two hard drives one I'm using to test Indesign (still does not work but thats a different story) so I have two start up disks. I came back t

  • CS6 won't FTP a file with subfolders but does upload jpegs.

    I get an error: Started: 3/6/2015 1:37 PM featured\test_property\images\Front2.jpg - Transferring featured\test_property\images\Front2.jpg - error occurred //featured/test_property/images/ - error occurred - Unable to create server folder //featured/