Copy PO line item text to Migo line item text during PGR posting

Dear all,
I need to automatically copy over the ekpo-sgtxt over to screen field goitem-sgtxt during MIGO creation. Meaning, in MIGO - I enter the reference PO number and by the time I press enter, the system will propose the line items along with the "Text"field maintained with the data copied over from ME23N line items.
Is there a user exit for this? If this question has been asked before, I'd be grateful if anyone can point me to that link.
Thanks in advance.
Steven

Hello,
How about trying userexit EXIT_SAPMM07M_001.
Regards
Waza

Similar Messages

  • PO line item text copied into Line item text on MIRO

    i have entered line item text on the PO that i would like to get copied over to the line item of the invoice when created either thru MIRO or MIR7.  I have looked and it looks like the copy rule for item text is in TEFP, but i have not got it to work.  Am i missing something.  Sorry, but i am the FI guy trying to work in the MM side.
    Thanks, 
    Sean

    Maintain Customer Exits for Invoice Verification
    The following SAP enhancements are available for maintaining the customer exits in Invoice Verification:
    MM08R001 ERS (conventional Invoice Verification)
    MM08R002 Tolerance checks
    LMR1M001 Transfer of document header and item data,
    account assignment proposal for invoices for blanket
    POs
    LMR1M002 Account grouping for GR/IR account determination
    LMR1M003 Number assignment in Logistics Invoice Verification
    LMR1M004 Item text in follow-on documents
    LMR1M005 Change criteria for releasing parked documents for
    posting
    LMR1M006 Change XML data for BAPI call CreateFromData
    RMVKON00 Consignment/pipeline settlement
    MRMH0001 ERS (Logistics Invoice Verification)
    MRMH0002 EDI invoice receipt (Logistics Invoice Verification)
    MRMH0003 Revaluation (Logistics Invoice Verification)
    MRMN0001 Message output for Invoice Verification

  • SRM 4.0: Source of Supplier not copying in line item on Shopping Cart

    We are using SRM 4.0 in an extended classic setup and currently experiencing a problem with the source of supplier not being copied on line items. The user stated that  when copying a line items in a shopping cart the source of supplier is not copying to the new line.  It happens sometimes but not everytime the client uses the line copy option.
    It was initially thought that based on the amount of the line item (>=$25,000) that would cause the source of supplier (vendor) not to copy to the new line item but it has been verified by client that is not the case.  If anyone has seen this issue and know of what the root cause could be please let me know.
    Thanks

    Yann,
    Actually this is occurring when the user is creating a shopping cart from scratch.  He added a line item either from catalog or free text, sources the item and then uses the copy function to copy the line item.  When the client does this the item is copied but the vendor disappears from the 2nd line item and client has to add it again. 
    So that OSS notes doesn't apply unless I'm missing something.

  • Disable e-mail  field  when line item created by copying another line item

    Hi All,
    I need your help. Actually our user wants to create a line item by copying existing line item in shopping cart. While doing so the requirement is the e-mail address field remains disable after the line item is copied. Please guide me how to do it. Please feel free to ask me any further questions.
    Regards
    Praveen Ghosh

    Hi Zaid,
    Thank you for your response.  Assets are not my area so I’m not sure if I missed a transaction or step in the process.   I tested this out by doing the following steps:
    Created AUC Asset class with line item checked
    Assigned PM Order type as non-investment with no investment profile and created order number
    Created a main asset number 
    Created an AUC sub asset number to step 3
    Created settlement rule to sub asset number on order
    Posted costs to order
    Settled from order to AUC with transaction KO88
    Created distribution rules for asset with transaction AIAB
    Settled from sub asset to main asset number with transaction AIBU
    When I settled from the sub to the main asset number in step 9, I found I lost the line item detail.  Is there another configuration setting I need to make to allow me to see the line item detail when I use AIBU?
    Thank you,

  • PR Short text getting copied to the Item text

    Hi All,
    I have a scenario in which i need the PR short text getting copied to the Item text while creating a PR. Please let me know if there are any settings for the same.
    Thanks,

    PR short text you mean line item short text field beside material is getting copied?, in such cases make sure that Item text copying rule. from where its getting copied from SPRO>Material Management> purchasing>PR>Texts for Purchase Requisitions >Define Copying Rules.
    regards,
    qsm sap

  • Business Area for Vendor Line Items during Payroll Posting

    Dear All
    We are in ECC 6 version of SAP. We are using Business Area for Internal Financial Statement. We are facing a problem with regard to Business area in Payroll posting. Business area does not appear in vendor line items when we make posting of payroll for multiple business area. We have setting technical accounts for HR. We read SAP note 203276 and it seems that it is possible. Can someone tell us what is the reason that business area not coming in vendor line item while payroll posting.

    Hi
    That part we have already done. The problem only come when we run payroll and there are vendors belonging to several business area in that case system keep the business area field blank. In case if we set field status required system give error. That is why we run payroll by each business area we also have maintained technical account for 1001.
    Regards

  • How to draw and copy a line?

    I would like to draw a line in a XYLineChart and then copy this line, in order to get this result
    [http://s14.postimage.org/4cip47ult/A02519.png]
    First left mouse click on point 1, then second mouse click on point 2: my goal is to have now a copy (clone) of this line (same lenght, same slope) that I can place anywhere on the chart, in this example by a third left mouse click on point 3.
    How to do this?
    Here is the code to draw a line on the chart
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.chart.CategoryAxis;
    import javafx.scene.chart.LineChart;
    import javafx.scene.chart.NumberAxis;
    import javafx.scene.chart.XYChart;
    import javafx.scene.control.Label;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.Pane;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Line;
    import javafx.scene.shape.LineTo;
    import javafx.scene.shape.MoveTo;
    import javafx.scene.shape.Path;
    import javafx.stage.Stage;
    public class Lines extends Application {
    Path path;
    public static void main(String[] args) {
        launch(args);
    @Override
    public void start(Stage stage) {
        final CategoryAxis xAxis = new CategoryAxis();
        final NumberAxis yAxis = new NumberAxis(0.5, 9.5, 0.1);
        yAxis.setTickUnit(1);
        //yAxis.setPrefWidth(35);
        yAxis.setMinorTickCount(10);
        yAxis.setTickLabelFormatter(new NumberAxis.DefaultFormatter(yAxis) {
            @Override
            public String toString(Number object) {
                String label;
                label = String.format("%7.2f", object.floatValue());
                return label;
        final LineChart<String, Number> lineChart = new LineChart<String, Number>(xAxis, yAxis);
        lineChart.setCreateSymbols(false);
        lineChart.setAlternativeRowFillVisible(false);
        lineChart.setLegendVisible(false);
        XYChart.Series series1 = new XYChart.Series();
        series1.getData().add(new XYChart.Data("Jan", 1));
        series1.getData().add(new XYChart.Data("Feb", 4.5));
        series1.getData().add(new XYChart.Data("Mar", 2.5));
        series1.getData().add(new XYChart.Data("Apr", 6.5));
        series1.getData().add(new XYChart.Data("May", 4.5));
        series1.getData().add(new XYChart.Data("Jun", 8.5));
        series1.getData().add(new XYChart.Data("Jul", 6.5));
        BorderPane bp = new BorderPane();
        bp.setCenter(lineChart);
        Scene scene = new Scene(bp, 800, 600);
        lineChart.setAnimated(false);
        lineChart.getData().addAll(series1);
        Lines.MouseHandler mh = new Lines.MouseHandler( bp );
        bp.setOnMouseClicked( mh );
        bp.setOnMouseMoved( mh );
        stage.setScene(scene);
        path = new Path();
        path.setStrokeWidth(1);
        path.setStroke(Color.BLACK);
        scene.setOnMouseDragged(mh);
        scene.setOnMousePressed(mh);
        bp.getChildren().add(path);
        stage.setScene(scene);
        stage.show();
    class MouseHandler implements EventHandler< MouseEvent > {
    private boolean gotFirst    = false;
    private Line    line;
    private Pane    pane;
    private double  x1, y1, x2, y2;
    public MouseHandler( Pane pane ) {
        this.pane = pane;
    @Override
    public void handle( MouseEvent event ) {
        if( event.getEventType() == MouseEvent.MOUSE_CLICKED ) {
            if( !gotFirst ) {
                x1 = x2 = event.getX();
                y1 = y2 = event.getY();
                line = new Line( x1, y1, x2, y2 );
                pane.getChildren().add( line );
                gotFirst = true;
            else {
                line = null;
                gotFirst = false;
            else {
                if( line != null ) {
                    x2 = event.getX();
                    y2 = event.getY();
                    // update line
                    line.setEndX( x2 );
                    line.setEndY( y2 );
      }Thanks all.
    Edited by: 932518 on 16-nov-2012 1.54

    Sorry for the simplistic question - but where are the photos you are intending to add going to be coming from?
    If it is the pictures you take - then it almost seems like you need to first upload them to a cloud service like OneDrive or iCloud and then provide the URL to Google Maps

  • How to copy a line in Oracle Forms

    Hi Experts,
    We have a custom form, where there is a tabbed canvas under which few context canvases are there. Some fileds are there in each context canvas under the tab canvas.
    my requirement is to copy the line to a new line, so that all values in each tab gets copied to the new line.
    Can anyone let me how to acheive this in oracle forms 10g?
    Thanks in advance,
    Pavan

    Pavan 909 wrote:
    I mean to copy whole record to a new line.
    1. how will we implement the duplicate record functionality, like where i shouldi write the code for implementing this.
    2. Create New Icon (+) is not enabled in my form, how to enable this, i guess this is required to copy the line.
    Please suggest me.
    Thanks in advance,
    pavanHi pavan
    how will we implement the duplicate record functionalityPls use the Built in Function IN When-Create-Record or in When-New-Record-Instance
    DUPLICATE_RECORD;
    Create New Icon is not enabled in my form, how to enable thisIn the Form Module's Property > set Module Menu > DEFAULT&SMARTBAR
    Hope this helps...
    Regards,
    Abdetu...
    Edited by: Abdetu on Mar 9, 2011 1:19 AM

  • Table for line items of budget document posted through FMBB transaction.

    HI,
    I am looking for Table of line items of budget document posted through FMBB transaction.
    There is table FMBL but it is breaking the amount into 12 parts.
    Thanks.

    Hi
    check the tables
    FMBDA   
    FMBDP   
    FMBDT   
    FMBH
    BPDK
    Regards
    Anji

  • Copy Sales Order item  texts completely  to other item in same sales order

    Hi;
    I need to know how we can copy item level text to other item texts in same sales order. We are maintaining most of data may duplicate but not always. So I need to copy the the earlier text & paste in item created newly.
    Pl. answer.
    Thanks ;
    avinash

    Did you get answer for this query? I have a same situation and wondering if you already have a solution
    thanks

  • P.O Error in Process after copying the existing item in change mode

    Hi All,
    We are in SRM 5.0 Server 550 and SP15 and are using Extended Classic Scenario.
    We are facing a peculiar issue, when an already created P.O (Free text - goods) is changed and a new line item is added either manually or by copying the existing line item and then ordering it, the P.O is going into Error in Process status.
    This is happening only when i am adding a new item (material) to the existing line item (material) but when i am adding a service line item in the change mode to the existing material line item, the P.O is getting ordered without any issue.
    I believe this is SAP bug and raised with SAP for OSS.
    Meanwhile i would be grateful if you can provide any resolution to this issue and provide any OSS note number (If one already exists).
    Regards,
    Teja

    Hi Teja
    it works fine for me.
    old po template..
    taken describe procureemnt - goods
    copy the line item
    changed qty and price
    POs created for both items in one PO since vendors are same?
    what the error message says in the application monitor or rz20 / monitor sc.?
    for me i had a contract in my pld pos.(sc).
    muthu

  • System should Not copy sales order header text

    Hi all,
    My requirement is system should not copy sales order header text while copying sales order to sales order with same order type.
    for example i have order type OR - standard type with 500 line items with reference to that same sales order we are creating another order with same line 500 line items,but requirement is system should not copy source document header text in to target document header text,
    Do you have any standard functionality to avoid this or we need to go exit
    Regards
    Nishad

    Hi,
    You can do it via standard SAP configuration.
    Transaction VOTXN.
    In the access sequence you have the corresponding Text ID added with "Text Object" VBBK. That's the reason why you are copying text.
    Change the entry.
    Check below link on how exactly to do that. This doc says about how to copy customer text to the sales order. But procedure is same for you as well. Just the object is different.
    [Text type config|http://learnsaptips.blogspot.com/2010/09/text-type-configuration-in-sap.html]
    Hope it helps!
    Best regards,
    Rahal

  • Copying of Service items from contract into Purchase order

    Dear Friends,
    We have upgraded from 4.6B to ECC6.
    Previously when we create Purchase Order with reference to Contract(i.e.Release order),we select service line items by selecting service selection button from PO and select the service line items from Contract,then whatever the line item whether line item 30,or line item 60 copied from Contract is copied into line item 10 of Purchase order in 4.6B version.
    But in ECC6 ,it is copied into other line item but not copied into line item 10 of purchase order.
    Please suggest ,what needs to be done, what went wrong.
    Regards,
    Dayanand

    Hi,
    Pl. elaborate whether the quantity 1 is appearing at Item Overview level or at Item Details level. At the item overview level the quantity will aleays be 1 with unit of measure as AU. At item details, you will be able to view the actual quantity of services copied from contract.
    Regards,
    Prashant
    - Pl reward points if answer is helpful to you

  • Copy shopping cart item (originally from catalog), able to change price

    We create a shopping cart item by selecting a catalog item from CCM 2.0. The price is not changeable, as we would expect.
    We then copy that item in the cart to create item 2. However, the price in item 2 is now changeable, even though it was copied from catalog item 1.
    We have implemented OSS note 693175 which gives us the ability to change the price of a catalog zero priced item, which is what we want.
    But we do not want to be able to amend the price of catalog items that have been copied to new items.
    Can we prevent a catalog item that has been copied from having its price changed?
    Thanks
    Neil

    Hi Neil,
    I think any item that is copied from another line item can be changeable irrespective of whether the first item was a catalog item or not.
    You are just copying a line item and is not directly taken from catalog.
    So the system allows you to change the item details.
    If you want to order the same item at same price then what is the need for copying it as second line item.
    Hope this makes you clear.
    Rgds,
    Teja

  • Copy value from item - disabling

    Hello all,
    How can I programatically disable 'copy value from item' property of a text item.Pls help....
    With regards
    Jeneesh.

    very easy : Don't use it
    You have to create your own functionality in this case.
    e.g. for QUERY use a PRE-QUERY, where you fill the item in the same way like the "copy value from item"
    when INSERTING use the PRE-INSERT, and so on...
    why did you have to disable the "copy value ..." ?

Maybe you are looking for

  • Employee hire via HR_MAINTAIN_MASTERDATA

    Hi, I am trying to create employee via FM using HR_MAINTAIN_MASTERDATA, unfortunately I am facing some issues when I am creating IT0001(Organizational Assignment) , I get an error stating that IT0003 is not creating for the given ID. What i would lik

  • Jumping to a specific frame in another movie

    I'm wondering how to jump to a specific frame in an external movie. I'm not using the loadmovie command so I don't think the _level command will work. I just have two swf movies playing on the same page. I need to have a button in Movie A when releas

  • Ipod with white screen

    My son was downloading the update to his iPod.  He thought it was locked up and did a force shut off.  Now when you turn his ipod on it shows the apple as though it is starting up correctly and then immediately goes to a blue line which transforms in

  • XI pointing to ECC change

    Hi , currently my XI in dev system in pointing to Dev ECC client 210. Now I have to point the XI to Sandbox client 210. Please let me know if I have to just change the channel parameters (RFC adapters) or do I nede t create new Business systems and c

  • Tab in PO

    Hi All,        At the item level in PO we have differnt TABs, like conditions<b>, invoice,texts, material data,etc.</b> If I want to change the sequence of these TABs in PO as per my choice, is it possible? How? like in material master we can change