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.

Similar Messages

  • Where to see activities, which are created for the campaign with target group

    Hi
    I have created a Communication Method in SPRO -> CRM -> Marketing -> Marketing Planning & Campaign Management -> Campaign Executtion - Define Communication Method : Activity has been configured
    Activities are not appearing after creation of campaign with target group.
    Where to see activities, which are created for the campaign with target group?
    Regards
    Hamid

    Hello,
    alternatively to check  table CRMD_ORDERADM_H directly you can use the related transactions search for the campaign:
    This should bring all activities generated by the campaign. If this is empty first check the job log of the campaign execution job again:
    This gives information if any target group members have business transactions created. If the log does not contain the required information you can debug from SM37. The business transactions (activities, leads, sales orders) are generated from function module CRM_MKTTGGRP_PROC_CREATE.
    best regards,
    Johannes

  • Want to see the sales order which is created with reference

    Hi Gurus,
    I created a sales order with reference to a contract. I forgot the sales order number and contract number..
    how can i search my sales order which is created w.f.t acontract.we dont have the access for VA42, VA45.
    cHEERS,
    Sumith

    Dear Sumith
    Go to VA05, click your mouse on "Further sel.criteria", so that you will have some options to choose like "Sales Document Type", "Created by".
    You can choose either of these and execute so that it will display the respective document.
    thanks
    G. Lakshmipathi

  • 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

  • Why the objects of sysman are created with the data type varchar2 CHAR

    Hi,
    I have an environment with the following properties,
    NLS_LENGTH_SEMANTICS BYTE
    NLS_CHARACTERSET AL32UTF8
    After I have created the db control repository, I find the data type of the sysman's objects are
    VARCHAR2 (64 CHAR)
    Why?

    NLS_LENGTH_SEMANTICS does not apply to tables in SYS and SYSTEM. The data dictionary always uses byte semantics.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams127.htm

  • 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

  • Cant get list of files from a folder (even though the folder and files are created with the same app)

    Ok so each character rolled with my app gets saved as an html file in a folder i create on the sdcard called RpgApp
    the code to do this is 
    private async Task saveToHtmlCharacter(string name)
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    StorageFolder sdcard = (await externalDevices.GetFoldersAsync()).FirstOrDefault(); //Windows.Storage.ApplicationData.Current.LocalFolder;
    var dataFolder = await sdcard.CreateFolderAsync("RpgApp",
    CreationCollisionOption.OpenIfExists);
    var file = await dataFolder.CreateFileAsync(name+".html",
    CreationCollisionOption.ReplaceExisting);
    using (StreamWriter writer = new StreamWriter(await file.OpenStreamForWriteAsync()))
    writer.WriteLine("<html><head><title>Character File for " + z.charNameFirst + " " + z.charNameSecond + "</title></head><body>");
    //trimed for the post
    now this as i say works perfectly and i can confirm that the files show up in the "RpgApp"folder
    now the next step is to have the app read the names of each of those html files and create a seperate button for each one named for the filename and with the filename as content (later i will link them up to load the html file they are named for in a webbrowser
    panal)
    here is the code that *should* do that
    private async Task readFiles()
    z.test.Clear();
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    StorageFolder folder = (await externalDevices.GetFolderAsync("RpgApp"));
    IReadOnlyList<StorageFile> fileList = await folder.GetFilesAsync();
    //z.test.Add("dummy");
    foreach (StorageFile file in fileList)
    z.test.Add(file.Name);
    public async void buttonTest()
    await readFiles();
    CoreDispatcher dispatcher = CoreWindow.GetForCurrentThread().Dispatcher;
    await dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
    foreach (string name in z.test)
    Button button1 = new Button();
    button1.Height = 75;
    button1.Content = name;
    button1.Name = name;
    testStackPanal.Children.Add(button1);
    now i say should as what i get is an error of "A first chance exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.ni.dll" (2 of them in fact one after another)
    more detailed error is at http://pastebin.com/3hBaZLQ9
    now i went through checking line after line to find the error and line that causes it is:
    StorageFolder folder = (await externalDevices.GetFolderAsync("RpgApp"));
    in the readFiles method
    i checked to make sure the case is right etc and its spot on, that IS the folder name, and remember my app creates that folder and creates the files that are inside that folder (and only files my app creates are in that folder) so it should have access
    im 100% stuck its taken me all day to get the files to save and now i cant get them to list correctly
    I have tested the button creation function with fake list data and that worked fine, as i say the error is when i tell it to look at the folder it created
    all help most greatfully recieved

    this was actually solved for me on another forum thread 
    async Task<bool> continueToReadAllFiles(StorageFolder folder)
    if (folder == null)
    return false;
    if (folder.Name.Equals("RpgApp", StringComparison.CurrentCultureIgnoreCase))
    var files = await folder.GetFilesAsync();
    foreach (var file in files)
    test.Add(file.Name);
    return false;
    var folders = await folder.GetFoldersAsync();
    foreach (var child in folders)
    if (!await continueToReadAllFiles(child))
    return false;
    return true;
    public async void buttonTest()
    test.Clear();
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    var folders = await externalDevices.GetFoldersAsync();
    foreach (var folder in folders)
    if (!await continueToReadAllFiles(folder))
    break;
    //.... commented out
    ...now i say solved this is more a workaround...but it works.
    I would love to know why we cant just scan the RpgApp folder instead of having to scan the whole dc card and disregard all thats not in the RpgApp folder

  • 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

  • I just upgraded my old versionj 3 of photoshop elements to v13  when I import photos they are not imported in the same order they are mixeds up

    hi can I have a reply to above question: I just upgraded my old versionj 3 of photoshop elements to v13  when I import photos they are not imported in the same order they are mixeds up

    In the documents screen - sorry, new to this so not sure if that's the right terminology... Basically the screen showing all documents, if you drag down, there should be two options at the of of the page: Date and Name. Select Name and your list should now be in alphabetic order.
    Hope that helps.

  • Contact persons which are created in ECC but not replicated as  employee

    Dear Experts,
    Where can i find the contact persons which are created in ECC but not replicated as  employee in the CRM.
    For example i created the 10000 personal no in that 800 should replicate to the CRM from  ECC but only 600 is replicated and  remaining 200 i have to find in the ECC to replicate again running PFAL.
    If i have to down lode and compare in excel please provide the details. in which tables i have to down load in ECC and CRM which what input.
    Best Regards,
    Siva Anjith

    Dear Gurus,
    Can you please help to resolve my replication issue.
    Best Regards,
    Siva Anjith

  • How to find the objectslist with username, who create all the Objects in List?

    I have the username and how can I get the objects, which are created by the User.
    Thanks

    Hi,
    Below is one approach.
    E070 table --> AS4USER = Usename --> Get the TR/Task Numbers -->
    E071 table --> TRKORR = TR/Task Number from E070 --> All objects under TR will be fetched.
    Regards
    Gangadhar

  • I have a new Apple TV which is working fine except that I cannot access .mov files which are in my iTunes Library. How can I get to these? I can run them on my computer and select Apple TV on the screen, but the Apple TV goes to a black screen

    I have a new Apple TV which is working fine except that I cannot access .mov files which are in my iTunes Library. How can I get to these? I can run them on my computer and select Apple TV on the screen, but the Apple TV goes to a black screen

    Mov is a container format, you'd need to look at the codec used by the movie file inside the container to know whether it will work with the Apple TV or not.

  • When burning pictures to a disc why won't they burn in order, they are being viewed randomly ?

    when burning pictures to a disc why won't they burn in order, they are being viewed randomly ?

    What order?
    Most likely it's the order on the Disk, not the Name, or other way shown.
    In Column View>View>View Options, here's the same folder shown Sort by 2 different ways...
    Name...
    .DS_Store
    .localized
    500GB.jpg
    00008641_english.pdf
    crop0001.jpg
    crop0002.jpg
    crop0003.jpg
    crop0004.jpg
    crop0005.jpg
    crop0006.jpg
    crop0007.jpg
    crop0008.jpg
    crop0009.jpg
    crop0010.jpg
    crop0011.jpg
    crop0012.jpg
    DotMatrix
    iChat Icons
    Sample Album
    Scan.jpeg
    vuescan.ini
    vuescan.log
    Date Modified...

  • I cannot view rented movies (purchased through itunes) on my iPad2 in-flight

    I cannot view rented movies (purchased through itunes) with the Video app on my iPad2 while flying. On a hunch, I purchased in-flight wifi and only then could I watch my rentals. What gives? Any suggestions on how to avoid paying for in-flight wifi is appreciated.

    I don't think that he waited a day.  From the wording, I concluded that he waited only minutes (during take-off).
    I recall seeing this issue before.  Apparently there is an issue related to copyright protection with some movies.  I stopped flying when I retired so I didn't pay too much attention to the problem.  Perhaps a search of the forum will shed more light.

  • The ipad won't sync some photos, saying the file can't be read by the ipad, however it will sync some photos taken at the same time which are the same size and file type.  Why does it reject some and accept others?

    The ipad won't sync some photos, saying the file can't be read by the ipad, however it will sync some photos taken at the same time which are the same size and file type.  Why does it reject some and accept others?

    Hi there. I'm having the same problem: my iPad won't import some photos from a folder, saying that they can't be read. They are all JPEGS and some photos taken at the same time have synched fine, but out of a folder with 200 photos, it only lets me synch 37. I'm synching albums created via Photoshop Elements 6, which has worked fine until now.
    I've tried deleting all photos and re-synching, and have also deleted the iPod Photo Cache, but it hasn't made a difference.
    The iPad auto-updated to the latest version of iTunes, so maybe that's what's causing it?
    Any advice gratefully received!

Maybe you are looking for

  • Is there a way to create file for ebooks and print?

    Hi folks, I have been looking around online for information on how (or even if it's possible) to set up book on InDesign that is suitable for producing a print-ready PDF and also being suitable for producing epub and/or mobi files for submission to A

  • "Source used" item best practice

    Hello, How can I configure an item with source used "Always, replacing any..." and source type="Database Column" and STILL not loose the entered value every time the page comes back (items are by default repopulated with DB column values, which make

  • New Square Stand Card Reader - Does it work in Australia?

    I'm in Australia but wanting to buy the new Square Stand (card reader) and wondering if it will work in Australia? This would be a great way to avoid eftpos machine contracts!

  • Crashes on most webpages, started with youtube.

    Link: https://crash-stats.mozilla.com/report/index/c406e1e5-8ea6-40ff-93ba-832322131122 Firefox seems to crash at random and frequently. Youtube will commonly crash firefox after a moment or two. I'm also experiencing issues with a few other random a

  • When I attempt to start my CyberLink YouCam, I get the error message that it cannot find a webcam

    When I attempt to start my CyberLink YouCam, I get the error message that it cannot find a webcam or that I need to make sure my webcam is turned on.  I see nothing in my documentation about how to turn on the webcam which is included with my laptop.