Function Module to Unlock Notification number.

Hi all Gurus,
Does any one know any function module to unlock (dequeue) Notification run time.
Thanxs In advance,
Nainesh.

CALL FUNCTION 'DEQUEUE_EIQMEL'
EXPORTING
   mode_qmel = 'E'            
   mandt = SY-MANDT           
   qmnum =                   
   x_qmnum = SPACE            
   _synchron = SPACE         
   _collect = ' '            
also visit following link   Sowjanya barli      explain very well
lock objects
Edited by: kk.adhvaryu on Sep 15, 2010 2:07 PM

Similar Messages

  • Any1 aware of a function module to convert a number in exponential form

    any1 aware of a function module to convert a number in exponential form to normal form...
    eg... a no. like 8.00000000000004E-01 
                     8.88888888888884E-01
    and
    a no. like 1.50000000000000E+00 
               9.44444444444442E-01

    I think you can just move from type F to type p.
    p =  f .
    Regards,
    Rich Heilman

  • Function Module to get pernr number based on first name and last name

    Hi All,
    What is the Function Module to get pernr number based on first name and last name.
    Could you please help me.
    T@R.
    Vidya

    hi Vidya,
    you can get perner from PA0002 based on firs name and last name.
    use select query and get perner.

  • Function Module to determine the number of pages in a pdf file

    Hi All,
    Is there any standard function module to determine the number of pages in a pdf file?
    Thanks,
    Sai

    Hi unk2,
    There's no functionality in the Acrobat.com online services to do a character count. But, you could use ExportPDF to convert your PDF file to Word format, and then do your character count in Word.
    Please let us know if you need additional assistance.
    Best,
    Sara

  • Function module for assigning BP Number to the Postion ID in org model

    Hi Experts,
    Is there any function module for assigning BP Number to the Postion ID in organizational model.
    The requirement is:
    1)There are some employees which are reporting to a Manager who has a position ID.
    2) Each of these employees should be assigned to the given position ID.
    This can be done by First Locate the BP Record in SAP via the Vantive Person ID  and retrieve the SAP BP Number.
    <b>Then assign the SAP BP Number found to the Position ID.</b>
    My question is <b>Is there any function module for assigning BP Number to the Postion ID .</b>
    Looking forward for reply.
    Thanks & Regards,
    Renju.

    Hi,
       Org. management uses API classe objects with static methods as APIs. You may be able to achieve this using
    CL_CRM_ORGMAN_SERVICES->MAPPING_ORGUNIT_TO_BP
    Reward if helpful!
    Regards,
    Sudipta.

  • Is there any Function Module to create SERIAL NUMBER

    Hi All,
         I need to create "SERIAL NUMBER" by passing "Material & Equipment Category ('S' -Always) ".
    Plz Advise me , is there any Function Module to Create  "Serial Number ".
    Thanks in Advance.
    Vyshu.

    hi,
    check this function module
    'NUMBER_GET_NEXT
    Search with  NUMBER_GET_NEXT keyword
    Thanks & REgards

  • ABAP - Function module to get the number of working days between 2 days

    Hi gentlemen,
    I have been asked to produce a report that gives the number of working days between 2 days, based on a calendar.
    I didn't find anything...
    Has any of you already written a function module to get this ?
    A great thanks in advance.
    Jacques Lagrif

    Hi ,
    you can try this ,
    when you require the number of working days between D1 and D2
    Total No of Days will be
    D2 - D1
    No of holidays between D1 and D2 , use the FM HOLIDAY_GET
    Pass the From date , to date , and the factory calendar to get the of Holidays
    Total no of days - Number of Holidays will your Working days
    Regards,
    Sathya

  • Function Module to fetch Customer Number from Sales Order or Process Order

    Hi Gurus,
    I am looking for a Function module which gives me customer number from Sales order or Process order.
    Please let me know of any FM's available.
    Regards,
    Madan

    Hi,
    Thanks for your response.
    I am actually looking for function modules which take "Sales Order" or "Process Order" as input (import parameter) and return Customer Number as output (export parameter).
    Please suggest some function modules you know any.
    Many Thanks,
    Madan

  • Function module for getting ASCII number of the character

    I need to know the ASCII number of the appropriate character. Which function module can I use? Thank you

    hi,
    U can use this code below
    report demtest.
    data : c.
    field-symbols : <n> type x.
    data : rn type i.
    c = 'A'.
    assign c to <n> casting.
    move <n> to rn.
    write rn.
    This will convert 'A' to 65.
    OR try FM LIST_TO_ASCII
    Sri

  • Function Module for link Change number to classification

    Hello Expert.
    what is the Function Module name which will link Classificaiton (tcode:cl03) to change number (cc01) .
    regards
    srinivas

    Hi,
    Check business object BUS1003

  • Function module to generate Batch number

    Can anyone please let me know, the function module to generate the batch numbers. if possible the procedure to generate the batch number.

    Hi Venkat,
    Check function module <b>VB_CREATE_BATCH</b>.
    Thanks,
    Vinay

  • L_WMPP_WM_POST Function module not returning TO number

    Hello Friends,
    I am using this function module L_WMPP_WM_POST  to create the transfer order.I am not able to get the no of transfer order since
    the function module is not returning that.
    Is there any method to get the transfer order created.
    Thanks & Regards,
    Hari

    solved on my own.

  • Function module to subtract a number of months from a date

    I have a field, FISCPER, in the format YYYY/MMM(2007004) and I need to subtract 12 months off of it to get 2006004.  I tried to just subtreact 12 but it gave me the actual value when you subtract the 2.

    Hi,
    Check the following example:
    FM to Get the Day for a Particular Date
    FM or any other means by which we can get the DAY for a particular date?
    Yes, DATE_COMPUTE_DAY
    Sample code:
      clear: hold_day_of_week.
      CALL FUNCTION 'DATE_COMPUTE_DAY'
           EXPORTING
                DATE = workdate
           IMPORTING
                DAY  = day_of_week_num
           EXCEPTIONS
                OTHERS  = 8.
      CASE day_of_week_num.
        WHEN 1.
          hold_day_of_week = 'Monday'.
        WHEN 2.
          hold_day_of_week = 'Tuesday'.
        WHEN 3.
          hold_day_of_week = 'Wednesday'.
        WHEN 4.
          hold_day_of_week = 'Thursday'.
        WHEN 5.
          hold_day_of_week = 'Friday'.
        WHEN 6.
          hold_day_of_week = 'Saturday'.
        WHEN 7.
          hold_day_of_week = 'Sunday'.
        WHEN OTHERS.
          hold_day_of_week = 'invalid'.
      ENDCASE.
    or 
    You can use  DATE_COMPUTE_DAY to get the day number of the week (for example, today gives 5)
    then use WEEKDAY_GET which returns an itab with seven entries (one for each day of the week.)
    You enter in this itab and get the field langt to get the day name.

  • How to config Check Digits function module for Student Number Validation

    Hi SLCM Experts,
    In the SAP-SLCM, How to use check digits function module for validate student number.  Just only config it or need to customizing program.
    *Any idea to student number validation in SLCM?*
    Best Regards,
    Suvatchai K.

    Hi ,
    Can you expalin it further ?
    You configure the St. no in piq_matr . And set it  as external or internal no. range which suits your business .
    What is the validation you are looking for ?
    Regards
    Gajalakshmi

  • PM Notification creation using BAPI_ALM_NOTIF_CREATE Function module

    Hi Experts,
    I am creating PM Work order using Custom BAPI which is being invoked by third party system and Imports data from third party system,including the IT_OBJECTLIST.Custom BAPI would Validate the data and by calling the Satandard BAPI BAPI_ALM_ORDER_MAINTAIN it will create the PM Order.
    Once the Order is created i am Calling the Function modules BAPI_ALM_NOTIF_CREATE,BAPI_ALM_NOTIF_SAVE,BAPI_TRANSACTION_COMMIT to create the Notifications for the Equipments in IT_OBJECTLIST structure imported by custom BAPI.
    To my surprise this sequence of function modules are not creating any Notifications in the Objects tab in Order.where as i called the same sequence of function modules in a report Program which is successfully creating the notification.
    i doubt calling BAPI function module to update Notification withing  BAPI Function module may not work.
    could you please help me how to proceed in this case.

    Hi,
    The functional location affected is set to the reference f/l unless a different value is specified.
    That field is not available in BAPI_ALM_NOTIF_CREATE, it is not available in the MODIFY bapi either - so not possible to create then modify.
    You can set a value for the field in exit QQMA0025 / EXIT_SAPLIQS0_017. This is called by the BAPI but you would need to find a way to get the required value from your calling program into the exit.
    -Paul

Maybe you are looking for

  • Issue in value set Drop down for ALV in Webdynpro with Index

    Hi Experts, We are unable to get the Drop down values in the ALV Table as shown below. Code:    DATA lo_nd_table TYPE REF TO if_wd_context_node.     DATA lt_table TYPE wd_this->elements_table.    DATA ls_table TYPE wd_this->element_table.    DATA: lr

  • How Do You Restart a Failing Load Plan

    If a Load Plan step fails, say because of some bad data or a bad join, I know how to correct the error and restart the failing step or the failing task in the Operator. How do you restart the failing Load Plan or any higher level step in the Operator

  • After upgrading to Lion my white MacBook I can't launch Adobe CS4 Applications. Please help!

    Everytime I try launching an Adobe CS4 application (Photoshop, Illustrator, watever...) I keep getting this kind of message, more or less: "To open [Photoshop] CS4 you should install a Java executed environment, but you are not connected to the inter

  • Tv series downloads

    I have downloaded the first two episodes of a tv series onto my iPad, but cannot seem to find them. How do I find them and play them back, and then erase them so that I have enough memory to download the others?

  • Taking another lesson

    Hi, I just wanted to know if there's any reference to start J2EE. What would be the requirements before I start? Which is better to use IDE for J2EE, Eclipse or Netbeans? I am appreciate for the comments to be post on here. Thank you.