Global Order Promising query -- Action Code

This is regarding the GOP(11i ) , mrp_atp_pub_call parameter action code . As per the Oracle it has three values
Action: Type of Inquiry
100- ATP Inquiry
110- Scheduling
120 - Rescheduling
My ask is :
1. Do we per/Unpeg supplay demand or reservation when we pass differnet action code .If yes which action code perform what and how.
2. Apart from override flag( honoring ATP) , is there any parameter which can effect the supply demand picture with action code .
2. atp_call calls in turn call the Call_ATP_No_Commit , is this procedure is always called and do this procedure call depends on the action code .
3. In R12, is the similar functionality present .
Thanks in advance .

Hi Jaydev,
The "Send" option in the work item instance's dropdown is enabled a couple ways. As you pointed out, it is enabled if there is no logic or Screenflow associated with the Interactive activity. The second way that it is enabled is when you change the default property for the Interactive activity (right mouse click the Interactive activity -> "Properties" -> "Runtime") and uncheck the "Auto complete" property for the Interactive activity.
There's a very significant downside to doing this. This means that after completing the required tasks in the activity, instead of automatically going to the next activity in the process - the work item instance will instead stay in the activity. It will stay in the activity until an end user clicks "Send". Just a heads-up - end users will find this extra key click annoying.
Hope this helps,
Dan

Similar Messages

  • Global Order Promising query

    Hi All,
    Just want to know if GOP check for multiple calendar in a shipset .
    For ex if my Ship set has two lines line 1 and line 2 , calendar code A for line 1 and calendar code B for line 2
    If for a day Calendar day has holiday and same day is working .
    Do my GOP check the calendar code for both orgs and how will it behave do working will be shifted in future .
    It will be great if you can provide technical details as well.
    Regards,
    Ankit

    Sunil,
    Just right click on the created structure and give a technical name and description.
    It will be saved so that u can use it across all queries under the infoprovider.
    Doodle

  • How to see List of action type & action code in Form View..

    Hi~ Guys ... please help me ~
    In Design Tab of workspace...
    I have worked  like this..
    step 1) I made a Form Wiew using a Add Input Form from BI Query Icon ,
    step 2) submit button was made in the configure element automatically ,,
    step 3) click the submit button to execute the query and it works normally.
                (action code is in the action tab of control properties.. maybe it was created automatically..)
    but, I would like to create submit button in toolbar,,
    step 1)  I click the create toolbar in context menu of form view
    step 2) click the add button to create toolbar button,,
    step 3) rename Button
    step 4) I'd like to click the PLUS button to add the  acton name  and action code
                 -> Menu name : select the type of action that will be triggered by this field  (is located under the define button )
    but , step 4).. I do not see List of Action Name like Submit Form
                          Plus Icon do not working..
    I don't know what the problem is  ..( I installed xml parser 4.0 , svg viewer 3.0 , explorer 8 )
    I wonder I missed a step or I did not install other programs
    Please help me ~

    Hi~
    Thank you for your interest in my question..
    My operating system is Window 7(Enterprise K, service pack 1)
    and..
    my internet browser is Internet Explorer 8(8.07601.17514)
    and..
    VC version is 7.0
    ( GML/Client/VC server/Flex/Potal Content/Potal connector - Version is 700.23 )
    I tried to run in compatibility mode as you said..
    but, The results are same as old,,
    Is it any relation in Client(PC) setting ?
    Regards,
    Evandave

  • Query SQL code gets deleted after export to Excel. "Query must have at least one destination field"

    Hi all,
    I'm getting really frustrated by this Access error. It happens when I export the result of a query through an Access macro to Excel, the first time it runs well but the next time, there is a chance that the query won't run and the error "Query
    must have at least one destination field" will be displayed. After that, I try to check the query SQL code and discover the code has vanished. I'm using simple Select query without joins, only "where", "group by" and "order by"
    statements.
    Thank you in advance for your help,
    Jesus 
    Edit:
    One of these queries are like the following (all of them are of this type):
    SELECT Field1, field2, field3, field4, field5, Sum(Field6) AS SumOfField6, Sum(Field7) AS SumOfField7
    FROM Table1
    WHERE Field6 is not null
    GROUP BY Field1, field2, field3, field4, field5
    Order By Sum(Field6) desc

    Hi Peter, 
    Thank you for your response, I updated the original question with one of the codes.
    Thanks,
    Jesus

  • Ordering MDX query wih Named set gives error, "The CURRENT function cannot be invoked in this context ".

    Hi,
    I have following Query 
    WITH SET [Union name set test] AS {[Union].[Union Name].&[2],[Union].[Union Name].&[3],
    [Union].[Union Name].&[4],[Union].[Union Name].&[5],[Union].[Union Name].&[6]}
    SELECT {[Measures].[Emp Count]} ON 0,  
    {ORDER({[Union].[Union City].[Union City]*[Union name set test]}, 
    [Union name set test].CURRENTMEMBER.MEMBERVALUE, BASC)} ON 1 FROM [Federations];
    when i run this query from code as well as SSMS i get following error...
    The CURRENT function cannot be invoked in this context because the 'Union name set test' set is not in the scope.
    Please help me for this ....

    Hi Mihirhp,
    Base on my research, there are some similar issues and the resault turn out that the Tabular model engine can’t associate .currentmember with a set. The workaround  is to use .current in the MDX query. Please try the query below.
    WITH SET [Union name set test] AS {[Union].[Union Name].&[2],[Union].[Union Name].&[3],
    [Union].[Union Name].&[4],[Union].[Union Name].&[5],[Union].[Union Name].&[6]}
    SELECT {[Measures].[Emp Count]} ON 0,
    {ORDER({[Union].[Union City].[Union City]*[Union name set test]},
    [Union name set test].CURRENT.MEMBERVALUE, BASC)} ON 1 FROM [Federations];
    Hope this helps.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Order of Query Execution in Workbook

    I have a workbook with 3 queries.  I have some macro code that moves results around and does formatting.  The code is dependent on the order in which the queries are executed.  I had assumed that the queries are executed in the order they are listed as data providers.
    For most of my users, the workbook works fine.  But for some, the queries execute in a different order.  Is there some way to force the order of query execution?
    Thanks,
    Dave Paz

    TopLink uses a deferred transaction model implemented through its UnitOfWork. This means all changes (creation, modify/ removal) are tracked and during the transaction commit phase we perform these operations ordered based on your referential integrity rules (FK constraints).
    If you are using TopLink Essentials (JPA) you have the option to issue flush on your entity-manager after the persist call to force the insert to occur prior to your next read.
    In Oracle TopLink the only way to do this is to use a DatabaseSession which offers additional calls controlling the transaction directly as well as support insert/update/remove operations without the UnitOfWork. This approach supports these additional calls because it uses a single connection and does not have a multi-client shared cache. This is much closer to a pure data access style versus the rich multi-client persistence infrastructure most commonly used.
    Doug

  • Passing a tagname from a tag query action to a tag query

    In BLS,  I want to pass a tagname to a tag query . So, I created a "blank" tag query .  Then, using a tag query action, I get a "No tag requested" error while generating the XML sample .
    Please advice, Best regards

    Hi Antonio,
    You must add a tag name either through the Configuration dialog - Parameter Name: TagName.1 - and the name of the tag as the Parameter Value in order to generate the XML sample.   Otherwise, in the Link Editor, you would link a tagname into the tag query parameter TagName.1 - in this case you would answer "No" to the "Generate Sample XML" in the Configuration dialog.
    You could also do both, but, at runtime, what is linked in the Link Editor will overwrite what is configured in the Configuration dialog.  Hope this helps!
    Kind Regards,
    Diana Hoppe
    Edited by: Diana Hoppe on Jun 3, 2011 1:50 PM

  • Ordering within query

    I have a simple two-sided one-to-many relationship:
    public class A {
    private String title;
    private Collection children = new ArrayList();
    public void addChild( B child ) { this.children.add( child ); }
    public class B {
    private A parent;
    private Boolean switch;
    I want to select all B's with switch == true:
    Extent extent = pm.getExtent( B.class,true );
    String filter = "switch == true";
    Query query = pm.newQuery( B.class,extent,filter );
    Collection coll = (Collection)q.execute();
    This all works great! Now I want the collection ordered by A.title, so
    I add the following to the query:
    query.setOrdering( "parent.title ascending" );
    This doesn't seem to work. How can the ordering be made to navigate a
    relation?
    Thanks,

    Here is the code (Country is the parent and Instrument is the child):
    Extent extent = pm.getExtent( Instrument.class,true );
    String filter = "currency == true";
    Query query = pm.newQuery( Instrument.class,extent,filter );
    query.setOrdering( "country.description ascending" );
    Collection instruments = (Collection)query.execute();
    System.out.println( "size: " + instruments.size() );
    for( Iterator i = instruments.iterator(); i.hasNext(); ) {
    Instrument instrument = (Instrument)i.next();
    Country country = instrument.getCountry();
    System.out.println( "symbol: " + instrument.getSymbol() + "
    currency: "
    + instrument.getCurrency() + " country: " + country.getDescription() );
    Here is the output:
    [ connection: 4395840; time: Fri Aug 09 11:28:00 MDT 2002 ] connect:
    jdbc:JSQLCo
    nnect://SERVER1:1433/database=AML (sa): 2
    [ connection: 4395840; statement: 2758093; time: Fri Aug 09 11:28:00 MDT
    2002 ]
    SELECT t0.INSTRUMENTIDX, t0.JDOCLASSX, t0.JDOLOCKX,
    t0.BEARERINSTRUMENTX, t0.COU
    NTRYCODE_COUNTRYX, t0.CREATEDATETIMEX, t0.CURRENCYX, t0.INSTRUMENTTYPEX,
    t0.LOCA
    LCODENAMEX, t0.LOCALCODEVALUEX, t0.MODIFYDATETIMEX, t0.PENNYSTOCKX,
    t0.REGULATIO
    NSX, t0.REMOVEDATETIMEX, t0.ROUNDLOTX, t0.SYMBOLX, t0.TRADINGUNITX,
    t1.DESCRIPTI
    ONX FROM country t1, instrument t0 WHERE t0.CURRENCYX = 1 ORDER BY
    t1.DESCRIPTIO
    NX ASC
    size: 956
    [ connection: 4395840; statement: 6259058; time: Fri Aug 09 11:28:01 MDT
    2002 ]
    SELECT t0.COUNTRYCODEX, t0.JDOCLASSX, t0.JDOLOCKX, t0.BANKSECRECYX,
    t0.DESCRIPTI
    ONX, t0.NONCOOPERATINGX, t0.SDNX, t0.TELEPHONECODEX FROM country t0
    WHERE t0.COU
    NTRYCODEX = 'US'
    symbol: USD currency: true country: United States
    [ connection: 4395840; statement: 2859291; time: Fri Aug 09 11:28:01 MDT
    2002 ]
    SELECT t0.COUNTRYCODEX, t0.JDOCLASSX, t0.JDOLOCKX, t0.BANKSECRECYX,
    t0.DESCRIPTI
    ONX, t0.NONCOOPERATINGX, t0.SDNX, t0.TELEPHONECODEX FROM country t0
    WHERE t0.COU
    NTRYCODEX = 'CA'
    symbol: CAD currency: true country: Canada
    [ connection: 4395840; statement: 9182681; time: Fri Aug 09 11:28:01 MDT
    2002 ]
    SELECT t0.COUNTRYCODEX, t0.JDOCLASSX, t0.JDOLOCKX, t0.BANKSECRECYX,
    t0.DESCRIPTI
    ONX, t0.NONCOOPERATINGX, t0.SDNX, t0.TELEPHONECODEX FROM country t0
    WHERE t0.COU
    NTRYCODEX = 'MX'
    symbol: MXN currency: true country: Mexico
    [ connection: 4395840; statement: 4597841; time: Fri Aug 09 11:28:01 MDT
    2002 ]
    SELECT t0.COUNTRYCODEX, t0.JDOCLASSX, t0.JDOLOCKX, t0.BANKSECRECYX,
    t0.DESCRIPTI
    ONX, t0.NONCOOPERATINGX, t0.SDNX, t0.TELEPHONECODEX FROM country t0
    WHERE t0.COU
    NTRYCODEX = 'GB'
    symbol: GBP currency: true country: United Kingdom
    symbol: GBP currency: true country: United Kingdom
    symbol: MXN currency: true country: Mexico
    symbol: CAD currency: true country: Canada
    symbol: USD currency: true country: United States
    symbol: USD currency: true country: United States
    symbol: CAD currency: true country: Canada
    symbol: MXN currency: true country: Mexico
    symbol: GBP currency: true country: United Kingdom
    symbol: GBP currency: true country: United Kingdom
    symbol: MXN currency: true country: Mexico
    symbol: CAD currency: true country: Canada
    symbol: USD currency: true country: United States
    symbol: USD currency: true country: United States
    .... etc.
    The first four items in the collection were the desired objects but not
    in the desired order. The original query doesn't specify a join on the
    primary keys.
    Thank you Abe
    Abe White wrote:
    Query query = pm.newQuery( B.class,extent,filter );
    Collection coll = (Collection)q.execute();I assume you are actually calling 'query.execute' and not 'q.execute'?
    Otherwise maybe it's not ordering because you're adding the ordering to
    'query' and not 'q' (which would have to be another query in that code block
    somewhere...).
    query.setOrdering( "parent.title ascending" );This should work (barring the unlikely possibility that you're committing the
    error I mentioned above). Could you send us the SQL that is generated when
    you execute this query? (You can turn on SQL logging by setting the
    com.solarmetric.kodo.Log property to 'stdout' or to some file path).

  • Transfer sales orders from one compnay code to another

    Hi
    Is it possible to transfer pending sales order from one company code to another? if yes please let me know complete procedure.
    thanks
    Sanjay

    Hi,
    You cannot transfer the sales order like this.If your company is getting closed then you can keep a deadline date before which you can close all the open orders and after that you can start creating the orders in the new company code.
    If your delivery date is beyond the deadline date then you can reject the sales orders and create them with new G/L accounts from the new company code.
    For this,you have to assign your sales organisation to the new company code.
    Reward points if it helps.
    Regards
    Karan

  • Records are not deleting in SAP CCM (CCM2.0), eventhough Action code 03 is

    Hi all,
    We are facing a problem in SAP CCM 2.0, products are not deleting from Catalogs ( Internal Catalogs)  eventhough action code '03' ( Deletion) is passing to Catalogs.
    In case of updating and new records creation is working fine , changes are updating and new records getting added to catalogs.
    Could you please advise why deletion is not working. what would be the reason.
    Is there any other way to delete the records from the Catalog.
    thanks in advance

    Hi,
    There is no standard functionality for deleting items from SRM CCM 2.0.
    Very recently, we have come across the same problem that materials/items which are deleted in SAP R/3 4.7 are not getting deleted from SRM CCM 2.0 catalog.
    We have done some analysis and found the below solution.
    - You need to send an action code "04" and drop Product Category information in XML file which XI uses to send the information from ERP to SRM CCM catalog.
    For this you need to modify the XML and XI mapping for the ZACTION code(03) received from ERP.
    Once the changes are done in XML, you re-publish the catalog.
    You will find the item/s have got deleted from the catalog.
    Note: It is important to note that even for deletion, system records action as catalog items Update/Created in the logs (SLG1) but not the action as catalog items deleted.
    Hope this helps !
    Regards,
    Vikas

  • Change the Tax Code-  In Sales Order i have  Tax code for VAT

    In Sales Order i have  Tax code for VAT ( Condition type JIVP) it is reflecting "P4" instead of "A4".
    Where the "P4" Tax code is picking in Sales Order.
    How to change the Tax Code.
    Urgent

    Hi CHAKRI,
                     Check if the condition record is maintained with the appropriate taxclasssification.If yes, Go to sales order in change mode,then goto-header-billing-alternate taxcalssification and modify tax classification.It will pick up right tax code.
    Regards
    Ram Pedarla

  • Stock Transport Order between Two Company codes

    Dear All
    Scenario-- Stock transport order Between two company codes.
    The valuation of Comapny Codes is at Moving Average Price.
    I have a scenario
    MAP of Issuing Plant-- Rs. 10 / kg
    I am able to pick up the price of Rs.10 (MAP) of issuing plant while creating PO.
    in receving plant.
    At the time of Goods issu the MAP has changed & become Rs.12/kg. Hence the goods issue takes place at Rs.12/- perkg.
    When we make GR at receiving plant ,the valuation of GR is at Rs.10 i.e at PO price.
    Is it possible to have a GR valuation at Goods issue price for that delivery note?
    Request Your feedback urgently.

    The invoice has the material costs at time of goods issue.
    You receipt is valuated to PO price. But when you post the invoice, then the MAP is adjusted,
    By setting up EDI, SAP will probably post the invoice before the goods receipt is done, hence the GR should be valuated with the invoice price.
    from Note 518368 - FAQ: Valuation for the purchase order;
    With which price is the goods receipt posted for a purchase order?
    Answer:
    If the goods receipt is executed before the invoice receipt, the goods movement is valuated with the purchase order price. If an invoice is already posted, the system uses the price of the invoice. If a partial invoice is received, the partial quantity corresponding to the invoice is valuated with the invoice price, the rest is valuated with the purchase order price.
    For more detailed information, refer to both the documentation of the material valuation and Note 380883.
    see as well Note 547570 - FAQ: VPRS in pricing

  • Issue in Reversing the payment order in IHC2 T code.

    Hello All
            I am doing REVERSING THE PAYMENT ORDER using IHC2 T code.
    While doing reverse it is creating the payment items for the respective payment order.
    Here is my requirement, need to change the posting date for the creating payment item for the reversal process.
    please let me know if we have any enhancement points to overcome this issue.
    Thank you all.

    Hello Spandana Musham.
         I have also faced this issue with BAPI and I opted for BDC finally.    
    Regards.

  • Need to send success or failure message to BAPI of SQL query action block

    Hi All,
    I need to send success or failure message(i.e. 1 or 0) to BAPI which has been called below sql query action block in transaction
    Here in SAP, i have created on BAPI with one import parameter and one export parameter.
    In the sql query action block, it insert records in the database table. If it fail or success, that message(numeric value 1 or 0) has to send to SAP program through BAPI.
    I have created a SAP ABAP program which sends message to MII Message listener through RFC then in the process rule message it will call transaction, in transaction, sql query will insert records into database table.  if it success or fail, it will pass to BAPI. And i calling that BAPI in the same SAP ABAP Program to show in the output screen.
    Here the issues, i am not getting the value from BAPI which has send by the transaction in MII.
    SAP Jco, I have mapped in conf. links --> BAPI input with sql query sucess
    Thanks,
    Kind Regards,
    Praveen Reddy M

    Dear All,
    I am facing problem regarding completion notifications in Oraclr r12, when user click the upon completion generated notifications it can only be viewd once, second time user cannot view the notifications.
    I have find that fnd_file_temp table store this information and deleted it.
    Plz help me how to view this URL again.
    thanks
    regards,
    Zubyr

  • Is it possible to add VAT (TAX) in the order form and discount codes ?

    Is it possible to add VAT (TAX) in the order form and discount codes ?

    would it be possible to do a caculation field then ? if I create a number field and add some kind of caculation rule, i've noticed that other form websites do this.

Maybe you are looking for