Need to create infor record from one plant to other

Hi All,
We have a requirement where we need to create a info record in plant 120.
we already have the info records in the plant 130 and need to merge them in plant 120 even.
So requirement is to get the infor records from plant 130 and create in plant 120.
We have batch input programs ZRM06IBI0 ( create purch info record ) by which we can create the info record with available sequential file. this sequential file will be created by program RM06IBIE  ( Create sequetial file for Purch info record ).
The problem here to use this things is that it creates a session for each record which will result in lacs of session created. which is not advaisable.
another option is to use BDC. but because of performance issues we need to skip it out and find any other method or function modules which can get the inforecords info from the database for plant 130 and create the same in plant 120.
Please help me in this regard.
Helpfull answers will be rewarded.
BR,
Ravi

Try:
INSERT INTO fnd_lobs
           (fnd_lob_id,
            file_data
    VALUES (1, -- or whatever the identifying value is
            (SELECT blob_type_column
               FROM xxxx
              WHERE xxxx_id = 1 -- or whatever the identifying value is
;If this doesn't work, then please list the table create statements for each table.

Similar Messages

  • Info records from one plant to other....urgent

    Hello all,
    I have to move data from one plant in SAP to another.I have to transfer all the info records, i know i can do this by LSMW but can someone please tell me how do i make flat files for this, i mean what is the procedure for getting data of all info records out of one plant as flat file and into other plant..
    Please reply asap..
    Regards
    Neha

    Hi Neha...
    One of the option is, u need to get the data of relevent fields that u want to upload through LSMW, as u said u have the data already existing for one plant, so download the data from EINE table into an excel sheet and modifythe excel sheet as per the new plant data.
    now save this excel sheet into a .txt file and upload through lsmw
    Regards
    Bapears

  • I need to upload my files from one directory into other directory.

    i need to upload my files from one directory into other directory.( all its contents,folders,sub folders, files etc)
    for this task
    suppose my source folder is C:/test/test1/test2/test3
    and my destination is D:/
    first i have to check whether my dest dirctory already contains source directory..and its files
    if it contains the same structure then i have to replace the destination dir structure to source dir structure( to upadte changes)
    if it(dest dir) not contains source dir ..means it doesn't contain source folder then
    i have to create same source folder directory structure ( test.test1/test2/test3...) at destination(D:/) and copy all its contents frm source directory...
    ( means i don;t want to create manually same dir structure as source at destnation dir to copy all contents)

    I believe you need to read up on the class File.java (it comes with java).
    Some examples:
    File file = new File("C:/myDirectory");
    if(file.isDirectory())
    System.out.println("this is a directory");
    if(file.isFile())
    System.out.println("this is a file").
    You will then need to read up on other classes to read/write to the file such as FileReader and FileWriter.

  • STO from one plant to other plant

    Hi,
       Can some one send me the various  way's one can send a stock from one plant to other plant with complete flow's.

    Hi,
      Usually sotck transfers are of two types one is
    1. intercompany stock transfer between two plants of differnt company codes again in this two types are there 
       i) direct step process Or one step: in this the quantity of the supplying plant is directly posted into the inventory of receving plant.movement type of supplying plant is 645
      ii)Two step proces:in this the receiving plant has to do the MIGO i.e., goods receipt.movement type of supplying plant is 643
    2.intra company stock process i.e., stock transfer between two plants of the same company code.in this again two process
    i) direct step process Or one step: in this the quantity of the supplying plant is directly posted into the inventory of receving plant.movement type of supplying plant is 647
      ii)Two step proces:in this the receiving plant has to do the MIGO i.e., goods receipt.movement type of supplying plant is 641
    For stock transfer configuration process make a small search in this forum u can get lot of stuff.
    If it helps reward me .
    Regards,
    kishore.

  • Movement of material from one plant to other within the same country

    Hello,
    I would like to move material from one plant to other via tran MB1B.
    The system generates the following error while trying to save document :
    Account determination for entry BAS1 BSX 9000 ___ C100 not possible
    The system did not find an account for this transaction. This means that the account determination for key BAS1 BSX 9000 ___ C100 is not maintained in MM Customizing (Valuation). The key is made up of:
    Chart of account
    Transaction key (= Posting transaction)
    Valuation grouping code
    Account grouping code
    Valuation class
    System Response
    The system cannot update a G/L account for this transaction. You cannot post the transaction.
    Can you please tell me where the necessary setting should be made.
    Thanks

    Hi
    Please check the confirguration in OBYC for this combination and assign GL account for this combination of Valuation class, Valuation area.
    Regards,
    Lakshmanan Krishnan

  • How to transfer all materials from one plant to other plants?

    How to transfer all materials from one plant to other plants?

    Hi
    To transfer stock in one step  between plants belonging to same company code use movement type "301" and using transaction code "MIGO". IF you like in two step it helps to monitor stock in transit use movement type "303" and "305".
    303 Transfer posting plant to plant in two steps - removal from storage
    305 Transfer posting plant to plant in two steps - placement in storage
    to transfer stock between plants of diffrent company code go for stock transpor order using tcode "me21n"
    hope it helps

  • Need to transfer data records from one version of sap to another version of

    hello,
            i have a requirement where i need to transfer the tables  with the records in it from sap r/3 4.7 version to sap ecc 6.0 version,now the present issue is how to tranfer the data records from old version to new version......kindly help me in this requirement

    Hi,
        Write a program in SAP 4.7 to download all records to a flat file. Then write a program in ECC6 to upload all records from the flat file...........
    Thanks,
    Aditya.

  • Need help in passing data from one page to other page in oaf

    Dear All,
    I have a requirement as below.
    I am doing some selection in one page and populating the data in another page table region, next time when i am selecting another row and pressing the button i need to display the previous row as well as new row, how can i achieve this, currently i am able to see only the first row what i selected first.
    Ex: 1 st scenario: after passing the selected data from one page to base page the data looks like below in base page.
    1 test desc
    2nd scenarios: when i am again selcting data and passing to the base page it should be like that
    1 test desc
    2 test desc
    but currently it is showing
    1 test desc only for the 2nd case, can any one please help me on thsi , its little bit urgent
    Thnaks

    How are you passing the values to the base page? Are you using setting the retainAM parameter to true while doing a forward.

  • Insert records from one table to other table

    Hi,
    I want to insert all the records from table 1 which are not in table 2 into table2
    o/p
    insert into table2
    select * from table1
    where a.id!=b.id;
    Please let me know is there any way that I can populate the records

    insert
      into table2
      select  *
        from  table1
        where id not in (
                         select  id
                           from  table2
                        );SY.

  • Creating addititional records from one record and spreading total accross

    Can anyone help me with the following script logic scenario...
    We have an account with $$ and wish to spread it accross the remaing months of another scenario. 
    For example, In 2012.Jan, we have an Actual amount = 10,000.  Also, 2012.Jan Forecast = 5,000. 
    I need to take the difference -5,000 and push it into Forecast 2012.Feb, 2012.Mar, ... 2012.Dec and spread it evenly (-454.55).

    Hi Danny,
    Welcome to the forums!
    Here is a sample script to get you going:
    //Scope in the ACTUAL and FORECAST categories
    *XDIM_MEMBERSET CATEGORY=ACTUAL,FORECAST
    //Only scan through the actual data and only use the forecast data in the GET command within the *REC statement down below
    *XDIM_NOSCAN CATEGORY=FORECAST
    //Scope in the time period 2012.DEC
    //You should eventually make this dynamic using a *SELECT statement
    *XDIM_MEMBERSET TIME=2012.JAN
    *WHEN *
    *IS *
    //This for loop should become dynamic using a *SELECT statement. Choosing the months to forecast
    *FOR %MYTIME% = 2012.FEB,2012.MAR,2012.APR,2012.MAY,2012.JUN,2012.JUL,2012.AUG,2012.SEP,2012.OCT,2012.NOV,2012.DEC
    //Note you will need to add a property to your CATEGORY dimension called FCST_NUM and put a value of 11 for the ACTUAL member. This value will need to be updated as the number of months to forecast changes.
    *REC(EXPRESSION=((%VALUE%-GET(CATEGORY="FORECAST"))/FLD(CATEGORY.FCST_NUM),CATEGORY=FORECAST, TIME=%MYTIME%)
    *NEXT
    *ENDWHEN
    *COMMIT
    Two caveats is that data must always reside in the ACTUAL category. Since the logic is looping through every record in the ACTUAL category. Also, all the other data must be at the same intersection or else the GET statement will be looking in the wrong place. i.e. DataSrc for the Actuals and Forecast has to be at the INPUT member or else you would need specify where the data is for forecast category in the GET statement.
    Let me know how this goes.
    Thanks,
    John

  • Which movement type use for return stock form one plant to other plant  in

    HI friends i am working on STO PROCESS
    i need to transfer return stock from one plant to other plant as a return stock i am using Mvt type 455
    but system shows  following error
    Update control of movement type is incorrect (entry 455 X X _ L)
    Message no. M7226
    Diagnosis
    The system could not find entry 455 X X _ L in any of the movement type control tables.
    Procedure
    Cancel current processing.
    Contact your system administrator.
    Action to be taken by the system administrator
    Check in Customizing for Inventory Management under Copy, Change Movement Types whether the entry is contained in the Update control view for the movement type.
    If the entry is missing, proceed as follows:
    For standard movement types, this means that the given process is not supported using the present data combination. Do not create any entries without prior arrangement with your SAP consultant. Otherwise, incorrect postings may result.
    For customer-defined movement types (beginning with 9, X, Y, or Z), this may mean that they have not been fully defined. Delete the movement type and re-create it by copying a standard movement type.
    thanks in advance

    Hello,
         I think there is a standard STO movement type you can use. But I can't remember. Why don't you try to find it and test if it fit your requirement?
         There are some information for your reference. Please check on website:
    http://www.sap-img.com/materials/difference-for-stock-transfer-and-transfer-posting.htm
    Using STO without delivery: 
      doc.type: UB
      GI:351, GR:101
      STO with delivery:
      GI:641, GR:101
      delivery type:NL
      STO with delivery and billing:
      GI:643, GR:101
      delivery type:NLCC , billing type:IV
         And if you want to use the way to return the goods replenishment, try to flag the return checkbox while you create purchase order item. Of course, corresponding configuration is required.

  • MIC from one plant to be Extend in other Plant Codes

    Dear SAPians,
    I want to extend the MIC from one plant to other 7 plant codes. Please guide how can i do it?
    Thanks in Advance.

    Hi Atul,
    As suggested by Kundan, it is recommended to use the MICs created in one plant in other plants, to reduce the duplication of master data.
    If  the MIC parameters / control indicators are different in other plant, then you can change in the inspection plan or create new MIC by copying the MIC from other plant, but you cannot extend MIC from one plant to other plant.
    If your business  says all the MICs should be plant specific, then create MICs in all the plants by copying from the existing plant. You can use master data uploading tools for large volume of data.
    With Best Regards,
    Vithal

  • Getting error while creating table from one database to other.

    Hi,
    We are getting below error while creating the table from one database to other.
    SQL> create table fnd_lobs parallel compress as select * from [email protected];
    create table fnd_lobs parallel compress as select * from [email protected]
    ERROR at line 1:
    ORA-01555: snapshot too old: rollback segment number 28 with name "_SYSSMU28$"
    too small
    ORA-02063: preceding line from EEXIT2TEST
    ORA-01555: snapshot too old: rollback segment number 28 with name "_SYSSMU28$"
    too small
    ORA-02063: preceding line from EEXIT2TEST
    ORA-01555: snapshot too old: rollback segment number 28 with name "_SYSSMU28$"
    too small
    ORA-02063: preceding line from EEXIT2TEST
    ORA-01555: snapshot too old: rollback segment number 28 with name "_SYSSMU28$"
    too small
    Regards,
    Bhatia

    hi
    what are the apps version local and remote database???
    Snapshot too old errors occur because Oracle can 't reconstruct a consistent
    image of a block for the purposes of a consistent read.
    I feel at remote database, you are using UNDO, it will be rather easy to iincrease the undo retention time or increase the undo tablespace size.. if you are dealing with roll back segments, you may have rollback segments whose optimal values are too small...
    increase roll back segments size and select again then
    the following metalink notes might be helpful
    ORA-01555 "Snapshot too old" - Detailed Explanation Doc ID: 40689.1
    How To Avoid ORA-01555: Snapshot Too Old When Running PAAPIMP Doc ID: 603259.1
    OERR: ORA 1555 "snapshot too old (rollback segment too small)" Doc ID: 18954.1

  • Moving the object from one dimension to other in the cube in BI7.0

    Hi Gurus,
    I am new to BI7.0
    We have a requirement wherein we need to move the object from one dimension to other dimension within same Infocube.I tried doing 'cut' and 'insert' from the context menu of the dimensions, but it didnt work.
    Please let me know how do we do that..
    Thanks,
    Shalaka.

    Hi,
    Use Remodelling opttion avialable .For more info, earch the forum and go through SAP standard help.
    With rgds,
    Anil Kumar Sharma .P

  • Import local mailboxes from one account to other in the some computer

    I need to import local mailboxes from one account to other in the some computer. I have tried copy/paste from one user/library to other, but mail went crazy with permission and even if I changed them manually now Mail can't save the passwords of the mailboxes, so I need enter each time Mail check the mail from the server. Any idea?

    You need to let Mail do the Import, and not do this manually in the Finder.  However, if you force a reindexing things may get back to normal.  This assumes you are not talking about mailboxes in account folder, but rather On My Mailboxes?
    To reindex all mailboxes force a reindexing by deleting the Envelope Index. With IMAP or Exchange account, forcing reindexing requires removing the account folder. See:
    http://docs.info.apple.com/article.html?path=Mail/4.0/en/14019.html
    Ask any questions needed to get comfortable with doing this.
    Ernie
    Message was edited by: Ernie Stamper

Maybe you are looking for

  • Thomson gateway router and airplay

    Hi all, I have recently purchased the B&W Zeppelin Air & while the sound is fantastic (for what it is...audiophile might disagree), I am having issues with it staying connected to the network. While playing a playlists using Airplay it will all of a

  • Setting mnemonic keys

    I am trying to create a mnemonic key event for F3. My problem is it works only when ALT F3 is pressed and not just F3. Any idea why?   findTxtArea.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_F3,0),"f3");        findTxtArea.getActionMap().put

  • Handling inbound messages

    Hi, We would like to handle incoming messages. The problem appears when we send an e-mail to SAP system. I can see some of SMTP transaction traces in log file, but some of them are not. Also, I cannot see any e-mail notification in SOIN transaction.

  • Windows 2008 R2 SP1 - SCDPM 2012 sp1 ru3 tape recovery vhd error 1001

    recovering vhd from tape shows me an error 1001 ,no information, I try to access the page and nothing appears.  try it several times and it's the same, I did the complete restoration of a virtual in a network folder and does so without problems. 

  • Nokia 3110C need MS word and Adobe reader

    Any applications that I can load on to my mobile for reading MSWORD and PDF documents? Please provide links for the .JAR apps. Regards, Ram