Problem while copying layout set

Hi,
    Can anyone please solve my probelm.
I have two clents Ct3(330) and Ct2(330).
in CT3(330) one layoutset is there called "Z_MEDRUCK_11120" is tehre inEnglish, German and Polish laguages.
But in CT3(330)  "Z_MEDRUCK_11120" only having English, German  languages but polish language related layoutset is not there.
My problem is i wanted to copy Z_MEDRUCK_11120 polish layout from ct3(330) to ct2(330). is there any procedure to copy the layoutset in cross client.
Regards,
Koti Reddy

Hi Koti garu ,,
you saying that system diffrent ....do you mean Servers diffrent right .... try to transport that script from one system to another system throught  se09.
and in  your requriment need in polish lang. also mean you have to ask to Functional people and TL to add new lang. in system..
....  If script is in $tmp (local object ),, go and change in RSWBO052 -Program and add package to that script.
From ,,
B.Madhu sudhan reddy .
Abap - cons..(Mumbai)

Similar Messages

  • Problem While Defining  "VALUE SET"

    Dear All,
    I am finding problems while defining "Value Set".
    I wanted to select "DISTINCT" Column from a particular Table.
    It is not allowing me to select distinct Column.
    Is there any other alternative ??

    Hi Tarak,
    Create a view selecting distinct values and then use this view as a table in your value set.
    Vishal

  • Help!!! The problem about the layout set

    I have created my own layoutset for the navigation and set it.Here is the question, I navigate from the iview for which  i have created the layout set to a new page.there is a return link on the new iview,i click the link of return the Browser go back to the frist  iview but the layoutset i have set is gone. When return from the iview how can i keep the layoutset .
    Any one know the answer please tell me ,  thx

    Hi Mike,
    Thank you very much for your help. I think itis better to choose another kind of smart sensor with rs232 I/O port. It is easier to connect the eight sensors to the eight bluetooth servers. The eight sensors are fixed on the different  bearing surfaces and rotate with the machine, it's difficult to use one turning adapter to connect them. So I have to use eight bluetooth servers to connect to the eight sensors.  
    The key problem ishould I use 8 bluetooth servers or 1 bluetooth server or the bluetooth vi of labview  to receive the data from the other servers and how can I drive them. Just like question 3 and 4 following:
    (3 key question)  I skimmed through the forum and noticed labview can support bluetooth. But I want to know that: If the bluetooth function of labview 8 can receive the data from the eight bluetooth servers on the machine  in the same time, how could I do? If not,
    should I use the same kinds of eight bluetooth servers to receive the realtime data in the same time, which are connected to pc I/O ports(if they are enough), or just use only one server connected to pc to receive the data from the servers in the same time ?
    (4 question) I noticed that the bluetooth servers should use drive software or programe. If necessary, how could I do for the eight servers on the machine and on the pc?

  • Problem while copying Text from Jtext Area ..

    I am trying to copy text from a JtextArea onto any Text Editor .. What happens is that the pasted text in the Text Editor eg : TextPad, JCreator etc .. has extra Carriage Return appended at the end of everyline (line separator to be exact).
    Eg :- Actual Text on Text Area :
    Executing PU for PMGS.................
    Completed PMGS PU successfully.
    - When Pasted on a Text Editor Blank Document becomes :
    Executing PU for PMGS.................
    Completed PMGS PU successfully.
    I am not being able to understand how this extra CR (Carriage Return gets added .. Looking for an urgent solution to this problem ,,

    rathor5 wrote:
    When I am copying a song from my pc to lumia 620 . It automatically create 3 or 4 links of that song in "music+video" hub . I have already refreshed my phone but the problem is still persists.
    Do you already have the amber update on your Lumia? Pre-amber solution for that is to perform a complete hard reset of the device - so make it sure to do a backup first.
    Good luck

  • Problem while copying two files into same file

    Hi,
    I want to copy n number of files into the same file.I am using the below code for the purpose.
    private void testFiles(){
              FileOutputStream fos = null;
              String file1  = "C:"+File.separator+"test1.doc";
              String file2 = "C:"+File.separator+"test2.doc";
              String file = "C:"+File.separator+"test123.doc";
              File testFile = new File(file);
              ArrayList arrFiles = new ArrayList();
              arrFiles.add(file1);
              arrFiles.add(file2);
              try {
                    fos = new FileOutputStream(file,true);
                   for(int i = 0; i < arrFiles.size();i++){
                        int ReadBytes = 0;
                        int BUFSIZ = 4096;
                        long fileSize ;
                        long copiedBytes=0;
                        String curFileName = (String) arrFiles.get(i);
                        File srcFile = new File(curFileName);
                        FileInputStream fis = new FileInputStream(srcFile);
                         fileSize = srcFile.length();
                        byte Buf[] = new byte[BUFSIZ];
                        while(copiedBytes < fileSize)
                             ReadBytes = fis.read(Buf, 0, BUFSIZ);
                             fos.write(Buf,0,ReadBytes);
                             copiedBytes +=ReadBytes;
                        System.out.println("copied files::"+curFileName);
                   fis.close();
                   fos.flush();
              } catch (FileNotFoundException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (IOException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } finally{
                   try {
                        if(fos != null){
                             fos.flush();
                             fos.close();
                   } catch (IOException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
         }Iam expecting that both the files will be copied sucessfully.But iam able to see only one file.But the file size of the destination file is the sum of both the source files copied.So that means the content is copied.Any ideas on possible causes/solutions.
    Thanks in advance.

    Hi,
    Just a thought, if you build a sequence of inputstream using SequenceInputStream something like that
                    String file1  = "C:"+File.separator+"test1.doc";
              String file2 = "C:"+File.separator+"test2.doc";
              FileInputStream s1 = new FileInputStream(file1); 
              FileInputStream s2 = new FileInputStream(file2);
              FileInputStream[] array = new FileInputStream[2];
              array[0] = s1;
              array[1] = s2;
              EnumerationImpl enumeration = new EnumerationImpl(array);
              SequenceInputStream sequence = new SequenceInputStream(enumeration);
                   //code here the read to go through the sequence of inputstream and write them  into FileOutputStream
    // and your Enumberation implementation class as below
    public class EnumerationImpl implements Enumeration<FileInputStream> {
        private FileInputStream[] array;
        private int index;
        public EnumerationImpl(FileInputStream[] array) {
            this.array = array;
        public boolean hasMoreElements() {
            return index < array.length;
        public FileInputStream nextElement() {
            if (index < array.length) {
                return array[index++];
            throw new NoSuchElementException();
    } Regards,
    Alan Mehio
    London, UK

  • Problem while copying the org unit

    Hi,
    SRM 4.0.
    In PPOMA_BBP, user is trying to create a new org unit by copying an existing org unit. When the new org unit is created, the relationship B012 (Is managed by) is getting copied and is showing in PP01 and also showing in HRP1001 table. In the current org structure, every org unit is having a manger (with a red hat). When copying the org unit, the manager is not getting coped but the relationship is getting copied as mentioned above.
    This should not happen. And this is not happening while creating a new org unit by clicking on the "Create" button in PPOMA_BBP.
    Appreciate for any suggestion how to solve this.
    Thanks & Regards,
    Aswini

    Hello Aswini,
    I checked on a SRM 7 release and i get same behaviour as the one you described.
    I did not find any OSS notes regarding this point.
    I advise you to open an OSS message to have SAP clarification on this point.
    Regards.
    Laurent.

  • Problem while copying datas using Copy Express

    Hai Experts,
    Greetings.
    We were trying to copy Master and Configuration datas from test database to Live database using Copy express. The datas from Item Master, BP Master copied Correctly, but, in CoA (we are using Segmented Accounts) the G/L Account --> the Code column shows the System refernce no. (ie., _SYS00000002679) and the Name of the G/L Account is copied correctly.
    Is there any solution to solve this problem.
    Thanks and Regards
    Raja

    On your test company, there's segmented accounting setup. Is the segmented accounting setup on the Live company (or have you managed to use copy express to copy over the segments and other settings)?
    If you've done that, then maybe you could export to XML your Copy Express worksheet and upload it somewhere so we can have a look?

  • Problem while copying application

    Hi,
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE 10.2.0.3.0 Production
    TNS for Linux: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Application Express 3.0.1.00.08
    I've got this message while copyin an application :
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-06550: line 16, column 14: PLS-00103: Encountered the symbol &quot;ID_CIV&quot; when expecting one of the following: ) , * &amp; = - + &lt; / &gt; at in is mod remainder not rem &lt;an exponent (**)&gt; &lt;&gt; or != or ~= &gt;= &lt;= &lt;&gt; and or like LIKE2_ LIKE4_ LIKEC_ between || multiset member SUBMULTISET_ <pre>declare h varchar2(32767)
    Unable to copy application 113.
    Anybody can help me ?
    PS : excuse my english !

    the import is working through apex.oracle.com but it's not in my database
    i've got a new error :
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-06550: line 10, column 1: PLS-00306: wrong number or types of arguments in call to 'CREATE_PAGE' ORA-06550: line 10, column 1: PL/SQL: Statement ignored <pre>begin declare h varchar2(32767) := null; ph varchar2(32767) := null; begin h:=h||'No help is available for this page.'; ph := null; wwv_flow_api.create_page( p_id =&gt; 1, p_flow_id=&gt; wwv_flow.g_flow_id, p_tab_set=&gt; 'A

  • Problem while copying function modules..

    Hi,
    I am trying to copy a function module called MRM_ENTRY_ERS to Z function module.
    Now the problem is there are 6 performs inside the function module and again in those 6 performs there
    are around 10s of performs.
    So its really hectic to create includes for form-endform for all of those performs.
    Is there a way that when I copy all those form-endform without creating includes for every perform ?
    I mean is there some  easier way to do it ?
    Thanks.
    Rajesh.

    Hi,
    I think copy the total Function group MRMN of this FM (MRM_ENTRY_ERS) into new function group like ZMRMN.
    Please go to SE80, select function group, enter MRMN, press enter. Select the Function group MRMN, press the right butoon, click copy option, now you enter the new function group like ZMRMN,click copy, then after you select the copy function module(only if you need to Z fm), given the Z FM name and then press copy button, then it copies the function module successfully
    subbarao

  • Problem while copying from model node to value node!!

    Hi All,
    I am trying to copy the contents of model table to newly created value table. For this i have written following code -
    IWDNode targetnode = wdContext.nodeZhress_Firstday_Service_ValueNode();
    IWDNode sourcenode = wdContext.nodeOutput().nodeT_Zhress_Firstday_output();
    WDCopyService.copyElements(sourcenode,targetnode);
    tagetnode is the node which is created in root context and sourcenode is the node which the node that shows the output when RFC runs.
    After that by using copyService i m trying to copy from source to targetnode.
    This target node is also binded to table, for getting the output.
    When i copied the things from source to target it's size is equivalent to source node but its not getting any data from source node and showing blank in the table.
    When i have tried to get whats it showing, its showing me        null .
    Please help me on this problem.
    Regards,
    Roshan Gupta

    hi
    check out this threads
    Re: WDCopyService - copy model node to Value node
    WDCOPYSERVICE
    Value of attribute not copied after WDCopyService.copyElements
    Regards,
    Gopi

  • Problem while copying bean properties

    Hi,
    I have 2 java beans, with same property names. I want to copy the data from one bean to another, for that i am using
    beanUtills.copyProperties(destBean, sourceBea);
    There is a problem with this method, It is doing type conversion, of the data fo the properties.
    In the source bean i have a property of type Character with a value of 'null', after doing the copy, in the destBean, it is stored as blank ''.
    What i want is to copy exactly, no need for conversions.
    any suggestions will be appriciated...
    thanks,
    krishna.

    hi onlymullapudi,
    which BeanUtils do you use? Which version/release and which package?
    org.apache.commons.beanutils should usually throw an exception

  • Problem while planning a SET material

    Dear sir,
    I have an issue related to a material which i am selling as a set material say "A" . I have included 5   componets to sales order BOM of this set material A . all the materials have a valid MRP TYPE PD.But the material A does not have any BOM and Routing because it is not physically manufactured. All the 5 sub items are manufactured.
    The sales order is created and the pricing is done at the header item level i.e item "A." When i check in MD04 the system displays an entry of customer oerdewr only for the header item "A" & for all the 5 sub items there is no customer order displayed. Now I run the MRP using transaction code MD01. After this in MD04 the system creates a planned order only for the header item "A" & there is nothing for the sub items.
    I have tried the "Phantom Assembly" but this didn't solve the issue as phantom assembly is used when there is a superior assembly present after the header item level assembly. Here there is no superior assembly directly all the 5 sub items are clubbed under the name of the header item, "A".
    Please guide me as this is a very important issue.
    Regards,
    Omkar

    Dear,
    You need to do the following setting in BOM item for components of A
    Stg group for A and other component = 20
    Create BOm with usage 3.
    In the BOm items make the BOM items relavent for Sales.
    Make in such a way that item cat determined via MRP type for A is not relavent for billing and  delivey
    When you create sales order, system will make the bom of A to explode in sale order and lock A and allow components to delivery.
    Hope it is okay with you.
    null

  • Problem while copying outlines with MaxL (error 1241167)

    Dear all,
    I'm trying to copy outline to database1 on server1 from database2 on server2.
    When I run my script, I get the following error message : "ERROR - 1241167 - Database xxx.yyy is not on a block storage application."
    Isn't it possible to copy outline from an aggregate storage application to another aggregate storage application ?
    Thanks in advance,
    Lionel.

    >
    When I run my script, I get the following error message : "ERROR - 1241167 - Database xxx.yyy is not on a block storage application."
    From the error message I understand that you might be trying to copy a block storage outline to an aggregate storage outline. Check the source outline you are migrating is an ASO outline or not.
    Hope this helps!

  • Problem while copying standard program to Z Program

    Hi SAP Forum,
    I have copied one standard program to Zprg. and there are TWO Screens in standard program (100, 200). But in my Zprg only 200 copied, when I'm trying to copy Screen 100, it shows an error, "Screen already exists"..
    And also, I've created one "Z" Transaction Code for my same  program. In that, I've mention, Screen Number: 100.. When I execute "Z" Transaction, the Screen 100, will come as selection cretria is on that,  and when I click on Execute Button, it comes back in SAP EASY ACCESS Screen (Initial Screen). But I want that, Screen 200 will come when I click on execute Button in Screen 100.
    How can I resolve this?
    Thanks
    Devinder

    Hi ags,
    Thanks.. I've already changed the TCODE from code and second thing about Include, I've also changed the name of BOTH (two Includes) and it is working fine.. but error still coming...
    Generation errors in program
    Source code   ????????????????????????????????????????     Line     0
      Error when generating the selection screen "0100" of report "ZRVBBWULS
    and also, I've done only one change in Include, I've added one select-options over there and getting the same error, but if I add PARAMETERS, then its executed successfully. But I want add a "Posting Date" as SELECT-OPTIONS.
    Pls try to resolve this..
    Thanks a lot  in advance
    Devinder
    Edited by: Devinder Pawha on May 13, 2010 2:02 PM

  • Illustrator cs5 problem while copying types

    Hi all,
    Since about a month, when I copy and paste types (block or paragraph doesn't matther) inside illustrator, the text doesn't retain it's properties. For example, I could have a 36pts arial sentence that I will copy and it will paste as 12 pts myriad. The only way I can keep the properties is when I copy text and paste it inside some existing text, using the text tool.
    a few more details:
    - I use version 15.0.2
    - I copy / paste inside illustrator. no other software involved.
    - whenever I copy / paste, the text is always copied in center of the screen
    - cannot copy front / back. it will still paste as a basic ctrl + v
    Thanks for you help!

    Well, your log is full of errors.
    ----------- Payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0 -----------
    ERROR: Error 1327.Invalid Drive: G:\
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 1327.Invalid Drive: G:\
    So what is this drive G:? A missing removable drive? A flakey external disk?
    WARNING: DW064: Memory requirements not met for {60E59A6C-7399-495A-B85C-C829F4E59602}
    WARNING: DW065: Display requirements not met for {60E59A6C-7399-495A-B85C-C829F4E59602}
    Speaks all for itself. You are trying to install on too small a display and running out of disk space to top it off.
    Mylenium

Maybe you are looking for

  • How to add Web service of SAP BI in Crystal Xcelsius

    Hi, When creating a dash board in Crystal Xcelsisus version 4.5 using QWAAS then am able to get the data into the dash board. In the same way I am trying to put the WSDL provided by SAP BI.  But then I am not able to get the data.  There I am able to

  • File.length issues

    I've been trying to make a terminal like program, but I've had issues detecting the file size. When I use file.length(), I get wildly different answers than use of the "du" unix command. Is this a bug in java? Mac OS X? Just me being an idiot? Thank

  • Cumulated Value updation in Transformation level

    Hi All, Pl provide me the logic for the below requirement Plant   ;   Date                   ;               Issues   Qty  ;             Receipts     qty                ;   Closing Stock 1011  ;   01/08/2011  ;                       100    ;         

  • Dashboard won't run with Parental Controls

    It's showing as an allowed application but won't come up.

  • Using the Calendar Object

    I have code as follows String strBeginDate =  '12-02-2014' formatter = new SimpleDateFormat("mm-dd-yyyy");  Date dtBeginDate = (Date) formatter.parse(strBeginDate); Calendar cal = Calendar.getInstance();    cal.setTime(dtBeginDate); System.out.printl