In the dbtofile scen only 2nd record is executing

In the dbtofile scen only 2nd record is executing:
I'm sending only one rec but only 'readflag = 0' I mean only 0 is going out (execute)  remain data in the record in going out.  but when insert second record again then it will go out but no out put in both cases.
I m getting error in select statement at readflag
select custid, item, quantity, price from table where readflag = 0
and
"update table set readflag = 1 where readflag = 0" something in dis but it is similar

now error rectified, but not getting out put xml file...
in sbmoni, (xml monitor),
at error category,  it gives :  RCVR_DETERMINATION
                          error ID :  NO_RECEIVER_CASE_ASYNC....
what could be da reason..?
I'm creating Sender Aggreement, RA, ...RD.. manualy not using generation..

Similar Messages

  • How to call function behind the button and update only specific record

    Greetings,
    1 - i wnat to ask few things as i m new to apex, i am using apex 4.1, and created 3 select list and a button in seleting of parameter,
    1 select list : select area
    2 select list: select product
    3- select list - size of the product
    i want to generate Ids for the follwing. for that i created query for INSERTING RECORD FROM ONE TABLE TO ANOTHER , generation the ids when button pressed "Generate" after selecting parameters,
    Now where i call that QUERY on button ? because when i create button its gives me option to submit, defined dynamic action, etc, pls gudie me where i call the function name id_generation when button pressed?.
    2- second thing i creared tabular " select user_id, product_name, product_type from product".
    by defualt check box list are create delete submit button are created, first when i insert record it saves that was fine, e.g i entered 50 records and afterward i want to update only one record, e.g there is a record product name = box, if i change it to box small and click submit then it saves all the page means all 50 records,
    i want to submit only that record that i changed, for that i use the logic that only those records should be updated which are checked but the user. how will i do this ? where to use the preocess , please guide
    Edited by: Omzz on Oct 2, 2012 11:28 PM

    If I understand what you are trying to do is correct you could possibly do this by:
    Creating and AFTER INSERT trigger on the table based on the tabular form which inserts the record into a seperate table after the record is inserted something like:
    CREATE OR REPLACE TRIGGER copy_records
    AFTER INSERT ON table a
    REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    DECLARE
    BEGIN
    INSERT INTO table b
    VALUES :NEW.col1, :NEW.col2 etc......
    END;
    There is also a way that you could do it within the form using a cursor on the tabular form with APEX_APPLICATION.G_ ......
    Chris

  • Interactive forms- i see only one record -how can i see more?

    Hi experts,
    i have a table and the result is only one record instead of more records.
    how can i see more records?
    my code is:
    types: begin of structure_0021,
    favor type pa0021-favor,
    yy_id type pa0021-yy_id,
    fgbdt type pa0021-fgbdt,
    end of structure_0021.
    data: it_0021 type table of struct_0021,
             wa_0021 like line of it_0021.
    select favor yy_id fgbdt from pa0021 into corresponding fields of table it_0021
    where pernr = lv_pernr and
    subty = '2'.
    data: lo_nd_adobe2 type ref to if_wd_context_node,
            lo_nd_ls00212 type ref to if_wd_context_node,
            lo_el_ls00212 type ref to if_wd_context_element,
           ls_ls00212 type wd_this->element_ls0021.
    lo_nd_adobe2 = wd_context->get_child_node( name = wd_this->wdctx_adobe).
    lo_el_ls00212 = lo_nd_adobe2->get_element().
    lo_nd_ls00212 = lo_nd_adobe->get_child_node(name = wd_this->wdctx_ls0021).
    lo_el_ls00212 = lo_nd_ls00212->get_element().
    loop at it_0021 into wa_0021.
    lo_el_ls00212->get_static_attributes(importing static_attributes = ls_ls00212).
    endloop.
    lo_nd_ls00212->bind_table(new_items = it_0021).
    if anyone can help me - i will really appreciate it.
    i tried other thing and didnt succeed.
    thanks,
    Michal.

    Obvious question, but have you got 'Find My iPhone' set on both devices?  Settings>iCloud>Find My iPhone.

  • Stacked Bar Not Showing With Only One Record

    I have created a stacked bar chart using SQL Server Report Builder 3.0.  When the recordset returns more than one record the graph presents correctly.  When the recordset contains only one record nothing is displayed.  This appears to be a
    bug with the product though it is possible I am configuring something incorrectly.  Wondering if anyone has had similar experiences or has any insights.
    Thanks,
    Nick
    Nick

    Hi Nick,
    I create a simple report in my test environment. However, I cannot reproduce it.
    Please refer to the following situation to troubleshooting this issue:
    1. Please check if you have correct expression in the chart. And if you can query correct data in the dataset.
    2. Please check line color of the chart. Make sure it is white.
    3. If the field in the Values dialog box is not integer data type, we will lose data in the chart.
    If the issue is persist, could you please post the screenshot about your chart design, and your dataset with sample data? It is benefit for us to do further analysis.
    Regards,
    Alisa Tang
    If you have any feedback on our support, please click
    here.
    Alisa Tang
    TechNet Community Support

  • RFC - XI - JDBC(mapping only the last row of a record)

    Hello all,
    in a mapping response from an oracle base after a RFC call with a select statement, i have the following response :
    <StatementSelect_response>(cardinality 0..1)
    <row1>(cardinality 0..unbounded)
    <field1>1</field1>
    <field2>2</field2>
    </row1>
    <row2>
    <field1>3</field1>
    <field2>4</field2>
    </row2>
    </statement>
    i have to map those fields in a RFC_response like :
    <RFC_response>(0..1)
    <field1>
    <field2>
    </rfc _response>
    Problem : I only need to send back to the rfc_response the last records of my StatementSelect_response in order to have the following message :
    <RFC_response>
    <field1>3
    <field2>4
    </rfc _response>
    How can i select only the last row of my records plz ?
    Thanks by advance

    VJ wrote:>
    > Hi,
    >
    > public void LastRow(String[] a,ResultList result,Container container){
    >
    > int len = a.length();
    > Result.addValue(a\[len-1\]);
    >
    > }
    VJ,
    Please don't confuse him. If you want to update the thread, let me leave it aside.Coz it shouldn't cause him trouble. Can u check a.length() is correct? it has to be a.length, isn't it?
    We all here to help others, not under any motivation of compete..
    Sorry, if I hurt you..
    raj.

  • INSERT works for only last record of the Internal table ...??

    I am trying to insert data from an internal table JTAB to a Databse Table
    in CRM. The name of the databse table in CRM is CRMD_PARTNER
    For this i first declared an internal table JTAB with same structure as that of
    the databse table CRMD_PARTNER
    DATA: BEGIN OF JTAB OCCURS 0,
         INCLUDE STRUCTURE CRMD_PARTNER,
          END OF JTAB.
    Then I filled my JTAB with the required entries. For filling the JTAB i am
    getting data from couple of other tables and filling the internal table JTAB
         loop at ktab.
    here i am filling values in JTAB and then i say APPEND JTAB.
            endloop.
         Till here every thing works well and my internal table JTAB has all values that
    I need to insert to the CRMD_PARTNER table. Also my JTAB has vales for all primary key fields.
    Now I write a condition like below.
    if not jtab[] inital.
    MODIFY CRMD_PARTNER from TABLE JTAB.
    COMMIT WORK.
    endif.
    Here comes the problem...once this code is executed and once program totally executes...
    i always see that only last record in JTAB is being inserted to the databse table CRMD_PARTNER.
    When i check in the debugger ..i see that the loop is being executed only once
    and the SY-TABIX of JTAB is being always set to the length of JTAB and
    that is why only last  record is being inseretd to the table CRMD_PARTNER.
    Now what should i do ..to insert all records of JTAB to CRMD_PARTNER table?
    is there a way i can restet the SY-TABIX and make the modify statement work for all records of JTAB?
    Finally i hardcoded the values in JTAB then i dont have any problem and all records of JTAB are being
    inserted into the database table.
    only if i am dynamically fetching the values into JTAB(by Putting in loop..endloop statements and
    pushing values to JTAB and APPENDING JTAB ) i have a problem .
    in this case also my JTAB is being correctly filled with values ..but when i try to
    insert theses values to CRMD_PARTNER with MODIFY stmt ..only always last record is being inserted.
    i tried with INSERT instead of MODIFY and i am getting runtime error.
    kindly pease help.
    Regards,
    Jessica Sam

    yes a@s i am really struggling from last 3 days.
    I actually want to create a sales order in CRM and want to
    assign ship to party for each line item in a sales order in CRM
    for that i used the standard bapi BAPI_BUSPROCESSND_CREATEMULTI and i am able
    to create an order successfully, but i see that the ship toparty
    that i give at header is being copied to each line item.
    but this is not what is expected.
    So finally i tracked in which table the ship to party gets stored in each line item
    and then tried to insert the records directly into databse. and it worked
    but only if i am hardcoding..but not when i am dynamically fecthing the values into JTAB for insertion,
    Can yoy help ..if you have any idea why insert/modify is processing only last record?
    any help will be highly appreciated.
    Regards,
    Jessica Sam

  • DTP transfers only less records to the target

    Dear all,
    I am using the data source 0PM_OM_OPA_1 to get the order planned v/s actual cost. In the PSA there are around 23,000 records - but when the same is transferred to the target (ODS) the records that are updated is only maximum of 130 records.
    I changed the update as full - but still only 130 records are updated. The transformation was checked and found that all relevant fields are mapped.
    Can anyone tell me what could be the probable cause for this behaviour?.
    Where should i check?
    Experts suggestion awaited.
    Regards,
    M.M

    Hi Haritha,
    Thank you very much for your useful information. I have given below the fileds that are available both in the data sorce and the data target - i could not understand which field variation is causing limited data transfer - can you help me?
    Data source fields.
    FISCVAR     Fiscal year variant
    FISCPER     Fiscal year/period
    KOKRS     CO Area
    AUFNR     Order
    VTYPE     Value Type
    VTDETAIL     Detail for valueT
    VTSTAT     Statistics ID
    VERSN     Version
    KSTAR     Cost Element
    SEKNZ     Sender/receiver
    RSPOBART     Partner (short)
    RSPAROBVAL     Partner IO val.
    VALUTYP     Valuation View
    MEASTYPE     Key Figure Cat.
    SWKPP     Proj. Plan Val.
    SWG     Amount
    SMEG     Consumption qty
    WAERS     Currency
    CURTYPE     Currency type
    MEINH     Unit of measure
    Data target fields.(key fields)
    Fiscal year
    Fiscal year variant
    Maintenance Order
    Maintenance plant
    Detailing the value type
    Statistics indicator for value type
    Version
    Key Figure Type
    Value Type for Reporting
    Unit of Measure
    Currency Key
    Out of total of 22,000 records only 7588 records are transferred.
    Regards,
    M.M

  • Limitation that only 1000 records can be included in the "IN" clause

    In RapidSQL we have a limitation that only 1000 records can be included in the "IN" clause - is there a way to give more than 1000 records so that it will reduce the execution time.

    Why do you need to list more than 1000 individual items in the first place? That's generally not a good way to go about building a query.
    You can always include a query that returns as many rows as you'd like in an IN clause, i.e.
    SELECT *
      FROM some_table
    WHERE some_column IN (SELECT some_column FROM some_other_table)So if you throw the thousands of values you want in the IN list into a table, you could then query the table in your IN clause.
    From a performance standpoint, of course, you may also want to look at the EXISTS clause depending on the relative data volumes involved.
    Justin

  • Want to display records for the specified month only

    Hi all,
    In my report I am displaying records for the specified month only.
    I am able to display it in range of the dates, but i want to display name of the month at the top of page.
    e.g.
    i am giving range like
    01.04.2008 to 30.04.2008
    then, it shoud display April, 2008.
    Thanks & Regards,
    Sandip Sonar

    Hi,
    Ru using alv grid?
    Use following FM to get month in words.
    and then using TOP-OF-Page event print the month.
    DATA X_MONTH(11).
    CALL FUNCTION 'CONVERSION_EXIT_LDATE_OUTPUT'
         EXPORTING
           INPUT         = SY-DATUM
         IMPORTING
           OUTPUT        = X_MONTH.
    Regards,
    Dhan

  • When updating to target only few records got added to the target

    When updating to target only few records got added to the target from the transferred recordsu2026what could be the reason?
    Edited by: MohanDP on Jun 28, 2010 7:44 PM

    Hi Mohan,
    When updating to target only few records got added to the target from the transferred recordsu2026what could be the reason
    There might be a routine in your Transformation which might be filtering few records(or)
    It is possible that you will have multiple records for one keyfield in PSA. But when you try loading the same to datatarget like Cube, the result will be added.
    For ex, say you have Profit center US00000593 in PSA with two rows with keyfigure(say some ABC) values 100 & -50.
    Then when you load the data to datatarget, you will have only one row in it with Profit center US00000593 & values for keyfigure ABC=50 (i.e 100-50=50). So most of the times we will be having added records less than transferred records.
    Hope it is clear!
    Regards,
    Pavan

  • Disabling the 'down arrow' key that takes me to the 2nd record. ?

    pressing the 'down arrow' key takes me to the 2nd record.
    well how do i disallow this...
    this is very funy and stupid also.

    I've also encountered the similar issue like this now in SQL*Form 3.0. If we have a 'down' trigger inside which we put 'null', it should not allow us to go to the next new record (at least I had ever experienced something like this in 6i forms).
    But now it will still go to the next new empty record even if I've already disabled that by including that trigger inside. Can anyone advise on this?

  • My 2nd generation iPod touch recognized the touchmic lapel microphone the first try.  I recorded a memo.  The second try it would not.  Any ideas?

    My 2nd generation iPod touch recognized the touchmic lapel microphone the first try.  I recorded a memo.  The second try it would not.  Any ideas?

    See:
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities
    The iPod backup that iTunes makes does not include synced media like apps and music.

  • Here is How to Edit clips of the same loop, which were recorded on seperate tracks, in the same way

    Whiteout conditions here in the northeast, it's a Blizzard!
    Hopefully this helps someone because I was banging my head against the wall trying to figure this out.
    This is for people who want to precisely loop (or edit in other ways) multiple clips in the exact same way, but that are on seperate tracks playing concurrently in Multi-track view, so for instance looping 3 different tracks recorded simultaneously from a drum machine and keeping the same exact placement of each track relative to each other when trying to get the loop right (or any other type of edit)
    It's all about how you switch between Edit view and Multi-track view, and you CAN'T group your clips before going to edit view, although this is counter-intuitive.
    The basic jist is simple, "Selections" in the timeline, transfer from Multi-Track to Edit View and Back to Multi-Track...but you most follow a certain procedure, here is the procedure:
    WARNING: THIS WILL ONLY WORK IF THE SELECTION IS OF ONE CLIP PER TRACK!!!  YOU CANNOT MAKE A TIMELINE SELECTION OF MULTIPLE CLIPS ON A TRACK AND HAVE THAT TIMELINE SELECTION TRANSFER TO EDIT VIEW, AS FAR AS I KNOW.
    In Multi-Track view:
    1) Switch the timeline to "Samples"
    2) Make a "Selection"  of the part you want to Loop and zoom all the way in to the start and end points to get the loop as precise as possible, if it's not perfect don't worry just get it as good as possible in Multi-track View, then in Edit View you can find the Zero-Crossing points.
    3) Make sure the clips you want to edit are NOT GROUPED AT THIS POINT
    Here is the part that got me - AFTER making your Selection in Multi-Track view - you have to go to Edit view in a certain way, so that you don't de-select your selection:
    WARNING: Do NOT Double-Click the clip/file you want to Edit!!!  Do not double left-click anywhere in MultiTrack View or you will de-select your selection.
    note: You have to edit the files one at a time in Edit View, but if you go there using the correct procedure, you can transfer your selection you made in Multi-Track view.
    4) Decide which clip is the hardest to one to loop (usually it's an instrument sample rather then a drum loop but you never know)
    5) Instead of double-clicking a clip to Edit it, HOLD CONTROL AND LEFT CLICK THE CLIP YOU WANT TO EDIT ONE TIME, this will select the clip without de-selecting your TIMELINE SELECTION.
    6) Now that the clip you want to edit is selected, You want to go to Edit View USING ONE ROUTE ONLY --> Simply click "Edit View"
    ^Make sure you Timeline selection is still in place and hasn't moved do to user error (e.g. accidentally clicking the timeline or shift-clicking and moving the selection by accident <--- which I do by accident when attempting to control+click)
    7) If you followed the instructions exactly, You are now in Edit View with the selected clip along with the timeline selection you selected in Multi-Track view, showing it's exact timeline location at the bottom which is relative to the Multi-Track view
    IMPORTANT: YOU MUST BE CAREFUL NOT TO DE-SELECT THE TIMELINE SELECTION, AS THAT WILL DE-SELECT THE TIMELINE SELECTION IN BOTH VIEWS.
    8) If you are having trouble looping without artifacts, To find the zero crossing points either go to edit > zero crossings or use shift+h or j for left edge, shift+K or L for right edge of the loop.
    9) if you must adjust it manually to fine tune then make sure you shift click the file as not to de-select the entire timeline selection.
    10) Once you have a perfect loop, zoom all the way in to the start and end points, and take note of exactly where the start and end points of the loop are located within the timeline.
    11) Go back to Multi-track view
    12  To trim the clips to to the exact timeline selection: Hold control+left_click each clip that needs adjusting one-time, then right click > group clips
    13) BEING CAREFUL NOT TO DESELECT YOUR TIMELINE SELECTION, select your grouped clips by HOLDING CONTROL and clicking on any of the clips
    14) Point to the start or end one of the clips, when you see the icon showing arrows going either way, right click and drag your clips to roughly match up with the timeline selection, then zoom in further and adjust the clip start and end points to match up exactly with the timeline selection start and endpoints.
    WARNING: IF YOU ACCIDENTALLY CLICK WHEN THE DOUBLE ARROW ICON IS NOT SHOWING, YOU WILL DE-SELECT YOUR TIMELINE SELECTION AND YOU WILL HAVE TO START THIS ENTIRE PROCESS ALL OVER AGAIN.
    15) Verify that your loop is looping correctly, in some tricky instances you may have to find different zero crossing points on the initial file you edited in edit view by repeating the above procedure, but this is unusual, although it just happened to me.
    16) If everything went correctly, now all your clips on seperate tracks are looped in the exact same way, if you want to destructively edit each file down to it's loop size, you can keep your timeline selection and control+click a file then click "Edit" (the one in the toolbar of course), one by one destructively editing each file.
    17) to extend the loop either set as a loop under "loop properties" and then just drag each file the number of times you want it to loop, or do it my way and right click the clip > duplicate and set the number of times to duplicate and whether to have them back to back or spaced, this is the quickest method for me.
    Addendum: IF you have 2 files selected and click "Edit" to go to Edit view, it will give you the file of the clip you selected first, not 2nd. You must then go back to MT view, de-select the clip you selected first, then de-select the clip you want to edit, then RE-select the clip you want to edit.
    -Also, you don't HAVE to group the files as I did in step 12, you can drag the edges of the clips to the timeline selection one by one, I just find it easier to group them after you have set the loop on one of the files in Edit View.
    -Remember, you can't select the files one by one and have the timeline selection transfer to Edit View IF you group the files prior to going into Edit View.
    GOT ALL THAT?  I sure as hell don't know if I do ...
    All this could be easily avoided if Audition would simply let you edit multiple files simultaneously in Edit View relative to their position on the Multi-Track timeline.
    I'd also like to know why when you do a full zoom in, neither the selection or the clips will snap to the ruler points, only to just before and after the ruler points on the timeline.
    And also (and this may be my fault) I don't understand why when the tempo of my session is 89.8bpm, the timeline under the tracks says "90bpm" why does it round it off..?
    Isn't that inexact and couldn't that present problems with syncing loops?  idk I could be wrong I can't get my head around these issues because of lack of knowledge on the subject, if someone could shed some light that would be great.

    correction needs to be made to step #14, I typed:
    14) Point to the start or end one of the clips, when you see the icon showing arrows going either way, right click and drag your clips to roughly match up with the timeline selection, then zoom in further and adjust the clip start and end points to match up exactly with the timeline selection start and endpoints.
    Here is the correction, THE CORRECTED PARTS ARE CAPITALIZED:
    14) Point to the start or end OF one of the clips, when you see the icon showing arrows going either way, LEFT-CLICK and drag your clips to roughly match up with the timeline selection, then zoom in further and adjust the clip start and end points to match up exactly with the timeline selection's start and end points.
    Another Correction:
    Originally read:
    Addendum: IF you have 2 files selected and click "Edit" to go to Edit view, it will give you the file of the clip you selected first, not 2nd. You must then go back to MT view, de-select the clip you selected first, then de-select the clip you want to edit, then RE-select the clip you want to edit.
    Here is the the correction, CORRECTED PARTS ARE CAPITALIZED:
    Addendum: IF you have 2 files selected and click "Edit" to go to Edit view, it will give you the file of the clip you selected first, not 2nd. IF YOU WANT TO EDIT THE 2ND FILE YOU SELECTED IN MULTI-TRACK VIEW, You must go back to Multi-track view, de-select the clip you selected first, then de-select the clip you want to edit, then RE-select the clip you want to edit, THEN CLICK "EDIT" TO GO TO EDIT VIEW.

  • Tracking only Error records from Batch file in BPEL process

    Hi,
    I am reading file of 1000 records from file adaptor and debatching into two instance of each 500 records. And using invoke insert operation writing into database.
    The first batch of 500 records processed successfully and written into database custom table.
    The second set of 500 records created warning instance with some error message and nothing is written to database from second set.
    The error is due to some wrong data in one row of second set of 500 records. Due to that single row error, the remaining 499 got rejected and nothing from second set is inserted into database.
    Do we have control on that only one record of second set(500records) and BPEL process should write remaining 499 records to database.
    Please help me on this issue. It would be great help. Thanks inadvance.
    Waiting for your replies.
    Thank you.
    Edited by: PraveenT2 on May 13, 2009 4:27 AM

    Hi james,
    Below is the schema file using for reading file
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
    targetNamespace="http://TargetNamespace.com/readService"
    xmlns:tns="http://TargetNamespace.com/readService"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified" nxsd:encoding="ASCII" nxsd:stream="chars" nxsd:version="NXSD"
    *nxsd:uniqueMessageSeparator="${eol}">*
    <xsd:element name="Root-Element">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="root" minOccurs="1" maxOccurs="unbounded">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="C1" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;">
    </xsd:element>
    <xsd:element name="C2" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;">
    </xsd:element>
    <xsd:element name="C3" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;">
    </xsd:element>
    <xsd:element name="C4" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="${eol}" nxsd:quotedBy="&quot;">
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    *and in bpel .xml file edited property for rejected file*
    activationAgent
    className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent"
    partnerLink="readService">
    <property name="rejectedMessageHandlers">
    file://C:/Initiatives/Employee/RejectedRecords
    </property>
    </activationAgent>
    The Issue i am facing is when i provide the datafile with all invalid values then process didn't create instance but made entry of all invalid record into directory path specified in bpel.xml while setting rejectMessageHandler property.
    But when i provide mix of valid and invalid records of file, then bpel process created instance with warning status.
    the file i was provided is :
    10,veer,10000,12
    20,james,2000,10
    Veer|name|Test
    Veer|name|Test
    Veer|name|Test
    10,file,10000,12
    20,error,2000,10
    I was expecting 1st,2nd,6th and 7th row should be processes and invalid 3rd,4th and 5th rows should get written into rejectedMessageHandlers folder set at bpel.xml. But instance has created and treated whole invalid rows + 10 as first column for 6th row as pasted below.
    <ns0:eno>Veer|name|Test
    Veer|name|Test
    Veer|name|Test
    10
    </ns0:eno>
    <ns0:ename>file</ns0:ename>
    <ns0:sal>10000</ns0:sal>
    <ns0:dept>12</ns0:dept>
    Nothing has written into rejectedMessageHandlers folder set at bpel.xml.
    Can you please help me on this issue. Thank you very much.
    Edited by: PraveenT2 on May 13, 2009 10:33 PM
    Edited by: PraveenT2 on May 13, 2009 10:34 PM
    Edited by: PraveenT2 on May 13, 2009 10:48 PM

  • I have 2 macbooks each with an account for me and one for my wife. I use one Macbook logged in with my account and my wife uses the other Macbook only loged in on her account. We both make regular time-machine back-ups each on a separate external disk

    I have 2 Macbooks each with an account for me and one for my wife. I use one Macbook logged in with my account and my wife uses the other Macbook only logged in on her account. We both make regular time-machine back-ups each on a separate external disk. Is it possible to update her account on my macbook using her external disk without overwriting my stuff on the same Macbook and vice versa?

    Time Machine does not do individual accounts. It records the complete drive. So if you were to use her TM backup on your Mac it would make your Mac just like hers. Both yours and her account on your MAC.
    Just copy the missing files over from her Mac to yours. If there are differennt programs on each then they would need to be installed on both.

Maybe you are looking for