Sequence/Procedure does not work

Hello guys! I have a huge question. I am working on a database that someone developed a couple of years ago.
Today I stumbled across a table and tried to insert data via an Apex frontend. The data was saved properly into the respective Table "TBL_TOTHOLZ".
However, the field CNT_TOTHOLZ was not filled and consequently Null.
Since the data is deleted via Apex using the CNT_TOTHOLZ value, the deletion cannot be performed.
I found a procedure and related sequence, which I checked are all valid according to Oracle Development Manager.
Since I tried to enter data manually into the table without using Apex I fear I might have crashed something. The table was altered as well. However, I reverted the change (I had added one column) of the table and also dropped and rebuilt the sequence using a far higher number for the nextval than the highest previous number that was stored in the table.
All those changes didn't cause anything. The field CNT_Totholz is still Null when adding a record.
Can you guys please help me and give me a hint as why this is so?! I'm lost this evening and don't know what else to try.
The procedure is as follows:
create or replace
PROCEDURE PR_In_TBL_TOTHOLZ(
  P_cnt_Totholz   IN   NUMBER,
  P_lng_Punkt   IN   NUMBER,
  P_bool_Stehend   IN   NUMBER,
  P_int_BHD   IN   NUMBER,
  P_int_Mittendurchmesser   IN   NUMBER,
  P_int_Hoehe   IN   NUMBER,
  P_int_Laenge   IN   NUMBER,
  P_lng_Baumartengruppe   IN   NUMBER ,
  P_INT_BEZUG in Number) AS
BEGIN
  DECLARE
   PRM_cnt_Totholz      NUMBER(12) ;
   PRM_lng_Punkt      NUMBER(12) ;
   PRM_bool_Stehend      NUMBER(7) ;
   PRM_int_BHD      NUMBER(10) ;
   PRM_int_Mittendurchmesser      NUMBER(10) ;
   PRM_int_Hoehe      NUMBER(10) ;
   PRM_int_Laenge      NUMBER(10) ;
   PRM_lng_Baumartengruppe      NUMBER(12) ;
   PRM_INT_BEZUG   NUMBER(4) ;
  /* Variable to save the record for the primary key  */
  PK_INDEX     NUMBER(12) ;
  BEGIN
    PRM_cnt_Totholz    := P_cnt_Totholz;
    PRM_lng_Punkt    := P_lng_Punkt;
    PRM_bool_Stehend    := P_bool_Stehend;
    PRM_int_BHD    := P_int_BHD;
    PRM_int_Mittendurchmesser    := P_int_Mittendurchmesser;
    PRM_int_Hoehe    := P_int_Hoehe;
    PRM_int_Laenge    := P_int_Laenge;
    PRM_lng_Baumartengruppe    := P_lng_Baumartengruppe;
    PRM_INT_BEZUG  := P_INT_BEZUG  ;
  /* No value must be given to the index  */
  IF PRM_cnt_Totholz IS NOT NULL THEN
     PK_Index :=  PRM_cnt_Totholz;
  ELSE
     SELECT SEQ_TBL_TOTHOLZ.NEXTVAL INTO PK_Index FROM DUAL;
  END IF;
  INSERT INTO tbl_Totholz (
  cnt_Totholz ,
  lng_Punkt ,
  bool_Stehend ,
  int_BHD ,
  int_Mittendurchmesser ,
  int_Hoehe ,
  int_Laenge ,
  lng_Baumartengruppe,
  INT_BEZUG)
  VALUES (
    PK_INDEX ,
    PRM_lng_Punkt,
    PRM_bool_Stehend,
    PRM_int_BHD,
    PRM_int_Mittendurchmesser,
    PRM_int_Hoehe,
    PRM_int_Laenge,
    PRM_lng_Baumartengruppe,
    PRM_INT_BEZUG) ;
  END;
END;It would be awesome if you could help me! Thanks a lot!
Sebastian
Edited by: skahlert on 13.08.2009 19:53
Edited by: skahlert on 13.08.2009 19:54

@ Centinul
Sorry for not having obliged the rules! I edited the post as requested.
To your question. I didn't find any code calling the code I posted. It should be listed under the depending objects in the Development Manager I suppose.
Thought that the procedure is started automatically on insert. I'm very new to oracle and still figuring out most of the things! So please excuse me!
Here are examples for the values that are passed to from the form to the table:
INSERT INTO tbl_Totholz (
  cnt_Totholz ,
  lng_Punkt ,
  bool_Stehend ,
  int_BHD ,
  int_Mittendurchmesser ,
  int_Hoehe ,
  int_Laenge ,
  lng_Baumartengruppe,
  INT_BEZUG)
  VALUES (
    PK_INDEX >>> Integer created by sequence,
    PRM_LNG_PUNKT>>>Integer e.g. 22266,
    PRM_bool_Stehend>>> Bool Yes/No e.g. -1,
    PRM_int_BHD>>> Integer e.g. 20,
    PRM_int_Mittendurchmesser>>>Integer e.g. 30,
    PRM_int_Hoehe>>>Integer e.g. 500,
    PRM_int_Laenge>>>Integer e.g. 1000,
    PRM_lng_Baumartengruppe>>>Integer e.g. 2,
    PRM_INT_BEZUG)>>> don't know ;Nevertheless I think that the CNT_TOTHOLZ value should be generated automatically using the sequence once a dataset is inserted. Please correct me if I'm wrong!
Thanks for your answer!
Sebastian
Edited by: skahlert on 13.08.2009 20:03

Similar Messages

  • The link to a user defined oracle stored procedure does not work

    This is based on the HowTo Download a file
    http://otn.oracle.com/products/database/htmldb/howtos/howto_file_upload.html
    I have given a link to a procedure as follows, which will download the file (as given in the HowTo):
    #OWNER#.download_my_file?p_file=#ID#.
    However, this does not work. It tries to open a page rather than executing the procedure. It displays the page not found message

    that page not found message is a generic one. you'd want to check your apache logs for more info on what really happened. my guess is that you missed step 5 of that how-to, "grant execute on download_my_file to public"
    hope this helps,
    raj

  • Ref_cursor -procedure does not work for Microsoft ODBC for oracle driver

    Hi,
    I have a stored procedure to retreive record set values from db.
    so i used PL/SQL table type. that is
    type tt1 is table of ........
    but if i replaced the table type with ref_cursor i get an ODBC error :
    "ODBC driver does not support the requested properties.--2147217887".
    The problem is i get a connection string from other module and i cannot change the connection string.
    So is there a way to get it working the ref_cursor using "Microsoft ODBC for Oracle" driver.
    Thanks

    Babu,
    Not sure, a quick Google indicates it should work (given you're using the correct syntax of course :-) )
    Have you tried the Oracle ODBC driver? Are you using the latest version(s)?
    Of course you're likely to have much more luck if you post this question in the ODBC forum :-)
    ODBC
    Cheers,
    Colin

  • Executing Command within Pkg.procedure does not work-but command line does

    [Version 10.2.0.2
    [Scenario] Let's say my Username is Jack. My goal is to grant two roles to a user. From the command line, I have no problem.
    PROMPT-> Grant role1,role2 to TESTUSER
    However, when I create a package and procedure (owned by Jack); I receive an ORA-01919 error saying that role2 does not exist.
    There is no question the role exists and I am able to grant it to the TESTUSER on the command line as Jack.
    Any ideas what is going on?

    I can't post it as the database is on another system. However, I found my the fix. My Jack user had grant any role; therefore, I thought it should work both from command line and package.proc; however I granted role2 to Jack with admin privs and it works now both from the command line and the pkg.proc.
    Thanks for the response.

  • Action Profile Determination Procedure does not work properly -.

    Dear Experts,
    I have defined the transaction type ZANF (Object Type: BUS2000240 = Billing Request). The problem is, in the customizing I can not assign the action profile directly. I have to assign a Action Profile Determination Procedure (it is called there AP Procedure).
    I already have defined an Determination Procedure with the name ZCRM01 in Customizing:
    Customer Relationship Management->Basic Functions->Actions->Actions in Transaction->Set Up Action Profile Determination
    This determination Procedure ZCRM01 has assigned the condition type: ZACK and no Requirement? Actually what is the Requirement?
    The condition type ZACK has assigned the Access Sequence Z001. The access sequence Z001 has assigned the table SAP00004 which contains only the attribute: PROCESS_TYPE (Transaction Type).
    Now the problem is that action profile Z_SERVICE_CONFIRM is not called.
    Now my question is: How can I link together the action profile determination procedure ZCRM01 with the action profile Z_SERVICE_CONFIRM? I can not find the place where in customizing I can link both concepts together.
    I have used the following link for customizing: [Link - help.sap.com|http://help.sap.com/saphelp_crm60/helpdata/en/83/785141eb54ba5fe10000000a155106/content.htm]
    Best Regards
    Oliver
    Edited by: Oliver Schultze on Feb 21, 2011 6:31 PM

    Hi Robert and zhenglin gu,
    the solution for the problem is that in the table CRMV_PROC_TYPE (Table for customizing of transaction types) it is possible to assign the action profile directly with the field ACTIONPROFILE. But If you click on a transaction type details this field is not visible in the dynpro.
    So I think SAP made an error in the programming of this dynpro. That was all to solve the error.
    Thank you for your effort...
    Best Regards
    Oliver

  • Stored procedure does not work!

    okay, this is one of the weirdest things i have ever seen...so i have created a registration page to my code which on submit it will fire the following codes
    protected void btsSubmit_Click(object sender, EventArgs e)
    if (tbxFName.Text.Trim().Length == 0 || tbxLName.Text.Trim().Length == 0 || tbxUsername.Text.Trim().Length == 0 || tbxPassword.Text.Length == 0)
    ScriptManager.RegisterStartupScript(this, this.GetType(), "myscript", "ShowNotification('Warning','Please fill the required textboxes');", true);
    else
    try
    string conString = ConfigurationManager.ConnectionStrings["IRELDBCS"].ConnectionString;
    using (SqlConnection con = new SqlConnection(conString))
    SqlCommand sc = new SqlCommand("spUserRegister", con);
    sc.CommandType = CommandType.StoredProcedure;
    sc.Parameters.AddWithValue("@a", tbxFName.Text.Trim());
    sc.Parameters.AddWithValue("@b", tbxLName.Text.Trim());
    sc.Parameters.AddWithValue("@c", tbxUsername.Text.Trim());
    sc.Parameters.AddWithValue("@d", tbxPassword.Text);
    sc.Parameters.AddWithValue("@e", ddlUserType.SelectedValue);
    con.Open();
    int ReturnCode = (int)sc.ExecuteScalar();
    if (ReturnCode == -1)
    ScriptManager.RegisterStartupScript(this, this.GetType(), "myscript", "ShowNotification('Error','This user is already exists.');", true);
    else
    ScriptManager.RegisterStartupScript(this, this.GetType(), "myscript", "ShowNotification('Success','you registration was successful');", true);
    catch
    ScriptManager.RegisterStartupScript(this, this.GetType(), "myscript", "ShowNotification('Error','Something went wrong, please try again in a few minutes');", true);
    i was using sc.ExecuteNonQuery(); instead of int ReturnCode = (int)sc.ExecuteScalar();
    and it was working fine and it was functioning till i have added the part which it stops user from registering with the same email address which is 
    int ReturnCode = (int)sc.ExecuteScalar();
    if (ReturnCode == -1)
    ScriptManager.RegisterStartupScript(this, this.GetType(), "myscript", "ShowNotification('Error','This user is already exists.');", true);
    else
    ScriptManager.RegisterStartupScript(this, this.GetType(), "myscript", "ShowNotification('Success','you registration was successful');", true);
    and this is my stored procedure
    USE [dbo.IrELearn]
    GO
    /****** Object: StoredProcedure [dbo].[spUserRegister] Script Date: 04/01/2014 19:35:08 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE [dbo].[spUserRegister]
    @a nvarchar(30),
    @b nvarchar(50),
    @c nvarchar(150),
    @d nvarchar(30),
    @e smallint
    as
    BEGIN
    declare @Count int
    declare @ReturnCode int
    SELECT @Count = COUNT(Username)
    FROM tbl_Users WHERE Username = @C
    IF @Count > 0
    Begin
    Set @ReturnCode = -1
    End
    Else
    Begin
    Set @ReturnCode = 1
    INSERT INTO tbl_Users (FirstName, LastName, Username, Password, UserType) VALUES (@a,@b,@a,@b,@e)
    End
    SELECT @ReturnCode as ReturnValue
    END
    now users cant register anymore and when i tried to debug and find where the problem is, it completely skips the "if" section after 
    int ReturnCode = (int)sc.ExecuteScalar();
    im not sure whats goin on!! can anyone find out what the problem is?
    thank you in advance

    Can you try to replace the statement in the Stored Proc
    SELECT @ReturnCode as ReturnValue
    with
    RETURN @ReturnCode
    The SELECT statement returns the value as a dataset but the RETURN statement returns it as a Return Code for success/failure of the Stored Proc execution.
    Normally RETURN(0) i.e. a zero is returned as a default for success and a non-zero value is returned for a failure. But don't obther about the values at this time, just try the RETURN statement.
    - Aalam | (Blog)

  • Procedure does not works

    hi
    i have a package like this
    CREATE OR REPLACE PACKAGE BODY ORDER AS
    PROCEDURE Report (
    report_attr_ IN VARCHAR2,
    parameter_attr_ IN VARCHAR2 )
    IS
    supp_addrs_ varchar2(2000);
    comp_addrs_ varchar2(2000);
    stmt1 varchar2(2000);
    order_no_ varchar2(30);
    CURSOR ITEM_DTL_(order_no_ in varchar2) IS
    SELECT * FROM PURCHASE_ORDER_LINE_PART WHERE
    ORDER_NO=order_no_;
    CURSOR COMP_ADDR_(order_no_ in varchar2) IS
    SELECT ADDRESS_LOV from
    COMPANY_ADDRESS c,purchase_order p
    where p.order_no=order_no_ and
    p.company=c.company;
    BEGIN
    FOR I IN ITEM_DTL_(order_no_ ) LOOP
    OPEN COMP_ADDR_(order_no_);
    FETCH COMP_ADDR_ INTO comp_addrs_;
    stmt1:='select i.name||s.address1||s.address2||s.city||s.state'||
    'from SUPPLIER_INFO_ADDRESS s,SUPPLIER_INFO i,PURCHASE_ORDER p'||
    'where p.order_no=order_no_ and p.vendor_no=s.SUPPLIER_ID and
    s.supplier_id=i.supplier_id';
    execute immediate stmt1 into supp_addrs_ using order_no_;
    INSERT INTO tab
    s1,
    s2,
    s3,
    s5,
    s6,
    s7,
    s9,
    s10,
    s11,
    s12,
    s13,
    s14,
    s15
    VALUES
    I.VENDOR_NO,
    I.PROMISED_DELIVERY_DATE,
    I.DELIVERY_TERMS_DESC,
    I.SHIP_VIA_DESC,
    comp_addrs_,
    I.DESCRIPTION,
    I.PART_NO,
    I.LINE_NO,
    I.RELEASE_NO,
    I.BUY_QTY_DUE,
    I.BUY_UNIT_PRICE,
    I.ORDER_NO,
    supp_addrs_
    ROW_NO_ := ROW_NO_ + 1 ;
    END LOOP;
    END Report;
    END ORDER;
    problem is will this work.i mean will the table tab will be populated.

    Thank you all for it
    i now rewrite it---
    PROMPT Creating &PKG implementation
    CREATE OR REPLACE PACKAGE BODY &PKG AS
    PROCEDURE &METHOD (
    report_attr_ IN VARCHAR2,
    parameter_attr_ IN VARCHAR2 )
    IS
    result_key_ NUMBER;
    row_no_ NUMBER := 1;
    PARENT_ROW_NO_ NUMBER := 0 ;
    supp_addrs_ varchar2(2000);
    comp_addrs_ varchar2(2000);
    stmt1 varchar2(2000);
    sqlstr2 varchar2(2000);
    order_no_ varchar2(30);
    /* cursor sup_det_(order_no_ in vrachar2) is
    select * from PURCHASE_ORDER
    where order_no=order_no_;*/
    CURSOR ITEM_DTL_(order_no_ in varchar2) IS
    SELECT * FROM PURCHASE_ORDER_LINE_PART WHERE
    ORDER_NO=order_no_;
    cursor get_addr(order_no_ in varchar2) is
    select i.name||s.address1||s.address2||s.city||s.state||
    from SUPPLIER_INFO_ADDRESS s,SUPPLIER_INFO i,PURCHASE_ORDER p||
    where p.order_no=order_no_ and p.vendor_no=s.SUPPLIER_ID and s.supplier_id=i.supplier_id;
    CURSOR COMP_ADDR_(order_no_ in varchar2) IS
    SELECT ADDRESS_LOV from
    COMPANY_ADDRESS c,purchase_order p
    where p.order_no=order_no_ and
    p.company=c.company;
    BEGIN
    result_key_ := Client_SYS.Attr_Value_To_Number(Client_SYS.Get_Item_Value('RESULT_KEY', report_attr_));
    order_no_ := Client_SYS.Get_Item_Value('ORDER_NO', parameter_attr_);
    FOR I IN ITEM_DTL_(order_no_) LOOP
    OPEN COMP_ADDR_(order_no_);
    FETCH COMP_ADDR_ INTO comp_addrs_;
    END comp_addrs_;
    OPEN get_addr(order_no_);
    FETCH get_addr INTO supp_addrs_;
    END get_addr;
    /* stmt1:='select i.name||s.address1||s.address2||s.city||s.state'||
    'from SUPPLIER_INFO_ADDRESS s,SUPPLIER_INFO i,PURCHASE_ORDER p'||
    'where p.order_no=order_no_ and p.vendor_no=s.SUPPLIER_ID and s.supplier_id=i.supplier_id';*/
    -- execute immediate stmt1 into supp_addrs_ using order_no_;
    INSERT INTO &TABLE
    RESULT_KEY,
    ROW_NO,
    PARENT_ROW_NO,
    &vendor_no,
    &promised_delivery_date,
    &delivery_terms_desc,
    &ship_via_desc,
    &address_lov,
    &description,
    &part_no,
    &line_no,
    &release_no,
    &buy_qty_due,
    &buy_unit_price,
    &order_no,
    &supplier_address
    VALUES
    RESULT_KEY_,
    ROW_NO_,
    PARENT_ROW_NO_,
    I.VENDOR_NO,
    I.PROMISED_DELIVERY_DATE,
    I.DELIVERY_TERMS_DESC,
    I.SHIP_VIA_DESC,
    comp_addrs_,
    I.DESCRIPTION,
    I.PART_NO,
    I.LINE_NO,
    I.RELEASE_NO,
    I.BUY_QTY_DUE,
    I.BUY_UNIT_PRICE,
    I.ORDER_NO,
    supp_addrs_
    ROW_NO_ := ROW_NO_ + 1 ;
    END LOOP;
    END &METHOD;
    END &PKG;
    SHOW ERROR
    now is it right?will i get data from get_addr_ and COMP_ADDR_ and populate my table
    in the variable supp_addrs_ and comp_addrs_
    Message was edited by:
    BP

  • SPA922 Factory Reset Procedure Does Not Work

    Is there a hard reset option?
    Thanks!

    Linksys FAQ states:
    4:   Lost web password for SPA device
    To reset your SPA device to the factory default values, unplug your Ethernet cable, access the voice menu (****), and press 73738#.
    Leaving power on the phone of course, and unplugging the Ethernet doesn't allow access to voice menu via (****); I am able to access the phone menu and select 8.VoiceMail which prompts for the password, but entering 73738# returns a wrong password response.
    We received 10 of these phones from our property managers as a signing bonus for our new offices because they new these phones would work with our voip services.  Half of the phones did not have passwords and are already configured along side our Polycom SIP Phones, the remaining have this password issue.
    My definition of potential hard boot process as an example; is holding down some sort of a rest button or internal jumper setting and powering it up to clear the onboard PROM, EPROM, EEPROM, etc.
    Thanks for your response!

  • Export Parameters in Parameterized Message Mapping does not work.

    Hello, XI-Gurus!
    I have a question: how to use an EXPORT parameter in Parameterized Message Mapping? seems it does not work...
    (I use XI / PI 7.1)
    For example, I have a follow scenario: a large message comes to XI from one BS (message contains a lot of rows), then this large message splits to some small messages (something about 1000 rows in one small message), and send small messaeg one by one from XI to second BS. So, after receive step I use a transformation step with Parameterized Message Mapping to get a total amount of rows in large message (it needs for making condition for loop in IP, for example). I want to use an EXPORT parameter to pass this number from Parameterized Message Mapping to Integration Process. How can I do it?
    Of course, I know the way to how to make this scenario without any parameterizing, but I want to use exactly "Parameterized Message Mapping" like it writes in this help:
    http://help.sap.com/saphelp_nwpi71/helpdata/en/43/c3e1fa6c31599ee10000000a1553f6/frameset.htm
    This topic contains something about procedure how to use an EXPORT parameter, but this procedure does not work. I don't understand how to write this UserDefined Function, which I can set any export parameters.
    I read this blog:
    /people/jin.shin/blog/2008/02/14/sap-pi-71-mapping-enhancements-series-parameterized-message-mappings
    this blog has NO solutions about EXPORT parameters. about IMPORT parameters - everything OK.
    Some topics about how to use export parameters in MM in this forum marked as "answered", but this is not true.
    How to export parameters from Message Mapping
    Export parameter REALLY work in message mapping???????
    Export parameter in Message mapping UDF
    WBR,
    Vsevolod

    Hi Rudolf,
    It still does not works.
    Great thanks for all your answers! If your advice works on your PI-server, it means that my problem not in UDF.
    Step by step:
    1) I create in "Signature" tab two parameters: FILE_NAME, FILE_TYPE (of course, they both Export and xsd:string type)
    2) Then, I goes to "Functions" tab and create new function "testUDF" with one argument var1.
    3) In body of this UDF insert 2 strings:
       getOutputParameters.setString("FILE_NAME" , "Order");
       getOutputParameters.setString("FILE_TYPE" , "PDF");
    4) in "Definition" tab I bind function "Local.testUDF" with one field in my input message and goes to "Test" tab for testing.
    5) And then I have a message window "Problems While Testing":
    Source text of object Message Mapping: mm_ParamMap | urn:****.*.:****:TEST has syntax errors:
    Function testUDF, Line 1:
    cannot find symbol
    symbol  : variable getOutputParameters
    location: class com.sap.xi.tf._mm_ParamMap_
    getOutputParameters.setString("FILE_NAME" , "Order");
    ^
    Function testUDF, Line 2:
    cannot find symbol
    symbol  : variable getOutputParameters
    location: class com.sap.xi.tf._mm_ParamMap_
    getOutputParameters.setString("FILE_TYPE" , "PDF");
    ^
    Note: /usr/sap/PID/DVEBMGS00/j2ee/cluster/server0/./temp/classpath_resolver/Mapb1562570ca9e11deb3fe00237d301cd6/source/com/sap/xi/tf/_mm_ParamMap_.java uses or overrides a deprecated API.
    Note: Recompile with -Xlint:deprecation for details. Note: /usr/sap/PID/DVEBMGS00/j2ee/cluster/server0/./temp/classpath_resolver/Mapb1562570ca9e11deb3fe00237d301cd6/source/com/sap/xi/tf/_mm_ParamMap_.java uses unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    2 errors
    Look at this notes, first writes that I use a deprecated API, second - about unchecked or unsafe operations.
    And I have no idea what's wrong... Can you help me?
    Thanks!
    WBR,
    Vsevolod

  • Just replaced iphone battery!! Please help!! Ear speaker does not work.

    I just replaced my iphone 3g battery. It seemed to go smooth. Everything works normally except the ear speaker doesnt work. When i try to make an outgoing call i cant here it ring, but my phone will actually call another phone. Does anyone know what # that connector is labeled as on the motherboard or back of the screen? Any help would be much appreciated!!!!!

    There may be a problem with the microswitch in the headset jack. Click on the following link for the Palm KB article regarding this issue.
    http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=40427
    If this procedure does not work then the phone will need to be replaced.
    For reference purposes, click on the following link for the support page for your device on the kb.palm.com webpage.
    http://kb.palm.com/wps/portal/kb/na/pre/p100eww/sprint/home/page_en.html
    There are links on the page to the user guide, troubleshooting, how to's, downloads, etc.

  • Custom shortcuts addee via Keyboard.prefPane does not work..

    Hi,
    I read several sites that all refer to a way to create a shortcut for a menu command without one, ref.: <http://www.apple.com/pro/tips/keyboard.html>
    However, that does not work at all for me. Never has. So what I am doing wrong? In particular, I would like to add a shortcut to open the main window of Address Book, after closing the window leaving the app running.
    Anyonw could do me a run through? Cause the above mentioned procedure does not work.
    Johan
    PS: Oh, and in iPhoto I am not able to create a new film roll for the selected photos, even though I am following the exact procedure mentioned in Help..
    PB G4 12"   Mac OS X (10.4.8)   768MB

    Welcome to our community
    The issue is typically a matter of focus. Particularly in Firefox. In IE, when the page loads and is presented, the Flash object (your Captivate movie) is given focus. So the keyboard shortcuts work. But that doesn't happen in Firefox. In Firefox, you must first click somewhere on the Flash object to give it focus. From there forward, shortcuts work because the Flash object is now listening for them.
    In every class I facilitate I demonstrated this and advise that it's a good idea to have a button on the first slide. This serves two purposes.
    It forces the user to click to proceed
    It keeps the first slide paused until the user is ready
    Yeah, before someone comes along and says: (in an annoyingly nasal tone) Mr. Man, you KNOW there is an option in Captivate to keep it paused at the start... I'm well aware that Captivate offers this option without adding a button, but I prefer it for the reasons above.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Greetings, I am working in Final Cut Pro 7. In the timeline some clips show as offline. I tried going to sequence and reconnecting to media but it does not work. I can still see the video in the timeline and work with it. It just has the red box.

    Greetings, I am working in Final Cut Pro 7. In the timeline some clips show as offline. I tried going to sequence and reconnecting to media but it does not work. I can still see the video in the timeline and work with it. It just has the red box. Thanks! Olga

    If the clips are not actually missing, you could try to refresh the timeline by using cmd-0 and then going to the timeline options tab. Then select name only where it says "thumbnail display". Press ok to accept the change, then repeat the process to add thumbnails back to your timeline.

  • Right click clip in sequence to remove attributes does not work?

    Trying to get my old head around the three way color corrector. In the process when I try to right click a clip in the sequence to remove the attributes it does not work. When I do it again the filter square is still ticked. What am I doing wrong? Thanks for your help. The transition from Avid to FCP is not an easy one for me.

    so someone else might be helped, you should link to the good captain's post or explain what you were doing wrong.

  • MDT - Custom Reference Image does not work with Task Sequence, normal Windows 7 Enterprise Iso media works fine.

    Hi,
    Our MDT server is acting strange!
    I have previously had this system running without problem - i could both capture and deploy computers as is and no changes have been made to mdt.
    But my latest capture does not work. When i capture my reference maching in my VM environment it completes without errors and i can import the latest wim file.
    When i deploy the tast sequence, it install the custom Wim image, but it ends up with "login" screen as the administrator i have entered for the capture/deploy sequence, but it goes to stop at this point and applications is not installed.
    If i change the ISO in the task sequence under Install OS step, to a clean Win7 install media then the capture completes and install applications.
    I have also tried to:
    Capture reference without password
    Capture reference without Windows updates
    Customsettings.ini, bootstrap, BDD.log and SMSTS.log to be found here: https://onedrive.live.com/redir?resid=ED5029A20300B814!365&authkey=!AALV1b2ubD0laEE&ithint=folder%2cini
    Hope you will be able to assist,
    Regards,
    Anders

    if you have noticed your smsts.log, there is same error multiple - 
    Executing in non SMS standalone mode. Ignoring send a task execution status message request
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    User did not specify local data drive TSManager
    1/23/2015 12:50:37 PM 1656 (0x0678)
    Volume A:\ is not a fixed hard drive TSManager
    1/23/2015 12:50:37 PM 1656 (0x0678)
    Volume D:\ is not a fixed hard drive TSManager
    1/23/2015 12:50:37 PM 1656 (0x0678)
    Volume X:\ is not a fixed hard drive TSManager
    1/23/2015 12:50:37 PM 1656 (0x0678)
    Volume Z:\ is not a fixed hard drive TSManager
    1/23/2015 12:50:37 PM 1656 (0x0678)
    TSM root drive = TSManager
    1/23/2015 12:50:37 PM 1656 (0x0678)
    We do not find an available volume to store the local data path
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Set a global environment variable _SMSTSNextInstructionPointer=1
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Set a TS execution environment variable _SMSTSNextInstructionPointer=1
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Set a global environment variable _SMSTSInstructionStackString=0
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Set a TS execution environment variable _SMSTSInstructionStackString=0
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Save the current environment block TSManager
    1/23/2015 12:50:37 PM 1656 (0x0678)
    pszPath[0] != L'\0', HRESULT=80070057 (c:\qfe\nts_sms_fre\sms\framework\core\ccmcore\path.cpp,58)
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Filesystem::Path::Add(sEnvPath, EnvDataFileName, sEnvPath), HRESULT=80070057 (e:\nts_sms_fre\sms\framework\tscore\environmentlib.cpp,639)
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Failed to save environment to  (80070057)
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    TS::Environment::SharedEnvironment.saveEnvironment(szPath), HRESULT=80070057 (e:\nts_sms_fre\sms\client\tasksequence\executionengine\executionenv.cxx,842)
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Failed to save the current environment block. This is usually caused by a problem with the program. Please check the Microsoft Knowledge Base to determine if this is a known issue or contact Microsoft Support Services for further assistance.
    The parameter is incorrect. (Error: 80070057; Source: Windows)
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    SaveEnvironment(), HRESULT=80070057 (e:\nts_sms_fre\sms\client\tasksequence\executionengine\executionenv.cxx,420)
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Failed to persist execution state. Error 0x(80070057)
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Failed to save execution state and environment to local hard disk
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Start executing an instruciton. Instruction name: Gather local only. Instruction pointer: 1
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Set a global environment variable _SMSTSCurrentActionName=Gather local only
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    Set a global environment variable _SMSTSNextInstructionPointer=1
    TSManager 1/23/2015 12:50:37 PM
    1656 (0x0678)
    what about the mass storage driver in your boot image, is it updated?
    Md.Waseem Please remember to click “Mark as Answer” on the post that helps you. Thank you.

  • Multicam source sequence - audio offset does not work when syncing via audio

    Working double sound with Canon 5D footage and syncing via audio is a big help, but the camera sound is one frame ahead of the video.
    Merge clips requires each v/a clip pair be selected individually AND can't be slipped after merging - so that's no good.
    Create multi-cam source sequence works a treat AND offers an audio offset BUT that does not appear to work when syncing via audio (I understand why you might think we wouldn't need it but...)
    Unlesss I'm missing something?

    I have the same problem. Syncing video via audio in multicam works perfectly on my 3 cam shoot but audio offset does not work. Had to do that on the sequence timeline afterwards.

Maybe you are looking for

  • How to link a css file in the xsl file

    Hi            I would like to know how to include link to my .css file in my .xsl file. The scenario here is I want include a background color in my ShowForm.I am trying to do the same using css. This is the code snippet in my css file .outerbody {  

  • Formula Column Addition

    Dear All,                 I am using BEx Query Designer to make a query.I view the report using browser. I have 2 keyfigure fields "price" and "forecast quantity". I have to arrive at "forecast Value" = price * forecast quantity using formula in Quer

  • OES2SP1 + AFP + -1659 error

    I'm having trouble getting Macs (with OSX 10.6) to connect to our OES2SP1 Linux server (with all the current patches installed). The Macs can connect to our NWSP8 servers without any problems. We have Universal Passwords configured & I have installed

  • Quary array size maximum

    Hi All, I Have more than 10000 recors in source(table) -- but in block property - query arry size- 6 number of records diplayed -6 number of records buffered - 6 when i scroll the button every six records pre query is firing ..forms refresh and netwo

  • E4200- Can't create a storage share

    I've been trying to set up a shared drive.  I can see USB hard drive on my network and I can see it from my laptop.  Everytime I create a share through the router I am logged out of the router and I get an error that says "Session Failure" Has anyone