How to retrive the new reocrds which are posted at the time of loading data

hi experts
i have a doubt
if we are performing a load operation at the time of loading if client posts some new records related to the current load is those records will be transferred to the target with the current load or we have to load them at the time of delta load, what will be the problems occurs at this situation
also we are having an option in RSA3 ---BLOCKED ORDERS is it going to helpful for this situation
also i found some answer like at the time of loading we need to lock the base tables so that the new data will be blocked is it the solution for the above scenario
thanks in advance

Hi Lokesh,
Not clear if you are referring to posting of records during an initialization activity or normal delta, full loads. In case of an initialisation for a LO Cockpit datasource you cannot allow any postings to be done in the source (ECC) system. In case of normal delta, full loads, the changes are stored in tables/extract structures/delta queues and are not affected by the changes in the source system during that time. The changes done during that time are captured in the next delta run.
Hope this helps!
You may want to refer to blogs from Roberto on the extraction methods and their operations.
Regards,
Kunal Gandhi

Similar Messages

  • Why we cannot view the move orders which are created by the other user?

    Hi,
    Can any one explain me the below point.
    Why we cannot view the move orders which are created by the other user.
    Ex: From ABC user I have created a Move Order: 123456 in M1 Org If I login to the other user BCD I cannot view the same move order in the same ORG i..e M1 ORG.
    But we can perform the transact move orders for move orders which is created by the other user.
    What could be the reason? Why the system is restricting this? Is this the standard functionality of oracle?
    Can any one explain?
    Regards,
    Kv.

    This is due to a security function which allows to see the move orders created by the user only.
    Please refer to the meta link document ID 280131.1 for detailed description.
    I have tried these steps in one of my test instances long back and was able to see move orders created by other users.
    Thanks
    Karthik.

  • How to delete images from folder which are not in the database

    I am created windows form
    i wont to delete images from the folder where i have stored images but i only want to delete those images which are not in the data base.
    i don't know how it is possible . i have written some code
    private void button1_Click(object sender, EventArgs e)
    string connectionString = "Data Source";
    conn = new SqlConnection(connectionString);
    DataTable dt = new DataTable();
    cmd.Connection = conn;
    cmd.CommandText = "select * from tbl_pro";
    conn.Open();
    SqlDataAdapter da = new SqlDataAdapter(cmd);
    da.Fill(dt);
    int count = Convert.ToInt32( dt.Rows.Count);
    string[] image1 = new string[count];
    for (int i = 0; i < count; i++)
    image1[i] = dt.Rows[i]["Image1"].ToString();
    string[] image2 = new string[count];
    for (int i = 0; i < count; i++)
    image2[i] = dt.Rows[i]["Image2"].ToString();
    var arr = image1.Union(image2).ToArray();
    string[] arrays;
    String dirPath = "G:\\Proj\\";
    arrays = Directory.GetFiles(dirPath, "*", SearchOption.AllDirectories).Select(x => Path.GetFileName(x)).ToArray();
    int b= arrays.Count();
    for (int j = 1; j <= b; j++)
    if (arrays[j].ToString() != arr[j].ToString())
    var del = arrays[j].ToString();
    else
    foreach (var value in del) // ERROR DEL IS NOT IN THE CURRENT CONTEXT
    string filePath = "G:\\Projects\\Images\\"+value;
    File.Delete(filePath);
    here error coming "DEL IS NOT IN THE CURRENT CONTEXT"
    I have to change anything .Will It work alright?
    pls help me
    Sms

    Hi Fresherss,
    Your del is Local Variable, it can't be accessed out of the if statement. you need to declare it as global variable like below. And if you want to collect the string, you could use the List to collect, not a string.  the string will be split to chars
    one by one.
    List<string> del=new List<string>();
    for (int j = 1; j <= b; j++)
    if (arrays[j].ToString() != arr[j].ToString())
    del.Add(arrays[j].ToString());
    else
    foreach (var value in del)
    string filePath = "G:\\Projects\\Images\\" + value;
    File.Delete(filePath);
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I want to grab the application files which are deployed on the oracle 9i

    I want to know the physical path of a java application deployed on server.
    I am having the admin console access to the server. But i don't have the login to the physical box. I am pretty much sure this is the only application deployed on this server. I don't have any clue how it is deployed under a [b]war or ear format.
    I don't know any thing about the oracle application server. Can any body help me out under which path these j2ee applications will be deployed.
    "/u01/app/oracle/ias_app"
    Thanks
    Tara

    Hello Tara,
    Unless the deployment directories have been changed the default location for the application to be deployed is:
    $OH\j2ee\<OC4J_Name>\applications\<app_name>
    $OH\j2ee\<OC4J_Name>\application-deployments\<app_name>
    You can have limited access to the applications through the console via the Applications link.
    Hope this helps.
    Deepak

  • HT1349 in iphone 4s did both the speakers work which are placed at the bottom

    hey i want to confirm do both the speakers of i phone 4s work or only one of them works

    There is only 'one' speaker at the bottom. The one on the lower right is the speaker, the one on the lower left is the microphone disguised to look like a speaker

  • Query to find AP Invoices which are posted to GL

    Hi,
    I wanted to find the AP invoices which are posted to GL, any help with the query please?
    Thanks,
    Genoo

    Hi;
    For your issue i suggest close your thread here as changing thread status to answered and move it to : All Places > Developer > English > E-Business Suite > Financials >         Discussions
    Regard
    Helios

  • How to display the contents of the database values which are retrived.

    how to display the contents of the database values which are retrived in servlets and i am able to display the contents in the servlets and if forward to jsp using requestdespatcher,the values are to be shown in jsp one below the other.please suggest me in these........the servlet code is as shown
    while(rs.next()){
                        buffer.append(rs.getString(1));
                        buffer.append(rs.getString(2));
                        buffer.append(rs.getString(3));
                        buffer.append(rs.getString(4));
                        buffer.append(rs.getString(5));
                        buffer.append(rs.getString(6));
                        buffer.append(rs.getString(7));
                        buffer.append(rs.getString(8));
                        buffer.append(rs.getString(9));
                        buffer.append(rs.getString(10));
                        request.setAttribute("result1",buffer);
                        RequestDispatcher rq=request.getRequestDispatcher("/results.jsp");
                        rq.forward(request,response);
    in jsp iam using the getAttribute to retrieve the values as shown
    <% StringBuffer sb=(StringBuffer)request.getAttribute("result1"); %>
    <%= sb %>
    but getting the results in the stretch,i need to display the result one below the other.

    if you load it all into the buffer that is going to be very difficult. I would suggest loading it into some sort of collection. I like using an ArrayList.
    Then pass the arraylist.
    you will then on the jsp iterate through the arrayList using what every you want.. el, logic tags, scriplets.
    so something like
    ArrayList arrayList = new ArrayList();
    while(rs.next()){
    arrayList.append(rs.getString(1));
    //or possibly an arrayList of String arrays
    //maybe using nested for loops.  Inner for loop adds result to string[] then //outer adds string[] to arrayList.
    //can be done any number of ways based on your expected result set.

  • Itunes was reinstalled on my MacAir and in the process my playlists disapeared. How can I sync theses playlists which are still on my Ipod back to the iTunes library? PS: these are not purchased from iTunes, they are my own cd's.Thanks.

    Itunes was reinstalled on my MacAir and in the process my playlists disapeared. How can I sync theses playlists which are still on my Ipod back to the iTunes library? PS: these are not purchased from iTunes, they are my own cd's.Thanks.

    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities

  • HT1329 I lost my iTunes in my old computer. How do I transfer my music files in my ipod (old generation) to the new iTunes (which is currently blank) set up in my new computer?

    I lost my iTunes in my old computer. How do I transfer my music files in my ipod (old generation) into the new iTunes (which is currenelty blank) set up in my new computer. Thanks for your help.

    You cannot transfer song files from iPod to computer using iTunes (except for songs purchased from the iTunes Store).  However, there are third-party methods and utilities that can transfer from iPod to computer.  If you do a Google search on something like "ipod transfer," you should get some links.
    Once the song files are on your computer's hard drive, you can add them to your iTunes library.
    NOTE:  You can also re-download previous song purchases from the iTunes Store at no cost, from the iTunes Store Purchased screen.

  • How can i sync my iphone with itnes on a new pc.  when i tried to sync it said it will erase the contents on my iphone to sync with the new pc which has no contents

    my old pc was running low in memory and i don't have enough space to back up in order to instal iOS5.  so i got a new pc, installed itunes on it but when i tried to sync my iphone on the new pc, it said it'll erase all contents on my iphone and sync with the new pc which has no contents. it says iphone can only sync with one machine. 
    can you pls help

    Syncing to a new iTunes library or computer will erase your phone. Only if you back up your phone manually before syncing, you can restore your device from that backup again. A manual backup does not include the sync process.
    Do this:
    Disable autosync in iTunes, connect your phone to your new computer and right click on it in the device list and choose backup. iTunes will backup your device without syncing.
    Transfer your purchases the same way, choosing "transfer purchases" this time.
    When you connect your phone for the first time, all media content will be erased. But you can restore your settings and app data from your manual backup afterwards.
    Don't forget to set up at least one contact and event on your new computer to be able to merge calendars and contacts when you sync the iPhone for the first time.
    Music is one way only, from the computer to your device, unless you bought the songs in iTunes and transferred your purchases.
    There is 3rd party software out there, but not supported by Apple, see this thread: http://discussions.apple.com/thread.jspa?threadID=2013615&tstart=0
    About backups and what's saved:iTunes: About iOS backups
    How to back up and restore:http://support.apple.com/kb/HT1414
    How to download apps for free again:http://support.apple.com/kb/HT2519
    Saving other data is also described here. How to back up your data and set up as a new device
    You can also back up iTunes and restore it on your new computer How to back up your media in iTunes , but the iPhone will be erased anyway during the first sync.

  • I HAVE BEEN TRANSFERRING MY ITUNES/IPOD TO A NEW COMPUTER WHICH HAS ALL WORKED EXCEPT MY OLD LIBRARY, PLAYLISTS ETC SHOW UNDER MY IPOD ON THE NEW COMPUTER BUT NOTHING IS IN THE NEW LIBRARY - HOW DO I GET IT THERE?

    How do you get everything off the ipod into Library on new laptop & free up the space that was used when transferring (using ipod as hard drive to move over to new computer)? Also when try to sync music a box pops up saying are you sure as everything on the ipod will be removed & replaced with the items in the library but at the moment there's nothing in the library so don't want to lose everything?!  Thanks for your help

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have iOS devices and haven't moved your contacts and calendar items across then you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • My laptop was stolen and with it my itunes, all of my music (including non-apple downloaded content) is still on my iphone 5, how can I transfer the files to my new laptop which is authorised to the same apple ID?

    my laptop was stolen and with it my itunes, all of my music (including non-apple downloaded content) is still on my iphone 5, how can I transfer the files to my new laptop which is authorised to the same apple ID?

    See this user tip for recovering the media from the iPhone: https://discussions.apple.com/docs/DOC-3991

  • How can we capitalize the PR/PO, which are already booked in cost center?

    We are creating a capital Project for our department.  We have the structures ready and finalized with the budgets. But, the department has already done some commitments and expenditures in their cost center .Now, this expenditure and commitment values needs to be reflected in the report, so that correct values of assigned and available should be updated.
    1) Pls. suggest a process using which we can transfer this amount. Is this to be done by an FI entry or else we need to commit using sanction request?
    2) How can we capitalize the PR/PO, which are already booked in cost center?

    Hi,
    As we know the Contract is an Outline agreement for Quantity or Value for a particular Period with vendor.
    Without mentioning Plant also we can make contract for the Purchase organisation level for particular Material for the entire period
    Where as while creating PR  -it is an Indent for the material requiement for the specific Plant so when you refer Agreement inthe PR creation time System will ask you how much quantity to what plant you want to place indent. where as In PO  it ia an legal document so when you refer Agreement it will take all the details from Contract
    i think you are clear with my points
    With regrads
    Shrinivas gangoor
    Edited by: Shrinivas Gangoor on May 22, 2009 2:53 PM
    Edited by: Shrinivas Gangoor on May 22, 2009 2:54 PM

  • HT1386 I have a new computer with windows 8.1.  I want to add the 52 Gb of music now on my old ipod to itunes on the computer.  I don't want to wipe out the files on the ipod by syncing to the new computer which has no music files on it yet!  How can I do

    I have a new computer with windows 8.1.  I want to add the 52 Gb of music now on my old ipod to itunes on the computer.  I don't want to wipe out the files on the ipod by syncing to the new computer which has no music files on it yet!  How can I do this?

    Apparently I wasn't clear.  The music on my ipod is but a subset of all the music on my external hard drives.  I want to import only the songs and playlists from my existing ipod into the itunes library on my new computer, which currently has no music or playlists.  How can I do this?

  • How can i find all included pictures in the Online-Library which are not in a album?

    Hi
    I use Adobe Photoshop Elements 13 with (Revel). My question ist how can i find all included pictures in the Online-Library which are not in a album? I would like only to have pictures in Library which are included in a online album.

    Hi there,
    I'm afraid I don't quite understand your question. All images are in your Library and only those you specifically select from that Library would be in an Album. What platform are you using? Revel Mac, Elements, web browser, etc?
    Here is a link with some helpful information:
    FAQ: File Basics: How do I Upload, Download, Share, and Delete files in Revel?
    Thank you,
    Glenyse

Maybe you are looking for