How to run MRP only for MRP area ?

Dear Gurus,
I am going to run collective MRP only for one MRP area, not for whole plant. How to do it?
MD03----is only for one material.
MD01----is at plant level
Thanks in anticipation.
Jason
Edited by: Jason Ma on May 6, 2008 4:44 PM

Can you be more specific?
MD21 - Display Planning File Entries? Is this related to MRP run and how?

Similar Messages

  • How to run automatic payment program business area wise

    dear all
    please let me know how to run automtic payment program business area wise.
    for example business area 2020 we want to make payment business area wise.
    what are the back gorund settings for congigration Tc- fbzp
    wht are the configrations forTC- f110
    regards
    babu

    Hi,
    You can make payments business area wise if you had ticked payment goup business area wise in the payment method in company code screen. However you will have to give company codes in the payment parametets, but payments will be grouped by business area.
    Thanks,
    Ramesh.

  • How To run Currency translation for Consolidation Application in BPC NW

    In "How To do Currency Translation for Financial Application in BPC 7 NW", the author mention that there is another "How To run Currency translation for Consolidation Application in BPC NW", anybody know where to get it?

    Hi...
    Check if the below links are useful to you.....
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/6052a57b-8c64-2c10-b3a5-b0378ff21243&overridelayout=true
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c0ea1fd8-d6d3-2a10-c1ab-e8164dd98316
    You can find all How-to docs in the below link
    http://wiki.sdn.sap.com/wiki/display/BPX/EnterprisePerformanceManagement%28EPM%29How-to+Guides

  • How to run Crypto Tools for SSO Enabling

    Hi Friends,
    How to run Crypto tools for SSO enabling. If any body knows please help me...
    Thanks

    Hi ;
    what is the script for windows Environment...

  • How to run wfstatus.sql  for i-Expenses

    how to run wfstatus.sql for i-Expenses in 11i EBS.

    Pl see MOS Doc 295078.1 (Maintenance Pack, Patchset, and Rollup Patch Level for Internet Expenses 11i)
    HTH
    Srini

  • How to run a VI for very short time, e.g. 100ms?

    Hi,
    I need to run a VI for very short amounts of time, say 100ms, 200ms, 500ms or 1s. I want to get this time from the user, maybe as a control variable. How may I do this? I tried using the "elapsed time" function but seems like it was not meant for such small time periods. Any ideas?
    Thanks
    Kaiser 

    What are you trying to do in the "short time"? When you say "run a VI" do you mean "start, run and stop running", or do you mean for the vi to do something for the specified time, i.e. flash a front panel LED for a precise period after the operator clicks a button? In the later case 100mS is actually fairly long, and can be accomplished with various timing functions, with varying degrees of accuracy. The most accurate, in a Windows environment, would probably be the timed loop. If you need really accurate, particularly if you are interfacing with hardware (a pushbutton, an actual lamp, etc.) a real-time system would be the best bet.
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion

  • How to configure Reconciliation only for a particular resource

    Hi All,
    I have a requirement to configure target reconciliation from AD only for a client. For that i have installed the conector as per documentation (both prov and recon). Now how can i make sure that:-
    1. When i disable/enable the user in OIM, corresponding target resource will not be disabled/enabled.
    2. If i make any changes on resource form corresponding change should not flow back to AD.
    Does removing the prov related jar able to ensure these things or i need to remove the corresponding prov lookup or any changes required in configuration lookup? Please suggest...TIA

    Change the drop down option to "Disable Process..."
    Attach tcComplete event handler there.
    In Task to Object Status Mapping, select Disabled in front of completed.
    Now suppose user is PROVISIONED to a resource say Test. So whenever user gets DISABLED in OIM, it will disabled the target resource Test. But in actual the target resource will not be disabled for that user. He/She can access that resource after getting disabled as you haven't put the logic to disable the target resource (as you have used tcComplete here).
    As you are saying that it should show disabled only if Disabled is coming from Trusted Resource. Then it's fine till now.
    If you don't want to show status as Disabled then in Task to Object Status Mapping, do not select Disabled in front of completed. In this case, it will show status as PROVISIONED only. This is wrong.
    I'll try to understand what you have written here ->
    BUT NOW THE ISSUE. IT DISABLED MY ASSOCIATED RESOURCE (not in target resource actually but on oim side under resources tab). THIS IS ACTUALLY NOT DESIRABLE.
    - > It will do as you are using tcComplete. If you put your java code which disables the target resource in integration tab (in form of process task adapter instead of tcComplete) then it will disables the actual target resource for user.
    REAL REQUIREMENT IS THAT FOR NOW (*till provisioning is not configured*) OIM DISABLE SHOULD NOT INVOKE THE DISABLE OF ASSOCIATED TARGET RESOURCE NOR IT CHANGED THE STATUS UNDER RESOURCES TAB FOR PARTICULAR RESOURCE. THE STATUS UNDER RESOURCES TAB SHOULD ONLY BE CHANGED WHILE RECONCILIATION.
    -> As you have written, "Till provisioning is not configured", So if provisioning is not configured then it will not show disabled under Resource tab for that particular resource.
    You can see disabled only after resource is provisioned to that user.
    If this doesn't answer your question, it would be better if you explain your requirement clearly. It's not clear.

  • How to run a thread for second time ?

    I have a written a ThreadPool, but I found that basically a thread is not running for the second time. i.e First i call run() method and call stop(). If i call again run() method for the same thread, it is not running. What should I do, If i want to run the thread for the second time ?
    class NewThread implements Runnable {
    String name;
    NewThread(String a) {
    name=a;
    public void run() {
    try{
    for(int i=0;i<5;i++) {
    System.out.println("Thread :" + name + " #" +i);
    Thread.sleep(5);
    catch (Exception e) {
    e.printStackTrace();
    class threadRunnableTest {
    public static void main (String args[]) {
    Runnable runnable=new NewThread("BaSkAr");
    Thread thread = new Thread(runnable);
    try{
    System.out.println("First Thread is starting !!!");
    thread.start();
    Thread.sleep(2000);
    System.out.println("First Thread it to be stopped!!");
    thread.stop();
    System.out.println("Second Thread is starting !!!");
    thread.start();
    Thread.sleep(2000);
    System.out.println("Second Thread it to be stopped!!");
    thread.stop();
    catch (Exception e) {
    e.printStackTrace();

    baskark wrote:
    I have a written a ThreadPool, but I found that basically a thread is not running for the second time. i.e First i call run() method and call stop(). If i call again run() method for the same thread, it is not running. What should I do, If i want to run the thread for the second time ?
    class NewThread implements Runnable {
    String name;
    NewThread(String a) {
    name=a;
    public void run() {
    try{
    for(int i=0;i<5;i++) {
    System.out.println("Thread :" + name + " #" +i);
    Thread.sleep(5);
    catch (Exception e) {
    e.printStackTrace();
    class threadRunnableTest {
    public static void main (String args[]) {
    Runnable runnable=new NewThread("BaSkAr");
    Thread thread = new Thread(runnable);
    try{
    System.out.println("First Thread is starting !!!");
    thread.start();
    Thread.sleep(2000);
    System.out.println("First Thread it to be stopped!!");
    thread.stop();
    System.out.println("Second Thread is starting !!!");
    thread.start();
    Thread.sleep(2000);
    System.out.println("Second Thread it to be stopped!!");
    thread.stop();
    catch (Exception e) {
    e.printStackTrace();
    It's usually helpful to check the documentation:
    [http://java.sun.com/javase/6/docs/api/java/lang/Thread.html#start()|http://java.sun.com/javase/6/docs/api/java/lang/Thread.html#start()]
    start
    public void start()Causes this thread to begin execution; the Java Virtual Machine calls the run method of this thread.
    The result is that two threads are running concurrently: the current thread (which returns from the call to the start method) and the other thread (which executes its run method).
    It is never legal to start a thread more than once. In particular, a thread may not be restarted once it has completed execution.
    So, make a new java.lang.Thread

  • How to authorise users only for specific GL accounts

    Hi friends,
    My client does not want his endusers to see all the GL accounts' balances, they want to restrict them from looking at certain GL a/cs .From my security person I came to know that we cant restrict them only for certain GL accounts, it could eithre be all or none.
    I dont agree with that.
    Please guide if you know anyhitng about it.
    Thanks
    Shefford

    You can use the Authorization Group field in the G/L account master record (field SKB1-BEGRU, free text field) for this purpose. You can then use authorization object F_BKPF_BES to manage the different authorizations.
    Click <a href="http://sap.ittoolbox.com/groups/technical-functional/sap-acct/authorisation-based-on-gl-accounts-727160">here</a> for more information.
    Points are appreciated.
    Kind regards,
    Lodewijk

  • How to create validation only for created rows in tabular form

    Hi all,
    I have a simple question. Is it possible to create a validation for tabular form which will be fired only for created?
    There is a possibility in APEX 4.1 to choose two types of "*Execution scope*" first is "*For created and Modified Rows*" and second is "*All Submitted Rows*".
    Thanks in advance!
    Regards,
    Jiri

    Hello Jiri,
    >> Is it possible to create a validation for tabular form which will be fired only for created?
    You can still use the scope of For created and Modified Rows and use a PL/SQL Expression condition of:
    :APEX$ROW_STATUS = 'C'You also need to change Execute Condition to For Each Row .
    Hope it helps,
    Arie.
    Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.

  • How to define Substitution rule for Businee area

    Hi experts,
    Could you please guide me to define substitution rule for Business are.
    Below is the requiremnt :
    I want to assign different business area for this cost centre.
    While posting document in FB01, we are entering cost centre in line itme. Businee area is picking from cost centre master.
    Example : Cost centre 11310 and businee area Y020.
    Businee area Y020 is picking from cost centre 11310 while posting document.
    I want to assign different business area for this cost centre.
    For that I want to define substitution rule.
    I have defined substitution rule and activated in comapany code but it is not working. Please guide me how to define Substitution rule for the same.
    I have defined prerequisit as Comapny code = 2053 and Cost centre =11310 and transaction code = FB01 then
    Substitute business area with Y045.
    It is not working .
    Please guide me where I did mistake and how to rectify the same.
    Thanks in advance for your quick response and points will also assign for helpfull answer.
    Regards,
    Amar

    Hi Paul,
    Thaks for your reply.
    Yes, you are correct. SAP is changing this back to BA from Cost centre.
    Why can't we use Substitition for the above issue.
    Then what is solution for my issue.Please suggest any alternative solution.
    Thanks in advance for your help.
    Regards,
    Amar.

  • How to run sudo remotely for adding workload with local /etc/vdb

    Hi Henk
    My controller and slaves are all ubuntu. When I would like to add raw disk I/O workload against remote local /etc/vdb, it's error out and said no permission.
    I try to either change user=root or run command with sudo. it doesn't like pass through to remote ( ubuntu might be not allow to log in as root without password )
    Any suggest regarding this scenario ?
    Johnny
    parmfile
    host=default,user=ubuntu,shell=ssh,vdbench=/home/ubuntu/vdbench
    *hd=localhost
    *hd=fio-drive-1,system=192.168.2.74
    hd=fio-drive-2,system=192.168.2.75
    *hd=fio-drive-3,system=192.168.2.76
    *hd=fio-drive-5,system=192.168.2.78
    sd=sd1,lun=/dev/vdb,openflags=o_direct,threads=200
    *sd=sd1,lun=/home/ubuntu/vdbench_installer/TEST/test,threads=20
    wd=wd1,sd=sd1,xf=1k,rdpct=50
    rd=rd1,wd=wd1,iorate=100,elapsed=5,interval=1
    error message
    Vdbench distribution: vdbench50402
    For documentation, see 'vdbench.pdf'.
    20:21:21.627 input argument scanned: '-fparmfs'
    20:21:21.636
    20:21:21.636 Specifying 'host=(xxx.yyy.com,host_x) has been deprecated.
    20:21:21.636 Please specify 'hd=host_x,system=xxx.yyy.com' instead.
    20:21:21.636 Vdbench will honor this parameter until the next release.
    20:21:21.636
    20:21:21.699 Starting slave: ssh 192.168.2.75 -l ubuntu /home/ubuntu/vdbench/vdbench SlaveJvm -m 192.168.2.5 -n 192.168.2.75-10-150318-20.21.21.598 -l fio-drive-2-0 -p 5570
    20:21:22.255 All slaves are now connected
    20:21:22.372 Raw device 'sd=sd1,lun=/dev/vdb' does not exist, or no permissions.
    20:21:22.372
    20:21:22.372 Please check above failures
    20:21:22.372
    java.lang.RuntimeException: Please check above failures
            at Vdb.common.failure(common.java:306)
            at Vdb.InfoFromHost.matchDataWithSds(InfoFromHost.java:679)
            at Vdb.InfoFromHost.receiveInfoFromHost(InfoFromHost.java:496)
            at Vdb.SlaveOnMaster.processSlave(SlaveOnMaster.java:154)
            at Vdb.SlaveOnMaster.run(SlaveOnMaster.java:42)

    here are the steps I try, I can generate the raw diso I/O  on remote ubuntu now.
    #sudo visudo
    add
    user ALL=NOPASSWD: /home/user/vdbench/vdbench -f parmfile
    at the last line
    ctrl-X + enter for exit
    thanks
    Johnny

  • How to prevent summation only for some kf?

    Hi all!
    I have a question concerning a problem we have in a query.
    I have a query that show, depending for project revision (witch
    refer to 0calmonth), trend of various key figures in the quarters
    I've planned in a specific project revision.
    For example, for revision 062004, the query result is the following:
    A/F Actual Forecast
    Quart. Acc.Bef. 30/09/03 31/12/03 31/03/04 30/06/04 Tot
    Ricavi    594    1.543    5.299    (510)   5.219 19.785
    Costi     552    1.457    5.425     456    6.119 21.366
    IMG         0        0        0       0        0    519
    Av.Tec.   2,0 %    5,0 %   11,0 %  38,0 %   76,0 % 0,0 %
    Av.Eco.   2,0 %    5,0 %   11,0 %  37,0 %   65,0 % 0,0 %
    You can see the following values:
    Avanz. Tecnico ***. alla data: 76%
    Avanz. Economico ***. alla data: 65% referring to
    last actual value (30/06/2004).
    In another query we would see the forecast
    referring to total, that we associated to quarter '25001'
    for all project revisions.
    We would see this total for all key figures except
    Avanz. Tecnico ***. alla data and
    Avanz. Economico ***. alla data, for witch we would see
    the value referring to the last quarter actual, that you
    can see in the previous report (76% and 65%).
    If you launch the query I see, for the mentionned key figures, the values
    132% and 120% for revision jun-04.
    Project rev. mar-03 sep-03 dec-03 mar-04 jun-04 sep-04
    Ricavi       19.203 19.785 38.988 19.785 19.785 19.785
    Costi        17.347 18.078 36.609 20.466 21.366 21.366
    IMG             519    519  1.038    519    519    519
    Av. Tec         0,0%   0,0%   0,0%   56,0% 132,0% 158,0%
    Av. Eco         0,0%  14,0%  52,0%   55,0% 120,0% 133,0%
    The problem is that the system do addition of percentage for all quarter
    related to revision 062004 (25113876=132!!!!), while I would see
    only the last quarter actual. But I don't would see drilldown by quarter in the query.
    I tried to use the variables type replacement path,
    but I don't use it because I'm in a structure.
    Does it exists some tricks that I can use to resolve this
    complicated situation?
    Fabio

    Hi Mav.
    Thanks for your patience.
    I've doing also the other two checks, but the problem persists.
    I think this isn't a malfunction, it's correct that system aggregates without quarter drilldown.
    But in this case I would prevent it only for this kf.
    Have you got some ideas in the structure selection to limit the exctraction to the last quarter actual?
    Maybe with a variable exit.
    Fabio

  • How to run Explain Plan for SP?

    Can we run Explain Plan for SP??

    EXPLAIN PLAN creates an execution plan for SQL statements. PL/SQL is not SQL.
    PL/SQL procedures can contain SQL, yes. These SQLs can be copied and pasted from PL/SQL into something like TOAD and execution plan determined.
    However, if the aim is to see the "execution/performance plan" for PL/SQL code, then you need to profile the PL/SQL code using the DBMS_PROFILER package. This will tell you the execution path and elapsed time to execute a line of PL/SQL.
    Details can be found in the [url http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_profil.htm#sthref5502]Oracle® Database PL/SQL Packages and Types Reference guide.

  • Applications only for root are displayed even with user login

    I am using MBP Pro with OSx 10.7.3. I use admin account. Recently I enabled root account and then disabled it back again. Since then I am seeing applications only for root and not for admin even with admin login. If I go to /Users/<admin username>/Library/Preferences, I can see that the applications has relevant files over there. When I looked more carefully I observed that, I am able to see the applications installed for the root only and not for the admin user. Is there any way to corrrect this?

    This particular discussion group is for Classic Mac OS.  Your question would be better suited in the OS X Lion group (https://discussions.apple.com/community/mac_os/mac_os_x_v10.7_lion).

Maybe you are looking for

  • CE Trial Version on Vista

    Hi all, I tried to install the CE on a Vista machine but without success the install routine doesn't start. Are there any workarounds available? Another colleague told me next day in the office that he tried to install the trial version of CE on a XP

  • Change font in texts

    i was able to change the appearance of the font in my texts with my other blackberry but i got a replacement one and don't remember how to do it..help?

  • Unmountabl​e_boot_vol​ume

    First and foremost, my laptop is a Satellite E105-S1402 which came with windows vista, and I upgraded to windows 7 last year without any problems until now. Every time I attempt to boot up windows 7 the screen freezes, goes black, and then my cursor

  • E-63 what type are Alarm Clock Tones for the clock

    when  try to set the alarm clock tone for the clock if I try to change Tone for alarm I only get optios for Download Default or off.   What type of tones do I need to download lor do they have to be in a special folder Thanks Message Edited by douggg

  • Using MAPI with JavaMail

    I want to use MAPI protocol to send mail. Is it possible with java mail API. I would appreciate if some body can give me a solution. Thanks Saikumar