DBMS_XMLSave AND trigger

Why isn't possible to use DBMS_XMLSave into an INSTEAD OF TRIGGER context !
XSU want to set a savepoint and this is not allowed into a trigger.....

user458361 wrote:
How about a trigger with autonomous Transaction ? as you said there would be performance issue with this approach . but for the sake of invoking a trigger through shell script , i think this may work . I could invoke a procedure using DBMS_SCHEDULER through a Trigger. have to try a shell script.Perhaps you're not understanding the transactional issue here.
In the simplest example...
You insert a record
Your trigger fires
The trigger calls the shell script (autonomous transaction or not)
The shell script does it stuff
For some reason, the transaction is rolled back rather than committed
Now the record isn't inserted, but the script has been run anyway.
Firing non-transactional processes from within a trigger is Wrong! It's bad design, it's flawed, it just shouldn't be done, this is NOT what triggers are for. There's also the risk of a trigger firing more than once per insert under certain circumstances.
There is nothing wrong with having a scheduled task running periodically (and that can be very frequently) to pick up flagged records and do what is needed. That ensures transactional integrity because it will only pick up things that are committed. It also prevents performance issues. The end result is more robust and can meet the requirements to have a process fire for any newly inserted records. It has the added benefit that if the external process (a script in your case) needs to be turned off, that can be done without effecting the rest of the application, as it is running independently.

Similar Messages

  • I cannot get the new mac mini to wake from sleep and trigger the displays - this is the second mac mini I have had and both have had the same issues. It worked before on my macbook extremely well...

    I cannot get the new mac mini to wake from sleep and trigger the displays - this is the second mac mini I have had and both have had the same issues. It worked before on my macbook extremely well...
    Using 2 displays, connected via HDMI and thunderbolt
    Been on to support a number of times now - is anyone experiencing the same issues?

    BUMP.
    I actually showed this to Apple geniuses when I took my computer to the apple store, and it's still here. In console it says:
    kernel[0]: Previous Shutdown Cause: -128
    I don't know if that's related or not, but maybe helps?

  • Creation of sequence and trigger for each table!!!!!!!1

    Hi
    I am new to trigger and Sequence field. In one of my database we have many tables with fields for specifing ID numbers. Iam planning to insert the ID field with help of a Sequence and trigger...that trigger fires by adding the sequence value from the dual table. Now the point is here we r having around *60* table with ID field. And i am planning use the above process for each table by creating sequences and trigger for each table.
    Will this affects the performance of database.
    Is there any other option other than the above process, I mean other than creating sequences and trigger for each table.
    PLzz help to resolve this issuee......
    Shiyas
    Edited by: user13170361 on Jun 7, 2010 12:37 AM

    Tiger, I didn't mind about your comment, but the point is try to use
    select NVL(max(a) + 1,1) into i from p1_temp;This line in your trigger code and see what is happening. The problem is with your trigger. You are using group by function and you will not get no_data_found !
    For more help, this is some modification of your code.
    SQL> create table p1_temp (a number(10) primary key, b number(10));
    Table created.
    SQL> create or replace trigger trg_p1_temp
      2  before insert on p1_temp for each row
      3  declare
      4  i number(10);
      5  begin
      6  begin
      7  select NVL(max(a) + 1,1) into i from p1_temp;
      8  exception
      9  when no_data_found then
    10  i := 1;
    11  end;
    12  :new.a := i;
    13  end;
    14  /
    Trigger created.
    SQL> insert into p1_temp(b) values (1);
    1 row created.
    SQL> insert into p1_temp(b) values (2);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from p1_temp;
             A          B
             1          1
             2          2
    SQL> Edited by: Saubhik on Jun 7, 2010 2:30 AM

  • Check for duplicate invoices and trigger a workflow

    Hello All,
        I have a requirement to check for duplicate invoices in AP(Accounts payable) and trigger a workflow when duplicate invoices are found. I a not sure how to do any of the above. Please  let me know if you have any information on:
    1) Checking for duplicate invoices in AP
    2) Trigger a workflow
    Are there any standard workflows that checks duplicate invoices?
    Thanks.
    --Mithun

    Hi MD,
    I doubt if system gives an error on FI side when a duplicate invoice is posted.
    I feel you would require a BAdi for it, where you can call your WF using FM SAP_WAPI_START_WORKFLOW.
    Hope it helps.
    Aditya
    P.S also ask your Func Consultants, if there are any settings in the Customization, where you could capture Inv Dt, Inv Amt, Vendor, Company code.
    Edited by: Aditya Varrier on Oct 15, 2008 9:38 AM

  • How to assign output type and trigger printing in ABAP

    hi all,
    i have create invoice by using BAPI_BILLINGDOC_CREATEMULTIPLE and create header/item text with CREATE_TEXT.
    please advise how to assign the output type and trigger immediate printing after this.
    thanks.

    Hi Reetha ,
    This is a functional setting  , and should be done by some functional guy. The setting can be done by NACE.
    Just follow the path : NACE - > Select V3 for Billing - > Press Output type Button Just above - > Assign Output Type and
    then Assign Output program and form in PROCESSING ROUTINE comes into left. Set this output type for immediate print.
    Whenever You create a billing document by BAPI with this document type , the print out will be fired immediately.
    Hope it will solve your problem.
    Thanks.

  • OIM: Create new link and trigger a process.

    Hi,
    I am customizing the OIM admin and user console. My aim is to add a new menu item and trigger a new process (say a provisioning process of a resource).
    I have the menu link. I can point it to any servlet I want.
    I have a resource object.
    I have the form made using form designer in designer console.
    I have a provisioning process attached to my resource object.
    Now, how should I connect all these things together as to make an end to end flow.
    Like how should I link such that a user can try to provision (self provision) my resource to himself by clicking on that link.
    Thank you.

    My second problem:
    I want a way to say invoke a servlet (that I can do, but dont know which servlet to invoke.) so that my form (from the form designer) pops up, and I can fill data in it to create its instance. And this would trigger an approval process and provisioning process.
    At last a page is returned stating that provisioning was successful or unsuccessful.
    Thank you.

  • Suppress auto sequence and trigger DDL for surrogate keys?

    Is there a way to suppress trigger and sequence creation for surrogate keys when export to DDL file?
    I know most of the time the automatic sequence and trigger creation is welcome and very handy.
    However I'm migrating from an old Designer model and there only the needed sequences are created.
    They have a different name and trigger logic is custom (and  generated outside designer).
    There is a lot of package code depending on this. So I prefer to create and use different sequences.
    Is there a way to achieve this? Any tips are welcome.Create

    Hi,
    Note that generating the DDL for Oracle 12c means that it will attempt to use your Oracle 12c Physical model.  So if you normally use Oracle 10g or 11g, you will find that any details from your Oracle 10g or 11g Physical Model will not be included.  So this approach may have other implications for you.
    If you are not using Oracle 12c, there are some relevant properties on the Auto Increment tab of the Relational Model properties dialog for the Column which may help:
    Sequence Name - allows you to specify the name of the Sequence (which can be the name of a Sequence defined in the relevant Physical Model).
    Trigger Name - allows you to specify the name of a Trigger (which can be the name of a Trigger that is defined for the Table in the Physical Model).
    Generate Trigger - unsetting this will stop the Trigger being generated.
    David

  • Want to record my voice in GB and trigger it through my keyboard?

    want to record my voice in GB and trigger it through my keyboard and record it in my song as midi data?
    anybody know if I can do this??
    thanks, technoreid
    imac intel   Mac OS X (10.4.6)  

    thanks for welcoming me to the forum. this is awesome! thanks!
    back in the day (1995) i used to have a program called Studiovision Pro with digidesign Session 8 and Digidesign SampleCell. and used to map my voice over the keyboard in different pitches for play back as a midi instrument in the Studiovision sequencer....
    I am not looking for pitch changes this time- just trying to see if GB can at least record my voice (without pitch changing via the music keyboard) ...
    just want to record my voice and trigger it several times in a song at the same pitch.
    I think you answered my ?..... I think what you said will work.. sounds logical....
    thanks, technoreid

  • Help on Procedure and trigger for updating(urgent please)

    SQL> / Table A
    CTUT_ID CTUT_COMPANY_NAME CURRT_USER_ID FMIS_ID CREATE_DA UPDATE_BY UPDATE_DATE
    1234 A 15-APR-03
    2222 B 15-APR-03
    3333 C 15-APR-03
    4444 D 15-APR-03
    5555 E 15-APR-03
    6666 F 15-APR-03
    150282 G oRACLE 23-APR-03
    1 H 15-APR-03
    2 I 15-APR-03
    3 J 15-APR-03
    150343 K TIGER 24-APR-03
    150305 L EXAMPLE 23-APR-03
    150342 M SCOTT 24-APR-03
    sQL >/ Table B
    Empno     Empname UPDATE_BY UPDATE_DATE
    1 AA
    2 BB
    3 CC
    4 DD
    What i need to do is i need to create an update trigger on both tables
    like create a procedure
    1)In procedure i need to check like
    IF TABLEA.CURRT_USER_ID = (SELECT USER FROM DUAL)
    THEN
    UPDATE_BY = (CURRENT_USER_ID of CTUT_ID)
    FOR EXAMPLE CURRENT USER_ID IS SCOTT THEN
    UPDATE_BY = 150342
    UPDATE_DATE = SYSDATE
    ELSIF
    UPDATE_BY <=> (CURRENT_USER_ID of CTUT_ID)
    THEN
    MESSAGE('USER IS NOT IN TABLE);
    END IF;
    and call that procedure in the update triggers
    FOR BOTH TABLES TABLEA,TABLEB
    i CREATED A PROCEDURE BUT IT IS NOT WORKING
    ANY HELP PLEASE
    CREATE OR REPLACE PROCEDURE UPDATE(
    UPDATE_DATE out DATE,
    UPDATE_BY out VARCHAR2)
    IS
    Uuser varchar2(20);
    Udate date;
    Ufound number(1);
    BEGIN
    SELECT USER,SYSDATE
    INTO Uuser,Udate from dual;
    SELECT count(*),CTUT_ID into Ufound,Uctut_id
    FROM TABLEA
    WHERE CURRT_USER_ID = Uuser
    Group by Ctut_id;
    IF (UFOUND = 1) THEN
    UPDATE_DATE := UDATE;
    UPDATE_BY := UCTUT_ID;
    END IF;
    EXCEPTION WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-20001,'User Does not Exist');
    END UPD_CONSTITUENT;
    CREATE A TRIGGER :
    CREATE OR REPLACE TRIGGER TU
    BEFORE INSERT ON TABLEA
    FOR EACH ROW
    BEGIN      
    UPDATE(:NEW.update_date,
         :NEW.update_BY);
    END IF;      
    END;
    SQL> update TABLEA
    2 set CTUT_COMPANY_NAME = 'SCOTT TEST'
    3 WHERE FMIS_USER_ID = 'N';
    update TABLEA
    ERROR at line 1:
    ORA-04091: table TABLEA is mutating, trigger/function may not see it
    ORA-06512: at "UPDATE", line 12
    ORA-06512: at "TU", line 1
    ORA-04088: error during execution of trigger 'TU'

    Hi Mara,
    You are right thats what i want
    I have a table A
    EmpNo Empname Currtuser_id Update_date Updateby
    1 Denis Oracle
    2 Scott Scott
    3 Mara MMara
    1)what i need to do is when any user tries to update the table Table A
    Then the Trigger or procedure should check whether user is exits in table A in column currtuser_id
    If his user id exits in table A
    Then allow him to update the TABLE A
    and insert his EMPNO in UPDATE_BY
    and SYSDATE in UPDATE_BY
    He will do all this process using forms
    But i need to have trigger or procedure in database level for table
    2) I have another table like 10 tables
    Suppose TABLE B
    When user tries to update TABLE B
    Then the Trigger or procedure should check whether user is exits in table A in column currtuser_id
    If his user id exits in table A
    Then allow him to update the TABLE B
    and insert his EMPNO in UPDATE_BY
    and SYSDATE in UPDATE_BY
    3) I need to have a common Procedure and call that procedure in all tables in UPDATE TRIGGER
    Thanks for your help
    Thanks

  • Sequencing and Trigger on Oracle 9i lite database

    We created a schema (TESTSCHEMA) on Oracle 8.1.7 Enterprise edition and have a created a trigger which will use the sequence object to generate primary key for the table (TEST_TABLE)
    Sequence creation:
    CREATE SEQUENCE TESTSCHEMA.TEST_TABLE_SEQUENCE START WITH 6000 INCREMENT BY 1 MINVALUE 6000 MAXVALUE 6999 NOCACHE NOCYCLE NOORDER ;
    Trigger creation:
    CREATE OR REPLACE TRIGGER TEST_TABLE INSERT BEFORE INSERT ON TEST_TABLE FOR EACH ROW
    DECLARE
    pkValue NUMBER;
    BEGIN
    pkValue := 0;
    Select TEST_TABLE_SEQUENCE.NextVal into pkValue from dual;
    :NEW.TEST_KEY := pkValue;
    END TEST_TABLE_INSERT;
    We have created a snapshot of the schema on mobile server, synchronized the data with the client (Win32 for testing purpose).
    The trigger works fine on the server, but when I run the same query on the lite database with msql it gives me an error:
    [POL-3221] null key in primary index
    I was wondering if Sequence generation and Triggers are supported on Oracle 9i lite database ? Or am I missing out something ??
    Any information/ help is appreaciated
    Thanks
    Neeraj

    You can't use SAVEPOINT / ROLLBACK TO SAVEPOINT statements in the database trigger:
    ORA-04092: cannot SET SAVEPOINT in a trigger
    ORA-04092: cannot ROLLBACK in a trigger
    I am not sure what you need exactly, but you can try this:
    Simulating ROLLBACK TO SAVEPOINT Behavior in a Database Trigger
    http://www.quest-pipelines.com/pipelines/plsql/tips02.htm#JUNE
    Regards,
    Zlatko Sirotic

  • How can I execute a button-process and trigger a branch??

    I create a button (ADD),
    a process (seq:30 condition:ADD button)
    and a branch (seq:50 condition:ADD button point: on commit:after process).
    I wanna execute this process by click button, then trigger this branch to other page.
    but now, only process had executed, not to to other page.
    Please help me If you know it. Thanks a lot!!

    Hi
    If you amend the button to redirect then surely it won't fire the the process?
    Check to ensure that there is no Unconditional Branch before your Conditional Branch. If there are, this will be firing before your branch.
    Regards
    Paul

  • HTML DB 1.6  (Apex) htmldb_util.set_session_state and Trigger

    Hi everybody,
    I have two “1.6 HTML-DB applications”: “Number 1” and “Number 2” which I use the same « before insert » trigger.
    But, in application “Number 2”, I want to skip some instructions, I want to put a condition.
    Firs of all, I would add an element “abc” in the page 1 of application “Number 1” to affect it the “Yes” value and in the page 1 of application “Number 2” to affect it the “No” value.
    First of all, I taught to add a condition in the trigger.
    begin
    If abc = ‘yes’ then
    def……..
    Xyz……
    End if;
    Azb…..
    Yjn……
    End;
    But, someone told me to use “htmldb_util.set_session_state”, but I’m not sure to fully understand the reason to use that. Can someone could help me ?
    Thanks. Bye.

    Firstly, I would never put ApEx page item references directly in a trigger. Surely, you can refer to the underlying column value that's supposed to be coming in rather than a page item. This might mean that you create a separate procedure to do your insert operation but it keeps things a bit cleaner and, to my way of thinking, more manageable.
    Second, just null out the value of the page item (with a computation or a process) when you click the create button - after the value has been used and properly inserted into the table.
    Earl

  • ORA-00022 with Database Link and Trigger

    Hello altogether,
    I got a very strange behaviour with my oracle 10.2.
    I have two nets N1 and N2, where N1 can access the servers in N2, but not the other way round. In both nets I have an Oracle database running (D1 and D2).
    In N1 I calculate some data, which must be replicated to the database in N2. I do this by using triggers on my tables in database D1 copying the inserted or changed data to D2 by using a shared public database link.
    This works fine most of the time. But sometimes I get the following error:
    ERROR [STDERR] Caused by: java.sql.SQLException: ORA-02068: following severe error from D2
    ORA-00022: invalid session ID; access denied
    ORA-06512: at "CUSTOMER", line 13
    ORA-04088: error during execution of trigger 'CUSTOMER'
    When I use the database links manually, they work.
    Any idea?
    Thank you!!
    Daniel

    The ORA-02068 message might be important
    02068, 00000, "following severe error from %s%s"
    // *Cause: A severe error (disconnect, fatal Oracle error) received from
    //         the indicated database link.  See following error text.
    // *Action: Contact the remote system administrator.Have you searched Oracle support for any bugs associated with the ORA-02068?
    Was the remote session killed, the remote database changed to restricted session, or bounced?
    I take it the distributed session is created using a dedicated session and not shared server?
    HTH -- Mark D Powell --

  • How to adding new operation and trigger PR

    Hi guru,
    I am seeking an opinion and recommendation:
    We have a process flow where we need to create a purchase order when we reach a specific operation in the routing. This purchase order is send to a external vendor that gets information to arrive to the factory and finsh an operation.
    The routing consist of 4 operations:
    010 assembly,
    020 - testing,
    030 - machine polish(triggers the PO to the vendor when operation 20 is confirmed),
    040 - packing and the milestone.
    Normally the routing only consist of 3 steps - assembly, packing and testing. but for these special machines we add the extra operation to have the machine cleaned. We need to have a solution for how the new operation can be added to the routing and in the same time trigger a Purchase requistion.
    Thanks.
    tuff

    Hey Gorla,
    Thanks for you feedback.
    two questions:
    1 - currently the routing of this material consists of only three operations (i.e. 0010 - Assembly, 0020 - Testing in Production, 0030 - Packing). So if I want to adding in this subcon operation (ie. machine polish) to the between 0020 and 0030, I will have to adding it manually. Will this cause problem? sorry I am not a PP person.
    2 - may i know the "external processing control key" you mention is the technical field PLPOD-STEUS appear in the "Display Routing: Operation Overview" screen in CA03?
    Thanks

  • ILA, How to qualify and trigger on a subset of signals?

    Hello Vivado ILA users,
    I am trying to verify a signal processing block that is too large to verify in simulation.  Instead, I am using Vivado ILA to capture the data and writing out the data using the "write_hw_ila_data" command.  Then I have a special script that converts the binary strings into a matlab readable format.  It was a lot of effort to get all that working but now I am hitting a situation where the ILA no long meets timing.  I could turn down the clock but I think the problem is how I am using the ILA.
    The data in my block flows in a streaming fashion with a datavalid signal indicating when data is available.  I only want to capture valid data so I have turned on the storage qualifier mode of the ILA.  It seems that trigger/qualifier logic is being generated for all the data signals that I am capturing, not just the very few signals I use for trigger and qualification.  I think this super wide trigger/qualifier logic is what causes ILA to miss timing.
    Is there a way in Vivado ILA to select a different set of signals for triggering and qualification?
    I remember this was part of the standard flow in old ISE Chipscope but I do not see how to do it in Vivado.  I looked through UG908 and PG172.  I should mention that my clock frequency is only 200MHz, very moderate for 7-Series parts.
    I attach my add_ila.tcl script and then the long path of the timing report below.
    #set ila_clock clk_BUFG
    set ila_clock clk_IBUF_BUFG
    #set_property mark_debug true [get_nets [list {uut/ola_out_dv}]]
    #set_property mark_debug true [get_nets [list {uut/ola_dout_real[0]*}]]
    #set_property mark_debug true [get_nets [list {uut/ola_dout_imag[0]*}]]
    #set_property mark_debug true [get_nets [list {uut/ola_branch_out[*]}]]
    create_debug_core ila1 ila
    set_property C_DATA_DEPTH   4096 [get_debug_cores ila1]
    set_property C_EN_STRG_QUAL true  [get_debug_cores ila1]
    set_property C_ADV_TRIGGER  true  [get_debug_cores ila1]
    set_property ALL_PROBE_SAME_MU_CNT 4  [get_debug_cores ila1]
    set_property TRIGGER_COMPARE_VALUE true [get_debug_cores ila1]
    # Now find all the nets that are marked for debug.
    set ila_nets [get_nets -hier -filter {MARK_DEBUG==1}]
    set num_ila_nets [llength [get_nets [list $ila_nets]]]
    set_property port_width 1 [get_debug_ports ila1/clk]
    set_property port_width $num_ila_nets [get_debug_ports ila1/probe0]
    connect_debug_port ila1/probe0 [lsort -dictionary [get_nets [list $ila_nets ]]]
    get_nets [list $ila_nets]
    connect_debug_port ila1/clk [get_nets [list $ila_clock ]]
    write_debug_probes -force ./results/ila1.ltx
        SLICE_X4Y50          FDRE (Prop_fdre_C_Q)         0.456     5.666 r  ila1/inst/ila_core_inst/u_ila_regs/U_XSDB_SLAVE/G_1PIPE_IFACE.s_daddr_r_reg[1]/Q
                             net (fo=73, routed)          0.859     6.525    ila1/inst/ila_core_inst/u_ila_regs/n_19_U_XSDB_SLAVE
        SLICE_X7Y50          LUT6 (Prop_lut6_I0_O)        0.124     6.649 f  ila1/inst/ila_core_inst/u_ila_regs/current_state[6]_i_3/O
                             net (fo=5, routed)           0.804     7.454    ila1/inst/ila_core_inst/xsdb_memory_read_inst/I3
        SLICE_X7Y44          LUT6 (Prop_lut6_I2_O)        0.124     7.578 f  ila1/inst/ila_core_inst/xsdb_memory_read_inst/current_state[4]_i_1/O
                             net (fo=3, routed)           0.823     8.401    ila1/inst/ila_core_inst/xsdb_memory_read_inst/next_state[4]
        SLICE_X7Y46          LUT6 (Prop_lut6_I4_O)        0.124     8.525 r  ila1/inst/ila_core_inst/xsdb_memory_read_inst/curr_read_block[1]_i_2/O
                             net (fo=1, routed)           0.149     8.674    ila1/inst/ila_core_inst/xsdb_memory_read_inst/n_0_curr_read_block[1]_i_2
        SLICE_X7Y46          LUT6 (Prop_lut6_I1_O)        0.124     8.798 r  ila1/inst/ila_core_inst/xsdb_memory_read_inst/curr_read_block[1]_i_1/O
                             net (fo=2, routed)           0.694     9.492    ila1/inst/ila_core_inst/ila_trace_memory_inst/SUBCORE_RAM_BLK_MEM_1.trace_block_memory/inst_blk_mem_gen/gnativebmg.native_blk_mem_gen/valid.cstr/ramloop[5].ram.r/prim_noinit.ram/pwropt_1
        SLICE_X7Y49          LUT5 (Prop_lut5_I1_O)        0.124     9.616 r  ila1/inst/ila_core_inst/ila_trace_memory_inst/SUBCORE_RAM_BLK_MEM_1.trace_block_memory/inst_blk_mem_gen/gnativebmg.native_blk_mem_gen/valid.cstr/ramloop[5].ram.r/prim_noinit.ram/DEVICE_7SERIES.NO_BMM_INFO.SDP.SIMPLE_PRIM36.ram_REGCEB_cooolgate_en_gate_21/O
                             net (fo=1, routed)           0.584    10.200    ila1/inst/ila_core_inst/ila_trace_memory_inst/SUBCORE_RAM_BLK_MEM_1.trace_block_memory/inst_blk_mem_gen/gnativebmg.native_blk_mem_gen/valid.cstr/ramloop[5].ram.r/prim_noinit.ram/DEVICE_7SERIES.NO_BMM_INFO.SDP.SIMPLE_PRIM36.ram_REGCEB_cooolgate_en_sig_1
        RAMB36_X0Y9          RAMB36E1                                     r  ila1/inst/ila_core_inst/ila_trace_memory_inst/SUBCORE_RAM_BLK_MEM_1.trace_block_memory/inst_blk_mem_gen/gnativebmg.native_blk_mem_gen/valid.cstr/ramloop[5].ram.r/prim_noinit.ram/DEVICE_7SERIES.NO_BMM_INFO.SDP.SIMPLE_PRIM36.ram/REGCEB
      -------------------------------------------------------------------    -------------------

    Update: I recompiled my design with storage qualification turned off and the ILA still misses timing by half a nanosecond.
    Then I compiled the design without any ILA installed and met timing by 2ns.
    I remember using large ISE Chipscope cores at 300MHz in Virtex-5. Is there some funny business here? Do I need to constrain the ILA by some means other than the clock period constraint I put on my design?

Maybe you are looking for

  • Is there a way to roll up steps in a sequence file

    I have some pretty long sequece files that have many nested steps...Is there a way that I can "roll-up" these steps in my sequence?  I am having trouble keeping my "Ends" straight sometimes and I think it would be easier to see them rolled up and the

  • Trouble inserting photos

    Try as I may, I can't get photos that have been taken with an iphone held vertically to insert with the proper orientation - they go in rotated.  Photos taken with the phone held horizontally go in fine.  Any suggestions?

  • Missing images in RH8 with linked Word files

    RH8 HTML and MS Word 2007 The images from linked Word documents are not showing up in my RH8 project. Here's how the project is set up: The RH project is in its standard location: C drive, in a subfolder underneath My RoboHelp Projects. All content i

  • Using applescript to unzip a file

    I have a zip file in the same folder as a applescript application. I just want to unzip it into the same folder and then delete the zip file but have no skills with applescript (this is actually for a Filemaker project) This is what I have so far. An

  • A bug in EMET 4.1

    Hi there, I am using EMET 4.1 and I have noticed a huge bug: In EMET, in the running processes I am not seeing a green correct sign on all of the running processes except one, even though I have imported the "Popular Software" & "Recommended Software