Flagging a variant by a feild value based on char,value.

Hello SAP Gurus,
I have a requirement in which I have to flag a variant based on characteristic values.
During configuration, when you happen to select certain characteristic values in  a character, the material should flag with a character material master field, which changes the way the material is handled.
Any feed backs...
I am thinking of creating another character with the material master field and establishing an "object dependency" between characteristic values and character....
Is this correct?
Thanks
Eshlok

It seems that don't understand that you aren't asking to Apple employees but to end users like you.
May you take time to download iWork Formulas and Functions User Guide (thru the Help menu) ?
I will not spend time describing Nummbers functions one after an other one !
I am unable to guess what you tried to achieve with your formula..
To calculate 33% of the content of c6, use the formula
=ROUNDUP(C6*.33,0)
or
=ROUNDUP(C6/3,0)
Yvan KOENIG (VALLAURIS, France) lundi 27 juin 2011 18:14:03 iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
Please : Search for questions similar to your own before submitting them to the community
To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

Similar Messages

  • What are required feilds values for creating a sales order using va01?

    What are required feilds values for creating a sales order using va01?
    Please give examples if possible.

    Hi,
    go through this URL:
    <a href="http://web.mit.edu/cao/www/SB2002/CR/VA01.htm">http://web.mit.edu/cao/www/SB2002/CR/VA01.htm</a>
    Hope this will help you.
    Thanks
    Shiva

  • VC Variant Configurator SD; changing values by FM    'CUOV* '

    Hi everybody,
    It appears me some troubles with VC when I try to set value for particular feature again.
    I have inconsistency fault when I try to change the value by calling FM 'CUOV_SET_FUNCTION_ARGUMENT' from configuration profile but it was set manually by user first (in standard VC window).
    Both values of feature are correct (old and new).
    Error looks like :
    E: Inconsistent values inferred for characteristic (here is number of characteristic)
    and next in details:
    The following values are incompatible with each other:
    (here is old value)
    (here is new value)
    Let me also know you, that this inconsistency problem exits in case when I try to overwrite feature value by FM I mentioned, and this value was set manually first only ( VC window)
    If I try to owerwrite the feature manually (using the same value) - there is OK.
    I suppose, I should in "any way " clear values which was set manually first, or change "something" in SAP Variant Configurator what let me change priority and allows overwrite value by FM which was set first manually ( in VC window) . But I have no idea how to do it...
    I will be gratefull for any hints.
    Thanks & Regards
    Tomas

    Standard SAP does not let you overwrite a value that is flagged as "Set by User".  We had a similar requirement where we had to force a user-entered value to be deleted and replace it with a calculated value.  To get around the issue, we copied the code from FM CUPR_DEL_VAL, which deletes values set by procedure, into our own FM called Z_VC_CUPR_DEL_VAL.  In our version of the code we inserted a couple of statemtents that delete both user-entered values and values that were set as a default.
    The great part about this mod was that we didn't even have to create our copy of the module inside of the CUPR function group.  It worked fine if we just created in one of our custom function groups.
    These were the lines we added to the end of the module after we copied:
      KNTYPE = 'DI'.
      PERFORM DDB_DEL_VALS_BY_KNTYPE(SAPLCUDB) USING INSTANCE ICABN-ATINN
                                                     RFLAG KNTYPE RESULT.
      KNTYPE = 'SF'.
      PERFORM DDB_DEL_VALS_BY_KNTYPE(SAPLCUDB) USING INSTANCE ICABN-ATINN
                                                     RFLAG KNTYPE RESULT.

  • How to set up Dynamic Variants for job which is based on Pay Period

    Hi,
    We need to set up dynamic variant for payroll interface.  This interface is based on Pay periods and that is why we need to use different variant for each month.  Letus know how to set up dynamic variant which will take care of Pay Periods

    Hi,  Thnx for reply.
    We are not changing the control records, current period will be some old period in system. 
    payroll is not processed in SAP,

  • Find option and variant save feature  in Value help  in VC application

    Hi,
        i want "save variant (like in R/3 you can make your variant and save it so no need to do same selection again and agian)" and find option in value help for the user friendly. can it possible in VC and if it is, then how i can do it ? reply me as soon as possible

    resolved by me

  • Hide a View Variant embedded inside View Cluster based on Switch Assignment

    Hi,
    We have a view cluster in which one 2 view variants are present.
    Now, we want to display only one of these view variants based on the switch assignment.
    While creating an entry for view variant in View cluster I've added swithc name to one of the views. So based on whether the switch is active or not that view variant will be displayed.
    But for the other view variant there is no switch assignment made, so it will always be visible.
    Is there any way that we can make the visiblity of 2 view variants mutually exclusive based on some switch assignment
    Any help is appreciated.
    Regards
    Manas Dua

    closing the thread..

  • Changing screen feild values through field symbols

    hi
    I am working on SAPMF02D user exit, it requires validation of searchterm1 feild, I have successfully completed this part with the help of field symbols, but the problem i am facing is that, after performing validation checks, searchterm1 feild would be updated, this I am not able to do, so far I have done the following:
    DATA: fld(30) VALUE '(SAPLSZA1)ADDR1_DATA-SORT1'.
    FIELD-SYMBOLS: <f1> TYPE ANY .
    * Assign screen field values to field symbol
    ASSIGN (fld) TO <f1>.
    * get the value from field symbol into our field
    IF <f1> IS ASSIGNED.
      acc1 = <f1>.
    ENDIF.
    .. *Perform validation and updation on 'acc1'
    * get the updated values back into screen feild
    <f1> = acc1.
    now this last thing is not working for me,, and the data does not get updated in screen/database....
    I have tried using ' comit work' statement , but no use,
    I require help on this issue and its quite urgent.
    Thank you all for your time.

    Thank you again for the reply,
    I am sorry , I am not able to use to that FM either,, I just cannot understand the parameters it is taking and how to provide them.
    I have already used the FM "DYNP_UPDATE_FIELDS"  and "DYNP_UPDATE_FIELDS" , as:
    <f1> = acc1.
    scrfields-fieldname = 'ADDR1_DATA-SORT1'.
    scrfields-fieldvalue = <f1>.
    APPEND scrfields.
    CALL FUNCTION 'DYNP_VALUES_UPDATE'
      EXPORTING
        dyname                     = 'SAPLSZA1'
        dynumb                     = '0301'
      TABLES
        dynpfields                 = scrfields[]
    * EXCEPTIONS
    *   INVALID_ABAPWORKAREA       = 1
    *   INVALID_DYNPROFIELD        = 2
    *   INVALID_DYNPRONAME         = 3
    *   INVALID_DYNPRONUMMER       = 4
    *   INVALID_REQUEST            = 5
    *   NO_FIELDDESCRIPTION        = 6
    *   UNDEFIND_ERROR             = 7
    *   OTHERS                     = 8
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    but it did not helped my cause either..
    Any help would be highly appreciated,
    thank you

  • Clear Flag for BPS user-specific variable values

    Hi Experts!
    I have a 'user-specific variable' settintg with the flag 'on', then the user should choose only one value. 
    But now I need execute an abap program which read all values available for this variable. For this reason, I need clear this flag with abap code, and after put on again.
    Could somebody show me a small piece of abap code for this?
    Thank you in advance!

    Hi,
    Analysis of your question:
    <i>Second line of your question "...<b>which read all values available for this variable</b>".</i>
    1) When you mean you wish to read all possible values with which the variable could be filled up, then please use the Function Module:
    UPC_CHA_VALUES_GET 
    The parameter <b>ETO_CHAVL</b> would then return all master data of the variable's characteristic
    2) When you mean you wish to read all the variable values "<b>selected from the user in the past</b>" then use the function  module
    API_SEMBPS_VARIABLE_GET_DETAIL
    Here the table <b>ETK_VARSEL_ALL</b> returns you all the values selected by user in the past. The "<b>current selected value</b>" for the user is stored in the table "ETK_VARSEL".
    Check out these How-To Documents. If these dosen't suffices, then please elaborate your requirement, for me to write a ABAP Pseudo-code.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/324de5a1-0201-0010-dc9a-a093cde87bb5">How to use Reporting Variables in BPS</a>
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/650ee690-0201-0010-4bb7-83c3e2a74039">How to variable of type Exit</a>
    Many regards.

  • How to query a  collection  for a particular feild value

    I have a service called as RevenueItemsService and iam calling the below operation:
    <wsdl:operation name="GetRevenueItems">
    <wsdl:input message="tns:GetRevenueItemsSoapIn" />
    <wsdl:output message="tns:GetRevenueItemsSoapOut" />
    </wsdl:operation>
    and in the response i get array of UserDefinedField as a part of response The array is of below type :
    <s:complexType name="UserDefinedField">
    <s:attribute name="Name" type="s:string" />
    <s:attribute name="Version" type="s:decimal" use="required" />
    <s:attribute name="UDFType" type="tns:UDFType" use="required" />
    <s:attribute name="Enabled" type="s:boolean" use="required" />
    <s:attribute name="Required" type="s:boolean" use="required" />
    <s:attribute name="Index" type="s:int" use="required" />
    <s:attribute name="Value" type="s:string" />
    <s:attribute name="ForBizLogicEntity" type="s:string" />
    </s:complexType>
    My question is when i get array(assume i got 5 userdefined feilds as the array)
    I want to query the xpath in such a way that in the array if i ask for a particular version in the userdefined feilds then it has to give me that particular index value.
    Example:
    we have a array of following :
    Array1:
    name: xxx
    version : 1.0
    UDF type: udf1
    Index: 1
    Array 2
    name: YYY
    version : 2.0
    UDF Type : Udf2
    index : 2
    etccc.....upto n .
    so my question is , i want the result in such a way if i say version=2.0 then it has to return me the corresponding index as 2. How do i do that in BPEL.
    Please provide me some suggestions.
    Or .
    you can provide me some link where i can find the answer
    Any suggestions are appreciated.
    Regards
    Pavan

    little example :
    <element name="assignInArrayProcessRequest">
      <complexType>
       <sequence>
        <element name="array" maxOccurs="unbounded">
         <complexType>
          <sequence>
           <element name="name" type="string"/>
           <element name="version" type="string"/>
          </sequence>
         </complexType>
        </element>
       </sequence>
      </complexType>
    </element>so the array element is unbound.
    this is the process payload
    <ns1:array>
      <ns1:name>test1</ns1:name>
      <ns1:version>213562363</ns1:version>
    </ns1:array>
    <ns1:array>
      <ns1:name>test2</ns1:name>
      <ns1:version>yeryeryer</ns1:version>
    </ns1:array>
    <ns1:array>
      <ns1:name>test3</ns1:name>
      <ns1:version>fytetr</ns1:version>
    </ns1:array> now you can use this peace of code
            <assign name="setArrayValue">
                <copy>
                    <from expression="string('1.9999')"/>
                    <to variable="inputVariable" part="payload"
                        query="/client:assignInArrayProcessRequest/client:array[1]/client:version"/>
                </copy>
            </assign>to update the value of version in the first element of the array.
    in this example you can also create some loop and use the 'index' , the [1] value dynamic to update more then 1 values in the array-element
    the response after the update
    <ns1:array>
      <ns1:name>test1</ns1:name>
      <ns1:version>1.9999</ns1:version>
    </ns1:array>
    <ns1:array>
      <ns1:name>test2</ns1:name>
      <ns1:version>yeryeryer</ns1:version>
    </ns1:array>
    <ns1:array>
      <ns1:name>test3</ns1:name>
      <ns1:version>fytetr</ns1:version>
    </ns1:array>Maybe you can use it :)

  • About feild value type

    hi guys,
        There is a field called value type(0vtype) in BPS sub planning(eg.cost center planning),which often has value 10 or 20.I don't know what's the purpose of using this field.
        The same as feilds Sender/Receiver Indicator(0DB_CR_IND) and Debit/credit indicator(0DCINDIC).
        anyone has idea?
    thanks a lot!

    Hi Eric,
    Value type is a technical object used in R/3, for example  standard 10 = actual data and 20 = plan data. It is a way to trace the type of data through the system and lets you make more accurate reporting (you could also look at committed data, budgeted data,...)
    The same is reflected on planning side and normally represented as
    Value type can have values like
    10 - Actual
    20 - Plan
    30 - Forecast
    etc
    Other types are Budgeting ,Forecasting and Benchmarking.
    One Value type can have various versions of data .
    Hope this helps and assign points if it helps
    Cheers
    Raja

  • How to send timer job email to "assigned to" feild value in a task list?

    Hi All,
    How to send timer job email  to "assigned to" field value in a task list if due date is after two days from now?

    Create a SharePoint Designer Workflow and use "pause until date" option when an new item is created/update.
    Using Server Object model, I believe you can create the timer job from item event receiver.
    --Cheers

  • Adobe acrobat text feild value changing when placing a cursor

    Hi,
    I am using adobe acrobat 9 for printing some letters.
    I have a pdf document in that there are bundle of letters. In all letter there are some common text fields are existing.
    Here issue is, the content of first letter values are appearing in all remaining letters common fields when i am placing cursor over the field.
    While i am printing also the first letter are appearing in all letters.
    But when i use adobe 5 the issue is not occurring.
    Please help me, to get rid of this issue.
    Thanks in advance.

    I have pdf document, which consists of multiple letters. All letters have common content but the date field, name of client, address and control number are differ for individual letter.
    Issue is, while i am looking at the letter everything is fine, i mean data is distinct for each letter. The i printed the pdf doc but all letters have same date field, name of client, address and control number which are as of first letter.
    And when i click on text field the content of field is changing and showing same as first letter. When i remove cursor its again distinct.
    For example in first letter date field is 15th feb 2015. In second letter its showing 16th feb 2015. But when i place cursor over the field its changing to 15th feb 2015. while i remove the cursor its showing 16th feb 2015. i printed the letter and its showing 15th feb 2015 in both letters.
    Here the issue is not with the batch program which is placing the data to the doc. As this issue is coming while using Adobe Acrobat 5 to generate the pdf doc.
    I am suspecting some properties change is causing this issue. i try to change one property of text field like back ground color, then the text field value is not changing and if i print also the value is not changing.
    I cant share the pdf document as it has some confidential information.
    please suggest me to resolve this issue.

  • How can I assgin a master feild value in combobox bind variable in the detail

    Hi All,
    I'm working on a MD-Form in portal.
    I want to pass a master block value in the dynamic combobox where clause.
    Combo box is in the detail Block. Can anyone please give a solution for this?
    This a very urgent Requirement for me. I really appreciate.
    Thanks
    Murali

    Does this help?
    Dreamweaver Dynamic Master List with link to Detail - YouTube

  • Set a flag if certain columns contain a value

    I have a table with multiple different columns. Each of these fields can contain 1 or 0. So how would I write a statement that sets a "flag" if each of these columns contain a 1. Again, I only want the field to be set if
    each column in the row contains a 1. I know I can use "nested If statements" but I was wondering if there is a cleaner, more organized way.
    Thanks.

    >> I have a table with multiple different columns. Each of these fields [sic] can contain 1 or 0. So how would I write a statement that sets a "flag" if each of these columns contain a 1. <<
    You missed a basic concept; columns are not fields. This is fundamental. Then you do not know that we never use flags in SQL. That was assembly language, not SQL. Please read:
    https://www.simple-talk.com/sql/t-sql-programming/bit-of-a-problem/
    >> Again, I only want the field [sic] to be set if each column in the row contains a 1. I know I can use "nested If statements" but I was wondering if there is a cleaner, more organized way. <<
    SELECT
     CASE (c1+ c2+ c3+ ..+ cn)
      WHEN <<n>>  THEN 'All Bit flags on!'
      WHEN 0 THEN 'No Bit flags on!'
      ELSE 'Some Bit flags on!'
    END AS assembly_flg
    FROM Foobar;
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • How to find all the tables by feild value in oracle

    Hi ...
    I have a requirement to find the tables in a particular schema(suppose DEMO) by Field value..
    Ex:
    suppose in a  schema called DEMO  i have the tables.......T1,T2,T3,T4,T5..
    all the above tables have the name column..
    now i wan to know the tables whose column(name) have value as rajani.......
    pls help.........
    thank you
    .+

    Solutions from previous requests for the same...
    michaels>  var val varchar2(5)
    michaels>  exec :val := 'as'
    PL/SQL procedure successfully completed.
    michaels>  select distinct substr (:val, 1, 11) "Searchword",
                    substr (table_name, 1, 14) "Table",
                    substr (t.column_value.getstringval (), 1, 50) "Column/Value"
               from cols,
                    table
                       (xmlsequence
                           (dbms_xmlgen.getxmltype ('select ' || column_name
                                                    || ' from ' || table_name
                                                    || ' where upper('
                                                    || column_name
                                                    || ') like upper(''%' || :val
                                                    || '%'')'
                                                   ).extract ('ROWSET/ROW/*')
                       ) t
    --        where table_name in ('EMPLOYEES', 'JOB_HISTORY', 'DEPARTMENTS')
           order by "Table"or
    11g upwards
    SQL> select table_name,
           column_name,
           :search_string search_string,
           result
      from (select column_name,
                   table_name,
                   'ora:view("' || table_name || '")/ROW/' || column_name || '[ora:contains(text(),"%' || :search_string || '%") > 0]' str
              from cols
             where table_name in ('EMP', 'DEPT')),
           xmltable (str columns result varchar2(10) path '.')
    TABLE_NAME                     COLUMN_NAME                    SEARCH_STRING                    RESULT   
    DEPT                           DNAME                          es                               RESEARCH 
    EMP                            ENAME                          es                               JAMES    
    EMP                            JOB                            es                               SALESMAN 
    EMP                            JOB                            es                               SALESMAN 
    4 rows selected.

Maybe you are looking for