Including batchCharacteristics in'Selection Result forBatches' pane inBMBC

1. I create batch Class CUT_IRON (class type 022)
2. I create three characteristics (iron_colour, iron_width, & iron_alloy)  & assign these three characteristics to Class CUT_IRON.
3. While creating batch managed material KR352NG, i assign Class CUT_IRON to this material in the Classification view.
4. When doing Confirmation of Prod Order (co15) for this material, a batch number is generated & these Characteristics Values filled for each batch.
5. In BMBC, how do I make settings so that for batches these Characteristics will be displayed in the ''Selection Result for Batches'' pane?

Hello,
  from transaction BMBC select the menu path "Utilities --> User settings" . In the field "User group selection" choose the entry: "SAP 2 SAP example 2: classification".
You can maintain these entries from customizing under "Logistics - General --> Batch Management --> Batch Information Cockpit --> Define User-Group-Specific Selection".
Hope to be useful.
Best regards,
Andrea

Similar Messages

  • By default, Teststand will not include the test step result in subsequence, is there any way to include these step result in report?

    By default, Teststand will not include the test step result in subsequence, is there any way to include these step results in report?
    Thanks
    Jacky

    Hi,
    If your subsequence is in a separate sequencefile, then check the properties of the sequencefile to make sure that the record has not been disabled.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • How to show the SELECT result in a certain form?

    Hallo,
    I have the folling problem:
    CREATE TABLE buildings (
    building VARCHAR2(20) NOT NULL,
    city VARCHAR2(20) NOT NULL,
    no_of_buildings NUMBER NOT NULL);
    Now I make a SELECT * FROM buildings:
    building city no_of_buildings
    School Rome 20
    School Paris 30
    Cinema New York 15
    Theater London 10
    Theater Rome 7
    But I need the SELECT result in this form:
    Rome Paris New York London
    School 20 30 null null
    Cinema null null 15 null
    Theater 7 null null 10
    Is this possible?
    Thank you
    Werner

    Sorry,
    my request is not formatted well. I try again:
    Hallo,
    I have the folling problem:
    CREATE TABLE buildings (
         building          VARCHAR2(20) NOT NULL,
         city               VARCHAR2(20) NOT NULL,
         no_of_buildings     NUMBER NOT NULL);
    Now I make a SELECT * FROM buildings:
    building     city          no_of_buildings
    School      Rome                         20
    School      Paris                         30
    Cinema      New York                    15
    Theater      London                         10
    Theater      Rome                         7
    But I need the SELECT result in this form:
                   Rome     Paris     New York     London
    School          20          30          null          null
    Cinema          null     null     15               null
    Theater          7          null     null          10
    Is this possible?
    Thank you
    Werner

  • Sql (Select) result in string

    Hi , I found this code in internet but it´s put a result in range on excel. 
    I would like some code with end is some like  "MyVarString = objMySQLRecordsetResult"
    For example: In my select result = "User01" , I would like put this value in a var string.
    The code ends ...
            'ActiveSheet.Range("A1").CopyFromRecordset objMyRecordset
    I want ...
    Test01 = Recordset objMyRecordset
    tks for your help !!
    Public Sub GetDataFromADO()
        'Declare variables'
            Dim objMyConn As ADODB.Connection
            Dim objMyCmd As ADODB.Command
            Dim objMyRecordset As ADODB.Recordset
            Set objMyConn = New ADODB.Connection
            Set objMyCmd = New ADODB.Command
            Set objMyRecordset = New ADODB.Recordset
            Dim TESTE01 As String
        'Open Connection'
            objMyConn.ConnectionString = "Provider=Microsoft.ACE.OLEDB.15.0;Data Source="
    & ActiveWorkbook.Path & "\Database.accdb" & "; Jet OLEDB:Database Password= `MY PASSWORD"
            objMyConn.Open
        'Set and Excecute SQL Command'
            Set objMyCmd.ActiveConnection = objMyConn
            objMyCmd.CommandText = "select DUSER from DUSER WHERE DUSER = 'USUR01 "
            objMyCmd.CommandType = adCmdText
       'Open Recordset'
            Set objMyRecordset.Source = objMyCmd
            objMyRecordset.Open
            objMyRecordset.OpenRecordset
        'Copy Data to Excel'
            'ActiveSheet.Range("A1").CopyFromRecordset objMyRecordset
    End Sub

    Try:
    Public Sub GetDataFromADO()
    Dim Conn As New ADODB.Connection
    Dim Rs As New ADODB.Recordset
    'Open Connection'
    Conn.ConnectionString = "Provider=Microsoft.ACE.OLEDB.15.0;Data Source=" & ActiveWorkbook.Path & "\Database.accdb" & "; Jet OLEDB:Database Password= `MY PASSWORD"
    Conn.Open
    'Open Recordset'
    Rs.Open "select DUSER from DUSER WHERE DUSER = 'USUR01'", Conn, adOpenDynamic, adLockReadOnly
    'Copy Data to Excel'
    ActiveSheet.Range("A1").CopyFromRecordset Rs
    Rs.Close
    Conn.Close
    End Sub
    Rod Gill
    Author of the one and only Project VBA Book
    www.project-systems.co.nz

  • Regarding ldb pch (include DBPCHSEL for selection screen)

    hi experts,
    i am developing report for training and event mgmt details for this i m using ldb pch and include DBPCHSEL for standard selection screen what i want that in this include extra parameters & select-options/selection fields for input  are already declared but i dnt want all of these plz help me how to  remove extra selection fields which i dnt want on my customized report i want only one to two selection fields.
    plz help me how to remove these extra fields

    dear amit,
    ven ever u use ldb "pch"  it is not asking for report category means it wnt allow u create a report category.then plz gve another solutions.

  • Purchase Order restrict selection result

    Hi experts!
    We are on SRM5.0 in ECS.
    When a user search Purchase order in the 'Change Purchase Order' transaction BBP_POC he will be able to see all purchase orders within the company.
    Actually there is the possibility to restrict the selection results by purchasing organization or purchasing group, but this is not usefull for us. Is there any other object we can use?
    Many thanks for your help.
    Best regards,
    Corinne

    Hello,
    You could use the badi BBP_WF_LIST to filter this list at your convenience.
    You also could use structural authorization (tx OOSB, OOSP).
    Rgds,
    Pierre

  • Write the results script of results log pane to XLS or CSV file with VBA.

    Hi,
    How can I write the results script of results log pane to XLS or CSV file with VBA code or something? I tried so hard but i can't.
    Thanks

    MoGas,
    This is actually not a trivial process. You need to use the results object and code it to write to your file (it is described in the help files).
    e-Tester automatically saves the results log as a text file so you may just want to stick with that for simplicity.

  • Generate update statement from select results

    I'm trying to generate an update statement based off select statement results.  A very basic example,
    SELECT ListID FROM DListing WHERE Status = 2
    Results return 3 rows.
    1234
    2345
    3456
    How can I take those results and turn them into WHERE criteria for UPDATE statement?
    Generated UPDATE statement should look like this.
    UPDATE DListing SET Status = 1 WHERE ListID IN (1234,2345,3456)
    I have started by creating a temp table to hold my SELECT results, but I don't know how to get those results into format for IN condition.  Right now I get 3 UPDATE statements with 1 ListID in each IN condition.
    CREATE TABLE #TempStatusUpdate(ListID INT)
    INSERT INTO #TempStatusUpdate
    SELECT ListID FROM DListing WHERE Status = 2
    SELECT 'UPDATE DListing SET Status = 1 WHERE ListID IN (' + CONVERT(VARCHAR(30),ListID) + ') AND Status = 2'
    DROP TABLE #TempStatusUpdate

    So what wrong with
    UPDTATE DListing
    SET     Status = 1
    WHERE   ListID IN (SELECT ListID FROM #TempStatusUpdate)
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Display User Selection Results on Cover Sheet of the Crystal Report

    How do you display the result of a multi-level dynamic parameter that the user has selected on the cover sheet of the crystal report.
    Or Display the Start & Ending selection results from a dynamic parameter on the cover sheet of the crystal report.

    Replace the code with:
    stringvar selection;
    stringVar array arr1;
    numberVar i;
    redim preserve arr1[count({?ProductID})];
    for i := 1 to count({?ProductID}) step 1 do
    arr1<i> := {?ProductID};
    selection:= 'ProductID is : ' & chr(39) & join(arr1,",") & chr(39);
    This should hopefully fix the error, but I don't think it will solve your problem as it might keep assigning the same product id to each element of the array.
    Have you tried just join({?parameter},', ') as suggested by RG?
    Edited by: Sanjay Kodidine on Jul 1, 2009 10:22 AM

  • How can i get select result in varray

    Hi,
    I am new in oracle. I have the following sproc it return around 500 records but OCCI takes long time to get all records due to one-by-one records fetch.
    TYPE rec_type is record ( f1 integer, f2 integer, f3 integer,f4 integer );
    TYPE id_rec_type IS REF CURSOR RETURN rec_type;
    PROCEDURE get_s_data (
    v_s IN VARCHAR2,
    v_p IN INTEGER ,
    v_d IN INTEGER ,
    o_cd OUT NUMBER ,
    o_id OUT id_rec_type ) IS
    BEGIN
    DECLARE
    v_start_date DATE;
    BEGIN
    select get_start_date(TO_CHAR(SYSDATE,'DD-MON-YYYY') ,-1* v_d ) into v_start_date from dual;
    OPEN o_id FOR
    SELECT f1 , f2 , f3, f4
    FROM T1
    WHERE s1 = v_s
    AND timestamp >= v_start_date;
    END;
    I want to convert above sproc in VARRAY/Table to utilize bulk fetch
    I am not sure how to convert multicolumns select result in varray.
    example in document use only one column in varray from select statement.
    some exmple use cursor with bulk fetch but problem is cursor need to define in declare section.
    I have one condition in where clause and get calculate in sproc.
    any suggestion?

    thanks for reply.
    It doesn't work with ref cursor as output parameter in sproc.
    Please see my post in OCCI forums.
    Performance problem with sproc and out parameter ref cursor
    after spending some time found one way.
    prcedure p1 ( i1 IN integer , i2 IN integer, v1 OUT varray_type )
    declare
    cursor c1 is
    select c1 , c2 , c3 , c4
    from t1
    where c1 > i1 and c2 > i2;
    begin
    open c1;
    fetch c1 bulk collect into v1;
    close c1;
    end;
    procedure p2 ( v1 OUT varry_type )
    declare
    i1 integer
    i2 integer
    begin
    i1 := new_calculate_value(i2);
    i3 := calculate_s(i2);
    p1(i1,i3,v1);
    end;
    above method allow us to calculate where clause value before cursor define and get filter data.
    I am working OCCI to get varray from above method.

  • Table AGR_AGRS -  selection results not sufficient ??

    I want to select all customer activity groups (single roles) which are NOT included in a composite role.
    With the transaction SUIM I got the list of all used single activity groups.
    Then I put them in the selection criteria of table AGR_AGRS (SE16) as "child AGR".
    All (child) activity groups which are not in the result list are single, right?
    NO!!! I made I test with a huge composite activity group: Its children roles are not all listed! Some are, some are not.
    Can You explain, please?
    Thanks a lot!
    Birgitta
    Edited by: Birgitta Meier on Jul 28, 2008 12:12 PM

    > I want to select all customer activity groups (single roles) which are NOT included in a composite role.
    It's allways difficult to find things that are not there
    My suggestion is to do the following:
    1- Make a download from AGR_DEFINE containing all single roles you want to check and store it in a spreadsheet.
    2- Make a download from AGR_AGRS and store this in the same sheet.
    3- For each row in the first download, find out if it is in the CHILD_AGR column of the second one. In Excel the function VLOOKUP will be helpful.
    Hope this helps,
    Jurjen
    If you ever want to look for empty composites, those are the ones that appear in AGR_FLAGS with FLAG_TYPE "COLL_AGR" and FLAG_VALUE "X" but cannot be found in AGR_AGRS.
    Edited by: Jurjen Heeck on Jul 28, 2008 2:31 PM

  • Drop Down List By Key - Including a blank selection

    Hi all,
    In R/3 ABAP, when we reference a data element(with domain) from the data dictionary into a textfield(as dropdown) in a screen, we will be able access the domain values via the F4. The dropdown in ABAP will always include a blank field for selection.
    But in Java webdynpro, I successful bind a model attribute from the model into the dropdown list but when I click on the dropdown list, it contains the domain value but there's no blank field for selection. The page did initial display blank but after selecting other values, I cannot select back the blank field.
    I'm using the DropDownByKey with selectedKey binded to a value attribute that "type = com.sap..." model attribute. (imported field with domain and fixed emuneration)
    How can I configure/code the dropdown list to include that blank field for selection?
    Your help or advise is much appreciated. Thanks
    Best Regards,
    Jansen

    Jansen,
    I suggest you to use DropdownbyIndex UI element and set the <b>initializeLeadSelection</b> to <i>false</i> and <b>selection cardinality</b> to <i>0:1</i> of the corresponding context node. As a result, it will display a blank line.
    If you want to use Dropdownbykey then add one element with blank value.
    Bala

  • Broken views when including a multi-select Person or Group column

    I have several document libraries that include a column called Author(s) that allows multiple selections of people. In SP2010 I was able to have views that displayed this column with no problems. Now in SP2013
    whenever I try to add this column to a view I get the following:
    Sorry, something went wrong
    Attempted to use an object that has ceased to exist. (Exception from HRESULT: 0x80030102 (STG_E_REVERTED))
    I can replicate the error with new libraries and views as well, so it doesn't seem like something related to the upgrade. I can still enter data into this field when uploading a new document, etc.
    Any ideas?

    Hi Ravi,
    According to your description, my understanding is that When you added a person or group type column with multiple selections to a view in SharePoint 2013, an error occurred.
    To narrow the issue scope,
    Please test with a new site collection and compare the results.
    What types of views have you used? Please also test with different kinds of views and compare the results.
    For troubleshooting, In the library on which views are breaking, convert 
    'People or Group' from 'Name with Presence' to 'Name' only. See if the issue still occurs.
    Here is a link, you can take a look at:
    http://social.technet.microsoft.com/Forums/office/en-US/05144219-aa4a-49d4-b7f6-31d83e7e97c6/sp2013-upgradation-breaks-all-list-views-with-fieldscontent-types?forum=sharepointgeneral
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Include column name in results

    How do i include my column names as the first row of my results?

    Hi,
    Be careful with different datatypes. Example:
    SQL> desc employees
    Name           Type         Nullable Default Comments                                                                                                                                                                                 
    EMPLOYEE_ID    NUMBER(6)                     Primary key of employees table.                                                                                                                                                          
    FIRST_NAME     VARCHAR2(20) Y                First name of the employee. A not null column.                                                                                                                                           
    LAST_NAME      VARCHAR2(25)                  Last name of the employee. A not null column.                                                                                                                                            
    EMAIL          VARCHAR2(25)                  Email id of the employee                                                                                                                                                                 
    PHONE_NUMBER   VARCHAR2(20) Y                Phone number of the employee; includes country code and area code                                                                                                                        
    HIRE_DATE      DATE                          Date when the employee started on this job. A not null column.                                                                                                                           
    JOB_ID         VARCHAR2(10)                  Current job of the employee; foreign key to job_id column of the
    jobs table. A not null column.                                                                                         
    SALARY         NUMBER(8,2)  Y                Monthly salary of the employee. Must be greater
    than zero (enforced by constraint emp_salary_min)                                                                                       
    COMMISSION_PCT NUMBER(2,2)  Y                Commission percentage of the employee; Only employees in sales
    department elgible for commission percentage                                                                             
    MANAGER_ID     NUMBER(6)    Y                Manager id of the employee; has same domain as manager_id in
    departments table. Foreign key to employee_id column of employees table.
    (useful for reflexive joins and CONNECT BY query)
    DEPARTMENT_ID  NUMBER(4)    Y                Department id where employee works; foreign key to department_id
    column of the departments table
    SQL> SELECT 'EMPLOYEE_ID' FROM DUAL UNION ALL SELECT E.EMPLOYEE_ID FROM EMPLOYEES E;
    SELECT 'EMPLOYEE_ID' FROM DUAL UNION ALL SELECT E.EMPLOYEE_ID FROM EMPLOYEES E
    ORA-01790: expression must have same datatype as corresponding expressionMaybe you have to use to_char function to avoid this problems
    SQL> SELECT 'EMPLOYEE_ID' FROM DUAL UNION ALL SELECT to_char(E.EMPLOYEE_ID) FROM EMPLOYEES E;
    'EMPLOYEE_ID'
    EMPLOYEE_ID
    100
    101
    102
    103Regards,

  • Custom JTable column (JCheckBox) not included in row selection.

    I am trying to use JCheckBox (for display only data) as one of my JTable columns. I have written custom cell renderer for the same. Every thing is working fine except that when I select a row, the new custom JCheckBox column is not included in selection. Here is the code that I am using.
        protected class CheckBoxColumnRenderer extends DefaultTableCellRenderer {
            JCheckBox ckb = new JCheckBox();
            public Component getTableCellRendererComponent(JTable table, Object value,
                        boolean isSelected, boolean hasFocus, int row, int column) {
                if (value instanceof Boolean) { // Boolean
                  ckb.setSelected(((Boolean) value));
                  ckb.setHorizontalAlignment(JLabel.CENTER);
                  ckb.setBackground(super.getBackground());
                  if (isSelected || hasFocus) {
                      ckb.setBackground(table.getSelectionBackground());
                return ckb;
        }How can I include the custom cell in the row selection.
    regards,
    nirvan.

    they have lots of dependencies and it is not always easy to strip out an SSCCE without a considerable effort.Exactly. And is the cause of the problem the dependencies or something else. The only way to know for sure is to strip out the code and simplify the problem, that way you truly understand what the problem is.
    The majority of time this can be done with minimal effort as in this case.
    Some times we are sure that the problem is with certain part of the code Is the problem the code or the way the code is invoked? How do we know the TableModel is created properly or that the column class is overwritten correctly when we can't see it?
    someone having a third look at it may actually find the enhancement required with ease.Exactly, but we need to see the big picture.
    So are you sure that I should post an SSCCE with every possible question where coding is involved ?In the majority of cases a SSCCE is easily created in 5-10 minutes, so if you want the fastest help then yes.
    Just twice this past week I was ready to ask a question on the forum and was preparing a SSCCE to post and sure enough both times the creation of the SSCCE caused me to look at the problem differently and I solved it. I would much rather solve a problem on my own then post a question and wait for hours (days) hoping someone else knows the answer.

Maybe you are looking for

  • Link to trigger a .pdf or .doc file to show in presentation

    I would like to add a link that would trigger the showing of a .pdf file or a .doc file within the presentation itself. I can do this in powerpoint. There must be some way to do this in Keynote, but I can't figire out how to do this. Thanks for any i

  • Why does my macbook stay stuck after turn on?

    Hi, last night when I turned on my macbook pro it was stuck, I could see the screen with the icons but when I clicked on them nothing happened, I couldn't make it react, I couldn't click on anything. It took me 10 minutes to make it work. The same ha

  • Deleted files still shows in playlist

    I've deleted several files but they still show in my playlist.    I've tried shift delete and it didn't help. I tried right click and Get Info, it shows their locations as http://feedproxy.google.com/etc...etc...etc...   All other undeleted files are

  • Is it safe to install the Adobe Flash Player on my new MacBook Pro 13"?

    Is it safe to install the Adobe Flash Player on my new MacBook Pro 13"?

  • Cannot install or update

    I have been trying to install (after uninstalling several times) iTune 64. After I uninstall everything as suggested in this support group, reboot and try again, it still gives me Key not accessible and a long list of registry key numbers. If I go in