The Logic Score Tutorial

Hi Anyone...
There was supposedly a music notation .pdf, called The Logic Score Tutorial, previously found on the eMagic website (http://www.emagic.de/english/support/download/tutorial.html), which of course no longer exists. The original, I believe, was written by Johannes Prischl of Austria.
I'm wondering if there is presently a link to download this document? For those of us who DO read and write music , this would be a tremendous resource! If any of you know of a link, please let me know.
Thanks a lot in advance for whatever assistnce you can offer.
Take care,
Leon
MacBook Pro 17" Mac OS X (10.4.7)
MacBook Pro 17"   Mac OS X (10.4.7)   Logic Pro 7.2.2/2GB RAM/Komplete 3/Kore/Spectrasonics

I have a copy of the Logic 5 Score tutorial. It is a bit out of date, but I found it to be very helpful. It is by Johannes Prischl, dated January 2002.
Happy to send it to anyone. mmturner ( a t ) mindspring ( dot ) com
Mitch

Similar Messages

  • Changing the logic to calculate score

    Hi!
    Score of the KPI(KPI1_TARDEV) is calculated based on some logic. I need to change the logic for some 100 KPIs using command instead of right click on the Variable and then selecting 'Logic' and then editing. This is very difficult beacuse there are more than 100 KPIs for which i need to change the logic.
    Is there any command like SET VARIABLE to change the logic to calculate the score?
    For example:
    Currently all the Achievement KPIs have score calculated based on the formula KPI1_ACT%KPI1_TAR.
    I want to change it to
    KPI1_TARDEV
    IF KPI1_TAR LT 0=(1-KPI1_ACT/KPI1_TAR)*100
    IF KPI1_ACT LT 0 AND KPI1_TAR GT 0=(-1+KPI1_ACT/KPI1_TAR)*100   OTHERWISE = KPI1_ACT%KPI1_TAR
    can i use command some thing like below?
    set vvariable logic KPI1_TARDEV AS
    KPI1_TARDEV
    IF KPI1_TAR LT 0=(1-KPI1_ACT/KPI1_TAR)*100
    IF KPI1_ACT LT 0 AND KPI1_TAR GT 0=(-1+KPI1_ACT/KPI1_TAR)*100   OTHERWISE = KPI1_ACT%KPI1_TAR
    Thanks
    Praveen

    Hi Praveen,
    I was faced with a similiar situation, please search the SSM forum for this thread: "Customer exit - Cube Builder SSM".
    Read the whole thread.
    Thanks,
    Tsholo.

  • In the Logic Pro X Score Editor's Inspector, where do I find the "insert pop-up menu"?

    In the Score Editor's Inspector, where do I find the "insert pop-up menu" referred to in the Logic Pro X online Help manual? All I see are Time and Scale Quantize and Velocity. Is the online Help out-of-date?

    Thank you, The Art of Sound—but the advanced features are already enabled, and yet I still don't have a an Insert Pop-up Menu.
    Thanks,
    Piximon

  • Score tutorial

    Hey-
    Any recommendations for a score tutorial?
    At present, I write short warmups weekly for my choir (TTBB) and try to produce mini scores (sometimes only a few measures) and apply what I'm reading in notation as well as experimenting etc. I do realize this takes a respectable amount of time, and lucky for me I've got it. I would love to be put through the paces for a while instead searching for the needle in the haystack. Any tips on how you've become proficient in score would be great-
    thanks
    j

    Thanks Jim
    I can always contact Prischl with that question as well, although I suspect the meat of it is there and it is a worthwhile investment. You mentioned that you switched to Logic primarily for the score editor, which leads me to two questions (one from a previous post). First, I notice that some people use different apps. for different things (everyone's got their way). For example, some prefer Finale or Sibelius for their scoring, and will use logic for everything else. I spoken with Logic techs that don't even realize logic can print out a score. Coming from cubase, so far Logic seems to flow fine for me (accepting the usual learning curve). Question 2: What is the best way to control the # of measures across the page? I have several 3 measure long warmups for my TTBB choir, and the first measure ends up huge taking the whole first line, when I would prefer just to have 3 measures across the top first line. I've tweaked maximum bars and spacing in global score settings, tried using the layout tool to manually shift things etc. I've skimmed through "working with notation" and am rereading and taking notes on it now, searched the forums (not as much score info there), but no luck. I have a feeling there is an obvious setting somewhere, but man I'm missing it. let me know if you have any ideas, and thanks for reading this book here...:)
    j

  • The logic is done, but my LAYOUT looks Awful!!! help?

    You guys have been great in helping me get through my little trivia game project and I believe I have ALL the logical processing in place, but the final and saddest MOST BLARING problem now is this DISGUSTING Layout.
    Here is the link:
    http://www.flickr.com/photos/7270990@N06/414222370/
    (PLEASE DONT LAUGH TOO HARD) -- I have been saving this part till last.
    BUT do you guys have any easy layout suggestions? I looked around for awhile and all the layouts seem very complicated to get the look I would like. I just want to be able to have more control and make it look better. I thought of the border layout but couldnt get more than one element in each section.
    I would like the top10 list to be straight down -- more space and even alignment between the buttons and questions....blah blah blah.
    I'm sure some of you have heard this 1000 times... can you give me some hints?
    Message was edited by:
    tvance929

    Thanks all! I just read your posts... I'm putting the first part of my code but PLEASE realize, this is my first big (for me) program -- I'm a newbie, I know it is a little scattered and probably not commented like it should be... so grace and mercy would be appreciated, but so would some coding advice! NOT TOO MENTION my layout issue problem.
    =======================
    import java.text.*; //for formatting
    import javax.swing.*; //imports swing classes
    import java.awt.event.*; //imports event listeners
    import java.awt.Container; // Container methods
    import java.awt.*; //layout manager
    import java.io.*; // File readers
    import java.util.*; // Tokenizer
    import java.util.Arrays;
    public class TriviaGame extends JFrame {
    private JFrame mainFrame; //main container variable
    private JButton answerButton; // Calculate button variable -
    private JButton exitButton; // Exit button variable
    private JTextField answerField; // Length text field variable
    private JTextField scoreField; // Score field variable
    private JTextField qmissedField; // Questions missed field
    private JLabel[] toptenLabel; // Top Ten Labels (array so we can print them all as seperate labels)
    private JLabel questionLabel; // The Questions label
    private JLabel qmissedLabel; //Questions Missed label
    private JLabel scoreLabel; //Score label
    private JLabel answerLabel;
    private JLabel totalPointLabel, answerReport;
    private JLabel TopTenScores, top1, top2, top3, top4, top5, top6, top7, top8, top9, top10; //Top Ten Scores Labels
    private String questionsFile = "questions.txt";
    private String toptenFile = "topten.txt";
    private String inLine, newScore, playerName;
    private StringTokenizer st;
    private int i, e, score, questionsMissed, randomQuestion;
    private int[] qpointsInt, topScoresInt;
    private double random;
    private String[] answer, fileCustomer, question, qpoints, questionAsked, topScores, topNames, topTenScores;
    /** Creates a new instance of TriviaGame */
    public TriviaGame() {
    mainFrame = new JFrame("Todd's Trivia"); //Defining container with label
    //Buttons on interface
    answerButton = new JButton("Submit"); //Creating Calc button
    exitButton = new JButton("Exit"); // Creating Exit Button
    qmissedLabel = new JLabel("Questions Missed:"); //Creating width label
    scoreLabel = new JLabel("Score:"); //depth label
    answerLabel = new JLabel("Answer");
    answerReport = new JLabel("");
    TopTenScores = new JLabel("TOP TEN SCORES!");
    //text fields for labels
    answerField = new JTextField(5);
    scoreField = new JTextField(5);
    qmissedField = new JTextField(5);
    //These strings are for the data that will be read in from the external file (customers.txt)
    question = new String[10];
    answer = new String[10];
    qpoints = new String[10];
    qpointsInt = new int[10];
    questionAsked = new String[10];
    topScoresInt = new int[10]; //Int'ing the top ten scores from the file
    topScores = new String[10];
    topNames = new String[10];
    topTenScores = new String[10]; //Concatenated scores and names for using Array.sort() if it will work!
    HighScore[] top = new HighScore[10]; //High Score object that will properly sort the scores
    questionsMissed = 0; //Questions Missed variable...duh!
    //Assign ALL questions asked with the marker of "n" for NO - this variable will tell us if a question has been asked yet or not.
    // Need to change this iteration as we add more questions!!!
    for (e=0; e<10; e++)
    questionAsked[e] = "n";
    i = 0; //The line counter for reading from file
    score = 0; //Score!
    //TOP TEN SCORES MECHANISM - implementing the HighScore object!
    try //the reader stream must have a means for throwing errors if problem with opening stream
    BufferedReader br = new BufferedReader (new FileReader(toptenFile)); //Opens stream to read data from file
    //The following few lines pull the data from the file line by line and create a seperate variable for each piece of data
    while ((inLine = br.readLine())!= null)
    st = new StringTokenizer (inLine);
    topScores[i] = st.nextToken();
    topNames[i] = st.nextToken();
    topScoresInt=Integer.parseInt(topScores[i]);
    top[i] = new HighScore(topScoresInt[i],topNames[i]);
    i++;
    br.close(); //closing the stream
    Arrays.sort(top);
    i = 0; //Resetting this variable for the next read.
    catch(IOException e) //Catches an IOExceptions and gives appropriate response.
    JOptionPane.showMessageDialog(null, "Top Ten File NOT FOUND - exiting program", "File Not Found!",
    JOptionPane.INFORMATION_MESSAGE);
    top1 = new JLabel("1. " + top[9]);
    top2 = new JLabel("2. " + top[8]);
    top3 = new JLabel("3. " + top[7]);
    top4 = new JLabel("4. " + top[6]);
    top5 = new JLabel("5. " + top[5]);
    top6 = new JLabel("6. " + top[4]);
    top7 = new JLabel("7. " + top[3]);
    top8 = new JLabel("4. " + top[2]);
    top9 = new JLabel("5. " + top[1]);
    top10 = new JLabel("6. " + top[0]);
    try //the reader stream must have a means for throwing errors if problem with opening stream
    BufferedReader br = new BufferedReader (new FileReader(questionsFile)); //Opens stream to read data from file
    //The following few lines pull the data from the file line by line and create a seperate variable for each piece of data
    random = Math.round(Math.random()*4);
    randomQuestion = (int)random;
    while ((inLine = br.readLine())!= null)
    if (i == randomQuestion)
    st = new StringTokenizer (inLine, "^");
    question[i] = st.nextToken();
    answer[i] = st.nextToken();
    qpoints[i] = st.nextToken();
    qpointsInt[i]=Integer.parseInt(qpoints[i]);
    questionLabel = new JLabel(question[i]); //This creates a SINGLE question that has been chose randomly
    totalPointLabel = new JLabel(qpoints[i]); //This is to tell us what question it is.
    questionAsked[i]="y";
    break;
    i++;
    br.close(); //closing the stream
    catch(IOException e) //Catches an IOExceptions and gives appropriate response.
    JOptionPane.showMessageDialog(null, "Question File NOT FOUND - exiting program", "File Not Found!",
    JOptionPane.INFORMATION_MESSAGE);
    Container c = mainFrame.getContentPane(); // Get the content pane
    c.setLayout(new FlowLayout(FlowLayout.CENTER)); // Setting Layout
    //adding all components to layout in order of appearence
    c.add(questionLabel);
    c.add(answerField);
    c.add(answerLabel);
    c.add(answerButton);
    c.add(scoreField);
    scoreField.setText("0");
    c.add(scoreLabel);
    c.add(qmissedLabel);
    c.add(qmissedField);
    c.add(answerButton);
    c.add(exitButton);
    c.add(totalPointLabel);
    c.add(answerReport);
    c.add(TopTenScores);
    c.add(top1); c.add(top2); c.add(top3); c.add(top4); c.add(top5);
    c.add(top6); c.add(top7); c.add(top8); c.add(top9); c.add(top10);
    Message was edited by:
    tvance929

  • How to see the whole score ?

    What setting is needed to be selected to see the whole score in page view ? I use to work for me in logic 8 ? I dont know what has changed in L9 ?

    I don't know what "n" or CMD-3 do (I don't use stock Logic key commands). That aside, try this:
    • close all existing score editor windows
    • select the regions you want to see in a full score
    • open the score editor
    That should give you a full score display of the instruments used for those regions. But if you don't see what you expected, chances are that the score editor is showing you a previously saved score set.

  • Provide Feedback for the Logic Pro User Manual and Onscreen Help Here

    The Apple documentation team for Logic Pro would like to know what you think about the Logic Pro Help documentation (available in the Help menu):
    • How often do you use Logic Pro Help? Under what circumstances do you use it most?
    • Do you use the printed manual or the onscreen help more? Which one do you prefer?
    • How do you find what you're looking for in Logic Help: table of contents, index, skimming, PDF links, PDF search?
    • What do you like about the Logic help?
    • What would you like to see us improve? What is missing?
    • What needs more in-depths coverage in the Logic help?
    • In learning Logic, did you use the Logic Getting Started Guide? If so, do you feel the book provided a good introduction to the application? Is there anything you can think of that would make the Getting Started Guide more helpful to you? Did you use the tutorial song that accompanies the Getting Started guide?
    • What are the most important concepts/features a new user has to understand to get started with Logic?
    • By what method do you ususally learn a new application? For example: provided manuals, third-pary tutorials or books, training classes?
    • Are there any particular examples of manuals or online help that you consider to be good models for the Logic Pro manual and onscreen help?
    • What do you think is the most difficult feature/concept to grasp in Logic Pro?
    • What's the most frustrating experience you've had with the Logic Pro documentation?
    • Are there any other methods of delivery or media you think we should explore?
    • What size of computer display do you typically use to view the onscreen help? For example: 12, 15, 17, 20, 23, or 30-inch?
    • What resolution is the computer display set to when viewing Onscreen Help? For example: 1024 x 768, 1280 x 854, or 1920 x 1200 pixels?
    • Do you use multiple computer displays?

    • How often do you use Logic Pro Help? Under what
    circumstances do you use it most?
    I use it often. not everyday, but there is always some little command or procedure that you can't remember
    • Do you use the printed manual or the onscreen help
    more? Which one do you prefer?
    I use them both, but the onscreen help a little more often. Some times I like to walk away from the computer and sit on the couch and read the manual, just to have a change of scenery
    • How do you find what you're looking for in Logic
    Help: table of contents, index, skimming, PDF links,
    PDF search?
    Table of contents and search
    • What do you like about the Logic help?
    It's right there on the computer, and being able to search by key words
    • What would you like to see us improve? What is
    missing?
    I think real time animation would be real cool but I doubt that is practical
    • What needs more in-depths coverage in the Logic
    help?
    Things that Logic has and you won't find in other programs, like explaining the environment in more detail. how to make better use of transformers. The Transform window could be explained more clearly.
    • In learning Logic, did you use the Logic Getting
    Started Guide? If so, do you feel the book provided a
    good introduction to the application? Is there
    anything you can think of that would make the Getting
    Started Guide more helpful to you? Did you use the
    tutorial song that accompanies the Getting Started
    guide?
    I didn't use it, although it looks great, I went right into the reference manual. I did look at the tutorial song, which was nice cause it gave me some hands on experience with moving things around
    • What are the most important concepts/features a new
    user has to understand to get started with Logic?
    Logic is different that other DAW's. Logic's way of doing things may seem real strange to someone who came from using another program. as I said before, spend more time on things that are only found in Logic, like the environment. It really frightens some people.
    Many of the questions here in this forum are midi related. people seem to be having a real hard time making midi work in Logic. The manual could be more detailed in explaining midi communication and how the environment is the heart of all of this
    • By what method do you usually learn a new
    application? For example: provided manuals,
    third-pary tutorials or books, training classes?
    Provided manuals and a lot of trial and error. Also forums such as this are a great asset
    • Are there any particular examples of manuals or
    online help that you consider to be good models for
    the Logic Pro manual and onscreen help?
    No, logic's manual is as good as most others.
    • What do you think is the most difficult
    feature/concept to grasp in Logic Pro?
    For me it was the transform window, it took me a while to get the hang of it. none of the other programs I worked in had anything quite like it.
    • What's the most frustrating experience you've had
    with the Logic Pro documentation?
    there are a few errors, so it is frustrating when you are following the manual but not achieving your goal. For example, page 112 says:
    There are two possible locations for user icons:
    The ~/Library/Application Support/Logic/Logic Resources/Icons folder can contain icons which are only valid for the particular user (~ is the user name). If you save your icons in the root directory—/Library/Application Support/Logic/Logic Resources/Icons—the icons are valid for all users. If icons with identical numbers exist in both folders, the icons found in the user folder have priority.
    But this is not the case, they actually go in /Library/Application Support/Logic/images/Icons
    there was a couple other mistakes like this too, but i can't remember right now
    • Are there any other methods of delivery or media
    you think we should explore?
    If you wanted to get into doing video tutorial, that would be cool. there is a web site called atomic learning http://www.atomiclearning.com/ they have quicktime video tutorials for a ton of different software applications, some apple, and for a flat fee of 79.99 for a year you can spend as much time as you like learning all of the software applications. I may sign up to learn Web design, and maybe final cut pro. Apple could do something like that for all of the apple software and do it much better I would think, and you guys would make a fortune. well I guess not compared to the fortune you are already making
    • What size of computer display do you typically use
    to view the onscreen help? For example: 12, 15, 17,
    20, 23, or 30-inch?
    20 in cinema display
    • What resolution is the computer display set to when
    viewing Onscreen Help? For example: 1024 x 768, 1280
    x 854, or 1920 x 1200 pixels?
    1344 X 840
    • Do you use multiple computer displays?
    no, just the one

  • Learning Logic Pro 9 - Exploring Logic Pro (Tutorial/Manual)

    Logic Pro 9 - Exploring Logic Pro (Tutorial/Manual)
    I worked the tutorial through to page 73. While I was working I realized that "Chuck Vox Alt " is the second take in the printed book but in "Exploring Logic Pro Demo Project" ("The Numbers Game") on the screen it is take one (so it is above and not below take 2). And  "Chuck Vox TNG" (take 2) is named "Chuck Vox 2" (take 1) in the book! Because of this I can't do the second section of page 73 ("Edit the comp")!
    I'm stuck here. Please help me!
    Thank you!

    Thanks for your answer. Sorry I'm still a beginner with Logic.
    I've not spent much time yet - just read the tutorial until p. 73. This is how it looks:
    I can't test it out on another sound recording because I don't have another one yet.
    How can I create or import one? Thanks again!

  • How is the Logic Express Notation?

    I am going to begin creating and selling sheet music. Does anyone have experience with the Logic Express Notation? Is it professional quality (where I can add things like first and second endings and codas, etc.)?

    Logic can show music notation- hard to explain but:
    I connected my keyboard to the computer and you record it as a software instrument then after you record, at the bottom of the screen between piano roll and hyper editor click on score. You can also drag notes if you make a mistake, but im not sur if this will work for making sheet music.

  • Logic scores and Quark compatability?

    Hi. I use Logic to mainly produce audio and up till now, I have always used Sibelius to produces the scores that my co-writer then imports to Quark, for publication. However can anyone advise whether the score production facility of Logic Pro is a) up to the quality of Sibelius and b) can scores be easily imported into Quark? I would ideally to be using one program ie Logic for both audio and score production. Thanks, Mark.

    hi mark,
    you 'can' create pretty professional scores in logic and it is possible to create EPS and PDF documents that you can view and manipulate in quark. logics score facility is very old and in desperate need of updating. we have had it on good authority that there will be some kind updating of logics score feature in the next big update whenever that will be.
    i myself have produced plenty of concert music scores with logic and there are plenty of caveats and problems. in many areas logic is much faster to work with, and in others it is slower. on balance it is probably a bit faster, but the bits that slow you up are annoying.
    you can read this:
    http://www.stevenson.homechoice.co.uk/documents/LogicProScoreRequests.pdf
    which will give you an overview of what it can and can't do and how to get around them and this:
    http://www.stevenson.homechoice.co.uk/pdfscores/clayexcerpts.pdf
    which shows you what can be achieved with some messing around and this:
    http://www.stevenson.homechoice.co.uk/pdfscores/devil.pdf
    which shows that you can produce a pretty smart looking full score. that said, sibelius being a dedicated notating program will be a touch better. its just that for ease of editing and composition and fantastic sounding mock-ups you can't beat logic. in fact, the mock up for 'devil' which you can hear on my concert music page, was produced directly from the score i printed. i worked out a way to make what was seen on screen sound exactly as it should - aprt from a few cheats.

  • Mac Pro extremely slow in Logic score

    For many years Logic score has been neglected. The score function is slow, crashes easily etc.
    SO I decided to buy the fastest Mac Pro, installed everything clean from the beginning, even made new template songs, and guess what: as slow as an Atari in 1992!
    Try it yourself: move a note or sign in a score from one spot to another with the mouse, and it takes Logic nearly 3 seconds to calculate its new position.
    Does anyone have suggestions how to live with this?
    I go back to my G5 dual 2.5, which has the same problem, but less slow than the Mac Pro.

    Not sure of your experience, of score in L.P.
    But i know, the wait will be over, in a matter of days weeks are a few months, then we be flying, just remember apple got the best on board.
    As to logic/pro almost 5years no major up-lift, and just guessing why logic/pro is limited to two 2ghz of samples, 5years ago apple computer did,nt use more than 2ghz of memory so there was no need to step the limit up on logic/pro, where as, at that time, it was the dual 1.2 g4 was the fastest mac and so with the fastest mac today takes 16 ghz so i cant see it not being at least 8ghz of samples, for logic, even if we dont use 8ghz, it only means it will work more smooth, just a bit of my two cent, this have nothing to do with lepoard, being 64, and will run twice as, we are talking Major-D.A.W. upgrade, bug fix, new feature, auto-rewire, editing in audio nice and easy like the pro's with pitch & time, better compressor, syn, piano, last but not least give m-audio a bring in with delta 1010 being pci-e .
    powerM\G4-1.25DUAL   Mac OS X (10.4.4)   I used dellta 1010 soundcard.prologic 7,1.5 gigs MEMORY.EXTENAL SYNS. MACKIE32-08 Mixing Desk.

  • Logic Score stem lengths

    I can extend stem length downwards OK but upwards it seems limited to a shift of one notch only (this is to do with individual note stems on the score page - not global stem lengths in the 'Extended Layout Parameters' window). Anybody any idea why? Is it fixable? I've tried changing the default stem direction in staff styles, but it makes no difference. It was fine on (much) older versions of Logic Score.

    Choose or create a different Score Style to suit your needs.
    You assign a Score Style to a MIDI Region by selecting the MIDI Region, then selecting the desired Score Style from the pull-down menu which appears when you click-hold on the Style Parameter line in the Display Parameter box.
    _The Score Style Window_
    There are several ways to open the Score Style window:
    • double-click on the Style parameter in the Display Parameter box
    • +Layout > Score Styles…+
    • Key command +Open Score Style Window+
    • Occasionally in the Arrange or Environment window: Double-click in the bottom line
    +(Default Style)+ of the Instrument Parameter box.

  • Logic Score: Score Sets

    Logic Score possible bug in Score Sets:
    the left hand dialogue box only opens sometimes. If it doesn't, you can't change Score Set names or set the size. Close the song, open again, click as indicated in the manual, it's there, it works. Go back to it, it's not, it doesn't!

    Didn't know about the camera tool in Logic. Thanks Justin. Here is another general Mac trick I've seen on several sites.
    To capture anything on your screen, use this keycombo:
    APPLE-CTRL-SHIFT-4
    Your cursor will turn into a crosshair. Rubberband select any part of the screen and the selection will go to the Clipboard. Then Paste the contents of the clipboard into a Text, Word, or whatever program.
    This keycombo works for all programs.
    Here are some links with more:
    http://docs.info.apple.com/article.html?artnum=75459
    http://www.finseth.com/parts/mac-keys.php
    http://lixlpixel.org/mac-keyboard-shortcuts/
    Hope this is helpful,
    Mitch

  • An RFC destination could not be specified for the logical system

    Hello Experts,
    I am trying post goods receipt in EWM system in a simple inbound delivery process. It is not getting posted back in ECC. I have my RFC connection setup properly(I assume since I was able to transfer inbound delivery to EWM in first place).It seems some setting related to Outbound queue in EWM is missing.Can anyone tell me in detail what settings are required?Is it something to do with WE20 transaction?I am not sure what settings should be done there.The error log is as below-
    An RFC destination could not be specified for the logical system
    SB3CLNT011
    Message No. B1550
    Diagnosis
    An RFC destination should be specified for the logical system SB3CLNT011.
    This could not be done in this case. SB3CLNT011 is not your local logical system
    and this system is not included in the relevant Customizing tables.
    Procedure
    Check:
    RFC
    destination
    Port
    definitions
    oubound partner profile of
    message type SYNCH for this logical system
    Regards,
    Khushboo

    Hi Oritra and Suraj,
    I have checked remote connection in SM59 for both the logical system.It works fine.I understand this is more of a technical issue,but I don't have A local basis team to help me so reaching out to experts here.Can you guide me what technical settings could be checked for EWM-->ECC connection?When I execute BD82 for SB3CLNT011 it shows me green status with message "No messages have been defined for the selection conditions in the model".
    Although when I do this for EWM logical system SB3CLNT012 it shows me this with all green status-
    System SB3CLNT011 as a partner type already exists
    System SB3CLNT012 as a partner type already exists
    Port A000000018 with RFC destination SB3CLNT011 already exists
    Outbound parameters for message type SHP_IBDLV_CHANGE SHP_IBDLV_CHANGE01 already
    Outbound parameters for message type SHP_IBDLV_SAVE_REPLICA SHP_IBDLV_SAVE_REPLI
    Outbound parameters for message type SYNCH SYNCHRON already exist
    Am I missing something in WE20?
    Regards,
    Khushboo

  • Finding of the Logical and Physical filename,Logical and Physical Path

    Hello All
    Where and how can I find the below details in an SAP server
    Logical filename:
    Physical filename:
    Logical path:
    Physical path:
    Regards
    Kalyani

    hi
    Physical file is what you see from the OS level.
    Logical file is what ABAP code can call certain functions to read/write.
    Transaction FILE would link them together. Typically the logical path ends with "<FILENAME>", and the logical file refers to the logical path.
    To extract the physical path from the logical path name
    DATA: lf_mandt TYPE sy-mandt,
    lf_opsys TYPE sy-opsys.
    lf_mandt = sy-mandt.
    lf_opsys = sy-opsys.
    To extract the physical path from the logical path name
    CALL FUNCTION 'FILE_GET_NAME'
    EXPORTING
    client = lf_mandt
    logical_filename = p_unix
    operating_system = lf_opsys
    IMPORTING
    file_name = gwa_input
    EXCEPTIONS
    file_not_found = 1
    OTHERS = 2.
    IF sy-subrc EQ 0.
    Concatenating the physical path and the input unix file name
    CONCATENATE gwa_input p_file INTO gf_file .
    ENDIF.
    You need to tak ehelp of ABAPer for this
    Check the link
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3deb358411d1829f0000e829fbfe/frameset.htm
    Regards

Maybe you are looking for