COB1 (beach search strategy):  strategy type - search procedure

Hi dears,
one information about the creation of bach search strategy  (COB1):
the "strategy type" depends from the "search procedure" in COR4?
in wich way?
thanks,
Juan

the whole link is as below
Lo generalBatch ManagementBatch Determination and Batch Check>Condition Table>Define Production Order Condition Table-->30 and 31
Access sequence  Define Production Order Access Sequences>C001>30-->ot,pl,mat
Strategy Types(condition type)>Define Production Order Strategy Types>C001-->AS(C001)
Batch determination -->foreground?
Batch Search Procedure Definition Define Production Order Search Procedure>CO0001>CT(C001)
Production order type CO000>CT(C001)AS(C001>Condition table-30
Create batch search strategy --> COB1
Strategy = C001

Similar Messages

  • How do I get the Batch Search Strategy Type in an ABAP program?

    Hi Experts,
    I have a requirement to filter the Batch Search Strategy Type in a BADI. For example, I have a Strategy Type ZD01 which is a Customer/Material combination. This has been created and checking VCH3 confirms that.
    For example, I am implementing BADI VB_BD_SELECTION~PRESELECT_BATCHES and will put the filtering in there. For example, I go to transaction VL01n then create outbound delivery with order reference, in the PRESELECT_BATCHES portion, I will do a filtering that if Batch Search Strategy Type = ZD01, then do some code.
    My problem is, I don't know how to retrieve the Strategy Type. I can use the parameters I_KOMKH-KUNNR (Customer) and I_KOMPH-MATNR (Material) of method PRESELECT_BATCHES to retrieve the Strategy Type but I don't know how.
    Any tips?

    Hi Experts,
    I have a requirement to filter the Batch Search Strategy Type in a BADI. For example, I have a Strategy Type ZD01 which is a Customer/Material combination. This has been created and checking VCH3 confirms that.
    For example, I am implementing BADI VB_BD_SELECTION~PRESELECT_BATCHES and will put the filtering in there. For example, I go to transaction VL01n then create outbound delivery with order reference, in the PRESELECT_BATCHES portion, I will do a filtering that if Batch Search Strategy Type = ZD01, then do some code.
    My problem is, I don't know how to retrieve the Strategy Type. I can use the parameters I_KOMKH-KUNNR (Customer) and I_KOMPH-MATNR (Material) of method PRESELECT_BATCHES to retrieve the Strategy Type but I don't know how.
    Any tips?

  • Strategy Types in Batch Search Strategy (Process Order)

    Hi Expert,
    What are the difference between the strategy types - Order type/Plant/Mat, Order type/Plant, Prod Material?
    For Order type/Plant combination- If my criteria is to do automatic batch determination at process order release against the sort rule characteristics (LOBM_LWERT) GR received date. I maintained LOBM_LWERT in all material classes, now in selection criteria which class I will choose as different materials contain different class in the class type 023.
    I am confused.
    In case of Order type/Plant/mat- number of master data is huge.
    Pls suggest
    Krish

    Got answer.closed

  • Automatic batch determination - access sequence and search procedure

    Hello all,
    I would like to know how will the system automatically start a batch determination for TOs in warehouse.
    pl. post any documents related to it.
    I would like to know how to activate automatic batch determination in the system for transfer orders in warehouse management. is there any specific t-code or should i make any customizing settings in Batch management.
    Also how to create access sequence and how to activate or create search procedure/business procedure while implementing automatic batch determination. is there any specific t-code or should i make any customizing settings in Batch management.
    Pl. post any links or config. documents for automatic batch determination.
    Thanks,
    Maxx

    hi
    in delivery select the line item click on batch split, then click on batch determination.
    you will find strategy analysis  icon click on that.
    you can analyse your condition type  and understand for which combination condition record is maintained and batch  got determined.
    regards
    Gopi Ponnala      

  • Assign Search Procedure to Process Order, TCode "CORC"

    Hi Gurus,
    I'm Trying to assing the std search procedure CO0001 to a combination of Plant and Std Order Type PI01 but this combination is not showing when I get either via IMG or directly by TCode CORC. I'm also not getting the "New Entries" button so I don't know if I must do some configuration prior to this.
    Please advise.
    Regards.

    And Same is happening when trying to assing the search procedure to the Pull List
    Just to mention the search procedure I'm talking about is the Batch Search Procedure
    Thanks.
    Julio

  • Search Procedure

    Hi All
    I am writing a Search Procedure as follow
    Create or Replace Procedure SearchSDEPT(
              pDEPTID in SDEPT.DEPTID%Type)
    IS
    BEGIN
    Select * from SDEPT where DEPTID Like '%pDEPTID%';
    END SearchSDEPT;
    SDEPT is a copy of scott.dept table.
    Whenever I Compile it, it gives me following error
    LINE/COL ERROR
    5/1 PLS-00428: an INTO clause is expected in this SELECT statement
    Thanks in Advance.
    Regards
    Thunder2777
    Edited by: Thunder2777 on May 29, 2013 9:51 PM

    There are two type of engine in oracle PL/SQL Engine and SQL Engine.
    PL/SQL engine process PL/SQL code and SQL engine process SQL code. PL/SQL engine is very clever enough to identify the SQL statement and sent it to SQL engine for processing.
    In your case the code "select * from sdept where deptid like '%pdeptid%" will be sent to SQL engine. SQL engine process the SELECT and returns the result back to the PL/SQL engine. Now the question is what does PL/SQL code going to do with the result set? is it going to process the data further? In order to do that PL/SQL need to store the result into its local variable.
    That is the reason for using the INTO or BULK COLLECT INTO clause. This help to direct the result to PL/SQL variables.
    As i said PL/SQL engine is very clever, once it see your code, it identifies that you have not assigned any variable to store the result of the SELECT. So what is the point in sending the SQL for processing. Hence it just throws a compilation error saying you are missing the expected INTO clause.
    A select statement can be used in 2 ways in PL/SQL.
    1. Assigning the result of the SELECT statement to a variable.
    select ename INTO l_empname from emp where empno = 100 In the above code we query emp table and get the employee name for empno 10. Once cache here is the INTO clause work with scalar variables. Which means it can store only once value. So a query like this
    select ename INTO l_empname from emp where deptno = 10 Could result in TOO_MANY_ROWS exception.
    In that case, that is when you are expecting multiple rows to be returned by your SELECT you cant use a scalar variable. You need to use a collection variable. That is when you use BULK COLLECT. Some thing like this.
    declare
       type ename_tbl as table of number;
       l_empname ename_tbl;
    begin
       select ename bulk collect into l_empname from emp where deptno = 10;
    end; 2. The second way a SELECT can be used is as a REFCURSOR. That is you just assign a cursor pointer to a SELECT and return it. Something like this.
    create or replace procedure get_emp
      p_emp_cursor out sys_refcursor;
    as
    begin
       open p_emp_cursor for select empno, ename, deptno from emp;
    end;
    / This is considered to be the best way to return a result to client.
    Said that i see a fundamental flaw in your SELECT statement. NEVER use * in a SELECT statement when you are going to put the code into your application. * means all columns from the table. And the number of column in a table can Increase or decrease over period of time.

  • Assign Search procedure for batch determination for delivery

    Hi all,
    i have a problem with automatic batch determiantion during delivery creation.
    i have created a transfer order (purchasing order type UB from one plant to
    another).
    i have created delivery. Batch determination is impossible because the sistem
    didn't find search procedure.
    But if i create a sales order and subsequent delivery the batch determination is
    carried out correctly.
    in customizing i found the transaction in which we have to assign for a
    particular sales organization and sales document a search procedure ("Allocate
    SD Search procedure/ activate check")and i created the correct items for my
    sales document.
    My question is: where can i assign a search procedure to a delivery without
    sales order reference?
    In customizing i have activated "Automatic batch determination for my Delivery
    item category" but the sistem didn't find search procedure.
    What's wrong?
    Thanks
    Veronica

    Hi Veronica,
    For deliveries without reference to a sales order you still need to define a default order type for the delivery type - this will provide the control criteria that is normally copied from the sales document header into the delivery document.
    In our system our replenishment delivery type is the standard NL and the Default ord. ty. is set to DL, which I think is the standard SAP setting.
    Give this a try.
    Regards,
    Monika Strasser

  • Search procedure, numeric characteristic 10

    Hi gurus,
    I have created a characteristic that is numeric ZTEST. This is the date defined in the characteristic:
    Data type: NUM Numeric Format
    Number of Chars: 3
    Decimal places: 0
    Exp. display: 0 No exponent
    Single value (check box selected)
    Interval vals allowed (check box selected)
    Then, I have created a search procedure where the system needs to find this batch if ZTEST < 10.
    Now, I have a batch where the value defined in this characteristic = 0
    Then, when I am doing the delivery and I want to check the batch determination, the system is not retreiving any data.
    If I remove the data <28, the system is retreiving the batch.
    Could you help me? I want to know how I need to define the characteristic that the system can found all the batches <10.
    Thanks in advance for your help!
    Kind regards,
    SP

    Finally, it was working.

  • Batch determination not possible--  there is no search procedure.

    Hi folks,
    got a problem regarding batch management.
    When doing PGI in delivery document, one error message is showing as "Batch determination is not possible as there is no search procedure".
    Can anyone tell me what the reason for it??
    and how to sove this issue..
    thanks in advance
    sourav

    Batch Determination – Batch Search Procedure Allocation (SD)
    Menu Path Enterprise Structure> Logistics General> Batch Management --> Batch Determination & Batch Check --> Allocate SD Search procedure Transaction V/C5
    1.18. Batch Determination – Activate Automatic Batch Determination (SD)
    Menu Path Enterprise Structure> Logistics General> Batch Management --> Batch Determination & Batch Check --> Activate Automatic Batch Determination in SD -->For delivery item categories Transaction V/CL

  • Batch determination is not possible because there is no search procedure

    Hello Friends,
    In Consignment issue delivery document facing error 'Batch determination is not possible because there is no search procedure",please tellm ehow to resolve this.
    regards,
    Nitin M.Pawar

    In IMG > Logistics - General > Batch Management > Batch Determination and Batch Check > Batch Search Procedure Allocation and Check Activation > Allocate SD Search Procedure/Activate Check.
    Here maintain the config as per the system requirements.
    Best Regards,
    Ankur

  • Pricing , freight conditon type, import procedure in pricing , taxes

    I understood the pricing , but what with some exercises from where get this?
    How many conditon type will be used in MM ?
    <b>pricing , freight conditon type, import procedure in pricing , taxes</b>
    which conditon types used ? what make the settings in freight conditons ?

    Hi PV
    You can go for Alt calc type ,there we can write, the requirement what we need and that has to be put in the subtotal table
    Reward if useful
    Regards
    Srianth

  • COB1 Batch Search Startegy for Component in another plant

    Is there a way to build Batch Search Strategy (COB1) for components in another plant?  We use Batch Search Strategy in PP-PI process orders. If so, what is the configuration?

    Resolved in EAM forum

  • Variant Configuration:Batch search procedure

    dear experts,
    we are about to go for Varinat configuration  in a steel plant.
    what i want is the batch should be allowed to get posted only when its configured characteristics are getting matched with   configure variant.
    For that what customizing settings i need to have?
    also, when going for variant configuration which customizing settings i need to mainain step by step.
    regards,
    Rishi.

    Hi,
    Check following link for variant configuration.
    http://help.sap.com/erp2005_ehp_02/helpdata/en/92/58d455417011d189ec0000e81ddfac/frameset.htm
    Regards,
    Suhas

  • Requirements not fullfilled for Condition type - Pricing Procedure

    When I am doing the pricing procedure, the error thrown is "Requirements not fullfilled for Condition type". Can any one suggest how to fix this problem ?

    Hi Sunil,
         Please first of all check the condition type in Pricing Procedure. In condition type column check the requirement. Here conditon is,  once requirement is fulfilled which you have mentioned in the condition type then only it will be executed. Take a help of  ABAP'er regarding this requirement if it is customized requirement.
    We should know the purpose of requirement in condition type.
    Venkat.

  • Exchange rate type & pricing procedure

    Dear all,
    I new defined an exchange rate type and assigned it to a specific customer, but PR00 missing when creating sales order.
    So could you please make me clear about the relationship of exchange rate type and pricing procedure?
    Moreover, How the system determine the exchange rate when creating a sales order? I found it's not the rate in the rate type assigned in customer master data.
    Thanks so much.

    Hi
    There is no relation with Pricing procedure and Exchange rate.
    Check the condition records of PR00 in VK12.
    Exchange Rate determination
    The system proposes a valid exchange rate from the table where exchange
    rates are maintained. You can change the rate in the sales document. If
    you change the exchange rate, the system recalculates prices for the
    entire document. (Info from SAP Help)
    Hope it helps you
    Regards,
    Ramesh
    Edited by: Ramesh on Apr 2, 2009 8:08 AM

Maybe you are looking for

  • BI Web Template Caching on EP server

    Hello, We are developing BI web templates in the BI Web Application Designer and then previewing (via publishing) them with the EP web server. When we make a change to the report/template and republish/preview it to the EP server, the old version rem

  • Programmatically selecting row in af:table

    I have an instance of the <af:table> component that points to a value on a managed bean of type List<MyValueType>. I need to make the <af:table> have a preselected row, and I have the value of type MyValueType that represents the row I need selected.

  • Can i restrict a manufcaturing plant as delivering plant in order type

    dear all, How can i restrict a manufcaturing plant as delivering plant in order type of Depo sales, thanks...

  • Upgrading Oracle 7.3 to 10g

    Hello All, We are planning to upgrade Oracle 7.3 to 10 g. Is any one know what is hardware requirements for 10g on Sun Solaris or other UNIX System? What we have Currently is as follows: Operating System, SUN Solaris 5.5.1 For Production: SUN Microsy

  • HT5070 Download issues with purchased tv episode

    I purchased both seasons of Downton Abbey. Episode 6 of Season two will not download and different error messages appear after each attempt. No issues with all other episodes. Please advise.