Problem in Importing PLSQL functions

Dear Friends,
I am facing a problem in Importing the PLSQL functions which i have created, Please refer to the following steps :
1) I created the function and gave execute grants to EUL_US .
2) I tried to import the function from Discoverer administrator, but i am unable to find the function in the list.
Please advice wethere i missed any step..
Thanks in advance
Raj

Hi
Yes, i tried that. Please verify the following steps i did:
1) created <mypack.myfunc> under apps user
2) Grant all on <mypack.myfunc> to EUL_US with grant option;
It contains two parameters :- id number, as_on_date date
I tried to import in Discoverer admin, but i couldn't find it. Then i tried to register manually, i gave all options correctly, but it says invalid function.
Did i miss any thing any where??
Please help
Thanks
Raj

Similar Messages

  • Problem while importing RFC function module in XI. Please Help!

    Hi Experts,
               When I try to import RFC function module in XI I get the following error:
                 **Ready for import**
    Import started...
    YCOP_VALIDATE_GR:
      + com.sap.aii.ibrep.sbeans.upload.RemoteUploadException: connection closed without message (CM_NO_DATA_RECEIVED)
    Import failed with 1 error
    Any idea why is this error? How to resolve this?
    Thanks
    Gopal

    Hi
       The problem still persists.
       This is what I have done:
        1. My FM is RFC enabled. In the "Attribute" tab of the FM I have selected "Remote-enabled module" and "Start immed".
    2.Activated and tested the FM.
    3.Released the FM. In se37, Function Module -> Release ->Release. 
    4.Tried to import this FM in XI under "RFC". Get the same error.
    I have some questions:
    1. After releasing the FM do I have to activate it?
    2. In release there is "Internal Release" Do I have to use that?
    3.Do I have to do "Internal Release" first then "Release"?
    4.The FM i am trying to import makes a call to another FM. Both the FMs are in the same system. Both are remote enabled. The second FM updates data in custom table. the first FM which I am importing validates the data and then calls the second FM for update. Do I have to import both FMs?
    Please help me!
    Thanks
    Gopal

  • Unexpected problem with authorization scheme of type plsql function

    Hi,
    I have created one authorization scheme of type plsql function returning boolean. Authorization scheme is for pages only. p2_user_priviledge is a textbox on home page which extract privilege (list of pagenos) for login user from database. Home page has no authorization required. AUTHORIZATION SCHEME always returns false. I am not able to trace problem in my code. same code works fine for a textbox's default returning 'c'.
    ----- CODE FOR AUTHORIZATION SCHEME------------------------------------------------------------
    declare
    pageid varchar2(10);
    privilege varchar2(300);
    c number(3);
    begin
    pageid := ':P'||to_char(:app_page_id)||':' ; ---Pageno get stored in format  *:P2:*
    privilege := trim(:p2_user_priviledge); ++------Contain list of privilege like    :P2:P13:P67:P23:  etc+++ select instr(privilege,pageid) into c from dual;
    if c>0 then
    return true;
    else
    return false;
    end if;
    end;
    One more problem is again related to authorization scheme.
    I created one application and one authorization scheme (auth_aug) which worked finely. Then after some days i added 10 more pages to same application, But now autho_aug was always returning false for new pages. So i copied code from 'autho_aug' to new scheme 'autho_sept', & it worked for new pages. I don't understand if code is same for both scheme, why required to use two different schemes.
    Now i have added few more pages to application, and facing problem mentioned earlier.
    any solution for both the problems.....

    Hi,
    Let me clear my problem once again.
    -->Home page i.e. P2 does not use authorization, So it is displayed along with text item :p2_user_privilege.
    -->Then user click on one of the links , Now page :P70: should get displayed.
    P70 is using authorization scheme.
    -->But :p2_user_priviledge value is not accessible at authorization scheme, I dont know why.
    I could not find out where to create Application item , as suggested by you.
    & not able to find Developer menu , session at home page as suggested earlier.
    And one more question, my application at runtime display
    X en us
    at bottom
    How to make it
    USER: X Language: en us
    Like in development environment.
    Hope I have cleared my problem, waiting for reply.
    Edited by: TEJU on Nov 17, 2008 9:25 AM

  • How to register database plsql function in obiee

    Hi,
    I've a database plsql function which accepts two date arguments - StartDate and EndDate and return Integer.
    I discoverer like we've Plsql function registration tool, where we import function and pass parameter values as arguments in report- how same can be done in Oracle BI Administration tool and BI Answers?
    I tried to create logical column as
    EVALUATE('YOUR_FUNCTION(%1, %2, %3, %4)' as varchar(20),@{p_1},@{p_2},@{p_3},@{p_4})
    it is giving syntax error.
    url: How to store OBIEE presentation level variable values in DB
    Please help. It is really urgent.
    Kind Regards.

    Hi,
    I created 2 session variables p_startym and p_endym of char datatype and called in function(name: RepInitDates). It looks like:
    EVALUATE('INIT_DATES_MONID(%1, %2)' AS INTEGER , VALUEOF(NQ_SESSION."p_startym"), VALUEOF(NQ_SESSION."p_endym")).
    Now I've presentation variables StartMonth and EndMonth in bi answers report, whose value i want to pass to p_startym and p_endym. What should be the syntax of Bi answers column? Please reply.
    Thanks

  • Problem in IMPORTING!

    I have a problem with importing files.
    eg i have a file: Complex.java
    how can i use this file in another program (NR.java)??

    I have a problem with importing files.
    eg i have a file: Complex.java
    how can i use this file in another program
    (NR.java)??There are 2 ways of that purpose.
    1.If they are in the different and you hope you have your own function lib, you can define package in Complex.java, and import the package, that you can use this class.
    Example:
    if your CLASSPATH = .;E:\java;
    you must put you Complex.class in E:\java\mylib;
    //==== Complex.java ====//
    package mylib;
    public class Complex{
        public int add(int a, int b){ return (a+b); }
    //==== NR.java ====//
    import mylib.*;
    public class NR{
        public static void main(String[] args){
            Complex obj = new Complex();
            System.out.println("Sum is ",obj.add(1,2));
    }2.If they are in the same directory, you can use it directly without define package.
    Example:
    //==== Complex.java ====//
    public class Complex{
        public int add(int a, int b){ return (a+b); }
    //==== NR.java ====//
    public class NR{
        public static void main(String[] args){
            Complex obj = new Complex();
            System.out.println("Sum is ",obj.add(1,2));

  • Please suggest solutiion for calling a plsql function in report

    Hi,
    I did a small project using forms and reports 6i. Now i prepared a repor that will calucalate the sum(expenditure)per report level. Now the problem is i want to print the sum which is in number form , in words. That is if the sum is 50000 then i want to print "fifty thousand". For this conversion from number to figure i wrote a small programme , which successfully compiled and created a function.
    Now I want to create a field in the report and in which I want to call this plsql function and perform the number conversion of sum(expenditure)per report field. Please describe in detail how to make reference between these two fields i.e sum(expenditure)per report and field in which I want to run plsql code and thereby converting the sum into figures.
    the programme i used to convert currency from number to words is please see link.http:/orafaq.com/scripts/cheqprint.txt
    Thanks in advance
    Prasanth a.s.

    Hi,
    If the amount does not exceed more than 5,373,484 then you can use the following method to print the number in words.
    Test Db>Select to_char( to_date(5373484,'J'),'Jsp') from dual ;
    TO_CHAR(TO_DATE(5373484,'J'),'JSP')
    Five Million Three Hundred Seventy-Three Thousand Four Hundred Eighty-Four
    There's no need to write DB function unless you are sure that the value can exceed 5373484.
    You can do the following :
    1. Create a Summary column on the report column on which you want the data summed - Report level or at any level required
    2. Create a Formula Column - Report Level or any other level - Wherever required [ Same level as in Step 1]
    3. The trigger text of this formula column would use the column which is summation of the Expenditure field column (Summary Column) and this function should return Varchar2
    Declare
    lSumInWords Varchar2(1000) := Null;
    Begin
    Select TO_CHAR(TO_DATE(:CS_1,'J'),'JSP')
    Into lSumInWords
    From dual;
    Return (lSumInWords);
    End;
    3. In Your report layout, use this formula column for printing.
    Good Luck.
    -- Shailender Mehta --

  • Jobs gets hanged when a call is made to PLSQL function in Data Services XI

    Hi,
    I am facing the below issue after migration of BODI 11.7 to BODS XI 3.1.
    The job is not proceeding after the below mentioned statements.
    print('before call');
    $is_job_enable=DS_TEST.TEST.MY_PKG.IS_JOB_ENABLED(job_name());
    print($is_job_enable);
    MY_PKG.IS_JOB_ENABLED plsql function will return Number.
    $is_job_enable is a global variable declared as decimal (10, 0).
    This Job works fine in Data Integrator 11.7.3 version and gets handed in Data Services XI 3.1.
    I tried changing the global variable $is_job_enable to int and created new data sources before doesn't solve the problem. Can anyone tell me what is the issue?
    Thanks & Regards
    Maran MK
    The trace file says
    5260     3284     JOB     5/5/2009 4:43:17 AM     Job <TEST_JOB> is started.
    5260     3284     PRINTFN     5/5/2009 4:43:17 AM     before call
    5260     3284     SP     5/5/2009 4:43:18 AM     Stored procedure call <MY_PKG.IS_JOB_ENABLED> is started.
    5260     3284     SP     5/5/2009 4:43:18 AM     SQL query submitted for stored procedure call <MY_PKG.IS_JOB_ENABLED> is: <BEGIN :AL_SP_RETURN :=
    5260     3284     SP     5/5/2009 4:43:18 AM     "TEST"."MY_PKG"."IS_JOB_ENABLED"("P_JOB_NAME" => :P_JOB_NAME); END;
    5260     3284     SP     5/5/2009 4:43:18 AM     >.
    5260     3284     SP     5/5/2009 4:43:18 AM     Stored procedure call <E> input parameter <P> has value of <TEST_JOB>.
    5260     3284     SP     5/5/2009 4:43:18 AM     Stored procedure call <E> return value is <1.0000000>.
    5260     3284     SP     5/5/2009 4:43:18 AM     Stored procedure call <MY_PKG.IS_JOB_ENABLED> is done.
    The below error occurs only in Windows and not in Linux environment.
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     |Session TEST_JOB
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     System Exception <ACCESS_VIOLATION> occurred. Process dump is written to <E:\Program Files\Business Objects\Data
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     Services\log\BODI_MINI20090505044318_5260.DMP> and <E:\Program Files\Business Objects\Data
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     Services\log\BODI_FULL20090505044318_5260.DMP>
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     Process dump is written to <E:\Program Files\Business Objects\Data Services\log\BODI_MINI20090505044318_5260.DMP> and
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     <E:\Program Files\Business Objects\Data Services\log\BODI_FULL20090505044318_5260.DMP>
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     Call stack:
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00CA9EAB, ActaDecimalImpl<RWFixedDecimal<RWMultiPrecisionInt<3> >,RWMultiPrecisionInt<3>,ActaDecimal28,char
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     [29]>::operator=()0315 byte(s), x:\src\rww\actadecimalimpl.cpp, line 13140004 byte(s)
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00D8A267, Convert()+0999 byte(s), x:\src\eval\calc.cpp, line 0303
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DBF9E0, XVal_cast::compute()+0272 byte(s), x:\src\core\compute.cpp, line 1664
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DBC239, XStep_assn::execute()+0057 byte(s), x:\src\core\step.cpp, line 0069
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DBB30D, XStep_sblock::execute()+0029 byte(s), x:\src\core\step.cpp, line 0707
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DBB30D, XStep_sblock::execute()+0029 byte(s), x:\src\core\step.cpp, line 0707
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DBE0BC, XPlan_spec::execute()+0348 byte(s), x:\src\core\plan.cpp, line 0082
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DC5EA0, XPlan_desc::execute()+0336 byte(s), x:\src\core\xplan.cpp, line 0153
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DBD68E, XPlan_spec::compute()0206 byte(s), x:\src\core\plan.cpp, line 01450011 byte(s)
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DBD891, XPlan_spec::compute()+0225 byte(s), x:\src\core\plan.cpp, line 0244
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:0074533A, AE_Main_Process_Options()+31498 byte(s), x:\src\xterniface\actamainexp.cpp, line 3485
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00747EDA, AE_Main()1498 byte(s), x:\src\xterniface\actamainexp.cpp, line 07680030 byte(s)
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:004029F9
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     Registers:
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     EAX=0000000E  EBX=03E392E0  ECX=04B455A0  EDX=012346D8  ESI=02B75D88
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     EDI=04B455A0  EBP=00212738  ESP=002124BC  EIP=00CA9EAB  FLG=00210206
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     CS=001B   DS=0023  SS=0023  ES=0023   FS=003B  GS=0000
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     Exception code: C0000005 ACCESS_VIOLATION
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     Fault address:  00CA9EAB 01:00585EAB E:\Program Files\Business Objects\Data Services\bin\acta.dll

    Hi Manoj & Tiji,
    Thanks for your comments. Please find the below outcome.
    print($is_job_enable); -- is not executed if PLSQL function is called.
    I changed $is_job_enable to VARCHAR, still the same issue.
    I created new project and executed the same in new job, still the same issue (all objects are new except Datastore).
    The dmp happens only when we the PLSQL function is called. I commented the Function call, the execution proceeds further but got hanged in other PLSQL function call (different than the 1st one)
    Is this bug in 12.1?
    Can you tell any Hot fix available? If possible please give me the SAP Notes Number.
    Is there any other way to execute the PLSQL functions/procedures in 12.1?
    Thanks
    Maran MK

  • Problem while import

    hi experts,
    i am facing the problem while importing DC. here is the msg i am getting .
    Problems were encountered during import: 
    Failed to read the project description file (.project) for LocalDevelopmentpapermtcs.com.  The file has been changed on disk, and it now contains invalid information.  The project will not function properly until the description file is restored to a valid state.
    can anybody help me on this issue.
    thank you ,
    vijai

    hi Sumit ,
    how do i resync the dc.
    can u help me step by step.
    vijai

  • Problem calling a packaged function from an authorization scheme

    I wrote a package and body called pkg_auth with a function returning a boolean called is_authorized with 2 parameters (username and functional area).
    i.e.
    CREATE OR REPLACE PACKAGE pkg_auth
    AS
    FUNCTION is_authorized(p_username VARCHAR2, p_functional_area VARCHAR2) RETURN BOOLEAN;
    END;
    additionally i created a public synonym for it and granted execute access on it to apex_public_user and htmldb_public_user;
    i then created an authorization scheme called 'access_control_db' defined as Scheme Type 'PLSQL Function Returning Boolean' and placed the following:
    pkg_auth.is_authorized(v('APP_USER'),'DATABASE')
    in the Expression 1 field.
    and the following:
    Not permitted to edit database information.
    in the error field.
    However when I apply this authorization scheme to a buton I receive the following error when I go to the page containing that button:
    ORA-06550: line 1, column 44: PLS-00221: 'IS_AUTHORIZED' is not a procedure or is undefined ORA-06550: line 1, column 44: PL/SQL: Statement ignored
         Error      ERR-1082 Error in executing authorization scheme code.
    Any help would be most appreciated.

    Hello,
    Does putting 'return' infront -
    return pkg_auth.is_authorized(v('APP_USER'),'DATABASE')fix your problem?
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • Aperture 3.0.1 Problem with Importing Images

    The problem I am experiencing with Aperture 3 is that often when I am trying to import images to a project, the images "do not show up" in the import window. In other words, Aperture doesn't "see" the images I am trying to import.
    Here's what I mean, I might have photos on a CF card or on a hard drive which I would be trying to add/import into a project. Sometimes but not all the time, when I select the folder or location where the files are that I am trying to import, no files show up! These are just regular JPEG files. I know they are there because if I look with OS X's Finder, the images are all there. As well, sometimes if I quit Aperture and restart it all over again, the images that I want to import now show up in the import window.
    This problem doesn't change either whether I click on the "do not import duplicate" box or not. Although as a side note, this "do not import duplicate" function doesn't seem to be reliable either.
    Does anyone have any suggestions regarding what I can do to fix this? Can I "reinstall" Aperture? How do I do this? Is this something I can fix by rebuilding the library?

    I didn't even realize that I too had this issue until I came upon this thread. I went into my Import window, selected my hard drive and only the folder structure would show - no images corresponding to those within the folders would appear in the window above.
    Odd, though, all I did was uncheck the 'Do not import duplicates' box and suddenly the images now appear, and continue to appear after a relaunch of Aperture. I've since rechecked the duplicates box but the images still appear.
    I don't know if it's related to the initial toggling of the duplicates button or not. Nor do I know if the problem will appear sometime later, but I do know it was/is an issue.

  • Is this plsql function considered ok?

    Is this plsql function considered ok?  The reason I am asking is because the results differ when called inside of a package vs calling inside of a procedure.  I am not sure if this is a bug or if it is illegal.
    CREATE OR REPLACE package body test as
    function test return varchar2 is
    begin
    htp.prn('ABCDEF');
    return 'xyz';
    end;
    end;
    When this function is called inside of a package, the string 'ABCDEF' is displayed out of sequence.   I think it is due to 11g inlining the function at compile time.
    Whereas, when the function is called inside of a procedure the string 'ABCDEF' appears in the browser's html correctly.
    Technically the function is doing procedural stuff by output htp.prn data, so Oracle may considered it illegal.  I have a very good reason for wanting this functionality, so before taking another approach I wanted to ask around.

    brian.mcginity wrote:
    'Out of sequence' is a bit vague...sorry.   I probably could create a calling package and procedure which shows the problem.  The place where this is happening in production code is in the middle of a bunch of unrelated business logic.
    Let me try to explain before going down the route of writing a test case.
    The function:
    CREATE OR REPLACE package body test as
    function test return varchar2 is
    begin
    htp.prn('!!!! inside of function !!!!');
    return null;
    end;
    end;
    This is how function is used in a different package:
    htp.p('This is line 1');
    if true then    
         open q for select * from dual;
    end if;
    htp.p('This is line 2.  '||  test.test() ' ||'<br>')
    htp.p('This is line 3');
    So the expected output when you view source in the browser should be:
    This is line 1
    This is line 2 !!! inside of function !!!! !!!! inside of function !!!!!!!! inside of function !!!!
    This is line 3
    However when this code is run inside of a package the output is out of sequence:
    This is line 1
    !!! inside of function !!!!
    This is line 2
    This is line 3
    No, what you're expecting as output is not what I would expect as output.  I would expect the output that you are considering to be 'out of sequence'.
    If you want the first output then your test function should simply be...
    function test return varchar2 is
    begin
      return '!!!! inside of function !!!!';
    end;
    so that it's not writing to the HTP buffer. (as Billy explained in his reply)
    Now take the exact same code block and run it inside of a stand alone procedure:
    htp.p('This is line 1');
    if true then    
         open q for select * from dual;
    end if;
    htp.p('This is line 2.  '||  test.test() ' ||'<br>')
    htp.p('This is line 3');
    and the output is correct:
    This is line 1
    This is line 2 !!! inside of function !!!! !!!! inside of function !!!!!!!! inside of function !!!!
    This is line 3
    When the function is placed inside of a package, the results are different than when inside of a stand alone procedure.  I have a handful of procedure which was calling test.test() and all was working fine.  Then one day when I called test.test() from a package, the output was jumbled.  I narrowed down the problem and quickly created a procedure which did the same thing as test.test() and it fixed the problem.  I still would have liked to use the function version if possible (long story why--don't really want to go into details).
    If that's a difference you're getting between executing the function through a procedure and a package, then there must be something you're not showing us.  There's no good reason for the function to act differently depending on it being in a procedure or packaged.
    You're going to have to provide a reproducable test for people to see exactly what the issue is, because what you've posted cannot be reproduced.

  • Error while trying to access a SSWA PLSQL function

    Hi,
    I am trying to access a report as a web page by defining the function as follows :
    Type : SSWA PLSQL FUNCTION
    HTML Call : OracleOASIS.RunReport
    Parameters : report=EMPDET
    This function is attached to the menu and when I try to access the page I get this error.
    "Error: The requested URL was not found, or cannot be served at this time.
    Incorrect usage."
    The URL that shows in the page is as follows(<server:port> I removed the server name and port) :
    http://<server:port>/dev60cgi/rwcgi60?GDEV_APPS+DESFORMAT=HTML+SERVER=GDEV_APPS+report=EMPDET+p_session_id=A9C71A70B9B1D9BD2DCC0FC3AF9BC324+p_user_id=1133+p_responsibility_id=50230+p_application_id=800+p_security_group_id=0+p_language_code=US+NLS_LANG=AMERICAN_AMERICA+NLS_DATE_FORMAT=DD-MON-RRRR+NLS_NUMERIC_CHARACTERS=.%2C+NLS_DATE_LANGUAGE=AMERICAN+NLS_SORT=BINARY+paramform=NO
    Surprisingly other functions which are defined in this manner work fine. Do I need to register my report anywhere or are there any other settings I need to do for the report to show up.
    Can someone let me know.
    Thanks

    Hi ;
    pelase check below which could be similar error like yours
    Troubleshooting of Runtime Errors of Customer Intelligence Reports [ID 284829.1]
    Regard
    Helios

  • Problems with importing text messages from PC Suit...

    Problems with importing text messages from PC Suit 7.1.18.0 to my Nokia 5800
     I am trying to import a csv file that contains text messages (Note that this file was created using PC Suit 7.1.18.0) to a subfolder that I have created to My Folders but PC Suits only imports the text messages to the Draft folder. Note that initially it shows that the messages are import in the correct folder but after a refresh it shows them in the Draft Folder. Is their any setting that I should change in the PC Suit or the phone? My computer runs on Windows XP Service Pack 3 and the Nokia 5800 was upgraded to the latest firmware v20.0.012
     Thanks for your help

    Most phones only allows importing of draft and archived box for SMS.
    To do a restoring, you need to backup the SMS as a .nbu file using PC Suite and restore later.
    If you got an SD card, you can also do a backup on the SD Card (backup.arc) then restore later (reset and restore: backup.arc and mmc).
    What's the law of the jungle?

  • Tempo problems with imported wav files

    Hey everyone, sorry if there's a quick fix for this in the forums that I couldn't find, but I've been having some tempo problems with imported .wav files.
    Long story short, my system couldn't handle playing all the tracks for a song while recording drums, so I bounced out an mp3 of the song and put it in a new Logic file so my drummer could just play along to that as I recorded him. Unfortunately, the original song is at 167 bpm, but I forgot to change the bpm in the new Logic file with the .mp3 file of the song to 167 bpm, so it was left at the default 120 bpm.
    So, the drums were recorded at the correct 167 bpm, but Logic thinks that those new drum .wav files should be played at 120 bpm, so when I import my drum tracks back into the original file, they do not play correctly at all.
    I could get record it all again, but I wanted to check if there was a way I could salvage what I already have, since my drummer lives about an hour away right now and can't just come over whenever he wants.
    Thanks for the help! I really appreciate it.

    Hi,
    First, do not use MP3 in Logic, the sound quality is less than AIFF, WAV or CAF, and Logic has to decode it for playback, making it a heavier burden on the CPU than an uncoded audiofile, such as AIFF, WAV or CAF.
    Secondly, audio files are independent of Logic's tempo. If you bounce down an audio file in any format (other than Apple Loop), it will play back at the same speed, +regardless of Logics' tempo setting+, either at recording or playback. Logic doesn't 'think' anything. The BPM is only important to MIDI tracks, or to the spacing between audio files. The audio files themselves *are not affected* by the tempo setting. If you import an audio file of tempo 167 into a 120 BPM project, the file will still play at 167, only Logic will indicate the wrong bar positions.
    regards, Erik.

  • Problem with Edit IN function between LR 2.3 and PS CS3

    I recently upgraded my system to a Windows Vista 64 bit Core 2 Quad with 8 GB.  Lightroom now works and loads images the way it should. I do have one major concern and need any help possible.
    I am using LR 2.3 in 64 bit and PS CS3 ver 10.0.1 (which is 32 bit - loads slowly but otherwise works fine).  The problem I am encountering is in LR Develop / Photo / Edit In...  - using any of the menu items:
    "Edit in Abode Photoshop CS3"
    "Open as Smart Object In Photoshop"
    "Merge to Panorama in Photoshop"
    "Merge to HDR in Photoshop"
    "Open as layers in Photoshop"
    Photoshop opens but no image(s) are exported and I receive the message in LR - "The file could not be edited because Adobe Photoshop CS3 could not be launched."
    Photoshop, however, was launched but no image exported and so I can't work on the image in PS.  The appropriate TIFF image is created in LR for the first two menu items - nothing for the last three menu items.
    I can create a partial work around by setting PS as an external editor, however, I can't use 4 of 5 of the menu items.
    All the menu items work fine in Windows XPpro.
    Any help is much appreciated.
    PS I also tried the most recent Window 7 RC with exactly the same results.
    Thanks
    Bob

    Don
    I wasn't shouting - I just cut and paste the exact text and font in its original size and type as was shown in the message.  Never had a thought that someone would be offended by cutting and pasting exactly what was in a message - it would appear that John Williams saw it for what it was.
    However, sorry if I offended you.
    Bob
    Date: Mon, 1 Jun 2009 19:15:15 -0600
    From: [email protected]
    To: [email protected]
    Subject: Problem with Edit IN function between LR 2.3 and PS CS3
    There is no reason to shout. There are only other users here trying to help.
    >

Maybe you are looking for

  • Option to load XML data into BI 70

    Hi All, I have read some postings on forums and also have read the "HOW TO load XML data in BW" guide. I am confused when I read the SAP online help documentation for loading XML data . Question : Out of the 3 options listed below which option is bes

  • Print standard report into PDF????

    Hi! I'm trying to print my standard report with acrobat 7.0. But an error message occurred and I don't understand why- The error message says that the error is Unknow- Could you help me to resolve my problem? Thanks for your help- bastien Attachments

  • How to make KSB2 works ?

    Hi, I have PO that impact Cost center but when I look in the KSB2 transaction that should shows the commitments left for each PO The report shows nothing... I suppose that problem deals with set up of cost center or something like that.. Can someone

  • Time Machine install created HUGE Library Files

    A quick summary -- I have an iMac which I recently updated with Time Machine on a new 750 GB Western eDrive. I've also bought a new MacBook. I was trying to share the data folders between the 2 computers and giving myself permissions on each computer

  • I keep getting kicked out of my apps!!!-Don't know if anyone else is!

    Lately, I've been getting kicked out of my apps at weird and very bad times. It's worse when I'm playing games and then suddenly I'm at my home screen. Has anyone else had this problem and know how to solve it?