Exchange rate, Plan exchange rate Programs & Function modules in SAPBW ....

Hi Friends,
Could anybody please tell me what are the  " Exchange rate, & Plan exchange rate " Programs & Function modules.
If any customized also , I can do modify and i will use it.
Thanks in advance,
Ramesh

Hi there
Exchange rates are used for currency conversion rules in queries, data loads, etc.
You can export exchange rates from R/3 (or other system) to SAP BI, and change them or define your own exchange rates.
For planning, you can create exchange rates specifically for that purpose.
In currecny conversion rules you can tell the system which exchange rate to use (for example EURX from EUR->USD)
To view/mantain exchange rates go to transaction SPRO->SAP Reference IMG->SAP Netweaver->General Settings->Currencies->Enter Exchange Rates
Diogo.

Similar Messages

  • Exchange rate, plan exchange rate Programs & Function modules in SAP ....

    Hi Friends,
    Could anybody please tell me  what are the  " Exchange rate " & Plan exchange rate "  standard programs, function modules  avaialble in SAP  .
    Thanks in advance,
    Ramesh.

    Check via transaction OB07 (or SPRO - General Settings - Currencies - Check exchange rate types) usually you will find a "M" average exchange rate (which is used operationally everywhere in Logistics) and a "P" planned exchange rate (used for cost planning)
    Exchange rates are maintained via transaction OB08 (or SPRO, same tree - last node - Enter exchange rates)
    When programming, use tables TCUR* or FM of function groups like SCUR "Translation of Currency Amounts etc." (CONVERT_TO_FOREIGN_CURRENCY, CONVERT_TO_LOCAL_CURRENCY and READ_EXCHANGE_RATE among others)
    Regards,
    Raymond

  • Finding number of lines in a program/function module

    Hi Expets,
    I would like to know is there any way to find the number of code lines in a ABAP program/function module.
    Additionally, can i extend this to a package such that the utility will find the number of codelines in all the programs/function modules/include programs in that package.
    Any hints regarding the same would be appreciated.
    Regards,
    Ramanath

    1. First using Read report  to load the source code to your internal table.
    2. Using SCAN statement to do analysis about the source code. pls refer to the sap keyword help about "SCAN".
    Syntax Diagram
    SCAN
    Note
    This statement is for internal use only.
    It cannot be used in application programs.
    Variants:
    1. SCAN ABAP-SOURCE itab1 ...TOKENS INTO itab2
                           ...STATEMENTS INTO itab3.
    2. SCAN AND CHECK ABAP-SOURCE itab1 ...RESULT INTO itab2.
    Variant 1
    SCAN ABAP-SOURCE itab1 ...TOKENS INTO itab2
                           ...STATEMENTS INTO itab3.
    Parts marked with " ..." are interchangeable
    Extras:
    1. ... FROM n1
    2. ... TO   n2
    3. ... KEYWORDS   FROM itab4
    4. ... LEVELS     INTO itab5
    5. ... STRUCTURES INTO itab6
    6. ... OVERFLOW INTO c1
    7. ... WITH ANALYSIS
    8. ... WITH COMMENTS
    9. ... WITH INCLUDES [IMPLEMENTATIONS FROM itab]
    10. ... WITH TYPE-POOLS
    11. ... WITH LIST TOKENIZATION
    12. ... PRESERVING IDENTIFIER ESCAPING
    13. ... WITHOUT TRMAC
    14. ... [INCLUDE] PROGRAM FROM c2
    15. ... INCLUDE INTO c3
    16. ... MESSAGE INTO c4
    17. ... WORD    INTO c5
    18. ... LINE    INTO n3
    19. ... OFFSET  INTO n4
    20. ... WITH EXPLICIT ENHANCEMENTS [IMPLEMENTATIONS FROM itab]
    21. ... FRAME PROGRAM FROM c2
    22. ... ENHANCEMENTS INTO itab

  • ABAP program/Function module to assign the roles in SU01

    Hi,
    Is there any ABAP program/function module to assign the roles in SU01. And program/function module which does all teh SU01 related activities.
    Thanks and Regards,
    Rashmi

    Hello,
    Check the function modules that start with BAPI_USER*
    To assign roles :
    BAPI_USER_ACTGROUPS_ASSIGN
    To assign profiles :
    BAPI_USER_PROFILES_ASSIGN
    To change user's metadata (name, settings, ... other SU01 functions) :
    BAPI_USER_CHANGE
    Success.
    Wim

  • Difference between a programe&function module in R/3 & BW

    Hi Gurus
                    i would like to know differenece between programe and function module in R/3
    and BW, so can some one give me  a brief idea about it cheers thanks .....

    Hi,
    Function modules are ABAP routines that are administered in a central function library. They apply across applications and are available throughout the system. You must assign function modules to a function pool that is called a function group. A function group is nothing but a container for the function modules. Now create a function group and then a function module.
    it is  a kind of standrad program where u can use it in differnt local programes .
    take an example  standrad function module "REUSE_ALV_CHECKBOX_SET"  suppose u want to create a checkbox in output screen u dont need to write a program for that u can use above mentioned function module in ur programe.
    hope this information helps u
    Regards,
    Gurudatt Bellary

  • Extend execution of ABAP programs - function module TH_REDISPATCH

    Hello Experts,
    Does anyone now where I can find documentation for FM TH_REDISPATCH?
    When this FM is called, Does it really forces a commit work?
    I have already read note 25528, but I need more information.
    Thanks in advance and regards!

    TH_REDISPATCH is internally used by SAP to prevent a long running work process (especially online processes) from getting timed out.
    TH_REDISPATCH is part of task handler functions. Other functions in the group like TH_WPINFO lists the work processes run on an application server in real time (used by transaction SM51). I often use TH_WPINFO to see what db activity a running job is currently doing (what we see in SM51 against a process). As SM51 access is normally not provided in production TH_WHPINFO comes handy.

  • Find Message VL 324 in programs / function modules etc.

    Hi,
    I'm looking for the message 324 Message Class VL
    Have anyone an idea how can I find it. Over SE80 ... search no entries found.
    Thanks
    Holger

    Hi ,
    If its dynamically triggered we cannot navigate thru message no , and i know message class VL for Delivery , so i search in that VL01n Program.
    cheer and njoy SAP.
    Regards
    Prabhu

  • Link between output type and associated program/function module..

    hi,
    where do i see this link when i configure idocs in EDI scenario ?
    thks

    hi check this link..
    http://www.****************/Tutorials/ALE/DataDistributeCustomIDOC/page1.htm
    regards,
    venkat

  • Any Program/Function module to Download/Upload Smartform?

    Hi All,
        I had forgotten in my previous thread to mention that I dont have option Utilities->Download/Upload Form in t-code SMARTFORMS. so I am looking for alternative method to download or upload the smartform..pls help me out.
    Regards
    Shaik.

    Not that I'm aware of.  But here some code for ya.
    report zrich_0001.
    Parameters: d2 type localfile default '/usr/sap/TST/SYS/Data1.txt'.
    data: begin of itab occurs 0,
          rec(20) type c,
          end of itab.
    data: wa like line of itab.
    start-of-selection.
    wa-rec = 'Test'.
    append wa to itab.
      open dataset d2 for output in text mode.
      loop at itab.
        transfer itab to d2.
      endloop.
      close dataset d2.
    Regards,
    Rich Heilman

  • Function Modules for Benefits Upload

    Hi,
        I am working on ECC 6.0 with HR 6.00
        My requirement is to Create/Maintain
    1) Benefits Savings Plan information (IT0169)
    2) Family members/Dependents for this savings plan (IT0021)
       Please let me know if there are any HR-BAPI function modules or HR function modules to achieve this.
       Also can you please send me detailed information on the parameters for these function modules.
    Thanks and Regards,
    Aditya

    Hi Kum,
               I just checked HR_BEN_CREATE_SAVINGS_PLAN. This will definitely create a savings plan.
               I need a function module to edit the savings plan also (preferably standard function module). Do let me know if one exists
    Thanks and Regards,
    Aditya

  • Standard Component in CRM that will call RFC Function Module

    HI all,
    Is there any Standard Component in CRM that will call RFC Function Module from ECC and that called RFC FM should Fetch the data from ECC.

    You can call RFC from different places, like programs, function modules, web dynpros, classes...
    So you just have to have appropriate RFC on ERP side and call it from CRM side. To call it you use the following statement...
          CALL FUNCTION 'YOUR RFC FUNCTION'
            DESTINATION i_dest "name of server
            EXPORTING
              your export parameters
            IMPORTING
              your import parameters
    Regards.

  • Syntax check for tables and function modules

    Hi,
    I am writing a program that perform syntax check on object such as executable programs , function modules and tables.
    Syntax check works fine for programs, but not for tables.
    How can I perform syntax check on my tables or structures?
    I get my data from the table TADIR. But I don't get my function modules from there. What is the table for this.
    Thanks 4 ur replies.
    Parvez

    hi
    good
    generally in sap while creating a table or structure we get the error and we solved them,but like reports during runtime it is not possible to check the syntax of a table or structure.
    thanks
    mrutyun^

  • How to get a pdf-document out of a function module

    hy,
    we want to create a wd-application which imports a function module. The function module creates a pdf-document. We are planning to deliver the function-module output as a table to webdynpro. The table includes the pdf-document.
    How can we display this pdf within the browser ?

    Hi,
    at first your Function Module should deliver your PDF as an XSTRING in ABAB.
    This is mapped to a byte[] in Java Model. This byte array you can bind for example to a FileDownload Element in the GUI. If you click on it the PDF opens.
    On the context element of type byte[] you have to do the following:
    IWDAttributeInfo attInfo = wdContext.getNodeInfo().getAttribute("<byte[]contextElement>");   
    IWDModifiableBinaryType binaryType = (IWDModifiableBinaryType) attInfo.getModifiableSimpleType();
    binaryType.setFileName("<yourname>".pdf");
    binaryType.setMimeType(WDWebResourceType.PDF);
    Then it should basically work
    Frank

  • Using Function Modules in Visual Composer

    Hi,
    I am very much new to Visual Composer.
    I have a requirement where I need to use an input ready query in the Visual Composer model and enter a plan data and save it.
    I read in some forums that it is possible to execute planning sequence and save plan data using the function modules RSPLSSE_PLSEQ_EXECUTE and RSPLSTD_DATA_SAVE. But I am not sure how to implement these function modules in Visual Composer 7.0.  Can anyone through some input on this?
    Any related document or link regarding this if shared would be helpful.
    Thanks in advance.
    Regards
    Veena

    Hi,
    I am very much new to Visual Composer.
    I have a requirement where I need to use an input ready query in the Visual Composer model and enter a plan data and save it.
    I read in some forums that it is possible to execute planning sequence and save plan data using the function modules RSPLSSE_PLSEQ_EXECUTE and RSPLSTD_DATA_SAVE. But I am not sure how to implement these function modules in Visual Composer 7.0.  Can anyone through some input on this?
    Any related document or link regarding this if shared would be helpful.
    Thanks in advance.
    Regards
    Veena

  • Add parameter in Function Module

    hi all,
    I'm trying to add a parameter to function module HRGPBS_HER_GET_SURNAME_NINO.
    However, the system is telling me to carry out modification comparison first.
    Can someone guide me on using SPAU or SE95, as I don't understand what to enter in the selection area?
    thanks

    If you go to transaction code: SPAU, you can find the item (program, function module, screen, etc) in question, open the tree to the lower levels. On the lower item, you can choose to save your changes or revert back to original.
    The developers should be able to tell what has been changed. In most cases, we wanted to keep our changes with the exception of when a change was made and later a note was released to produce the same result or if new functionality is released related to the item in question.
    Hope this helps.

Maybe you are looking for