How to retry provisioning for pending values ?

Hi,
Our environment is IDM 7.2 SP7.
And we have couple of users whose master privilege (PRIV:ADLDS:ONLY) is in pending state for quite a long time.
I could filter those entries using mcExecState=512 in idmv_link_ext. It looks to me the reason for pending state is it's referring to some of the old notification tasks previously we had. Now those tasks are replaced by new one but i could see the old notification task is still under MX:Pending_Delete folder.
I tried using some of the internal functions (uRetry_Privilege/uIs_PrivReconcile) but that doesn't seems to fix the problem. So is there anyother way available to clean up those  mcExecState=512 entries or retry provsioning with new tasks linked ?
Thanks,
Karthik

Thanks for reverting back immediately.
I executed the shared query and following are my observation
select * from mxp_provision where msg like 'Wait for%'
Output : No Result
So there are no tasks with msg 'Wait for%' exist in our environment.
1. Select * from mxp_provision where AuditRef=381162 (Considering 1 affected user flow)
Output: Returned 3 rows (as the old provisioning task had 2 ordered task group and a Conditional task)
Here It looks to me the provisioning flow is stuck at Conditional Task and MSG value is 'FALSE' so i tried to modify false branch in the condition and tried to make it 'skip entry' for completion but that doesn't seem to get triggered.
2. Select * From Mxp_Audit Where AuditID=381162
Output: 1 Row with ProvStatus as 1 (does ProvStatus=1 implies blocking here ?)
Do you think executing below query will remove the blocking state and can get completed ?
update mxp_audit set provstatus=1100 where auditid = 381162

Similar Messages

  • How does APEX check for null values in Text Fields on the forms?

    Hello all,
    How does APEX check for null values in Text Fields on the forms? This might sound trivial but I have a problem with a PL/SQL Validation that I have written.
    I have one select list (P108_CLUSTER_ID) and one Text field (P108_PRIVATE_IP). I made P108_CLUSTER_ID to return null value when nothing is selected and assumed P108_PRIVATE_IP to return null value too when nothign is entered in the text field.
    All that I need is to validate if P108_PRIVATE_IP is entered when a P108_CLUSTER_ID is selected. i.e it is mandatory to enter Private IP when a cluster is seelcted and following is my Pl/SQL code
    Declare
    v_valid boolean;
    Begin
    IF :P108_CLUSTER_ID is NULL and :P108_PRIVATE_IP is NULL THEN
    v_valid := TRUE;
    ELSIF :P108_CLUSTER_ID is NOT NULL and :P108_PRIVATE_IP is NOT NULL THEN
    v_valid := TRUE;
    ELSIF :P108_CLUSTER_ID is NOT NULL and :P108_PRIVATE_IP is NULL THEN
    v_valid := FALSE;
    ELSIF :P108_CLUSTER_ID is NULL and :P108_PRIVATE_IP is NOT NULL THEN
    v_valid := FALSE;
    END IF;
    return v_valid;
    END;
    My problem is it is returning FALSE for all the cases.It works fine in SQL Command though..When I tried to Debug and use Firebug, I found that Text fields are not stored a null by default but as empty strings "" . Now I tried modifying my PL/SQL to check Private_IP against an empty string. But doesn't help. Can someone please tell me how I need to proceed.
    Thanks

    See SQL report for LIKE SEARCH I have just explained how Select list return value works..
    Cheers,
    Hari

  • How to display Description for Selected Value instead of ID

    Hi i have a problem i want to display a description on a combo box list of values instead of the ID when i want to use ir for a formlayout or af:query for estethic
    because i have found this links:
    http://vikasadflovdevelop-adf-lov.blogspot.com/2012/06/v-behaviorurldefaultvmlo.html?showComment=1389196282800
    https://blogs.oracle.com/adf/entry/combo_lov_how_to_display
    The Incident Archive: ADF: LOV Description instead of code
    but none of them really works or i dont how to do it anyone can helpme please
    i'm new on ADF and jdeveloper

    Hey user,
    If i'm understanding it right, you want to show the values instead of the id, which is very usefull. If that is the case, try this website:
    ADF Tutorial: How to implement dependent list of values | Oralublog - Oralution's Blog
    That looks like yours but it explains a little better. Probably you forgot to go to the UIhints part...
    Hope that helps,
    Frederico.

  • How to create substituion for COPA value fields?

    Hi,
    In OBBH i cannot find a destination field for copa value fields. The destination fields are always from SAP standard tables like BKPF and so on.
    In this case how can i create a substitution to assign values to COPA value fields?

    Hi,
    I can see only the following entries in my OBBH user exit, so what is difference between COPA0002 and these :-
    SCO10
    SGJF1
    SGJA1
    SGJA2
    SGJA3

  • How do I search for a value in a db?

    I have a mysql-db which is connected to a java-program.
    It is an applet with a JTextField and a JButton.
    When I write something in the JTextField and presses the JButton I want to search for the word in my database and return some other values.
    This works properly if I write the exact String.
    How shall I do if I want to be able to only write the beginning of the word and retrieve all values that begins with these letters?
    Instead of writing "ABC123" I would be able to write "ABC" and retrieve all values that begins with ABC.
    Any suggestions?

    Yep,
    String sql ="select * from tablename where VALUE like '"+textfield.getText()+"%'";That should do.
    HTH

  • How to set 0 for "Nan" Value in the Column

    Hi All,
      I have 3 imp columns with name Build %,Deploy%,Validation % and I would like to set the value as "0" or "1" using formula and below is the formula . But I am getting the values as "Nan" due to that it's reflecting the
    Pivot Table & Report  which show in below 2nd image.
    And I had written formula  as "=SWITCH(EDSCIMonthlyReport[Build %] , "Nan", 0)"  to copy all the values of the Build % Field to another calculated Column and set the value "0" if found "Nan" ,But I am getting
    error as"Function 'SWITCH' attempted to compare values of incompatible types. Ensure that both values are Numeric, String, or Boolean(True/False). Consider using the VALUE or FORMAT function to convert one of the values".Can any one help me how can
    I solve this issue
    Thanks,
    Sid

    Hello Sid,
    Again TFS? The data type of the column is "text" and now you want to convert it to a numeric to use it as a measure, right?
    - First you have to change "NaN" to "0" (<= 0 as type "Text"!, see your error msg); you can do it with an IF expression
    - Then you have to remove the % sign; it's a text as well. For this you can use the SUBSTITUE function
    - Then you can convert it to a numeric using the VALUE function
    As one complete expression it will look like this:
    = VALUE(SUBSTITUTE(If(Tabelle3[Build] = "NaN"; "0"; Tabelle3[Build]); "%"; ""))
    As you can see in below screenshot PowerPivot automatically detects the data type as "Decimal"; now you can use it as a measure value.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • How to specifiy  locator for pending product lots ?

    Hello
    i'm using this API : gme_api_pub.create_pending_product_lot
    it works perfectly , but , how can i pass a specific locator ? ( other than the batch material locator ) to that created pending line ?

    Hi
    No this is not possible, since Parent lot is a subset of Lot in R12. Once you choose your item as LOT, then it is not possible to make as Optional.
    Try to raise an SR for this, Oracle may provide some workaround for the same.
    Rgds
    Raj
    NTTData India

  • How to move ' 0 ' for repeated values

    Hi Experts,
    Please advice how to move zero or '   '  to a field if the values are repeating.
    As per my requirement I need to fetch finished goods  from mseg-matnr and raw materials from
    resb-matnr  where baugr eq mseg-matnr and I need to display
    ebeln for the corresponding finished goods.
    But when Iam displaying it I will sort out the finished goods (matnr) , rawmaterial so that
    raw material and finished goods wont repeat as there are many ebeln for each matnr.
    Now my problem is with the values of the corresponding rawmaterials as they connot be sorted
    as per the raw material. So please advice how to move '  ' or zero to those values which are repeating.
    LOOP AT IT_FIN_GOODS.
        MOVE-CORRESPONDING IT_FIN_GOODS TO IT_FINAL.
        LOOP AT IT_RAW_MAT WHERE EBELN EQ IT_FIN_GOODS-EBELN
                             AND EBELP EQ IT_FIN_GOODS-EBELP
                             AND BAUGR EQ IT_FIN_GOODS-MATNR.
          MOVE IT_RAW_MAT-CON_KGS TO IT_FINAL-CON_KGS.
          MOVE IT_RAW_MAT-STLNR   TO IT_FINAL-STLNR.
          MOVE IT_RAW_MAT-NORMS   TO IT_FINAL-NORMS.
          MOVE IT_RAW_MAT-MATNR   TO IT_FINAL-IDNRK.
          MOVE IT_RAW_MAT-SHKZG   TO IT_FINAL-SHKZG.
          MOVE IT_RAW_MAT-MEINS   TO IT_FINAL-MEINS.
          APPEND IT_FINAL.
          CLEAR: IT_FINAL-WEMNG.
        ENDLOOP.
      ENDLOOP.
    SORT IT_FINAL BY MATNR IDNRK EBELN LIFNR.
      DELETE ADJACENT DUPLICATES FROM IT_FINAL COMPARING MATNR IDNRK EBELN LIFNR
    SELECT * FROM MSEG AS A INNER JOIN MKPF AS B ON A~MBLNR EQ B~MBLNR
                                                 AND A~MJAHR EQ B~MJAHR
                      INTO CORRESPONDING FIELDS OF TABLE IT_OPEN FOR ALL ENTRIES IN IT_FINAL
                                               WHERE A~MATNR EQ IT_FINAL-IDNRK
                                                 AND A~LIFNR EQ IT_FINAL-LIFNR
                                                 AND A~WERKS EQ IT_FINAL-WERKS
                                                 AND A~BWART IN ('541','542','543','544').
      SORT IT_FINAL BY IDNRK.
    LOOP AT IT_FINAL.
        LOOP AT IT_OPEN WHERE MATNR EQ IT_FINAL-IDNRK
                          AND LIFNR EQ IT_FINAL-LIFNR
                          AND WERKS EQ IT_FINAL-WERKS
                          AND BUDAT IN O_DATE.
          IF ( IT_OPEN-SHKZG = 'S' AND IT_OPEN-BWART = '541' )
          OR ( IT_OPEN-SHKZG = 'H' AND IT_OPEN-BWART = '542' )
          OR ( IT_OPEN-SHKZG = 'H' AND IT_OPEN-BWART = '543' )
          OR ( IT_OPEN-SHKZG = 'S' AND IT_OPEN-BWART = '544' ).
            IF IT_OPEN-SHKZG = 'H'.
              IT_OPEN-MENGE = IT_OPEN-MENGE * -1.
            ENDIF.
            OBAL = OBAL + IT_OPEN-MENGE.
          ENDIF.
        ENDLOOP.
        LOOP AT IT_OPEN WHERE MATNR = IT_FINAL-IDNRK
                          AND WERKS = IT_FINAL-WERKS
                          AND LIFNR = IT_FINAL-LIFNR
                          AND BUDAT IN BUDAT.
          IF ( IT_OPEN-SHKZG = 'S' AND IT_OPEN-BWART = '541' ).
            M541 = M541 + IT_OPEN-MENGE.
          ELSEIF ( IT_OPEN-SHKZG = 'H' AND IT_OPEN-BWART = '542' ).
            M542 = M542 + IT_OPEN-MENGE.
          ELSEIF ( IT_OPEN-SHKZG = 'H' AND IT_OPEN-BWART = '543' ).
            M543 = M543 + IT_OPEN-MENGE.
          ELSEIF ( IT_OPEN-SHKZG = 'S' AND IT_OPEN-BWART = '544' ).
            M544 = M544 + IT_OPEN-MENGE.
          ENDIF.
        ENDLOOP.
        MOVE M541 TO IT_FINAL-M541.
        MOVE M542 TO IT_FINAL-M542.
        MOVE M543 TO IT_FINAL-M543.
        MOVE M544 TO IT_FINAL-M544.
        MOVE OBAL TO IT_FINAL-OBAL.
        MODIFY IT_FINAL.
        CLEAR: OBAL,M541, M542, M543, M544,IT_OPEN, IT_FINAL.
      ENDLOOP.
    Please advice how to move 0 or '  ' to OBAL,M541, M542, M543, M544
    Thanks
    Karthik.
    Edited by: Karthik R on Mar 17, 2009 7:51 PM

    hi ,
        MOVE M541 TO IT_FINAL-M541.
        MOVE M542 TO IT_FINAL-M542.
        MOVE M543 TO IT_FINAL-M543.
        MOVE M544 TO IT_FINAL-M544.
        MOVE OBAL TO IT_FINAL-OBAL.
        MODIFY IT_FINAL.
    hi if you want to move leading space's to fields M541,M542,M543,M544.
    instead of above code try this..
        WRITE M541 TO IT_FINAL-M541 RIGHT-JUSTIFIED.
        WRITE M542 TO IT_FINAL-M542 RIGHT-JUSTIFIED.
        WRITE M543 TO IT_FINAL-M543 RIGHT-JUSTIFIED.
        WRITE M544 TO IT_FINAL-M544 RIGHT-JUSTIFIED.
        WRITE OBAL TO IT_FINAL-OBAL RIGHT-JUSTIFIED.
        MODIFY IT_FINAL.

  • How do I search for common values across multiple columns?

    I am coordinating a schedule with 5 people across hundreds of dates, and have columns A-E filled with many rows of dates. How can I make a new column that displays all the dates (values) that each person (column) has in common with all the others?
    Is there a simple formula for this?
    thanks!

    Scarampella,
    A second table can be used to find your matching dates.
    Here's an example:
    The formula in Matching Dates is:
    =IF(ISERROR(MATCH(A,Table 1 :: A, 0)+MATCH(A,Table 1 :: B, 0)+MATCH(A,Table 1 :: C, 0)+MATCH(A,Table 1 :: D, 0)+MATCH(A,Table 1 :: E, 0)), "", A)
    Basically, I look for matches in each person's list of dates, and if any fail to produce a match with the date being examined, the result is a miss, and if all match, it's a hit. You can sort the result to get a short list of matches without spaces.
    Regards,
    Jerry

  • How do I search for a value in an Excel sheet using ActixeX

    I am already accessing my excel sheets however I need to be able to search the sheet for a certain value and return the row/cell location. Is there an activeX control that can do this?

    You will need a reference to the range to search. This can be the entire sheet if you wish. Just wire that to the method node Find. Here you can specify all of the typical search options. Wire your string or number into the What input. For the what to LOOKAT value, use -4163 for Value and -4123 for formulas.
    The reference returned is the range of the found value. You can wire it into the property node Row and Column to get the location.
    Michael Munroe
    www.abcdef.biz
    Michael Munroe, ABCDEF
    Certified LabVIEW Developer, MCP
    Find and fix bad VI Properties with Property Inspector

  • How to Subtract  Date for Pending Order Aging.

    Hi Gurus,
    This Report is for Purchase Requistion .
    In my report
      I want to subtract sy-datum with  ekko-bedat.
    for calculating Pending Order Aging .
    can anyone help me with this ?
    Regards,
    Vinoth.

    Hi,
    Try like this:
    TABLES: EKKO.
    DATA: EDAYS   LIKE VTBBEWE-ATAGE,
          EMONTHS LIKE VTBBEWE-ATAGE,
          EYEARS  LIKE VTBBEWE-ATAGE.
    PARAMETERS: FROMDATE LIKE ekko-bedat,
                TODATE   LIKE VTBBEWE-DBERBIS DEFAULT SY-DATUM.
    call function 'FIMA_DAYS_AND_MONTHS_AND_YEARS'
      exporting
        i_date_from          = FROMDATE
        i_date_to            = TODATE
      I_FLG_SEPARATE       = ' '
      IMPORTING
        E_DAYS               = EDAYS
        E_MONTHS             = EMONTHS
        E_YEARS              = EYEARS.
    WRITE:/ 'Difference in Days   ', EDAYS.
    WRITE:/ 'Difference in Months ', EMONTHS.
    WRITE:/ 'Difference in Years  ', EYEARS.
    INITIALIZATION.
    FROMDATE = SY-DATUM - 60.
    Regards,
    Bhaskar

  • How to use Insert for mulit-values

    Can anyone help, I try to insert mulit-values using insert command. but keep getting error. here is the code.
    INSERT INTO PRODUCTS
    VALUES (
    'C','CABLE',39.95,
    'D','DSL',29.95,
    'U','DIALUP_56K',19.95);
    Thank you!

    The SQL you posted isn't valid, assuming that there are only three columns in your table. The type of insert statement you posted can only insert 1 row at a time.
    You could look into loading data into collections and using the bulk insert syntax to insert multiple values in a single statement. Please post to the PL/SQL forum if you need more assistance on this.
    Justin

  • How to set condition for Characteristic values in report

    Hi Experts,
    I have a report where the service order will have 1or more part and its corresponding part status.
    I want to highlight or give some indication to those service orders where all the parts status are Part Received.
    The service order with different part status can be ignored.
    FYI: I don't have any keyfigure in my report.
    Can anyone please advice me on this.
    Thanks

    Hi Ahmed,
    You cannot achieve this using this Conditions, as the condition can be defined on a characteristic but u cannot say that for a service orders all the parts status are PART RECEIVED.
    For this kind of requirements, you need to add an Flag (Characteristic) and check in the Transformation if all the Part Status are PART RECEIVED for a Service Order and mark the Flag as 'X'.
    In the report jst filter on the flag as 'X'. It should resolve.
    Regards,
    Chathia.

  • How to set locking for all values of a char other than using query

    Hi Friends,
    any suggestions?  I like to explicitly lock all possible values of a particular characteristic in a cube without using a filter.
    thanks!!
    Cran
    Edited by: Cranberry CranCran on Jan 31, 2008 4:48 PM

    If you dont restrict the characteristic using any value in the filter, then all values will be locked.

  • How to define variable for value range in Bex Query?

    Hi
    How to define variable for Keyfig. value range on runtime like characteristic in Bex Query?
    Example: On runtime user select one of the following condition:
    1)User want to those records where amount is greater than $1000
    2)User want to those records where amount is greater than $1000 and less than $5000
    3)User want to those records where amount is greater than and equal to $1000

    Hi ,
    Need to Use exceptions & conditions for this scenario's  & need to create variable for exceptions based on condtions.
    Below document provides steps how to make selections at run time for a kfg.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60b33a28-dca2-2d10-f3b2-d2096b460b1e?QuickLink=index&overridelayout=true&48842368468641
    Regards,
    Seshu.P

Maybe you are looking for

  • AA390 Transaction type 345 not possibel to post to affiliate company

    Hi, We are getting this error AA390 transaction type 345 not possible to post to affiliate company , while settling an AuC to a fixed asset using trx AIAB. Please advise how this can be resolved or any config steps are missing for TTypes 345 or 346.

  • PLEASE HELP...TIVO WONT WORK WITH MY BEFW11S4

    I contacted Tivo and they said it might be my port 443...but linksis wont support. Please help me out here.

  • How do I get a photo back it i excidently deleted it

    I evidently deleted some pictures photos how do I get them back is there anyway to reset my iPad to go a few days back like on a computer ?

  • Two different document types in MIRO

    Hi Gurus, Can we have two different FI document types in MIRO for Service PO and Normal PO? Standard is RE but we want one more. Can you please suggest something? Regards,

  • Importing Application

    I have installed ApEx 2.2 in two different environments...both environments seem to function OK, except during import. One works successfully, the other throws an error: ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessf