Help on copying LDB

hi all,
          there is a tcode gr55 for which there is a std program and it uses a LDB .now the problem is can a report program with LDB copied from one client to other,if yes wat problems can b arised?
any help wud be gratefull.

Hi Naren,
Chek with the [Copy Logical Database|Logical data base copy].
hope it helps you.
Regards!

Similar Messages

  • Supress 'Further Selection' And 'Search Help' buttons from LDB selection sc

    Hi,
       How to supress/invisible 'Further Selection' And 'Search Help' buttons from LDB selection screen?
    waiting for reply.
    Shweta.

    Hi,
    1) try to use another version of sel-screen
    2) work with loop at screen:
    LOOP AT SCREEN.
        CASE SCREEN-NAME.
          WHEN 'ANLAGE-LOW' OR 'ANLAGE-HIGH'
          OR '%_ANLAGE_%_APP_%-TEXT'
          OR '%_ANLAGE_%_APP_%-VALU_PUSH'
          OR '%_UNTNR_%_APP_%-TEXT'
           OR 'UNTNR-LOW' OR 'UNTNR-HIGH'
          OR '%_UNTNR_%_APP_%-VALU_PUSH'
           OR 'BEREICH2' OR 'BEREICH3'.
            SCREEN-INVISIBLE = 1.
            SCREEN-INPUT = 0.
            SCREEN-OUTPUT = 0.
          WHEN 'BUKRS-LOW'.
            SCREEN-REQUIRED = 1.
          WHEN OTHERS.
            CONTINUE.
        ENDCASE.
        MODIFY SCREEN.
      ENDLOOP.
    A.

  • How to add user defined F4 help for s LDB field?

    Hi,
         I am using PNPCE Logical Database for a program using the standard HR report category. But I want to have my own restricted F4 help for a particular field.Is it possible to override the standard LDB search help? I tried doing it , but I am getting a syntax error .
    Mahesh

    Hi Mahesh,
    I don't think so that you can attach a User defined F4 help in a standard LDB.
    What I would suggest is that you copy the standard LDB into Z LDB from SE80.
    Then go to the selection screen of the LDB and either try and attach a F4 help by writing the code in it OR
    Hide the field where you want to attach the F4 help with the keyword Exclude(you will have to check on the exact keyword).
    And add the same field in the selection screen of the report and define the F4 help.
    Do not forget to attach the Z LDB to your report by going to the Attributes.
    Please refer to the code below for attaching a generic F4 help to a select options:
    report zrich_0001 .
    data: begin of ihelp occurs 0,
    field type char10,
    ftext type char50,
    end of ihelp.
    data: a_field(20) type c.
    select-options s_field for a_field.
    initialization.
    ihelp-field = 'A'.
    ihelp-ftext = 'Description A'.
    append ihelp.
    ihelp-field = 'B'.
    ihelp-ftext = 'Description B'.
    append ihelp.
    ihelp-field = 'C'.
    ihelp-ftext = 'Description C'.
    append ihelp.
    at selection-screen on value-request for s_field-low.
    call function 'F4IF_INT_TABLE_VALUE_REQUEST'
    exporting
    retfield = 'FIELD'
    dynprofield = 'S_FIELD'
    dynpprog = sy-cprog
    dynpnr = sy-dynnr
    value_org = 'S'
    tables
    value_tab = ihelp.
    start-of-selection.
    In case you have any further clarifications,do let me know.
    Regards,
    Puneet Jhari.

  • Copy LDB's

    Hi,
    Is it suggestable to make a copy of LDB's and do the changes in HR..?
    please let me know the reasons..?
    Regards,
    Anil

    I want to take some of the content and add into a movie/slide show I am making but I can not get it into a file or form that will let me save it and then add it to my movie.
    Is it possible? Yes but I don't recommend re using content that was burned to DVD even if it isn't copy protected and here's why ..... Video already burned to DVD-R is highly compressed into mpeg 2 normally and there will be some loss in quality when converting it back to QT for use with i-apps (which may be possible with such 3rd party apps as visual hub, mpeg streamclip, and Dvdxdv (see links below):
    http://www.dvdxdv.com/NewFolderLookSite/Products/DVDxDV.products.htm
    http://www.apple.com/downloads/macosx/video/mpegstreamclip.html
    http://www.techspansion.com/visualhub/
    http://docs.info.apple.com/article.html?artnum=42724
    http://discussions.apple.com/thread.jspa?messageID=6384941&#6384941
    Hope this helps but if not just come on back.
    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in this topic. Apple encourages you to first seek a solution at Apple Support. The following links are provided as is, with no guarantee of the effectiveness or reliability of the information. Apple does not guarantee that these links will be maintained or functional at any given time. Use the information above at your own discretion.
    Message was edited by: SDMacuser

  • Need help to copy a photo between two events.

    I would appreciate it if someone could tell me how to copy a photo I want shown in two events. I have tried to duplicate the photo and drag it as well as cut and paste the duplicate, and in both instances, both photos move. Does iPhoto not allow the same photo in two events? When I click on the photo, the copy button is not highlighted as an option. Help?

    Duplicate the photo, flag one of them and go to the destination event and use the events menu ==> add flagged photo to selected event
    However this is not the best way to use iPhoto - events are a very basic inflexible organizing method - having photos in albums which uses no extra space is a much better way or organizing photos
    LN

  • Help with copying files into the the Start Menu

    I am trying to copy my application which tracks system usage, such as reboots, temps, etc, I want it when it first runs, to copy it self into the the programs folder and the start up folder. However I get the error ""FileCopy: destination file is unwriteable: ""......Anyone have an idea why I get this error? Is there away around it? Thanks for any and all help
    *Copying on a Mac works fine
    *I am currently Testing it on a copy of Windows Xp
    *I havenot Tested Vista or 7 Yet.
    Hers the class which I call to copy my program
    class FileCopy {
         String OS="";
         String username;
         String dir;
         String name="Test.jar";
         String MAC="Mac OS X";
         String WinXp="Windows XP";
         String WinVista="Windows Vista";
         String Win7="Windows 7";
         JFrame errorWin;
         FileCopy(){
              System.out.println("Enter Copy");
              OS= ManagementFactory.getOperatingSystemMXBean().getName();
              username = System.getProperty("user.name"); 
              if(MAC.compareTo(OS)==0){
                   copyMac();
              else if(WinXp.compareTo(OS)==0){
                   copyWinXp();
              else if(WinVista.compareTo(OS)==0){
                   copyWinVista();
              else if(Win7.compareTo(OS)==0){
                   copyWin7();
              else
                   return;
         private void copyMac(){          
              System.out.println("Enter Mac Copy");
              System.out.println("OS:"+OS);
              String s="/Applications/Solitaire.Jar";
              try {
                   copy(name, s);
              } catch (IOException e) {
                   System.out.println("Failed at Mac Copy new");
                   errorWin=new JFrame("Error: Failed at Mac Copy new ");
                   e.printStackTrace();
              } //Moves Jar File to Application Folder
         private void copyWin7(){
              String dir1="C:\\Documents and Settings\\All Users\\Start Menu\\Programs\\SolitaireWin7.Jar";
              String dir2="C:\\Documents and Settings\\All Users\\Start Menu\\Programs\\Startup\\SolitaireWin7.Jar";
              try {
                   copy(name, dir1);
              } catch (IOException e) {
                   System.out.println("Failed at Win7 Copy 1");
                   errorWin=new JFrame("Failed at Win7 Copy 1");
                   e.printStackTrace();
              } //Moves Jar File to Application Folder
              try {
                   copy(name, dir2);
              } catch (IOException e) {
                   System.out.println("Failed at Win7 Copy 2");
                   errorWin=new JFrame("Failed at Win7 Copy 2");
                   e.printStackTrace();
              } //Moves Jar File to Application Folder     
         private void copyWinVista(){
              String dir1="C:\\Documents and Settings\\All Users\\Start Menu\\Programs\\SolitaireVista.Jar";
              String dir2="C:\\Documents and Settings\\All Users\\Start Menu\\Programs\\Startup\\SolitaireVista.Jar";
              try {
                   copy(name, dir1);
              } catch (IOException e) {
                   errorWin=new JFrame("Failed at Winista Copy 1");
                   System.out.println("Failed at WinVista Copy 1");
                   e.printStackTrace();
              } //Moves Jar File to Application Folder
              try {
                   copy(name, dir2);
              } catch (IOException e) {
                   errorWin=new JFrame("Failed at WinVista Copy 2");
                   System.out.println("Failed at WinVista Copy 2");
                   e.printStackTrace();
              } //Moves Jar File to Application Folder     
         private void copyWinXp(){
              String dir1="C:\\Documents and Settings\\"+username+"\\Start Menu\\Programs\\Solitaire.Jar";
              String dir2="C:\\Documents and Settings\\"+username+"\\Start Menu\\Programs\\Startup\\Solitaire.Jar";
              try {
                   copy(name, dir1);
              } catch (IOException e) {
                   errorWin=new JFrame("Failed at WinXp Copy 1");
                   errorWin.setVisible(true);
                   errorWin.repaint();
                   System.out.println("Failed at WinXP Copy 1");
                   e.printStackTrace();
              } //Moves Jar File to Application Folder
              try {
                   copy(name, dir2);
              } catch (IOException e) {
                   errorWin=new JFrame("Failed at WinXp Copy 2");
                   errorWin.setVisible(true);
                   errorWin.repaint();
                   System.out.println("Failed at WinXP Copy 2");
                   e.printStackTrace();
              } //Moves Jar File to Application Folder     
         public void copy(String fromFileName, String toFileName) throws IOException {
           File fromFile = new File(fromFileName);
           File toFile = new File(toFileName);
           if (!fromFile.exists()){
                errorWin=new JFrame("FileCopy: " + "no such source file: "  + fromFileName);
                   errorWin.setVisible(true);
                   errorWin.repaint();
             throw new IOException("FileCopy: " + "no such source file: "  + fromFileName);
           if (!fromFile.isFile()){
                errorWin=new JFrame("FileCopy: " + "can't copy directory: "
                           + fromFileName);
                   errorWin.setVisible(true);
                   errorWin.repaint();
             throw new IOException("FileCopy: " + "can't copy directory: "
                 + fromFileName);
           if (!fromFile.canRead()){
                errorWin=new JFrame("FileCopy: " + "source file is unreadable: "
                           + fromFileName);
                   errorWin.setVisible(true);
                   errorWin.repaint();
             throw new IOException("FileCopy: " + "source file is unreadable: "
                 + fromFileName);
           if (toFile.isDirectory())
             toFile = new File(toFile, fromFile.getName());
           if (toFile.exists()) {
             if (!toFile.canWrite()){
                  errorWin=new JFrame("FileCopy: destination file is unwriteable: " + toFileName);
                   errorWin.setVisible(true);
                   errorWin.repaint();
               throw new IOException("FileCopy: destination file is unwriteable: " + toFileName);
             System.out.print("Overwrite existing file " + toFile.getName()
                 + "? (Y/N): ");
             System.out.flush();
             BufferedReader in = new BufferedReader(new InputStreamReader(
                 System.in));
             String response = in.readLine();
             if (!response.equals("Y") && !response.equals("y")){
                  errorWin=new JFrame("FileCopy: existing file was not overwritten.");
                   errorWin.setVisible(true);
                   errorWin.repaint();
                  throw new IOException("FileCopy: existing file was not overwritten.");
           } else {
             String parent = toFile.getParent();
             if (parent == null)
               parent = System.getProperty("user.dir");
             File dir = new File(parent);
             if (!dir.exists()){
                  errorWin=new JFrame("FileCopy: destination directory doesn't exist: " + parent);
                   errorWin.setVisible(true);
                   errorWin.repaint();
               throw new IOException("FileCopy: destination directory doesn't exist: " + parent);
             if (dir.isFile()){
                  errorWin=new JFrame("FileCopy: destination is not a directory: " + parent);
                   errorWin.setVisible(true);
                   errorWin.repaint();
               throw new IOException("FileCopy: destination is not a directory: " + parent);
             if (!dir.canWrite()){
                  errorWin=new JFrame("FileCopy: destination directory is unwriteable: " + parent);
                   errorWin.setVisible(true);
                   errorWin.repaint();
               throw new IOException("FileCopy: destination directory is unwriteable: " + parent);
           FileInputStream from = null;
           FileOutputStream to = null;
           try {
             from = new FileInputStream(fromFile);
             to = new FileOutputStream(toFile);
             byte[] buffer = new byte[4096];
             int bytesRead;
             while ((bytesRead = from.read(buffer)) != -1)
               to.write(buffer, 0, bytesRead); // write
           } finally {
             if (from != null)
               try {
                 from.close();
               } catch (IOException e) {
             if (to != null)
               try {
                 to.close();
               } catch (IOException e) {
    }

    That's clearly a security restriction then. You need to assign the JVM's user account enough rights to do so, or to configure any firewall/virusscanner which has possibly blocked it.
    Apart from this, are you aware of the fact that the OS root disk is not per se labeled "C:", that the location of documents is not per se "Documents and Settings", that there exist System#getenv() and System#getProperty() methods to find default system and environment variables and that there is the java.util.prefs API to access the registry? Your application is likely not going to run on any environment.

  • Help - "Cannot copy file: Data error (Cyclic Redundancy Check)"

    Hey there,
    I'm having problems with my Zen Mosaic EZ00. Up until a few weeks ago it has been working fine however, since then, has begun to show the error message? "Cannot copy file: Data error (Cyclic Redundancy Check)" whenever I try to copy files on to it. I have tried the recovery software available and it only updated the firmware. Some files do occasionally (and very occasionally) copy but usually it shows the error message and cancels the copy.
    I would really appreciate if anyone could help me with this?
    Many thanks :smileytongue:

    sorry for the double post!
    ive just realised that my ipod isnt actually charging, its just got the orange light blinking!
    not too sure what is going on now!
    lol

  • Help With Copying DVD's onto Hard drive PLEASE

    I just need someone to point me in the direction of an easy, fast, dvd decrypter. I already know how to convert files easily but i dont know how to do this. I downloaded one called DVDFab or something but it just copies all the info on the disc. I want one where u can select the specific chapters(or in my case episodes, im copying the twilight zone) that you want copied.
    Your help is greatly appreciated, Thanks

    You can still get it off of doom9.org, you just have to do more than just click the link. They have blocked external referrers from linking right to the downloads.
    Go here:
    http://www.doom9.org/index.html?/software.htm
    The DVD Decrypter link on that page is active and will allow you to get the last version.

  • Acrobat 9 PRO windows help.. copy paste for dummy

    Help...please
    I open pdf documents, highlight the text, copy and paste into MS Word or other programs and the text spacing is all messed up. There are spaces between letters in words. How do I paste, copy or whatever? I want the copied pdf to look exactly the same in the created file that it is pasted into. If you can help, I'll need detailed instructions, my expertise is not computer stuff.
    Very specifically, I'm a student and am allowed to convert lessons and lectures from text to voice to listen instead of reading all day. The NaturalSpeaker program works great on Word documents, email, and everything except pdf files. It will work on them too ifI remove the thousands of spaces that appear after pasting in the program or a word document.
    Thanks.

    Hi,
    You are in something of pickle.
    Not due to you or Acrobat.
    Unfortunately, whomever provides the PDFs you are using appears to have failed to deliver a well-formed Tagged PDF from an appropriate authoring application having adequate tag management.
    Tagged PDF is, by design (see ISO 32000-1), capable of supporting use of assistive technology applications, export of content (copy-paste is a sub-set of this) to Word (with layout - format- font info retained/provide), and reflow on mobile devices (tablets, smart phones, eBook readers).
    Of course, the AT application authors have to hold up their end by releasing applications that behave properly with regards to the ISO Standard.
    As PDF is very much a different format than that of a word processor the "copy-paste" of content does not behave in the manner we are all familiar with when doing this with a word processor file format.
    Acrobat X provides a much more robust export to MS Word of untagged PDF content than that provided by previous versions.
    Regardless, a well-formed Tagged PDF is usable by AT and Adobe Reader.
    Lacking a "proper" PDF you could use Acrobat Pro 9 to add tags to the PDFs.
    Then, export to Word or RTF.
    Or, save as to accessible text.
    Work this over with Word.
    Be well...

  • Need help in copying Invoice date to lower level item in Sales order report

    Hello Experts,
    I am debugging into one Sales order report.I need little bit help.The report is displaying Invoice Date for
    Sales order Billing documents for Higher item in Bill of Material Structures.But as per user requirement,
    I am supposed to show the Invoice date for lower level items also.The field for Higher level item is 'UEPOS'.
    I want to copy the Invoice date for Higher level item to lower level item. Can you please guide me in the logic?
    Thanking you in anticipation.
    Best Regards,
    Harish

    Hi BreakPoint,
    Thanks for the information.
    I have applied the same way but it is showing only lower line items now.
    Invoice dates for Higher level items are not there.
    I am pasting the code here which I have applied.
    Then you can give me more guidence.
    This is to be done only for 'ZREP' sales orders.
    if w_vbak-auart EQ 'ZREP' and w_vbak-uepos is not INITIAL.
                          read table t_final into w_final_ZREP with key vbeln = w_vbak-vbeln
                                                                        posnr = w_vbak-uepos.
                             w_final-erdat_i = w_final_ZREP-erdat_i.
                             else.
                    if w_vbak-auart EQ 'ZREP' and w_vbak-uepos is INITIAL.
                      w_final-erdat_i = w_invdate.
                    endif.
                    endif.
    Can you please sugest me changes here?
    Best Regards,
    Harish
    Edited by: joshihaa on Jul 13, 2010 6:22 PM

  • Action help to copy color in layer mask to another layer mask

    Hi all,
    Having trouble with this problem...
    I have layer 1 with a color mask set to black, red, blue etc.
    I have layer 2 with a color mask which i want to match and also become black, red, blue
    There are hundreds of files, and the color in layer 1 is always different.
    Manually i would simply click on the layer 2 mask which opens the color picker, and select the area of layer 1 i want to match.
    But doing that in an action does not work.
    I can't get the action to recognize that i want to copy the color content of a mask, and not the specific color used in the example during which the macro is recorded. The color picker does not seem capable of selecting a dynamic input (e.g. whatever color is on layer 1), it simply copies whatever was in layer 1 during recording like a dumb instrument.
    thanks for any input.

    Not sure what you mean by color mask, but I just noticed cs6 seems to have a new feature in the actions tab dropdown menu (small top right button) called 'allow tool recording'.
    I just tried to make an eyedropper action with that option turned on and now the color does change when I change the image colors and run the action again.
    Hope this helps.

  • Can anyone help me copy and paste photos from iPhoto to memory stick

    can anyone help me to copy and paste photos from i photo to a memory stick...no the same as my pc and just can't figure it out  thanx

    Open up Finder and go to your flash drive. Now open up iPhoto and drag and drop the pictures you want into the flash drive folder.
    By the way, how is your PPC mac running Lion?

  • Help with copying SP List data to SQL Server

    I need to read some data from a SP list and copy it to a table in SQL Server.
    Visual Studio  BIDS 2013. SharePoint 2010. Planning to migrate to 2013 this year. I tried to use the
    SP Data source/destination adapter with SSIS, but learned that I can't with Visual Studio 2013. I'm really looking for any way to read data from a SP list and import it into a SQL database (SQL 2014). Haven't found anything online that has worked for me the
    way they say it should (such as OData connection in SSIS). Maybe it's version issues.
    Does anyone have a solid step-by step to do this? I am not a C# developer...

    Hi,
    According to your description, my understanding is that you want to read SharePoint list data and copy it to SQL Server table.
    Hatim's option is a way to achieve it manually.
    If you want to do it automatically, I suggest you can create a console application to read SharePoint list using CAML Query and Client Object Model, Then use SqlConnection object to connect database, then you can insert record using SqlCommand object.
    Here are some detailed code demos for your reference:
    http://www.codeproject.com/Articles/399156/SharePoint-Client-Object-Model-Introduction
    https://msdn.microsoft.com/en-us/library/ms233812.aspx
    Thanks
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jerry Guo
    TechNet Community Support

  • Urgent help in copying STANDARD Texts of various lang from 1 client to anot

    Hi,
    I have a require ment in which i have to copy all standard texts in chinese,thai language from one client to another.
    Can any one please help me with this .
    I don't have any idea on proceeding .

    Hi,
    Use the Following Program
    goto se38>RSTXSCRP>EXECUTE.
    CHOOSE THE RADIOBUTTON Standard Text .
    In the Object name type ur Textname(chinese one ).
    choose the Mode as Export.
    GIVE the Language as chinese Code.
    EXECUTE.
    Save to ur desktop.
    Now logon to other client.
    goto se38>RSTXSCRP>EXECUTE.
    CHOOSE THE RADIOBUTTON Standard Text .
    In the Object name type ur Textname(chinese one ).
    choose the Mode as IMPORT.
    GIVE the Language as Chinese Code.
    EXECUTE.
    Give the File name.
    The text will get Imported.
    Regards,
    Morris Bond.
    Reward Points if Helpful.

  • HELP! Copied the iPhoto Library folder to backup, but files are smaller

    Help! To get more space on my laptop, I copied some photos to a backup hard drive, following the instructions in iPhoto help: "Copy the iPhoto Library folder on your hard disk to another disk." I then deleted many of the photos from my laptop.
    Now I'm looking at the photo files on the backup hard drive, and noticing that they are much smaller in size than the originals, for example 45 KB versus 1.1 MB. I tried a test photo by copying a photo from the hard drive back into iPhoto on my laptop, then opened the photo next to the original. Much smaller resolution!
    Then I go to the laptop's iPhoto Library Folder (where all the photos are supposed to reside) and find this particular photo, and sure enough, it shows that the file size is indeed much smaller (45 KB) than the photo information shows when I have the photo open in iPhoto (1.1 MB).
    So what's going on? Have I lost the detailed information on all of the backed-up photos, or does iPhoto get more information from somewhere? Am I really backing up everything when I follow the iPhoto Help instructions and just copy the iPhoto Library Folder?

    Welcome to the Apple Discussions. It sounds as if you copied the Data folder only which contains the thumbnail files. If you don't have a backup or the entire library or the original files I'm afraid you're out of luck. You could try recovering them from the HD (if you haven't used it much since deleting the image files) with SubrosaSoft FileSalvage. It will let your run it in demo mode to see what files, if any, can be recovered before you have to purchase it.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

Maybe you are looking for

  • X230 Wi-Fi problems after upgrading to Windows 8 Pro

    Hi, My X230 came installed with Windows 7 Pro and was working fine for several months. I upgraded my X230 (Intel Centrino Advanced n-6205) to Windows 8 Pro a few weeks back (10/27). The Wi-Fi was working fine for the first week or so. After that I en

  • How to use a custom schema in Max DB?

    Hi all I use a jdbc datasource to connect to max db. For those who know maxdb the DB structure is as follows. dbaname -> Tables -> Schema -> MyTable The data source url refers to hostname/dbname. When I make a query on the data base like select * fro

  • Licensing stopped working: Does anyone know if Adobe cares about it's customers?

    For the 3rd time in as many months I'm having to uninstall, clean and reinstall CS 3 Web Premium suite. Error message on all applications: "You cannot use this product at this time. You must repair the problem by uninstalling and then reinstalling th

  • Dblink for database 10G from database 8i

    I have created dblink with this syntax in database( 8i) to connect to database (10G) CREATE PUBLIC DATABASE LINK ORCL CONNECT TO SOUTH IDENTIFIED BY SOUTH USING 'ORCL'; Database link created no issue but when I am trying to connect to South schema in

  • Problem playing with 2 axioms 49 2nd generation with MainStage

    I play in a band. Me and another member are using the same controller attached to MainStage: Axiom 49 2nd generation. At first we configured the layout mode with 2 keyboards and two gruop of percussion pads. Then we assign each keyboard to both axiom