GATP and the activation parameters

Hi all,
I have some doubts on the activation parameters for the rule-based ATP: Technical Scenario (AA: online; BB: batch input; DD: EDI; EE: backorder processing); Business Transaction and Action Type (A: Create; B: Change; C: Copy). My doubts are on the technical scenarios and the action type. I have created just one entry with TS = AA and AT = A. What is happening now is that both when creating the order, when changing it and when running the backorder tool, the allocation process is working fine. This is happening even thoug I didn't define a entry for sales order changes and for backorder processing. Am I missing something? I think so... Could somebody help me in understanding this?
thanks
Marco

Marco,
RB ATP and allocation are not directly related.
When you invoke RBATP, it will allow you to set some supplementary rules (such as which plants do we check, which products do we check, which production versions do we check, etc).  When the actual ATP check is done, the type of checking you do could be allocation, or product check, or both.  If allocation is activated and working, it will generally work (and there are some exceptions here which depend on your allocation characteristics) regardless of whether you invoke RBATP or not.
So, as it stands, the symptoms you have described do not necessarily mean anything is wrong.
Regards,
DB49

Similar Messages

  • SCCM report to show last logged on user and the Active Directory department attribute of that user.

    I need to create an SCCM report to show last logged on user on all machines and the Active Directory department attribute of that last logged on user.

    You problem is here.
    right
    join v_R_User USR on USR.ResourceID
    = CS.ResourceID
    USR.ResourceID != CS.ResourceID, you need to map the username to the user logon to the PC. By using the user’s department information you will
    end up with unreliable results.
    Anyways you need to make these changes to your query.
    left
    join v_R_User USR on USR.Unique_User_Name0
    = CS.UserName0
    http://www.enhansoft.com/

  • I'm trying to get rid of logmein. I threw away the entire application but I can't remove it form my overhead menu bar and the activity monitor tells me it's still running.

    I'm trying to get rid of logmein. I threw away the entire application but I can't remove it from my overhead menu bar and the activity monitor tells me it's still running. How do I get rid of it completely?

    Install it again and use the developers uninstall instructions
    How to uninstall/install software on your Mac

  • Differences between the Portal Data Collector and the Activity Data Collect

    Hello,
    I want to know what are the differences between the Portal Data Collector and the Activity Data Collector?
    Best Regards.
    Pablo Mortera.

    All of my SQL Server instances  are sql server 2008r2 standard edition(10.50.2500). MDW is existing database, I try to setup collection sets for multiple instances and store data in one central MDW database 
    I create MDW in one instance, then run run configure Management Data Warehouse in target intance. collection sets were created successfully, but job failed with following error:
    Executed as user: COCAD\INTDEPT01SQLAgentC10. The Management Data Warehouse version "00.00.0000.00" is not supported by the current data collector. Please upgrade the Management Data Warehouse by running the Management Data Warehouse Configuration
    Wizard.  Process Exit Code 5.  The step failed.
    Thanks
    PAULqaz

  • Can I use firefox in webview? what is the package name and the activity name?

    Can I use firefox in webview? what is the package name and the activity name?
    I saw : intent.setClassName("com.tencent.mtt", "com.tencent.mtt.MainActivity");
    but what is the name for firefox?

    rahulmcadit wrote:
    The phone is from UK and the carrier on which phone has been locked is "ORANGE". I want to use the same phone in India. I want to unlock the phone. Can you please suggest me what is the procedure to unlock the phone. How can I pay the amount to ORANGE carrier and can use my iphone in India.
    Contact ORANGE to unlock it.
    See this -> http://support.apple.com/kb/HT5014

  • ADF BC and the Active Data Service

    hi
    The OFM Fusion Developer's Guide for Oracle ADF 11g Release 1 (B31974-05) has a section "42 Using the Active Data Service"
    at http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/adv_ads.htm
    that says "... If you want your components to update based on events passed into ADF Business Components, then you need to use the Active Data Proxy. ..."
    but it does not seem to explain how to use ADF BC and the Active Data Service.
    I have been able to create this example application ...
    http://www.consideringred.com/files/oracle/2010/ActiveDataServiceADFBCApp-v0.01.zip
    ... that does not have a af:poll component (but has moved polling into a managed bean).
      <managed-bean>
        <managed-bean-name>sumSalBean</managed-bean-name>
        <managed-bean-class>activedataserviceadfbcapp.view.SumSalBean</managed-bean-class>
        <managed-bean-scope>session</managed-bean-scope>
        <managed-property>
          <property-name>empSumSalVO</property-name>
          <value>#{data.activedataserviceadfbcapp_view_sumSalPagePageDef.SumSal.viewObject}</value>
        </managed-property>
      </managed-bean>This is some code in the SumSalBean class:
    package activedataserviceadfbcapp.view;
    // also based on code found in "ADF’s Active Data Service and scalar data (like activeOutputText)" by Matthias Wessendorf
    // at http://matthiaswessendorf.wordpress.com/2010/01/07/adf%E2%80%99s-active-data-service-and-scalar-data-like-activeoutputtext/
    public class SumSalBean
         extends BaseActiveDataModel
         protected static final String SUM_SAL_NAME = "sumSal";
         protected final AtomicInteger fCurrentChangeCount = new AtomicInteger(0);
         protected long fActiveDataUpdateEventTime;
         protected EmpSumSalVO fEmpSumSalVO = null;
         @PostConstruct
         public void setupActiveData()
              ActiveModelContext vActiveModelContext =
                   ActiveModelContext.getActiveModelContext();
              Object[] vKeyPath = new String[0];
              vActiveModelContext.addActiveModelInfo(this, vKeyPath, SUM_SAL_NAME);
              ScheduledExecutorService vSEService = Executors.newScheduledThreadPool(1);
              vSEService.scheduleAtFixedRate(new Runnable()
                        public void run()
                             if (hasDataChanged())
                                  triggerActiveDataUpdateEvent();
                   3, // let's wait some seconds
                   2, // period between the updates
                   TimeUnit.SECONDS);
         public void triggerActiveDataUpdateEvent()
              setActiveDataUpdateEventTime(System.currentTimeMillis());
              incrementCurrentChangeCount();
              ActiveDataUpdateEvent vEvent =
                   ActiveDataEventUtil.buildActiveDataUpdateEvent(
                        ActiveDataEntry.ChangeType.UPDATE,
                        getCurrentChangeCount(), new String[0], null,
                        new String[] { SUM_SAL_NAME },
                        new Object[] { getSumSal() });
              fireActiveDataUpdate(vEvent);
         public String getSumSal()
              EmpSumSalVO vEmpSumSalVO = getEmpSumSalVO();
              return "" + vEmpSumSalVO.getFirstSumSal();
         protected void startActiveData(Collection<Object> rowKeys,
              int startChangeCount)
         protected void stopActiveData(Collection<Object> rowKeys)
         public int getCurrentChangeCount()
              return fCurrentChangeCount.get();
         protected boolean hasDataChanged()
              EmpSumSalVO vEmpSumSalVO = getEmpSumSalVO();
              return vEmpSumSalVO.hasDataChanged(getActiveDataUpdateEventTime());
         public void setEmpSumSalVO(EmpSumSalVO pEmpSumSalVO)
              fEmpSumSalVO = pEmpSumSalVO;
    }How all this behaves a runtime can be seen in this screencast
    at http://www.screentoaster.com/watch/stUEpQSkxIR19aSV9YW1NRVF9W/activedataserviceadfbcapp_v0_01_zip_demo
    I would welcome comments on how the example application in ActiveDataServiceADFBCApp-v0.01.zip can be improved, or references to information on how this should be done properly.
    question
    (q1) Where can I find some example code that does use ADF BC and the Active Data Service?
    many thanks
    Jan Vervecken

    Jan,
    ADF BC does not natively support ADF yet. Its planned for a next release. The only Data Control that out of the box support ADS is BAM. To use ADF BC with e.g. databae change notifications you
    - create a shared AM
    - Configure the VO to respond to database changes (check box)
    - Configure the database to broadcast changes
    - Use an af:poll component for the refresh because the update would be on the model layer only
    So what is in the documentation is a doc bug. In the current releae you can use ADS best with a POJO model (that you use directly for dashboard use cases). You can though use a POJO data control, but this at the current stage would just act as a pass through for the data access.
    See example 156 on http://blogs.oracle.com/smuenchadf/examples/ for how to do it with ADF BC
    Frank
    Ps.: Of course, the plan is to make everything working out of the box with no developer action required.
    Edited by: Frank Nimphius on Feb 12, 2010 6:56 AM
    Re-read your post. Maybe I need to revise my comment. Are you accessing AM directly or via the ADF layer. If the latter - I did not yet look at your sample - then this may work if you don't release the AM module you access directly (may not scale well)

  • Hello, today I am subscribed to  photoshop CC  but still has not passed and the activation of the post did not come serial number that do tell me?

    Hello, today I am subscribed to  photoshop CC  but still has not passed and the activation of the post did not come serial number that do tell me?

    creative cloud does not use a serial number.  it uses your adobe id.
    download the creative cloud desktop app (after signing in with your adobe id), Download Adobe Creative Cloud apps | Free Adobe CC trial
    and use the desktop app to install your adobe creative cloud programs.
    if you already have the cc desktop app and you need to refresh your adobe id, Sign in, Sign out | Creative Cloud desktop app

  • TS2446 Hello I have a customer Close iPhone 5S any cloud symbol purchased the device from one of my colleagues and the activation message please help me

    Hello I have a customer Close iPhone 5S any cloud symbol purchased the device from one of my colleagues and the activation message please help me
    <Personal Information Edited by Host>

    It's a bad idea to post your IMEI number and I've asked the Hosts to remove it.
    If the previous owner of the phone has set the Activation Lock in iCloud, only he can unlock it either by giving you the ID and password, or by removing it from his list of devices - details here:
    http://support.apple.com/kb/TS4515
    Without his unlocking it for you, you cannot use the phone.

  • No phoneline,No broadband and the activation date ...

    I recently switched from Sky to BT as I was having an issue with my broadband and phoneline that Sky were far from helpful about. Sky took 5 weeks to fix a fault on the phoneline after many promises and many times an engineer didnt turn up when promised.Ive checked the test socket and done all the test.Now im being messed about by BT and im now wondering is this a very normal thing all company's do now.First sky and now BT,who next if I decide to change again??
    My equipment (HH4) and activation email arrived on 18th September to say everything was ready to go.
    I followed the steps that came with the equipment, but the Hub light never returned to blue. It is stuck on orange and the broadband light is flashing red. Also the phoneline is completely dead and still and its getting towards 2am now.Thing is know all the connections and the phone cable works because Sky finaly fixed the phoneline 2 weeks ago after 5 weeks waiting to get it fixed and its been perfect since and the engineer sent 2 weeks ago put a new cable from the mast to the flat and fitted a new phone socket so BT cant give me the **bleep** my line or equipment is faulty because that would be bull **bleep**! The sky phoneline and broadband went off yesterday morning then a few hours later got texts from bt to say the phoneline and broadband is now active and is ready to use.I even changed the filters over BT sent with the new home hub.I plugged the phone directly in to the test socket and nothing,its completely dead!
    Solved!
    Go to Solution.

    As you have moved from sky to bt, I suspect it will be something to do with the disconnection of the sky equipment in the exchange, and the connection to the bt equipment. If you try that number later on today, hopefully they will get it sorted. also there will be more experienced posters on here, that will probably be able to help you further.......
    They have to sleep sometime..........
    Don't forget that the only people you'll find on here, is customers that have had some sort of problem. There are going to be many, many others who don't have problems. I had a problem with errors/interference, and with the help of this forum, was able to minimise the effect on my connection........
    If you found this post helpful, then please click the star on the left, after all, I'm only trying to help........

  • What do you do if you purchase Itune cards and the activation code are unreadable. How do I get the codes these are two $50.00 cards.

    I brought two $50 itune cards from best buy yesterday 6/6/2011. When I scratch off the activation code it was unreadable. How do I get my codes. I don't want to lose my $100. Please assist.

    iTunes Store: Invalid, inactive, or illegible codes

  • NEO4 Plat/sli and the Active armor/network issues

    Ok first of all my computer was running fine with my ethernet pluged into the primary nforce gig lan.  After installing this software it worked for about 5 hours then just cut off my internet.  I then plugged it into the Yukon pci-e gig lan and it worked then.  After uninstalling this software i can no longer get a connection on my Nvidia lan.  it connects but wont send/recieve any packets.  Also windows will not even let me repair my connection without it locking up the network settings.  If anyone can help i will appriecate it.
    Andrew

    no yellow marks in device manager the card says its working but i disabled it because it wouldnt work.  i have the newest drivers and the most updated windows xp sp2. 
    Andrew

  • HT201365 Once my phone is in Lost Mode and the Activation Lock is on, what will the person who stole my phone be able to do with it? If they bring it anywhere to activate it will Apple confiscate it?

    My phone was stolen and I am just curious how this Lost Mode/Activation Lock works! I know they can't get into my phone currently, and it's off. I tracked the location to an apartment complex before they shut it off, but it didn't give the apartment number, I am hoping they turn it on again soon so I can go back and play the noise, however if I can't I am hoping they will be stupid enough to try to bring it into apple and use it or bring it into verizon. Will Apple or Verizon take the phone for me and return it to me or let them walk out with it? Any background information on similar situations or any feedback would be amazing, I feel naked without my phone.

    They won't be able to use the phone, and Apple won't be able to reactivate it for them. Only you can unlock the phone, so it's useless to them. I would doubt that Apple would be able to identify and return the phone if they are stupid enough to take it in, but I don't know for certain.

  • Modeless dialogs and the active document

    I have a modeless dialog (Qt) that contains a checkbox to toggle off and on annotations that our plugin draws.  When the user clicks the checkbox, it calls a function in the plugin code that ultimately makes a call to AIAnnotator->SetAnnotatorActive().  When passing in false, the annotations stop drawing, as expected.  But when passing in true, the annotations don't draw (the plugin doesn't even get the kCallerAIAnnotation message) until the modeless dialog moves or the Illustrator window gets focus.
    I have tried to force a redraw and a bunch of other things to try to get the annotations to start drawing, but none of them work.  One thing I found interesting (and is the root of the problem, I suppose) is that at the point the user clicks the checkbox in the modeless dialog, making a call to AIDocument->GetDocument() returns DOC?, which means there isn't an active document.  Without an active document, none of the calls to redraw the window or invalidate the current view will work.
    Have any of you experienced this before and come up with a solution?  I'm really at a loss on what to do.

    Thanks for the response.
    Maybe I'm not calling the AIAppContextSuite functions at the correct time, but they don't seem to do anything in this situation.  I'm pushing the context right before I display the Qt dialog (at which point I have a document and a view), but when the checkbox is clicked, calling AIDocument->GetDocument still indicates there isn't a document.  These click events happen in the Qt event thread, not the plug-in message thread, but I don't believe the click itself is the problem.

  • What is the activity quantity in KSII and how is it arrived

    Hi,
                Could any body help me to understand what is the activity quantity in KSII. How will we arrive at the figure we get when we run KSII.
    I know the that we would be giving theplanned cost in KP06, planned activity quantity in KP26 and then when we run the price calculation in KSPI we get the total price for the cost center and the activity type. This is what is the planned total price for a period.
    I am unable to understand the differece between the planned and the standard cost. Please help me with an example.
    Standard cost is planned cost * actual hours,  correct me if I am wrong.
    Please assist,
    Regards,
    Shilpa.

    Hi Shipla ,
    You have two questions :-
    1. How to get activity quantity in KSII
    KSII is actual price calculation . Actual Price = Actual Cost/ Actual Qty..
    Actual quantty is derived from quantity confirmed in production/process order and direct activity allocation done to the cost center . If you see a Cost Center Plan/Actual variance report.. you can see the actual quantity booked in a process Order . Actual Cost is the cost booked into the cost centers ..from FI/CO /IO settlement etc ..
    During Actual costing , activity costs are generally booked at plan rate ( KP26). In KSII , actual price is computed and the difference is allocated to the cost centers.
    2. Standard cost is planned cost * actual hours
    No , plan cost is the cost you have planned for the year . You can use the plan cost to create a cost estimate . This cost estimate can be used as standard cost or for any anaylsis purpose..
    Always remeber that purpose of product cost planning is to compute product cost estimate . This estimate may be used as standard costs.
    Hope it clarifies..
    Regards
    Sarada

  • ALL active parameters

    How to view all the active parameters from the SAP system?All the parameters I am not getting in RZ10.

    Hello,
    tcode SE38 --> RSPARAM --> execute.
    Cheers,
    -Sunil

Maybe you are looking for

  • My laptop hard drive crashed, used to have lion now it is back to snow leopard. how do i get it back to lion again?

    my laptop hard drive crashed, used to have lion now it is back to snow leopard. i lost all of my info, music, pictures, etc. how do i get it back to lion again? this is very frustrating because i paid $30 to download it and now i am unable to have it

  • How do I save NEW documents from Office 2011 to SP2010?

    Hi, We are using Office 2011 for Mac, with Safari and SP2010 for collaboration room and document libraries. Accessing, opening, reading and saving existing documents from SP2010 works all fine. But if I, after having opened and edited a Word document

  • How do you integrate a column with respect to another column

    I have two columns of data, one is time and the other is velocity. I want to be able to integrate velocity with respect to time, but I can not find a function which will let me do this. Preferably, I'd like to do a cumulative trapezoidal integration,

  • HTML file in a table

    I am a photographer - I use lightroom to create html browsers for my clients. These files are posted in a the web with unique URLs. I have created seperate HTML file in Dreamweaver that contains indexes to these URLs for clients to scroll through. Wh

  • RGB/16

    Dear: I have taken a photo using Format Raw and RGB 42 or 14 bits per channel.  Why when I open my photo in Adobe Photoshop CS6 it shows me RGB/8 and not RGB/16 as I expected? thanks Squadri