How to decide exercise/expire for barrier option transaction automatically

Hi,
This message is with reference to previous thread posted by one of the member::
Options' moneyness monitoring
Anybody can tell me how the barrier option transaction is decided whether to exercise/expire duly comparing the barrier rate and market spot rate on an expiry date.
Regards
Prasad AV

In SBWP - create a distrubution list.  You'll need to put it in a folder.  Then uder the content you can specify an internet address to send the e-mail to.
Execute SM36 to set up your background job.  I usually just use the wizard.  The program name is RSWINTRO.
For spool list recipients select a distrubution list that you have created.

Similar Messages

  • Does Anyone Knows How To Disable The "Check For Updates" Option in Adobe Edge Code and Reflow?

    Does Anyone Knows How To Disable The "Check For Updates" Option in Adobe Edge Code and Reflow?
    Thanks in Advance

    I don't think there is a way for Edge Code. I'm not sure about Reflow.
    Why don't you just upgrade? That will stop the notifications.
    Randy

  • How to set password expiration for EBS users

    how to set password expiration for EBS users .
    Regards .

    Please follow below steps:-
    This is available starting in RUP4.
    The script to expire all passwords in the fnd_user table is $FND_TOP/patch/115/sql/AFCPEXPIRE.sql.
    It can be executed from SQL*Plus or as a Concurrent Program: sqlplus -s APPS/ @AFCPEXPIRE.sql
    or Submit concurrent request: CP SQL*Plus Expire FND_USER Passwords
    This script sets the fnd_user.password_date to null for all users which causes all user passwords to expire.The user will need to create a new password upon the next login.
    Thanks,
    JD

  • How is the storage type for a component picked automatically in PO staging

    Hi
    The Process cycle is :
    Sales Order created MRP-Planned Order ---Production Order
    Problem : Transfer Requirement not created for Picking
    Now if I go to Co03--GOTOWM Pick list , For the component the storage type is notr updated automatically
    I compared with Materials for a TR was created & found that Storage type 100 was updated automatically
    Q:How is the storage type for a component picked automatically in PO staging (WM activated )

    Hi Rajesh
    Thanks for your inputs . Actually I forgot to mention that the client is not using Storage type in any of the material master data
    The problem was because the control cycle was not maintained for the combination of material /Plant & Supply Area
    Anyway thanks for your info .Appreciate your cooperation
    Arindam

  • How to interprete db_stats report for -m option

    Hi
    please help me to interprete the db_stats report (for -m option).
    What is the total number of pages created by DB? (It is "Current page count" or "The number of page allocations").
    what is " Total number of times hash chains searched for a page" , "Total number of hash chain entries checked for page" and " Requested pages found in the cache" ( we see really huge numbers there when XML file size is increased)
    Thanks,
    Santhosh

    Hi Santhosh,
    Here are some explanations on the memory pool (cache) statistics:
    - “The number of page allocations” (st_alloc)
         This accounts for the total number of page allocations made by BDB. We allocate pages in the memory pool when we create, open and rename a file in the memory pool, when we get a page from a database file, when we resize the memory pool, when we create and extend the free page list, etc. This value is grow-only.
    - “Current total page count” (st_pages)
         This represents the number of pages found in the cache (both clean, with non-updated content, and dirty, with updated content). So, this equals the sum of the “Current clean page count” (st_page_clean) and the “Current dirty page count” (st_page_dirty).
    - “Requested pages found in the cache” (st_cache_hit)
         This represents the total number of requests for database pages that were satisfied with pages existing in the memory pool. The percent value represents the cache hit rate, that is, how many requested pages were found in the cache, and it’s calculated using the formula “st_cache_hit / (st_cache_hit + st_cache_miss)”.
    - “Requested pages not found in the cache” (st_cache_miss)
         This is the total number of requested pages that were not served directly from cache and had to be read from disk. You can determine a miss rate value, using the following formula: “st_cache_miss / (st_cache_miss + st_cache_hit)”; or, you may substract the hit rate from 100%. A higher hit rate means a hotter cache; details on how to appropriately size the cache is here:
    http://www.oracle.com/technology/documentation/berkeley-db/db/ref/am_conf/cachesize.html
    - “Number of hash buckets used for page location” (st_hash_buckets)
         We organize and manage the cache buffer space using hash buckets; each hash bucket has a hash chain associated where its entries (hash chain entries) refer to buffers in the memory pool space. Thus, this value represents the number of hash buckets we’re using for administering pages in the memory pool.
    - “Total number of times hash chains searched for a page” (st_hash_searches)
         This value accounts for the total number of times we’ve inspected the hash chains when searching for a page in the cache (memory pool).
    - “Total number of hash chain entries checked for a page” (st_hash_examined)
         This value represents the total number of entries in cache’s hash bucket chains we’ve examined when looking for a page.
    When the container’s/database’s size increases, the number of pages that comprise the file will increase as well. The statistics you’ve mentioned are grow-only, so their values increase during the lifetime of the application.
    Let me know if this information is helpful and if you need further clarification.
    Regards,
    Andrei

  • How to disable password expiration for the administrator?

    Hello
    is it possible to disable the password expiration for the administrator? For all other users the password should expire after 90 days but not for user administrator.
    How would this look like with LDAP integration? I assume that user administrator is not replicated to LDAP and exists only in the local UME database, thus it would work like without LDAP. Or is my assumption wrong?
    Thank you in advance for your answers.
    Best Regards
    WB

    Hello Harikiran,
    thanks for your answer.
    Yes I found the setting in VA:
    Global Configuration > server > services > UME provider >
    ume.logon.security_policy.password_expire_days
    or in Configtool:
    Global Server Configuration > services > com.sap.security.core.ume.service >
    ume.logon.security_policy.password_expire_days
    But for me it sounds that this will apply then for all users that are managed in UME, not only for the administrator. Are you sure that this is only for the administrator?
    What is with the users database table in WEB AS Java? Does somebody know the name of this table?
    Regards
    WB

  • How to write Error message for select options?

    Hi
    i have this select option statement
    SELECT-OPTIONS: s_fevor FOR afko-fevor.
    how to write error message for this?
    Regards
    Smitha

    Error messages are displayed for Select-options mostly on two conditions:
    1) You needs to check wether a value is entered or not its done by:
    a)
    Select-options:SELECT-OPTIONS: s_fevor FOR afko-fevor Obligatory.
       In this case error message is automatically throwed by system.
    b) You can do this in Selection Screen events.
    Ex:
    AT SELECTION-SCREEN./AT SELECTION-SCREEN ON S_FEVOR.
    IF S_FEVOR-LOW IS INITIAL.
    MESSAGE 'XXXXX' TYPE 'E'.
    ENDIF.
    2) You need to Validate the entered value:
    You can do this in Selection Screen events.
    Ex:
    AT SELECTION-SCREEN./AT SELECTION-SCREEN ON S_FEVOR.
    SELECT FEVOR
                 FROM AFKO
                 INTO AFKO-FEVOR
                 UP TO 1 ROWS
    ENDSELECT.        
    IF SY-SUBRC NE 0.
    MESSAGE 'XXXXX' TYPE 'E'.
    ENDIF.
    Regards,
    Gurpreet

  • How to decide the minperm for AIX 5.3

    I have 10g R2 on AIX 5.3. I want to tune the maxperm and minperm. From the Metalink Note 316533.1 and IBM lib, I can decide the maxperm, but have no idea how to decide the value of minperm. My current vmo -a
    vmo -a | egrep "min|max"
    maxclient% = 80
    maxfree = 1088
    maxperm = 743216
    maxperm% = 80
    maxpin = 784258
    maxpin% = 80
    minfree = 960
    minperm = 185804
    minperm% = 20
    npsrpgmax = 100352
    npsrpgmin = 75264
    npsscrubmax = 100352
    npsscrubmin = 75264
    soft_min_lgpgs_vmpool = 0
    strict_maxclient = 1
    strict_maxperm = 0
    although it is safe based on the metalink note with the performance. Just want to make it little better of paging.

    I have 10g R2 on AIX 5.3. I want to tune the maxperm
    and minperm. From the Metalink Note 316533.1 and IBM
    lib, I can decide the maxperm, but have no idea how
    to decide the value of minperm. My current vmo -aCheck document A Administering Oracle Database on AIX , formula for how to decide is given in this doc.
    Virag

  • How to disable an "open for editing" option in word/excel viewers

    Hi All.  It's my first post on here so please be gentle! ;-)
    We have a situation on an RDS server whereby the majority of the users simply need Excel Viewer to review reports generated from an application, with only a very small number of users that actually need to amend and save these reports within Excel 2013 i.e.
    a version of Excel that we need a license for.
    There is an option within Excel Viewer that says "Open for editing" and unfortunately, because we also have Excel installed on the server this allows them to launch the Excel 2013 application i.e. full-blown Excel.
    Is there a way that I can disable this menu item, or can anyone suggest a way that I can stop users from launching Excel 2013?  I suspect that I can use AppLocker to prevent them calling on the excel.exe, but I was rather hoping that there was a more
    elegant way i.e. to simply disable the menu item in Excel Viewer.
    Any help / suggestions would be greatly appreciated.

    It may be difficult for us to disable the "Open for Editing" option in Excel Viewer. 
    If you want to allow only view access to certain files, you should consider controlling access to the file location with network security. Grant the "view only" users with Read-only permission to access the document file location.

  • How to take a report for the assigned transaction and activity in a role

    Hi Colleagues,
    I want to take a report for the assigned transaction with activity for all roles, which are assigned to the users,
    Transaction list for a role i can able to take it from SUIM but not able to take the ACTVT for the role.
    Please suggest how to take this information.
    BR,
    Jai

    Hi Jaikumar from the post :
    I think you have reached the state of finding the USER to ROLE relationship
    Take the output to an excel,
    COPY just the roles column exactly in order do not rearrange , use AGR_1251 like other experts have mentioned
    insert the roles copied from you buffer and execute, the output will have multiple entries for each role take the output to an EXCEL again , make it unique and match the outputs between both the EXCELS.
    It will be a little tricky to do this, but I think you are proficient in MS EXCEL.
    This is one of the ways to do , there are many other ways to do it.

  • How to stop BDOC generation for a particular transaction type of salesorder

    hi,
    i  want to stop bdoc generation for a particular sales order transaction type ZLEG.
    this order types are not flowing into CRM that i have done,but bdocs for it are still getting generated.
    regards,
    vishesh agarwal

    Hi Vihesh,
    SMW3_00 will only enable you to switch off the creation of ALL BUS_TRANS_MSG BDoc's.
    What you need for your requirments is to filter the data that are sent according to sales order type. For upload to ECC, you can do this by by defining criteria fields for the object in tr SMOEAC. For specific details of how this can be done for sales documents, please refer to notes 502037 (valid for new releases also) and 497434.
    Best regards,
    Brian.
    Edited by: Brian Patterson on Jan 9, 2012 2:50 PM

  • How to delete selection criteria for select-option in program

    Hi all,
    I have a selection screen with few select-options. the question is if i inserted some value at the select option, how can i delete the selection criteria in the program ? example if i have 3 radio button A,B,C. if I click rb A, select option A1 will be active and other 2 select oprtion B1 and C1 will dim, when I click rb B, the value at select option A1 will be deleted and dim and at the same time, B1 will be active, C1 will dim. when i click rb C, the value at A1 and B1 will be cleared if there is any value in it and then A1 and B1 will dim but C1 will be active. I've found a way to make the select option active n inactive when depending on which rb i click, thanks to a forummer here but to clear the value when the select-otpion is inactive?
    Thanks for any help.

    Hi
    See the sample code and do accordingly
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: pa_file TYPE rlgrap-filename MODIF ID abc,
    pa_lifnr TYPE lfa1-lifnr MODIF ID abc,
    pa_vkorg TYPE vbak-vkorg MODIF ID abc.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS: pa_kunnr TYPE vbak-kunnr MODIF ID def.
    SELECT-OPTIONS: s_lifnr FOR gs_lfa1-lifnr MODIF ID def,
    s_date FOR gs_lfa1-erdat MODIF ID def,
    s_augru FOR gs_vbak-augru MODIF ID def,
    s_vbeln FOR gs_vbak-vbeln MODIF ID def.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pa_upd RADIOBUTTON GROUP g1 USER-COMMAND uc01 DEFAULT 'X'."#EC *
    SELECTION-SCREEN COMMENT 3(60) text-004 FOR FIELD pa_upd.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pa_rep RADIOBUTTON GROUP g1 ."#EC *
    SELECTION-SCREEN COMMENT 3(60) text-005 FOR FIELD pa_rep.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b3.
    IF pa_rep EQ gc_x.
    LOOP AT SCREEN.
    IF screen-group1 = gc_abc.
    screen-input = gc_zero_num.
    ELSEIF screen-group1 = gc_def.
    screen-active = gc_one_num.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    ELSEIF pa_upd EQ gc_x.
    *For Reprocessing
    LOOP AT SCREEN.
    IF screen-group1 = gc_def.
    screen-input = gc_zero_num.
    ELSEIF screen-group1 = gc_abc.
    screen-active = gc_one_num.
    ENDIF.
    MODIFY SCREEN.
    CLEAR pa_upd.
    ENDLOOP.
    ENDIF.
    REPORT zrich_001.
    PARAMETERS: p_rad1 RADIOBUTTON GROUP grp1 DEFAULT 'X'
                            user-command chk,
                p_rad2 RADIOBUTTON GROUP grp1.
    SELECT-OPTIONS: s_datum1 FOR sy-datum MODIF ID d1,
                    s_datum2 FOR sy-datum MODIF ID d2.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF p_rad1 = 'X'
          AND screen-group1 = 'D2'.
          screen-active = '0'.
        ENDIF.
        IF p_rad2 = 'X'
         AND screen-group1 = 'D1'.
          screen-active = '0'.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Spry menu how to different hover background for submenu options??

    Hi
    CS4 dreamweaver, Spry menu.
    I am trying to design a spry horizontal menu such that the main menu bar boxes accross the top all share a background image and a hover image.
    I would like all the boxes in the dropdown area to share a diferent background and hover image.
    My problem is in the hover styles. In particular, when the main menu bar accross the top has an option that is not a submenu.
    The target css rule is "ul.MenuBarHorizontal a:hover" and is used for any link that resides on the menu bar as well as for links that reside in the dropdown area. I wish to distinguish (via background image, and background hover image) the two types of buttons.
    The other challenge is that my menu is dynamic and is using a spry dataset to drive it.
    I guess i need a  "ul.MenuBarHorizontal ul li a:hover" or something like that.
    I hope that i am explaining myself.
    Anyone run into this?
    Thanks
    Jerry C

    Hi - I just read
    The other challenge is that my menu is dynamic and is using a spry dataset to drive it.
    Some time back I did the same for a number of websites - and then realised that search engines dont read the data. ie - the links and they could not be followed since they needed to be generated on the fly in the browser.. So as a result, Google was not going thru my nav menu links.
    I then changed to another method (PHP / MySql) for my dynamic menus.
    My menu system has some extra CSS to style the subnavs and the currently selected page.
    Just my 2bobs worth. Hope it is of some use..

  • How to decide implementation way for share point site ?

    Hi,
    I am developing new share point site where i want to manage more hierarchical data with its own business requirements and flows.
    lets assume following scenario 
    there are multiple companies at very top level
    Every company contains multiple departments
    and every department have multiple groups (group of working people)
     I want to manage communication between each group within each company, and no two group from two diff companies should interact with each other.
    For this implement what will be the better approach for site design ?  and how can i implement such a hierarchical structure ?
    As i am new to share point , any help will be appreciable.
    Thanks,
    C Mahone

    Create a separate site collection for each company.  For every department you can have a sub site. You can create groups within the sub site.
    Once you separate the each company details in a separate site collection you will have more control over the security.
    Check the below link for site planning  in SharePoint
    http://technet.microsoft.com/en-us/library/ee476994%28v=office.15%29.aspx
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • How to decide buffer sizes for specific size of RAM

    Hi sdners.
    Generally, how can we decide the buffer sizes which are shown in the ST02 screen. suppose we have 100GB ram /5GB ram,  then how can we decide the related buffer sizes...and generally which buffer takes more place in the RAM
    Thanks in advance.

    Hi balaji
    You can tune your SAP buffer by the statistics of Hit Ratio and swap occuring.  There should not be no swap on your system. you can adjust your buffer value by the optimizing the both value.
    Regards
    Anwer Waseem
    SAP BASIS

Maybe you are looking for

  • Itunes v7.02 doesn't open after I have tried many solutions

    Okay. So before I start I have a windows XP PC. With that through, about three months ago when iTunes 7 came out I tried to download and install it. Unfortunately when I tried to run itunes 7, it didn't work. Here are some of the stuff I tried then a

  • How to change the default delivery day when i create a shopping cart?

    hi,dear i got some trouble when i was creating a shopping cart. i want to change the default delivery day when i reference an old template. pls see the pictures and take the details. it seems that this forum dont support the [img][/img],so pls clike

  • How to extract data from multiple flat files to load into corresponding tables in SQL Server 2008 R2 ?

    Hi,           I have to implement the following scenario in SSIS but don't know how to do since I never worked with SSIS before. Please help me.           I have 20 different text files in a single folder and 20 different tables corresponding to each

  • Need some help about a query

    Hello, I'm new to oracle DB. Can someone help me with this query please? I want a query which returns the details of all the DML and DDl queries performed on a database in a particular period of time like for example from that date to today. Thank yo

  • Bit patterns in Java

    How do I create a bit pattern (bit string, bit stream?) in Java? What I'd like to do is to contract data and use a bit pattern instead of the Java built-in standard classes. With what Java tools/classes can I achieve this? Example: Storing personal d