How to automatically identify which work rep is used

Hi,
does anybody knows how to identify in a treatment step which work repository is used?
Thanks.

Hi Ramin,
the work around is use F1 and look at the table that contain the work center.
For example :
I got logical link, I want to find out which Work Center Group that contain logical link.
I'll put F1 in the work center group, I got the view and drill down to find out the table inside the view. I got table CRMC_UI_WCLG_A.
Hope it's help,
Lina

Similar Messages

  • How to identify Which function modules are used in the planning area?

    Hi all,
    there are couple of function module derviation is used to derive the calendar year, month, fiscal period etc.
    But how to identify which function module is used in which planning area?
    I cant find out from the where used list from function modules?
    Thanks
    pooja

    Hi Pooja,
    Go to characteristic relationship tab,click on detail icon on extreme left of the derivation,there you will get the name and the details of function module used for derivation.
    Regards,
    Indu

  • HOW i can identify  which instance is associated with which Listener

    Hi all,
    i created one DB instance. suppose named as "B". but there is already another DB instance present. Named as "A".
    Then i created one listener for DB instace "B".
    Now my Que. is that HOW i can identify which instance is associated with which Listener,.
    2) if i create listener then a service also created. if i stopped that service and then can i fire query OR Login again, WHAT will be the expected result.
    I tried by asking people for my answer. but not satisfied.
    Please Help me For this.
    Thanks in Advance

    856376 wrote:
    i want to start my carreer in DBA.
    In what manner i ahve to prepare my self.
    Your guidance will help me lot
    Thank youLike everything else, the answer is "it depends".
    What is your background and experience with computers, networks, operating systems, programming languages?
    What are you currently doing?
    What formal and or on the job training have you had?
    As Aman said, build yourself a test system and play with it. You can do this at no cost by ...
    1) download and install VMplayer (vmware.com). It is legally free. For an investment in your career of about US$185, you can buy VMworkstation, which has the same fundamental capability plus some nice management features.
    2) download and install Oracle Enterprise Linux (oracle.com). It is legally free. If you want a support contract, you pay for that.
    3) using (1) and (2) create a virtual linux server
    4) download and install Oracle Enterprise edition database (oracle.com). It is legally free for personal eduction.
    5) install (4) on (3).
    Beyond the above questions I have some boilerplate replies that fit here . . .
    if people want to be professionals in ANY field, the first knowledge they need to acquire is how to locate AND USE+ the fundamental reference materials for that profession. And the most important trait, the one for which they are really hired, is the ability to do independent research, and having a modicum of curiosity that would drive one to do that research. We don't mind helping newbies, and even the most experienced person on this board will run into something they are not familiar with, or occasionally just require a second set of eyes to look at something. But a professional+ needs, above all, a willingness and capability to check the docs. A professional isn't necessarily someone who has all the answers at their fingertips or has a full understanding about every arcane subject in their field. It certainly isn't someone who has an encyclopedia full of memorized answers but little understanding of how it all fits together. It's someone who knows where to find the answers when needed, how to recognize them when he sees them. It's less about knowing than it is about attitude. Everything you asked can be answered in the Oracle Concepts Manual at tahiti.oracle.com. You should bookmark that site.
    =================================================
    Learning how to look things up in the documentation is time well spent investing in your career. To that end, you should drop everything else you are doing and do the following:
    Go to tahiti.oracle.com.
    Drill down to your product and version.
    <b><i><u>BOOKMARK THAT LOCATION</u></i></b>
    Spend a few minutes just getting familiar with what is available here. Take special note of the "books" and "search" tabs. Under the "books" tab you will find the complete documentation library.
    Spend a few minutes just getting familiar with what <b><i><u>kind</u></i></b> of documentation is available there by simply browsing the titles under the "Books" tab.
    Open the Reference Manual and spend a few minutes looking through the table of contents to get familiar with what <b><i><u>kind</u></i></b> of information is available there.
    Do the same with the SQL Reference Manual.
    Do the same with the Utilities manual.
    You don't have to read the above in depth. They are <b><i><u>reference</b></i></u> manuals. Just get familiar with <b><i><u>what</b></i></u> is there to <b><i><u>be</b></i></u> referenced. Ninety percent of the questions asked on this forum can be answered in less than 5 minutes by simply searching one of the above manuals.
    Then set yourself a plan to dig deeper.
    - Read a chapter a day from the Concepts Manual.
    - Take a look in your alert log. One of the first things listed at startup is the initialization parms with non-default values. Read up on each one of them (listed in your alert log) in the Reference Manual.
    - Take a look at your listener.ora, tnsnames.ora, and sqlnet.ora files. Go to the Network Administrators manual and read up on everything you see in those files.
    - When you have finished reading the Concepts Manual, do it again.
    Give a man a fish and he eats for a day. Teach a man to fish and he eats for a lifetime.

  • How does automatic client setup work ?

    How does automatic client setup work in the clients connected to a standard leopard server ?
    I used a standard leopard server and I was so happy about the automatic configuration of my leopard clients. Utility Directory setups all the applications in the right way.
    Now I have an advanced leopard server and I have lost this option. Can I reproduce it in any way? (For example with terminal commands).
    Any help is appreciated...
    Sandra

    I suppose I could, but I'd prefer to at least have a working hypothesis first before changing things around.  Noone out there knows how this auto vid detection works?

  • TS2972 how can i identify which computers are authorized for i tunes

    How can I identify which computers are authorized for use with I tunes?

    Hi there,
    You can't see a list of your authorised computers, but you can see how many are authorised and deauthorise them individually or together.
    I've found you a relevent support article which explains all of this:
    iTunes Store: About authorization and deauthorization
    Hope this helps,
    Nathan

  • How can i know which index will be used when executing the query ?

    1 ) I have query in which i have 3-4 tables but there multiple index on one column .
    so how can i know which index will be used when executing the query ?
    2) I have a query which ia taking too much time . how can i know which table is taking too much time ?
    3) Please Provide me some document of EXplain plan ?

    Hi Jimmy,
    Consider the below example
    /* Formatted on 2011/02/04 21:59 (Formatter Plus v4.8.8) */
    CREATE TABLE FIRST AS
    SELECT * FROM all_objects;
    UPDATE FIRST
    SET object_name = 'TEST'
    WHERE owner != 'SCOTT';
    CREATE INDEX idx_first ON FIRST(object_name);
    SELECT *
    FROM FIRST
    WHERE object_name = 'TEST';
    It has not used index
    Execution Plan
    Plan hash value: 2265626682
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 58678 | 7334K| 163 (4)| 00:00:02 |
    |* 1 | TABLE ACCESS FULL| FIRST | 58678 | 7334K| 163 (4)| 00:00:02 |
    /* Formatted on 2011/02/04 21:59 (Formatter Plus v4.8.8) */
    SELECT *
    FROM FIRST
    WHERE object_name = 'emp';
    This has used the index
    Execution Plan
    Plan hash value: 1184810458
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 128 | 1 (0)| 00:00:01 |
    | 1 | TABLE ACCESS BY INDEX ROWID| FIRST | 1 | 128 | 1 (0)| 00:00:01 |
    |* 2 | INDEX RANGE SCAN | IDX_FIRST | 1 | | 1 (0)| 00:00:01 |
    From this we can come to the conclusion that, whether to use one index or not by oracle
    would also depend on the data which is present in the table. This has to be this way as
    we see in the bind peeking, if oracle sticks to only one plan, say only use the full table
    scan, it would be a performance hit when it searches for the second query ie where object_name
    ='emp';
    2.
    If we have a query like below.
    select * from emp
    where upper(ename) = upper(:p_ename);
    Evenif we have the index on ename column, oracle wouldn't be able to use the index, as there is a function in the predicate column. If you need oracle to use the index, we need to create a function based index as below.
    Create index idx_ename on emp(upper(ename));
    Regards,
    Cool

  • Difference between photoshop cc and photoshop cc 2014   how do i know which one I am using?

    difference between photoshop cc and photoshop cc 2014   how do i know which one I am using?

    Hi Petereas,
    Both are different version of Photoshop application.
    In Photoshop CC 2014 there are several new feature introduced than CC.
    Please refer the following page on whats new in Photoshop 2014.
    Photoshop Help | New features summary
    When you go to Help>About Photoshop then Photoshop 2014 shows version 2014.0.0 Release.
    Hope this helps.
    Thanks and Regards,
    Sumit Singh

  • How can i see which Apple ID was used to download an app?

    how can i see which Apple ID was used to download an app, cause i cant remember, thanx

    Hi maikeru1,
    If you have your apps synced to iTunes, you can use a similar process to that outlined in the following article (the Get Info command) to show what Apple ID it was purchased under:
    Apple Support: Recovering a forgotten iTunes Store account name
    http://support.apple.com/kb/ht1920
    Regards,
    - Brenden

  • How do I know which Firefox I am using....is it 5, 6, or 7? Thank you so much.

    I am sorry, but I had a stroke in 2001 and it affected the part of my brain that deals with memory, etc. I am doing the best I can with what I give you. I have used Firefox for x# of yrs.....I don't know how long, I just know I like it. I just don't know how to find out which foxfire I am using or how to go about finding the #. I do know at one time I was using foxfire 4.? & I was real happy with it. I don't know how I lost it......anyway, nice chatting with you & I hope you are able to understand my question & can help me. Thank you & have a blessed day. loving you in Christ...........<3........:-)

    Click on the ''''Help'''' menu at the top and choose the last option ''''About Firefox''''. The version is listed second.
    If the menu is not visible please press ''''Alt'''' + ''''H'''' on the keyboard.

  • How to quickly identify which videos have H.264 codec?

    I'm now starting to convert my 500-some videos to H.264 for use with iTunes and Apple TV. The first thing I'd like to do is identify which videos are already encoded with the H.264 codec and which aren't. The Finder in Leopard has an option for searching for codecs, but it doesn't search for H.264 (it will only show whether a file is MPEG-4, for example. I could open the iTunes information window for every video and determine the codec that way, but it would take a long time to do so.
    What I'm looking for is some kind of software that will produce an immediate list showing which files have the H.264 codec and which don't. After separating the files I will do a batch encode of the non-H.264 files.
    I'd appreciate any advice you might have with this!

    You simply can't address it (fully).
    Quicktime has tons of Gamma issues and if a pc's video card is set to 16-235 instead of full range then VLC will washout video as well.
    What I "THINK" Jim is trying to say is that when you use a broadcast grade monitor to check color or a YC-waveform/VectorScope or any scopes for that matter you can make sure that everything is accurate (meaning within correct range color wise). Which means that when people expose your video to other factors such as ... Quicktime which messes up the Gamma of the video often times, and VLC which in some cases with people who don't set their PC's/Mac's video cards up correctly or someone using WMP. Or simply someone watching it on a TV set which is not anywhere close to being calibrated it will still come out looking good anyways in MOST scenarios. IF you check everything on scopes/professional broadcast monitors.
    So for instance I work in a TV station and everything I do has to be broadcast legal.So we use scopes and a pro monitor at our edit bay so that we can see how stuff actually looks. Then when someone watches it OTA or on Cable or w/e and they have their TV setup with a ton of extra chroma (color) then in this case for example since I setup my color correctly to begin with it won't look over saturated. Also if someone has a bunch of brightness on their set it won't look bad either. (Unless the TV set is just totally screwed up in which case you can't fix it or plan for that anyways)
    But to attempt to answer your question directly. No it won't make it look the same on every player it will simply be much more likely to make it look much more acceptable.
    (you can't control everything variable wise)
    http://wiki.videolan.org/VSG:Video:Color_nVidia
    http://community.avid.com/forums/p/101346/583706.aspx
    Obviously though I can't speak for Jim I'm just assuming that's what he meant when he spoke about why you need a pro monitor etc... If I'm incorrect I apologize Jim

  • How does automatic video detection work?

    It used to be that, on my T400, when I would plug in an external monitor, the external would mirror that of my laptop. When I closed my laptop, the screen would automatically calibrate for the external monitor's resolution. And so on. I recently installed catalyst 9.8, and since then, the automatic switching no longer happens. I really have no idea how to go about re-enabling that automatic display detection that seemed to be happening earlier. I'd love to hear any ideas! thanks.

    I suppose I could, but I'd prefer to at least have a working hypothesis first before changing things around.  Noone out there knows how this auto vid detection works?

  • How can we identify which credit note applied to which AR Invoice?

    Hi,
    We are in 11.5.10.2.
    We want to migrate all the open transactions data of AR.I have few questions as given below :
    1.How do we identify in Invoice Entry screen where a credit memo is linked to Invoice.
    2.One credit note & 3 Invoices are applied with a Receipt,so how we can identify the invoice which is applied with credit note.
    3.Is there any possibility of applying credit memo directly to AR Invoice with out the receipt screen.

    Hello.
    1.How do we identify in Invoice Entry screen where a credit memo is linked to Invoice.
    2.One credit note & 3 Invoices are applied with a Receipt,so how we can identify the invoice which is applied with credit note.Query the invoice and navigate to Action/Installments/Activities.
    3.Is there any possibility of applying credit memo directly to AR Invoice with out the receipt screen. You probably can use an API. There are a lot of questions about this is the forum.
    Octavio

  • Travel Expense Form -- How to identify which form it is using

    Hello,
    In PR05(Travel Expense Manager), there is a simulate button which will generate standard expense form with expense details.
    I ran into scenario where one user group expenseform is little different from another group employees expense form. i am guessing that user group form is customized. how to identify what is behind scene form which is used.
    Thanks

    Thanks for your response. It seems I identified that it is using ABAP LIST forms.
    I confirming that position 24 for other settlement under TRAVEL EXPENSES CONTROL (EXPERT VIEW )
    Now we have issue identifying which underlying ABAP LIST Form used.
    If any body has any information on this how to identify, please provide information.

  • How to identify which root certificate is used?

    How to identify which root certificate(on terminal) is used when a terminal is connecting to a https website?
    SecurityInfo.getServerCertificate() only returns the certificate send from the https server.
    But how could know the which local root certificate is used to verify the certificate send from the https server?
    Is there a method or class in MIDP 2.1?
    Thanks

    UP�Cthis question is urgent. Hope anyone can answer me!

  • How can I identify which albums are associated with a specific picture.  I used to click on the picture and see the albums but don't know how to do it in 13?

    I keep pictures in Albums, specifically by year and then other topic albums. As a result some pictures are in several albums. Sometimes they are assigned in error.  I used to be able to click on a picture and see not only the tags but the albums associated with the picture.  How can I see which albums are assigned to a picture?

    Are you referring to the yellow text box that pops up like this?
    If it is those are called tooltips or anchor titles.  Cyclosaurus has posted script to block them: removing rollover html detail box: Apple Support Communities.
    OT

Maybe you are looking for

  • Passing arrays with Call Library Function does not work after application builder

    Calling a DLL with Call Library Function which requires an array of data works correctly in Labview, but after building an exe with application builder, the call no longer works.  Dereferecing the pointer in the DLL retuns all 0s and not the actual v

  • System Recovery didn't finish and now I can't log into my computer. Help please...

    My touchscreen was not working so I tried different steps to fix it and still nothing. So I did a System Recovery and still nothing..So then I did a System Restore to completly wipe everything out back to factory settings...and after I did it I tried

  • Memory Analysis for a program

    Hi All, In production sometimes a data load fails because of the less ABAP memory available. For a perticular load ABAP memory goes till 4 Gb and more and after that load fails with short dump. This time i change a start routine logic  and split a co

  • Trying to store XML documents in Oracle XML repository using Java

    Hi, I am trying to store XML documents in Oracle XML Repository using a Java program. i just need a functionality to be able to store XML files and retrieve them. Can anybody PLEASE provide me some sample code. Thanks in Advance Sasha

  • Move Skype Message To Right Side Of Call

    Ever since the update where the message box was on the right side of the call, I got used to it, and now that it's suddenly moved back to the bottom it looks horrendous and honestly wastes space... Is there any way to move it back to the right side o