How to automate plug in on the master?

how can you automate a plug in on the master.

I am guessing that you have encountered the problem that many discovered in Logic 8 that it does not automatically show a "Master" track in the arrange page, so there is no track lane to automate things.
However, are you talking about the master output, which is simply the master volume coming out of your system, or the Stereo Output, labeled "Output 1-2" where all of your tracks are feeding, which is your "Master Mix Bus"?
Either way, you do the following:
1.  Create a new track (either audio or software type - it doesn't matter because you will be reassigning it in the next step)
2.  "control-click" on the track header in the arrange page and a menu will appear which includes "reassign track objects".
You want to select
reassign track objects>mixer>output stereo
or
reassign track objects>mixer>other>master
If you want to automate your mix, you will want to select the output stereo option, otherwise you are just automating the volume coming out of your speakers/headphones.
that's the way I do it, other logic gurus probably may know an easier solution.

Similar Messages

  • How can i do to see the master and text values of the Key figure 0UNIT

    Hi gurus,
    How can i do to see the master and text values of the Key figure 0UNIT, please step by step, i m in the key figure 0UNIT but i want to see if the UNIT  for example BX = BOX, something like this is that i want to check,  thanks!

    If you look at the unit tables, you will see the values and texts.  It's in SPRO, not in RSA1.  My access is limited on my system here, but the documentation says to go to t-code CUNI.  I believe in that tcode you can look at all of the unit equivalencies and what each unit's text is ..... like an ea means each; KG = Kilogram; etc...
    I am on an 3.x system, so in SPRO I go to BW CIG=>General Settings=>Check units of measurement.
    Brian

  • How do you declare objects in the master database

    I am trying to register our CLR assembly as an unsafe assembly without having to make the database trustworthy.  Since making the database is_trustworthy_on = 1 is not a best practice, and would cause some of our customers (and our development process)
    a little bit of grief.
    I have read a ton about it but am still having trouble.
    The reason the assembly is 'Unsafe' is because it is calling the TimeZoneInfo class to convert between timezones, since we are not yet on UTC dates.  We plan to in the future but that's a big project.
    We are also not using the 'SQLCLR' but rather have written our own class library and just have a project reference to it, which works just the same, but we have found to be better for the C# programmers.
    I am playing with signing the assembly using an SNK file and have figured out what I need to do, including 1) creating a master key, 2) creating an asymmetric key using the same SNK file that signed the assembly, 3) creating a login for the asymmetric key,
    and 4) granting unsafe assembly to the login.
    When I do all that with straight SQL, it actually works!  But I am having trouble fitting this into our SSDT world.
    Should I create a separate SSDT project for items #1 through #4 above, and reference it, and check 'Include composite objects' in our publishing options?  As stated in this blog post though, I'm terrified of messing up the master database, and I'm not
    excited about the overhead of another project, a 2nd dacpac, etc.
    http://blogs.msdn.com/b/ssdt/archive/2012/06/26/composite-projects-and-schema-compare.aspx
    Since we do use a common set of deployment options in a deployment tool we wrote, which does set the 'block on data loss' to false, and the 'drop objects not in source' to true, b/c we drop tables all the time during the course of refactoring, etc. 
    I don't want to drop anything in master though, and I don't want to have to publish it separately if we didn't have to. 
    I suppose I could just have some dynamic SQL in a pre-deployment script that takes care of the master database, but I was trying to do it the 'right' way, in a declarative style, but struggling.
    So, in short, what's the recommended approach for getting an 'unsafe' CLR assembly into an SSDT project?
    The error that started all this was:
    CREATE ASSEMBLY for assembly *** failed because assembly *** is not authorized for PERMISSION_SET = UNSAFE. 
    The assembly is authorized when either of the following is true:
    the database owner (DBO) has UNSAFE ASSEMBLY permission and the database has the TRUSTWORTHY database property on;
    or
    the assembly is signed with a certificate or an asymmetric key that has a corresponding login with UNSAFE ASSEMBLY permission.
    Also, would a certificate be better than an asymmetric key?  I'm not entirely sure of the difference just yet to be honest.
    Thanks,
    Ryan

    After much fighting with this, figured something out as a workaround, and thought I'd share it.
    First, I'm pretty certain the SSDT declarative way for these master objects just doesn't work yet.
    My workaround was to make a pre-deployment script (that runs when we create new databases, as well as for the current release), that takes care of the security items needed to support a signed CLR assembly with unsafe permissions.
    One issue we were running into was when it came to creating the asymmetric key, there are 4 ways to do so, and we didn't want to depend on a hard-coded/absolute file path.  The 4 ways are "From file", "from external file", "from
    assembly", or "from provider".  I still don't 100% understand the from provider way, but ultimately we are actually using the from assembly way, with a little trick/hack I did that allows us to not have to use the 'from file' way and to
    reference a hard-coded path on someone's C:\ drive.  I really really didn't want to do that b/c we create local dev databases all the time and not everyone has the same paths setup.  Also, our databases are deployed on our servers as well as remote-hosted-customer
    servers, and up until now, the database release has not needed file system access.  Even the CLR itself is created using assembly_bits, which is awesome.
    So I thought of something...
    What if I had a simple/temporary assembly, which I create from assembly_bits, use to import the public key from, through the create asymmetric key from assembly command, and then drop as if it never existed?
    Well...it works!
    Here is my current prototype of a pre-deployment script, which I'll go through and cleanup more, but thought I'd share.  I also want to document how I created the temporary assembly_bits in case anyone ever wants or needs to know, even though they really
    shouldn't.  But it should make them feel better.  Basically I just created did this to get them:
    1 - Created a C# Class Library project in the solution.
    2 - Added our .SNK to that project and removed the 'Class1.cs' that it created by default
    3 - Signed that class library with the .SNK
    4 - Added a project reference to that class library from the main database solution.
    5 - Generated a deployment script (but didn't run it) and grabbed the create assembly statement (copy/paste)
    6 - Deleted the temporary project
    7 - Pasted the code I had copy/pasted into the pre-deployment script
    Note that the objects do apparently need to go into MASTER, so at the end of the pre deployment script, I switch back to the automatic [$(DatabaseName)] after first having done USE master.
    Hope this helps someone.  Finally got it!
    BTW - The other way we almost used was to introduce a SqlCmdVariable of $StrongNameKeyFilePath but that would have been a hassle for people to set whenever they got a new machine, etc.
    Thanks,
    Ryan
    PRINT '**************************************************************************'
    PRINT 'Pre\SetupMasterDatabaseKeysAndLoginsIfNecessary.sql'
    PRINT '**************************************************************************'
    PRINT '************************************************************************************'
    PRINT 'If they do not already exist, create the database master key, as well as the asymmetric'
    PRINT 'key, from the Strong-Named File (.SNK) which signed the CLR assembly.  Finally, also'
    PRINT 'create a login from that asymmetric key and grant it the UNSAFE ASSEMBLY permission.'
    PRINT 'This is all necessary b/c the CLR currently has to be referenced for UNSAFE permissions'
    PRINT 'in order to access the TimeZoneInfo class.  This code and these objects can be removed'
    PRINT 'if the system is ever updated to use all UTC dates and no longer requires the TimeZoneInfo class.'
    PRINT '************************************************************************************'
    USE master
    PRINT N'Creating Temporary Assembly [Wits.Database.AsymmetricKeyInitialization]...'
    CREATE ASSEMBLY [Wits.Database.AsymmetricKeyInitialization]
        AUTHORIZATION [dbo]
        FROM 0x4D5BlahBlahBlah;
    IF NOT EXISTS (SELECT 1 FROM sys.symmetric_keys WHERE name LIKE '%DatabaseMasterKey%')
        BEGIN
            PRINT 'Creating Master Key...'
            CREATE MASTER KEY
                ENCRYPTION BY PASSWORD = 'I Removed This Part For This Post'
        END
    IF NOT EXISTS (SELECT 1 FROM sys.asymmetric_keys WHERE name = 'ClrExtensionAsymmetricKey')
        BEGIN
            PRINT 'Creating Asymmetric Key from strong-named file...'
            CREATE ASYMMETRIC KEY [ClrExtensionAsymmetricKey]
                FROM ASSEMBLY [Wits.Database.AsymmetricKeyInitialization]
        END
    IF NOT EXISTS (SELECT 1 FROM sys.server_principals WHERE type_desc = 'ASYMMETRIC_KEY_MAPPED_LOGIN' AND name = 'ClrExtensionLogin')
        BEGIN
            PRINT 'Creating Login from Asymmetric Key...'
            CREATE LOGIN [ClrExtensionLogin] FROM ASYMMETRIC KEY [ClrExtensionAsymmetricKey]
            PRINT 'Granting Permissions to Login created from Asymmetric Key...'
            GRANT UNSAFE ASSEMBLY TO ClrExtensionLogin
        END
    PRINT N'Dropping Temporary Assembly [Wits.Database.AsymmetricKeyInitialization]...'
    DROP ASSEMBLY [Wits.Database.AsymmetricKeyInitialization]
    USE [$(DatabaseName)]

  • How can i make indexes on the Master data table

    Hi Gurus,
    I got a query, in this one i have an Infoobject with many values, like to say invoice number, and i filter and need a lot of Nav Attr of this IO, for this reason the query performance its really bad but i dont know what to do, some friend advice me this : So I would suggest some indexes on the Master data table of your IO for the navigationnal attributer you want to use.
    what else can you tell me? if i put this IO in Line item dimension? , or just with flag high cardinality ? help guys.....

    Hi Jorge.....
    Look.........Line item dimension and High Cardinality r related to each other..............Characteristic which has High Cardinality..we will use it as Line item dimension..........But........A dimension marked as a line item cannot subsequently include additional characteristics.......... This is only possible with normal dimensions...........If u r very sure.............then u can go for Line item dimension............no issues........
    U can also try to Create index..............
    Check this...........
    Re: Indexes on Master Data tables
    Regards,
    Debjani..........

  • Why am I not able to put plug-ins on the master track?

    so my problem is that the volume of tracks in logic is correctly and if I listen to them in itunes they are way lower. I put an adaptive limiter, a match eq, a multripressor and gain on the output track and nothing changed. How can I solve that problem?
    Thanks

    The simple solution is to turn up iTunes' output.
    The better solution is to learn about audio levels and how those plugins work. It now comes across as if you just put those plugins on without understanding what they do, and what their downsides are; here are some useful links with valuable info - especially the Levels in Digital Audio .pdf, found in the first link, is a must read.
    http://www.logicprohelp.com/forum/viewtopic.php?t=57055
    http://www.gearslutz.com/board/music-computers/468170-loudness-when-producing-mi xing-tips.html
    http://music.tutsplus.com/tutorials/how-to-master-a-track-in-15-minutes-or-less- -audio-24
    http://tarekith.com/assets/mastering.html

  • Final Cut Pro X 10.0.8. How to automatically move clips to the left?

    I've upgraded to Final Cut Pro X 10.0.8, and there are differences from the earlier ones. How do I set my timeline to automatically move the clips along to the left when I delete a clip in the middle of my timeline?
    I can't find an answer to this question anywhere?

    The backward delete key should do that, The foorward delete key will insert a gap clip.
    Russ

  • How to load this value into the master data display attribute

    Hi ,
    Please share me the knowldege how to load this kind of data into master data display attribtes ..
    Raj + Ravi Ltd (PCG: 13592)
    While loading this data ,i got the error message stating that '+' should not be part of the attributes and () should not be part of the attribute ..but i need all the information as it is available in the example data .
    Do i need to maintain RSKC Settings else some other things required ..
    Please guide me ..
    Regards,
    Raj

    HI,
    Maintain these symbols in RSKC and try to reload the data....

  • How-to automatically center images in the Editor View at opening?

    Hello all,
    Every time I open a pic in the Editor (using CTRL+I) from a pic in the Organizer, the pic is in a separate window aligned on the left of the Editor workspace.
    I have to drag the pic up to the center where I get the blue lines around it so that it occupies the center of the workspace.
    It seems to me that this behaviour has started with PE 8, I recall (maybe wrongly) not having this behaviour in PE 7.
    Does anybondy know how to configure the whole shemabang so that a pic that is opened occupies the fill Editor workspace and is centered?
    Thanks in advance,
    Cheers,

    PSE8 introduced file browsing in tabs; similar to CS4.
    This is progress!

  • How to automate accept client of the server side?

    Hi.....
    I am a beginner of using J2ME to developing my final year project. I have some problem of using bluetooth packet. I can't accept again the client message when the server accepted before. Any one can solve my problem? How can I using the loop or timer to accept the client message without using acceptAndOpen() packet? Thank a lot.....
    The sample code is here:
    - Server side
    public class BluetoothServer implements Runnable {
         private GameMIDlet gameMIDlet;
         private HandleSetting setting;
         private HandleScore score;
         private ScreenGame screenGame;
         private int playerMethod;
         //private GUIGameServer guiGameServer;
    StreamConnectionNotifier notifier;
    StreamConnection conn;
    LocalDevice localDevice;
    ServiceRecord serviceRecord;
    InputStream input;
    OutputStream output;
    private boolean isInit;
    private boolean isReady;
    private static String serverUrl = "btspp://localhost:" + ScreenMultiPlay.SHARE_UUID + ";name=GameServer;authorize=true";
    public BluetoothServer(GameMIDlet gameMIDlet,HandleSetting setting, HandleScore score, int playerMethod) {
         this.gameMIDlet = gameMIDlet;
    this.setting = setting;
              this.score = score;
              this.playerMethod = playerMethod;
         isReady = false;
    isInit = false;
    Thread accepterThread = new Thread(this);
    accepterThread.start();
    public void run() {
    if (!isInit) {
    // Initialization is done in the thread to avoid dead lock 'isInit' ensures it is done once only
    try {
    conn = null;
    localDevice = LocalDevice.getLocalDevice();
    localDevice.setDiscoverable( DiscoveryAgent.GIAC );
    notifier = (StreamConnectionNotifier)Connector.open(serverUrl);
    } catch (BluetoothStateException e) {       
    System.err.println( "BluetoothStateException: " + e.getMessage() );
    } catch (IOException e) {       
    System.err.println( "IOException: " + e.getMessage() );
    isInit=true;
    System.out.println( "Starting Echo Server" );      
    try {
    System.out.println("\n\nServer Running...");
    isReady=true;
    if (isReady) {
         try {
                        screenGame = new ScreenGame(this.gameMIDlet,this.setting,this.score,playerMethod);
              screenGame.start();
    Display.getDisplay(gameMIDlet).setCurrent(screenGame);
                   } catch(Exception e) {
                        gameMIDlet.showErrorMsg(null);
    // Pauses thread until Transmission occurs
    conn = notifier.acceptAndOpen();
    // Read Data Transmission
    String msg = ScreenMultiPlay.readData(conn);
    System.out.println("Received Message from Client: " + msg);
    // Send Back a Message
    msg = "Hello Back from Server";
    output = conn.openOutputStream();
    output.write(msg.length()); // length is 1 byte
    output.write(msg.getBytes());
    output.close();
    } catch (Exception ex) {
    System.err.println("Bluetooth Server Running Error: " + ex);     
    public void destroy() {
    //isClosed = true;
    // finilize notifier work
    if (notifier != null) {
    try {
    notifier.close();
    isInit=false;
    } catch (IOException e) {} // ignore
    // wait for acceptor thread is done
    /*try {
    accepterThread.join();
    } catch (InterruptedException e) {} // ignore*/
    -Client side
    class BluetoothClient implements DiscoveryListener {
         private GameMIDlet gameMIDlet;
         private HandleSetting setting;
         private HandleScore score;
         private ScreenGame screenGame;
         private int playerMethod;
    private DiscoveryAgent discoveryAgent;
    private RemoteDevice[] remoteDevices;
    private UUID[] uuidSet;
    private String serviceUrl;
    public BluetoothClient(GameMIDlet gameMIDlet,HandleSetting setting, HandleScore score, int playerMethod) {
    this.gameMIDlet = gameMIDlet;
    this.setting = setting;
              this.score = score;
              this.playerMethod = playerMethod;
    try {
    LocalDevice localDevice = LocalDevice.getLocalDevice();
    discoveryAgent = localDevice.getDiscoveryAgent();      
    discoveryAgent.startInquiry(DiscoveryAgent.GIAC, this);
    //-----go to deviceDiscovered()-----------------
    } catch (Exception e) {
    System.out.println(e);
    public void deviceDiscovered(RemoteDevice btDevice, DeviceClass cod) {
    try {
    // Get Device Info
    System.out.println("Device Discovered");
    System.out.println("Major Device Class: " + cod.getMajorDeviceClass() + " Minor Device Class: " + cod.getMinorDeviceClass());
    System.out.println("Bluetooth Address: " + btDevice.getBluetoothAddress());
    System.out.println("Bluetooth Friendly Name: " + btDevice.getFriendlyName(true));
    // Search for Services
    uuidSet = new UUID[1];
    uuidSet[0] = ScreenMultiPlay.SHARE_UUID;
    int searchID = discoveryAgent.searchServices(null,uuidSet,btDevice,this);
    //-------------go to inquiryCompleted()----------------------
    } catch (Exception e) {
    System.out.println("Device Discovered Error: " + e);     
    public void inquiryCompleted(int discType) {
    System.out.println("InquiryCompleted");
    //---------------go to servicesDiscovered()------------------------
    public void servicesDiscovered(int transID, ServiceRecord[] servRecord) {
    System.out.println("ServicesDiscovered");
    // in this example there is only one service
    for(int i=0;i<servRecord.length;i++) {      
    serviceUrl = servRecord.getConnectionURL(0,false);
    //---------------go to serviceSearchCompleted()--------------------
    public void serviceSearchCompleted(int transID, int responseCode) {   
    if(responseCode == SERVICE_SEARCH_ERROR)
    System.out.println("SERVICE_SEARCH_ERROR\n");
    if(responseCode == SERVICE_SEARCH_COMPLETED) {
    System.out.println("SERVICE_SEARCH_COMPLETED\n");
    System.out.println("Service URL: " + serviceUrl);
    StreamConnection conn = null;
    try {
         String msg = "Say Hello World";
    conn = (StreamConnection)Connector.open(serviceUrl);
    OutputStream output = conn.openOutputStream();
    output.write(msg.length());
    output.write(msg.getBytes());
    output.close();
    System.out.println(ScreenMultiPlay.readData(conn));
    } catch (Exception ex) {
         System.out.println(ex);
    } finally {
         try {
         conn.close();
         } catch (IOException ioe) {
         System.out.println("Error Closing connection " + ioe);
    if(responseCode == SERVICE_SEARCH_TERMINATED)
    System.out.println("SERVICE_SEARCH_TERMINATED\n");
    if(responseCode == SERVICE_SEARCH_NO_RECORDS)
    System.out.println("SERVICE_SEARCH_NO_RECORDS\n");
    if(responseCode == SERVICE_SEARCH_DEVICE_NOT_REACHABLE)
    System.out.println("SERVICE_SEARCH_DEVICE_NOT_REACHABLE\n");

    This question isn't logical at all. You don't execute javascript on the server. But if you want to waste time on it. .. look at Rhino http://www.mozilla.org/rhino/
    Best of luck...

  • How to position chapter number on the master page according to the chapter number?

    I'm working with a catalog for a customer with about 250 pages divided into apx 30 chapters. The person who made this document in the first place have a separate master page for each Chapter.
    If I use the the Running Header (Paragraph style) text variable I can use the same master page on all chapters - this will be much easier I think.
    BUT I have a problem because the chapter number is going to be displayed in different position according to the number (along on the edge of the page with white text in a black rectangle, with the first chapter number on top, the next one beneath and so on - so the reader of the book can see the chapters just by looking at the edge of the book without opening it)
    Is there any possibility to have the Chapter Number text variable to be displayed in different location on the page based on the number it self? Or do you have any other ways to solve this in a easy way?

    Well, you can not create dependencies like this, but you could use nested master pages. You would still need 30 master pages for 30 chapters, in order to place the chapter number in different positions, but you
    would only need one or two main master pages for the rest of master page content. That would make it at least easier to change something on all master pages at once.

  • How to automatically scroll continuously to the next page in adobe muse?

    Im building a site which was orginally going to be a one page scroll site but I now what to place the different sections on individual pages to allow easier editing of content. I still want the site look as if it is a continusly scrolling one page site. What I was hoping to do is that when the viewer comes to the end of a section they can continue to scroll down but for it to link to another page, I thought this may be done using anchor points in some way. Any help greatly apprciated! Thanks

    Yes ...
    You need what is called a 'Snap Scroll'  widget ... these widgets use the anchor points as a brake to stop right where they are while swiping or scrolling ... it won't continue down the page until your swipe or scroll again ... it will do this for all anchor points on the page ...
    MuseThemes do one called exactly that ... worth buying their great set of tools for MUSE ... highly recommended ...
    Snap Scroll Widget for Adobe Muse CC - Widget Tutorial by MuseThemes.com - YouTube
    and a free one here from Joseph Angelo Todaro
    Adobe Muse CC Parallax Scrolling Tutorial | Magnetic Scroll Anchors - YouTube
    cheers,
    Gem

  • How to Automate two functions in the Arranger to happen one after the other

    Could Logic, or a combination of Logic + Automator be used to conduct both "Detect Transient Markers on AudioFile" AND "Convert to New Sampler Track" with one-click/one-shortcut?
    I think that would be beyond amazing.
    Is there some resource I could visit and survey in order to find information about what Automator can do with Logic?

    Okay, I'm back and it's time to get this working.
    I'm guessing that AppleScript will be the way for me to shoot the required shortcuts into Logic and get it to work
         tell application "Logic Pro" to activate -- if Logic is open, activate. If not, forget this whole script
         tell application "System Events"
             tell process "Logic Pro" to keystroke "y" using command down -- CMD-Y is configured as "Open Sample Editor"
             tell process "Logic Pro" to keystroke "t" using command down -- CMD-T is configured as "Detect Transients of Audio File"
             tell process "Logic Pro" to keystroke "1" using command down -- CMD-1 is configured as "Arrange"
             tell process "Logic Pro" to keystroke "u" using command down -- CMD-U is configured as "Convert Regions to New Sampler Track"
             --    tell process "Logic Pro" to key code 36 -- this is the return/enter key - I've commented this away because there might be some
             --  things that one wants to do in the "Convert Regions to New Sampler Track" Dialogue window.
         end tell

  • Can anyone tell me how much is a license for the Master Collection CS6?  Am getting no response via phone or email

    I have tried speaking to customer service (no help) and have sent emails (no response).  If you know, please advise process and price.  TIA

    you may use the LDF Starter Kit to use LDF informations in your application
    http://joule.ni.com/nidu/cds/view/p/id/665/lang/en

  • How can i create the master customer data

    Hi friends,
    I have one requirement here, I have to create one master database(MDM) start from very scratch on wards.
    My question was
    1. How can I do start with this.
    2. What are all the software requirement
    3. Are there any examples (video's are there).
    4.  One customer can have multiple email addresses. One customer can have multiple company. How shall I start with building the Master Customer list in this case?
    Please send u r valuable suggestions.

    1.
    I would recommend this book which have very comprehensive step by step example and covers all the features.
    http://www.amazon.com/Microsoft-Server-2012-Master-Services/dp/0071797858/ref=sr_1_1?ie=UTF8&qid=1416363310&sr=8-1&keywords=master+data+services+2012&pebp=1416363331373
    2.
    SQL Server 2012/2014 Enterprise Edition.
    3.
    http://technet.microsoft.com/en-us/sqlserver/jj737651.aspx
    4.
    Currently MDS only support 1 to many relationship. Does not support many to many.
    Assume one email only belongs to one customer, and One company only belongs to one customer.
    You could have 3 entities. Email, Customer, Company
    Customer has two domain based attribtues, Email and Company, which are referencing to Email and Company entity.

  • Changing the master account email and other mail/a...

    I've tried a couple of times via online chat and ringing up to get a couple of queries sorted but regrettably it seems there is no easy way to get differing issues sorted through the same person.  I have a telephone, Infinity and Youview service.
    We have been BT customers for a lifetime and for 20+ years my wife worked for BT.  During that period we had free or subsidised broadband and the account, including phone line, was in my wife's name.  3 years ago she was made redundant and the account was transferred to me and we've renewed annually since.  Problem is though the account is clearly in my name and the bills are emailed to me the master email on the broadband mail account remains my wife's. As I found out recently a forgotten password security check needed my wife's security details to resolve and not my own.  This also means that any management of sub-accounts has to be done through my wife's name and it's incredibly frustrating that I need to use my wife's details to manage the mail side of the account.  Additionally I seem to be paying for some email accounts seperately with an automatic payment each month from my credit card when surely they could be amalgamated into my account so they could be free ?
    Given that the account is in my name, the bills are emailed to me and I have the online account to manage my relationship with BT how can my wife still have the master account ?
    Any advice on how to sort this out ?

    Hi Sumdumgi, 
    Thanks for posting! 
    Sorry about the problems you are having with your account. I am happy to give you a hand to get things sorted from here. 
    Click on my username and under the "about me" section you will see the link to get in touch with us. If you could include the link to this thread in the form that would be great! 
    Cheers
    Olga 
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

Maybe you are looking for

  • Posting to Accounts Receivable using WPUBON, when WPUBON contains tenders

    Hi all! My client has some special requirements when invoicing specific customers in SAP ERP using WPUBON from POS DM. They want accounts receivable to be involved, even though the WPUBON idoc have all tenders/means of payment that is required to pay

  • Process Required for Third party sales

    Hi Guru ji's , Pls let me know the step by step procedure for Third party sales processing. on the below conditions. 1] Sales order to be created automatically based on the Bapi . 2] Based on the Sales order, automatic Purchase order and Gr must happ

  • Unit Of Measue issue in Alternative Unit Of Measure

    Dear All, We have one issue regarding material volume which is having Base Unit Of Measure as 'L' - Litre. Example: one material AAA is having BUoM as 'L' but this material volume is .002 M3. This value we can maintain in Basic Data but we are unable

  • Problems with camera resolution...

    Hi everyone, I've acquired a security cam to test a video-chat with FMS2 and encounter a problem with the resolution of my cam. It's a CPcam CPC371P and It is said to have a resolution of 510*492 (certain sites speak of standard resolution?). I wrote

  • Creating iFS content type require more then 4 values to be set for 1st attribute

    We get the following error: exception in thread "main" oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject java.sql.SQLException: ORA-01400: cannot insert NULL into ("IFSSYS"."ODM_ATTRIBUTE"."SETTABLE") at oracle.jdbc.dbacce