User status with reference to characteristic value of the Functional locati

Hi,
For a Functional location for which a characeteristic values is maintained as"1",i  want "user status of the mainteance order,when created  to be updated as "XXX".Can any one of you tell me the user exit and code changes for this.Please reply at the earliest.
EX:A functional location(XXXX) has a Characteristic(xxx) has  value as "1"
we have created an user status as"xxx" for the order(through status profie).Now,My requirement is
When i have created a maintenance order for the functional location(XXXX),upon on saving of the order,or Assigning the priority for the maintenance order,i want the user status has to be modified as "XXX".
Could you please tell us what to do?
is our requirement will be fulfilled with the exit"IWO10009".If so,please tell us the code to be made>
Can we map our requirement through "Object dependencies" or any other means to meet our requirement
you will be highly appreciated
with regards,
Joshita

HI joshita,
I had a similar issue in the past where i wanted to attach permit to an order based on some characteristic of functional location at user exit 'IWO10002 - Customer check for order release'.
This will solve your purpose during release of the order.
You can also use the exit 'IWO10009 - Customer Check for 'Save' Event', this will check irrespective of the status of the order.
Regards,
Deepak

Similar Messages

  • Ordering Characteristic Values in the order that you restrict them

    Hi SAP Network,
    I have created a BEx query and used up the 2 structures in the Rows area.
    I have then placed a characteristic in the columns area and restricted the characteristic .
    This characteristic in essence acts like a third structure.
    The ordering of the characteristic values when the query is executed is by alphabetical order.
    Are you aware if it is possible to have the same order displayed, as to which you drag the characteristic values onto the characteristic, ie. in the order that you choose.
    Thank you in advance.
    Simon

    Hi there,
    No it is not possible to make the characteristics sort by the order in which you restricted them.
    One weay you could achieve this is by having a sequence navigational attribute (example values: 1,2,3,4,5,6,7 etc)  and in the sorting of your characteristic use sort by attribute.
    Best Regards
    Mark

  • Characteristic values for the material and plant combination...

    Hi Friends,
    I would like to know how can we maintain the characteristic values for the combination of Material and Plant though the material is not batch managed?
    Thanks in advance,
    Ram

    Hi Rajendra,
    Thanks for quick reply. I am maintaining under classification view but it does not ask plant any where. So the value will be same across all the plants but i want to maintain characteristic values separately under each plant for same material.
    Regards,
    Ram

  • Required to get class Charateristics and values for an functional location

    Hi ,
       As per the requirement ,i have to read the class characteristics and the corresponding values for an function location.I have functional location number ,and the various class names associated with fn.location. Any pointers would be helpful
    Regards
    Arun T

    FM BAPI_OBJCL_GETDETAIL
    OBJECTKEY                       ?0100000000000011643
    OBJECTTABLE                     IFLOT              
    CLASSNUM                        ZPMI_BLDG          
    CLASSTYPE                       003                
    KEYDATE                         29.07.2009         
    UNVALUATED_CHARS                                   
    LANGUAGE                        EN                 
    Cheers!

  • Create table with references pointing to values in a different schema

    Experts,
    Is it possible to create table in one schema with references pointing to column values in a different schema?
    Say, I have 2 schemas A and B
    A has employee table and and B has dept table, I want to run the below alter statement, will this work?
    ALTER TABLE A.EMP ADD (
    FOREIGN KEY (DEPT_ID)
    REFERENCES B.DEPT (DEPT_ID));
    I know there is no sense in doing this, still would like to know for making some temporary workaround.
    Regards,
    Sarvan
    Edited by: sarvan on Oct 21, 2011 12:30 AM

    Yes this is possible with right privilege:
    SQL> grant connect, resource to a identified by a;
    Grant succeeded.
    SQL> grant connect, resource to b identified by b;
    Grant succeeded.
    SQL> connect b/b
    Connected.
    SQL> create table p (x int primary key);
    Table created.
    SQL> grant references on p to a;
    Grant succeeded.
    SQL> connect a/a
    Connected.
    SQL> create table c (y int);
    Table created.
    SQL> alter table c add foreign key (y) references b.p(x);
    Table altered.

  • User status with authorization key

    Good day experts!
    I have user status schema with users status. Each status have Z authorization key. I add authorization object B_USERSTAT in my SRM role. But SAVE rfx or choose user status in "user-specified status" not react on my auth key.
    How can i limit user status for my role?

    Hi,
    In user status per status there is a auth. code field. So the user needs to be authorized to set or delete the status if a auth. code is maintained for the status.
    The object is B_USERSTAT. Give your specifications to your basis person & it should be possible.
    Hope the above clarifies.
    Regards,
    Vivek

  • Post material master idoc  with class and characteristic values

    Hi,
    I need to post the class and characterstic values of material while posting the material using idoc of basic type matmas05 . Can anyone suggest me the fields and segment details to fill the class, class type and characteristic values in matmas05.
    Note : the class and characteristic values are already created in the system, my purpose is to assign them to material while creating. so please give me the field and segment details in idoc basic type matmas05.
    thanks
    Kiran

    I  try to do the samething. I see the fields E1CUVAL : CU: Characteristic valuation in the structure of MATMAS05 but when I run the IDOC, these fields never appear even they exist for the material.
    Did you find an answer to your question that can help me?

  • User status with more than one status

    Hello to every one,
    In my project i need to configure the user stats in such a way that i can have more than one status active at same time. For example   DIR  P1 now in this DIR means directores approved ad P1 means period 1. Now may be after 1 month it will be BOD P2 which means bod approved and period 2 is going on.
    I am trying in system but at one time i can have only 1 user status and second one is overwriting the first one. Kindly suggest how we can achieve the scenerio  and is is possible in standard user status.
    Regards
    Abhishek Sinha

    Dear ahmed and virendra,
    thaks a lot for your helpf. Its solved my problem. Thank you both very much.
    Regards
    Abhishek Sinha

  • Changing the Characteristic Values on the Query

    Hello Masters of the BW Domain
    Is there a way to display the values of a characteristic in a report based on a condition?  I have a characteristic called Rebates with only 2 valid values (Y and N).  Instead of showing it as Y and N, I want them displayed as "With Rebate" for Y and "No Rebate" for N.  Is it possible to do this without changing the underlying data in the cube and doing the translation at the query level?  Would it require a user exit to accomplish this?  All the user exits that I've run into only dealt with dates and not with transforming text values.

    As Paolo suggested you can add text for the info object. Else if you are using BW Web Reports you can use the Table API(similar to user exit) to do the conversion.
    case i_iobjm .
      when 'rebates'.
        if i_value = 'y'
          c_cell_content = 'With rebate'.
        elseif i_value = 'N'
          c_cell_content = 'With rebate'.
        endif.
    endcase
    *Please check for the syntax.
    If you are using BEx, VB macros will be an option.
    The best approach will be to store text for the info object.
    Thanks.

  • No characteristic value of the material in PO

    Hi,
    I am testing the configuration material. I've maintianed a class of class type 200 in BOM, and get the PR after running MRP. No any field or view in PO to display the characteristic value of material. How to get it? I thought it should be display somewhere in PO and in the GR view, because the buyer should know what product they should get and the inspector should know what should be inspect and the pass level.
    Thanks!

    Hello,
    I checked all the tab in PO and PR, but no any icon to see the characteristic.
    I've created a PO for a material which was maintain a class of class type 001, then I've seen the icon 'configuration'.
    Is it necessary to maintain a class of class type 001 for the material related class item in BOM? The on line help told that could create some materials with different characteristic value of one characteristic assigned to a class of class type 200, then maintain this class in BOM. System will pick the right material according to the characteristic value in SO.
    I am confused that why have to create some materials to do that because this application is to reduce redundance of material. I thought one material is enought, which will be required by the characteristic value and taking this value in PO. Do I have to maintain the class 001 for this? If yes, how can I get the characteristic value of class 001 from same charactieristic in the class 002?
    Lin
    Edited by: liang_yielin on May 18, 2010 11:46 AM

  • Creating user accounts with OIDDAS and use them from the OS

    Hi,
    I have a customer that is experiencing an error creating user accounts from OIDDAS, and use that user accounts from the operating system.
    My customer is using OID/OAS4OS 10.1.4.2.0, and that version is not longer available to download, then, I will try in my own environment
    with OID/OAS4OS 10.1.4.3.0.
    And the question is the following: is supported to create user accounts with OIDDAS and expect that users can work with OAS4OS and be
    able to authenticate in the operating system?
    For the reference, SR# 7222351.993:
    Thanks,
    Luis Vivero.
    Edited by: LV in ORCL on Dec 11, 2008 6:47 AM

    Hi Jacco,
    I didn't see your post before.
    Nop, unfortulately I don't have a document with that. I just received that answer
    from development (related to the plugin for AD that is not certified, and DAS is
    not intended to work with OAS4OS).
    Anyway, about the plugin to work with AD, this is working for me; at least I tested
    it by configuring the plugin, I configured synchronization, the mapping file, I did
    the bootstrap, and the accounts that were bootstraped now shows the OS attributes
    on DAS.
    Regards,
    Luis Vivero.

  • Problems with query with more than 20 values in the select clause

    I have a region based on a function returning a SQL query. It needs to have more than 20 values in the select clause. When I run the page I get a no data found error in the region. I managed to reproduce this behavior with just the following as the select returned by the function:
    select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21
    from dual
    I am running the 1.3.9.00.15 release of Marvel on 9.2.0.2 of the db on Solaris.

    Hello Raju,
    I will email you the connection settings when I return to the office.
    One thing I should have mentioned: The sql string is returned from a package in the db, so the query region text I originally posted isn't quite correct.
    it is something like:
    declare
    begin
    return my_pkg.my_fnc;
    end;
    the stored package is nothing more than:
    package my_pks is
    funtion my_fnc(i_test_param in varchar2) is
    begin
    return 'select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20, 21 from dual';
    end;
    end;
    Sorry for the inaccurate info in the first post, but I am away from the server in question right now.

  • Pass a particular value  in the function module.

    Hi Gurus!
    I have a function module READ_HAUPTBUCH_TEXT , here in the importing table KONTENPLAN like ska1-ktopl.
    But I need to pass a value as ZNOA for KONTENPLAN while calling the function which is maintained in the db, but it is always picking up the value 'AZ'.
    can you please let me know as to how i do it .thx in advance.

    hi sandeep it is better to pass like this...
    data: v_ktopl type  ska1-ktopl.
            clear v_ktopl.
             v_ktopl = itab-ktopl.
          CALL FUNCTION 'READ_HAUPTBUCH_TEXT'
            EXPORTING
              kontenplan           =  v_ktopl
              sachkonto            =
              sprache              =
            NO_BUFFER            =
          IMPORTING
            TEXT_WA              =
          EXCEPTIONS
            TEXT_NOT_FOUND       = 1
            OTHERS               = 2
          IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
    regards,
    venkat.

  • Placing a cursor in multiplot graph to display all values at the cusor location

    We are currently using NI based DAq system which uses LABVIEW 7.1.We would like to know whether it is possible in LABVIEW 7.1 to place a cursor in a graph having multiplot that will disply all the values of parameters at the cursor location?

    If I understand the question correctly, yes, LabVIEW can display many parameters of a cursor, including the cursor position (in X and Y coordinates), the array index of the point to which the cursor is locked, the line and point style and thickness, etc. You can also read or set how a cursor locks and whether a cursor is visible or not as well as other properties of cursors. All of this is done using property nodes in LabVIEW and can be done with multiple plots and multiple cursors.
    TylerS
    Applications Engineer
    National Instruments

  • FM for characterstic value of a function location (asset)

    Hi All,
    Can any one please tell me the FM module to be used for finding the characterstic value for a given characterisctic name of a function location in IL03 (classification).
    I have tried using BAPI_CLASS_GET_CHARACTERISTICS, but it is not yielding the desired results.
    Thanks in advance
    Deepti

    Hi,
    I don't know why you are not getting the proper reult.
    BAPI_OBJCL_GETDETAIL iis uesd to get both character and numeric values back form the classes.
    Check this:
    LV_OBJECT = I_TPLNR.
    CALL FUNCTION 'BAPI_OBJCL_GETDETAIL'
    EXPORTING
    OBJECTKEY = LV_OBJECT
    OBJECTTABLE = 'IFLOT'
    CLASSNUM = 'Z_DEPOT'
    CLASSTYPE = '003'
    TABLES
    ALLOCVALUESNUM = WT_ALLOCVALUESNUM
    ALLOCVALUESCHAR = WT_ALLOCVALUESCHAR
    ALLOCVALUESCURR = WT_ALLOCVALUESCURR
    RETURN = IT_RETURN.
    Furthermore i have a list of BAPI. [Try this link|http://www.saptechies.com/sap-bapi-list/].
    May it helps you.
    Regards.
    DS.

Maybe you are looking for

  • ICloud storage and backup and restore

    Multiple old iphones backed up in icloud not enough space to backup my new phone  can I integrate them

  • C310 Does not wake up from Energy Sleep mode

    Printer wont wake up from Sleep mode. I have to unplug the printer from the electrical plug. Then it connects Wireless to my network. This Piece of {Content Removed: Language Filter Evasion} is about to find its way back to the store and I'm going to

  • Automating the import / export process in 9.0.2

    In Portal 3.0.9.x the export and import were entirely command-line driven tools, so it was possible to automate the process to a certain degree. In 9.0.2 the import/export process is a combination of scripts and manual actions through the Portal UI t

  • Want to record from LP turntable to my laptop PC

    I have a HP g50126NR Notebook PC and want to copy my old LP's. My turntable plugs into an amplifier currently. I also have a Conexant high definition smart audio 221 as an audio card.  I'm a real newbie at this and want to know if I plug my RCA cable

  • Accidentally deleted Utilites Folder

    Hi, I have accidentally deleted my Utilities folder in 'Applications' thinking it was a folder for Adobe CC which I wanted uninstalled.  Trash Can has been emptied, also, and to pay for my sins I never had Time Machine turned on, never thought I'd ne