Copying screens from 4.7 to 4.5

Hi can any body tells how to copy module pool screens from 4.7 to 4.5.
due to the version change, upload function is not possible.
-purna

the only difference is length of some fields (if I remember well it is the fieldname which is 132 in place of 30)
if you cut the column at the given length you will be able to upload it in the old version

Similar Messages

  • Copy screens from screen painter

    Hi guys,
    I was just wondering if there was a way to copy screens from one program to the other?
    Me and a colleague are working on the same project, but since we can't both work in the same program at the same time, we have devided the work. But we will be working in a different program, and making screens in a different program.
    So, if we want to merge the two programms into one, we will have to add all the screens. So, is there a way to just copy them?
    Best regards.

    create different program and create screens in that program.
    now to merge them go to se51, choose copy form status button on top of screen  and give ur program name and screen no and copy them to target program and screen.
    now you can use that screen by calling in that program with call screen statement.
    reward if useful

  • Copy Screen from one system to another

    Hi,
    My development system has been upgraded to ECC 6.0 from 4.7 . Now some of the standard screens are missing in ECC 6.0. Now I need to  copy the missing screens from the quality system which is still in 4.7 to the upgraded ECC 6.0 development system. Is there any method?.
    I tried to use Download/Upload method.I am able to download the screen from quality but i am not able to upload it into the development as 'Upload' option is greyed out in development.
    Thanks & Regards,
    Soumya.

    Hi,
    Note: This method is useful for Z-screens only.
      Execute SE51 T-code>enter your module pool program name&screen number>click on change  push button>Go to Layout by click on Layout push button>then choose path in menu bar like as Utilities>upload/down load>download.  So you can down load from source system. next follow same steps in your destination system use upload instead of download.
    Regards,
    BBR.

  • Controlling 2nd Display - Find 'Copy' Screen - 2 Questions

    I have two questions here, the first should be fairly basic. I just connected a second display using the Mini-DV out to a HDMI cable. The second screen shows my desktop but does not show anything else, are there separate controls to allow certain things on the 2nd display?
    My second question relates to the first, my 2nd display shows my desktop but also shows a small box on the left side that says 'Copy' on the top and has 5 separate items listed. The first is for Firefox and says 'An item named "Firefox" already exists in this location... Another says 'Copying 3 items to Clint's Camera' and has a status below that is running in place but has not changed for at least an hour. How can I access this 'Copy' Screen from my iMac so I can stop this items? I tried to restart but said something else was running in the Finder so it would not let me, any ideas? Thanks!

    you have to imagine the two screens like they were just one screen.
    have a look at system preferences -> displays -> arrangment. there you see the two screens. if your second screens is on the right, for example, you have to move your mouse outside the right side of your first screen to get to the second. that way you can move stuff between screens and also get to the copy dialog from the second screen.

  • Copying screen elements from one screen to another in 4.5b

    Hi ABAP Gurus
    Please help me out from the following situation.
    I am in a situatin where i need to copy the screen elements(Block, I/O fields, Push buttons) from one
    screen to another and do the modifications in the copied screen. Here iam using 4.5b version and i am unable to find out to copy the screen. I am trying with the following way and is not working for me.
    selecting the block -
    >EDIT---->CLIPBOARD---->Copy to Temp Storage
    EDIT---->CLIPBOARD---->display temp stor.
    but itz not working.
    Please let me know the process. Please dont forgrt that i am working on 4.5b version.
    will reward with points for the helpfull ones.
    Thanx in advance.

    don't go from that way
    go to source screen select contents with ctrl key and mous e
    procedure :  click on one object press ctrl after that click on all object along with ctrl key.
    copy or ctrl +c
    open target screen paste.
    when u paste a structure comes with your pointers just click on screen
    regards
    aniruddh singh

  • Copying data from a tree to another

    Hi all!
    I am in a trouble when I try to copy somedata from one tree to another one.
    The interface allows the user to select one item from the first tree, and then when he clicks on a button, this item is copied to the second tree. The first tree stays in the same way. It is not permitted to the user to do any operation on the first tree.
    It is permitted to the user to remove items from the second tree. But I implemented this without any trouble.
    The problem occurs, after I selected the item that will be copied. Then, when I click on Add button, an unexpected error occurs.
    The vi is attached.
    Thank you in advance
    Attachments:
    Painel Frontal.vi ‏36 KB

    I am using version 8.2, and it doesn´t allow me to sabe in 7.1
    So, I send you the screen shot of blocks diagram.
    Thank you in advance.
    Attachments:
    screenshot.PNG ‏36 KB

  • Copy the from am unsaved goods receipt PO udf  into a batches setup

    I am trying to copy the value from a from a goods receipt PO udf  that is not yet saved into a batches setup screen through a formatted search . The batches setup  opens when i press the add button in the goods receipt PO because the item uses batch numbers. Because the goods receipt PO is not the current screen, I cannot use variables. Any idea?

    I had exactly the same requirement and this is how I solved it.
    You will not be able to use a formatted search as the context window when the batches / serial window opens is different and the field from the GR PO are not available.
    You need to create a temp table and write a formatted search to insert the value that you want to carry to the Bacth screen from the GR PO on the refresh of the Item Name or whatever in your case.  (If you give me the exact details I can give you the steps)
    Once you open the Batch screen the Goods Receipt PO number is available on the top which you can use as referesh to fetch the data from the temp table.
    One more important NOTE:  As you know the Goods Receipt No can be the same for more than one user because SBO gives you the next available number.  To get the record exactly pertaining to that user, when writing the data from GR PO you should also insert the $[USER] value which identifies the user.  You may compare this when fetching the data from the temp table on the Batch screen.
    Let me know if you need further direction or help
    Suda

  • Error when copying items from one table to another

    I am trying to copy data from 2 archive tables within an
    Access database to their twin production tables. The first table
    copies perfectly with the code:
    <CFQUERY NAME="moveArchAttach" datasource="faaco2">
    INSERT INTO tbl_Attachment ( PostID, Attachment, AttachNote,
    AttachName )
    SELECT tbl_Attachment_Archived.PostID,
    tbl_Attachment_Archived.Attachment,
    tbl_Attachment_Archived.AttachNote,
    tbl_Attachment_Archived.AttachName
    FROM tbl_Attachment_Archived
    </CFQUERY>
    However, when trying to use similar code on the other table:
    <CFQUERY NAME="moveArchPost" datasource="faaco2">
    INSERT INTO tbl_Posting ( Title, FirstName, LastName,
    PhoneNumber, RoutingSymbol, Email, IniDate, ComDate, SOLNBR,
    PhaseCode, ProcCode, Posting, Password, RegionCode )
    SELECT tbl_Posting_Archived.Title,
    tbl_Posting_Archived.FirstName, tbl_Posting_Archived.LastName,
    tbl_Posting_Archived.PhoneNumber,
    tbl_Posting_Archived.RoutingSymbol, tbl_Posting.Email,
    tbl_Posting.IniDate, tbl_Posting.ComDate, tbl_Posting.SOLNBR,
    tbl_Posting.PhaseCode, tbl_Posting.ProcCode, tbl_Posting.Posting,
    tbl_Posting.Password, tbl_Posting.RegionCode
    FROM tbl_Posting_Archived
    </CFQUERY>
    I receive the error:
    [Microsoft][ODBC Microsoft Access Driver] Too few parameters.
    Expected 9.
    Any help would be greatly appreciated, I am at a loss and
    I've tried everything. Thank you.

    I realized my error immediately after posting this topic and
    subsequently have resolved this error. On 9 of the values, I have
    listed the wrong table in the SELECT statement. This is why one
    needs to take breaks instead of staring at a screen forever :).
    Thank you anyway!

  • Unable to copy music from Mac to Windows PC using Home Sharing on iTunes 12

    Hi all,
    I use both a Macbook Pro and a Windows PC.  I am trying to copy music from my Macbook Pro onto my PC within iTunes 12 using HomeSharing but seem to be unable to do this.
    When I connect to the Mac library on the PC, I can play the tracks without any issue.  But when I try to drag the song to the side to copy to the PC , nothing happens.  I don't get the window that should pop up on the left of the screen and there is no option for Import at the bottom of the screen either.
    I am however able to copy music from the PC to the Mac without an issue.  The window pops up on the left when I drag the track within my Mac, and the Import button shows up on the bottom of the screen.  It is only when I want to copy from the Mac to the PC.
    I have checked the Sharing tab in preferences, and on both systems it is enabled.  I tried disabling and then re-enabling.
    I am also unable to using the download Purchased items in iTunes, as my Mac and PC are connected to different iTunes accounts.  Both machines are authorised to play both accounts though.
    Any advice?

    Check Apple's Home Sharing tutorial: iTunes: Setting up Home Sharing on your computer - Apple Support

  • Copying files from local computer to a remote server which is not in Domain and with username and password?

    "I have one workstation with static IP, Wants to create batch file to log in to this,using user name and password, copy back up files from that workstation to my desktop with batch file, please help
    I am currently using batch file for back up for domain servers with robocopy commands in batch file  but one of the workstation is not in domain and has static ip , also it has username and password,
    Wants to create batch file on my desktop to log in this server---with username and password,, copy files from particular folder and paste it on my desktop in particular folder or auto create that folder,
    please help, "
    P Dave

    JRV,
    I can understand that, 1stly I am not a scripting guy, I know very very basic of this,
    2ndly, I need help , I am not asking anyone here to write code for me, I have already wrote that but its not doing which its suppose to do,
    check below screen shot, after running suggested script, it has mapped drive ,
    now I do not want to do that, I want just files to copy from that machine to my machine, and want script which I can run from any PC,
    Tried with UNC PATH as well, but not making any difference, its keep mapping that server drive to my computer
    P Dave
    JRV,
    I can understand that, 1stly I am not a scripting guy, I know very very basic of this,
    2ndly, I need help , I am not asking anyone here to write code for me, I have already wrote that but its not doing which its suppose to do,
    check below screen shot, after running suggested script, it has mapped drive ,
    now I do not want to do that, I want just files to copy from that machine to my machine, and want script which I can run from any PC,
    Tried with UNC PATH as well, but not making any difference, its keep mapping that server drive to my computer
    P Dave
    Bill - he still sees that "connection" although it isn't mapped it is attached temporarily.
    P - Log off and log back on and the attached connection will be gone.  It is temporary.   Again - knowing the basics of WIndows would let you know this.
    We have given you all of the answers that are possible.  There is no other way unless you have installed things like PowerShell and PowerShell remoting or an FTP server.
    If you do use a drive it can be just as easily deleted after you have finished the copy.
    Again: "NET USE /?" will tell you all of the options.
    Saying you know nothing is not an excuse for not thinking or looking more deeply into the suggestions made by those trying to help you.  This is not a MIcrosoft support forum or help desk.  It is a forum for admiinistrative scripting and assumes
    that those coming here are technically trained or experienced in the basics of Windows technology.
    ¯\_(ツ)_/¯

  • How to find the folder (EBS_R12) in OEL 5 after copy/paste from Windows 7 ?

    Folks,
    Hello. I have just installed Oracle Linux 5 as Guest OS on the top of VMPlayer. Host OS is Windows 7.
    I downloaded Oracle E-Business Suite R12 from edelivery into Windows 7 in a folder(EBS_R12) on my LapTop screen.
    In order to install EBS R12 into Oracle Linux 5, I copy/paste the folder EBS_R12 into Oracle Linux 5 screen. The file size is about 50GB. After coply/paste is completed successfully, I cannot find where is the folder (EBS_R12) in the Guest OS Oracle Linux 5.
    Can any folks tell me where is the folder (EBS_R12) in Oracle Linux 5 after copy/paste from Windows 7 ?

    Hi,
    After coply/paste is completed successfully, I cannot find where is the folder (EBS_R12) in the Guest OS Oracle Linux 5.Was the copy/paste successful.
    If yes then you can do the following
    #find / -name EBS_R12 -type d -print
    (Assuming you copied the folder "EBS_R12" , But not its contents).
    Thanks

  • How do I copy & paste from an email to another web site?

    How do I copy & paste from an email to another web site?

    Hello, not quite sure what it is you want to do.
    In Mail you can copy something by highlighting it & CMD+c, or Mail>Edit>Copy, but whether you can paste it to a website, not sure, but you could say paste in in a Reply here...
    Re: Grey Screen with spinning gear
    reply from duwatucan in Mac mini - View the full discussion
    Congratulations, your post has solved duwatucan's question.
    Learn more about the Apple Support Communities Reputation System
    Did this help? Go to the message, sign in, and reply
    Start a new discussion in the same community

  • Can I copy pages from a book I am reading on the iPad to the ipad

    I am reading a library book in overdrive is it possible to copy pages from the book to be read on the iPad after the book is returned?
    Thanks for your response
    Cin 

    I don't have a library book checked out at the moment, so I can't play, but have you tried to select a section of text, and then copy it?  If that works you can then go to Notes or Pages, create a new document and paste it in.
    If not, you can try screen shots:  press and release both the Home button and the Power button together, you should hear a camera shutter sound.  You can take as many screen shots as you want.  You will find the screen shots on your camera roll in Photos.

  • A few days ago, I copied text from an iBook onto my text notebook. When I went to my kindle on my ipad and attempted to share a quote from it onto Facebook it pasted the previous quote from my iBook. I can't copy and paste anything except that quote. HELP

    A few days ago, I copied text from an iBook onto my text notebook. When I went to my kindle on my ipad and attempted to share a quote from it onto Facebook it pasted the previous quote from my iBook. I can't copy and paste anything except that quote. HELP

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Copy text from a PDF to word. Just get Symbols

    Hello,
    I have a public PDF with no Copying Restrictions. When I try to copy text from the PDF highlighted text to WORD I only get unreadable garbage.
    I can select the desired text and copy it into word but when I paste the text it is pasted like symbols and lines.
    I tried Special Paste and does not works. It says the font is a Gill Sans something (with numbers and so on), no really a font it seems but when i change it to Arial i still get symbols.
    Any help or ideas,
    Cheers,
    Sebastian

    I have this exact same problem.  It is very frustrating.  How is it not possible to "grab" onto the text in the pdf ??!!
    I am looking at it.  I can see it.  I can read it.
    I can highlight the individual letters and words with the mouse pointer. (So it's not just a "picture")
    With a pdf editor, I can even make the text bold, italic, or increase the font size.
    SO WHY CAN'T I COPY THE TEXT!   AAARGH!
    No, the file is not protected.
    Yes, I have tried saving as different formats.  (The "save as tiff file workaround" idea is  very time consuming and greatly degrades the quallity.)
    The font is shown as being: "Arial083.313"
    Something in the pdf program is recognizing the text, translating the 1's and 0's (that make up all computer files) into the letters that display on the screen that I can read and select with the mouse. So why can't that same "something" allow me to copy it?  So frustrating.
    Somebody please help.  If you can solve this problem you are awesome.

Maybe you are looking for