Where to see the logic for 0FYEAR (SAP Exit)

There is already an SAP exit 0FYEAR. There is a requirement to make ZFYEAR1 just like 0FYEAR. So, i want to see where the code (logic) for 0FYEAR is present so that i can write the the same for my custom variable(ZFYEAR1) in CMOD. Can anyone help me with the name of the program?

Include ZXRSRU01 --> Function Module EXIT_SAPLRRSO_001
or
Search for Function Module RSVAREXIT_ [variable name]
Variable Name = 0FYear

Similar Messages

  • How to see the ABAP Code behind SAP Exit Variables.

    Hi Everyone.
    I was wondering if anyone could help me with the steps to see the ABAP Code behind a SAP Exit Variable.
    Sometime back I remember of going to Transaction SE37 - Function Module and give the Variable name,
    Eg: 0F_ADAY, Hit F4 or something like that and was able to see the ABAP Code/Function Module/Exit written for that Variable.same
    But today I tried to do the same thing to see the code for Variable 0P_FVAEX but I was NOT able to see it.
    I think I am missing something.
    Can someone help me recollect what I am missing.
    Thank You for your time
    NOVICE

    Hi bi novice,
    big sorry for the late reply!
    The following variables are defined in function module RREX_VARIABLE_EXIT as case statement:
    '0CMONTH', '0CWEEK', '0CYEAR', '0CQUART', '0DAT', '0CWD', '0FYEAR', '0FPER', '0FYTCFP',
    '0FYTLFP', '0FYTCD', '0CYTCM', '0CYTLM', '0CYTCD', '0LYTCLD', '0CMONTHT', '0CWEEKT', '0CYEART', '0CQUARTT', '0DATT', '0FYEART', '0FPERT'
    Best regards,
    Andreas

  • ABAP coding for variable SAP exit

    Hi,
    I'm looking for a way to see the coding of a SAP-exit query variable: 0FYTLFP.
    So this is NO custom-exit (via CMOD).
    I've tried the FM: RSVAREXIT<varname> but it doesn't exist.
    Via RSRT i couldn't find the piece of coding either.
    I'm not looking for the functionality but the piece of coding that is used for this.
    How can I find it??
    Cheers.

    Ok, this code works as per my note above. If the period of the system date is the first of the fiscal year, it will return to the previous fiscal year to get a range for YTD.
    Basically, this acts as if you're running the query in the previous period for current YTD.
    WHEN 'ZFYTLFP'.
            CLEAR: ZE_T_RANGE, E_T_RANGE, ZI_T_VAR_RANGE, W_YEAR, W_PERIOD, L_FPER.
            DATA: l_poper    LIKE t009b-poper.
            DATA: l_fiscyear LIKE t009b-bdatj.
            DATA: l_curdate  LIKE sy-datum.
            l_curdate = SY-DATUM.
            CALL FUNCTION 'DATE_TO_PERIOD_CONVERT'
              EXPORTING
                  i_date         = l_curdate
                  i_periv        = i_periv
              IMPORTING
                  e_buper        = l_poper
                  e_gjahr        = l_fiscyear
              EXCEPTIONS
                  input_false    = 1
                  t009_notfound  = 2
                  t009b_notfound = 3
                  OTHERS         = 4.
           W_YEAR = l_fiscyear(4).
            W_PERIOD = l_poper(3).
            IF W_PERIOD = '001'.
              W_YEAR = W_YEAR - 1.
              W_PERIOD = '012'.
            ELSE.
              W_PERIOD = W_PERIOD - 1.
            ENDIF.
            ZE_T_RANGE-LOW(4)   = W_YEAR."  year
            ZE_T_RANGE-LOW+4(3) = '001'.
            ZE_T_RANGE-HIGH(4) = W_YEAR. "  year
            ZE_T_RANGE-HIGH+4(3) = W_PERIOD.
            ZE_T_RANGE-SIGN = 'I'.
            ZE_T_RANGE-OPT = 'EQ'.
            APPEND ZE_T_RANGE TO E_T_RANGE.

  • Please see the log for more details.... where to find the log???

    Hi everyone,
    I have a WebI document in our DEV environment that I am trying to transport to PROD.
    When I try I get the message:
    Commit Status=Commit attempted and failed., Promotion Status=Failure : Object  has failed to promote. Please see the log for more details
    But where do I find this log that has more detail?
    As background, the document in PROD is corrupt and I want to replace it with the working copy from DEV. Perhaps the fact that the PROD document is banjaxed is the issue but I don't know.
    Many thanks
    Gill

    Hi Arvind,
    We are going live to live on the promotion side of things.
    Test promotion tells me everything is OK :-(
    I appreciate your workaround solution, I would like to understand full what's happening and put a more permanent solution in place.
    With regards
    Gill

  • Where to see the transaction code for a script

    Hai my dout is  where to see the transaction code for a script after assigning to  a drive programm for example i see output for medruck in me11 and for other standard scripts where can i see the  output is there any table avaible to check it

    Hi masthan,
       for sd and mm related scripts. u can use tnapr.
    Otherwise go to nace transaction u can find the script name as well as program name.
    Or u can try with TSTC table, which will give the t/c's.
    Regards...
    Arun.

  • I send mi link for podcast and i dont have answer, please where can i see the satus for aprobal

    where can i see the status for mi podcast?
    i got the mail that is in process but never the answer that was aproved or not!
    that was 5 days ago
    Thanks

    It can take at least two weeks for a podcast to be approved - sometimes more - as it required human intervention and there may be a large backlog. It's just a question of waiting. As you've received the acknowledgement email things are plainly underway, and all being well you should get an acceptance email eventually, giving you the URL of your Store page.

  • Where we can see the settings for Message No L1615

    Where we can see the settings for Message No L1615
    Appl. Area              L1
    Message Number     615

    Hi
    This message cannot be maintained as a warning using the Configuration.
    This message is allowed only AS AN ERROR.
    Thanks & Regards
    Kishore

  • Where to see the size of the file in XI system

    where to see the size of the file in XI system..i mean after sending it into XI....
    Edited by: Harsha reddy on Jun 25, 2008 5:51 PM

    Hi,
    You can UDF like in Message Mapping to get the file size.
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","SourceFileSize");
    fileSize = conf.get(key);
    You have to mention adapter specific attribute for file size in file adapter.
    How to retrieve file size and XI message ID?
    Kulwinder
    Reward if Helpful

  • Can I see the score for a song I hummed into GB? How?

    I hummed a tune into GB and now want to see the score for this tune so that I can create instrumentals to go with it. Can it be done? How?
    Thanks.
    MA

    maryannfromwestminster wrote:
    What is Logic (the program not the concept) and where can I get it?
    it is Apple's "high end" music software, you can find it here:  Logic Studio Retail

  • PA-US  Where to find the documentation for renumeration type?

    Gurus,
    Where to find the documentation for renumeration type details for IT0008 in SAP Library?
    I tried in HR sections under ERP of SAP Library, but could not find the place.
    Thanks,

    Revathi,
    I see an option to change the enum type in IT0008 maintenance screen.
    Which simply changes section of the screen as "salary" to "pay scale" and vice versa.
    I want to understand the difference between those in terms of payroll process (calculations).
    Hence, I was trying to find documentation in this regard in SAP Library.
    Thanks,

  • So where we see the status of this work order request

    Hi All,
    I have submitted work order WO00034931 in SAP for a new vendor address but it seems my approver (Andre Vabre) never received it. In SAP, its status is “Submitted for Approval”.
    So where we see the status of this work order request
    Thanks,
    Kumar

    Hi
    You can make the price of a variant dependent on the characteristic values assigned (Pricing).You can use
    variant conditions to define surcharges and discounts for a variant
    Variant u2013Pricing steps
    Create condition record
    create a procedure where you enter the reference from the characteristic
    Assign the procedures to either the characteristic values
    configure the material in the sales order
    The net price for the material is displayed
    If a value that triggers a variant condition is selected when configuring a material in a sales order, the price of the material displayed under Net value is automatically increased or reduced.
    In addition, the Conditions pushbutton is displayed.
    On pressing this pushbutton,
    One can see which conditions have
    influenced the price.
    I tried to list you as much detail as possible. Hope that you will be able to resolve your issue
    Thanks

  • What is the logic for 2LIS_17_I3HDR to pick a order as completed on time?

    Hi, Experts:
    I am working on PM using 2LIS_17_I3HDR to load data. In 2LIS_17_I3HDR, there is a field called "orders completed on-time". I am wondering what is the logic for 2LIS_17_I3HDR to identify if an order was completed on time. I would assume it compares some kind of completion/finish date with a planed/schduled comletion/finish date. Would someone please tell me what fields in what table or in transaction IW39 DOES does 2LIS_17_I3HDR  use for this?
    Many thanks!
    Jenny

    Hi, Ram:
    Thank you for the reply!
    The key figure is ZHLAFIH_TGERL (Number of On-time Closed Orders). I saw some SAP programs refering to its component type "DZHLAFIH_TE" too.
    Thanks,
    Jenny
    Edited by: Jenny Chen on Dec 2, 2009 7:53 PM
    Edited by: Jenny Chen on Dec 2, 2009 7:55 PM

  • Where to find the mapping for a Transformation

    Hi guys i have a problem...i have activated the infocubo 0IC_C03 and i notice that the mappings of 2LIS_03_BF dont have all the fields mapped and i assume that is an error of activation where i can find the complete mappinf that should be for this cube in order to realize if its correct or not?
    I hope sombody could help me....
    Regards....

    Hi,
    There is a table in BW where you can see the mappings for a DS for R/3 to BW..
    table name is RSOSFIELDMAP
    Hope this answers your question
    Regards,
    Srini

  • 12c where to see the enabled audited operations

    hi,
    I got to see the audited operation data in setup->auditdata but I am not able to find where to see the enabled audit operation names.
    The following command shows only the list of operations can be audited but it doesnot say whether it is already enabled or not
    emcli show_operations_list
    please suggest me
    cheers
    Tamil

    Try adding -view=DETAIL
    bash-4.1$ ./emcli show_audit_settings -view=DETAIL
    Audit Switch : Enabled (For all Operations)
    Operations configured for auditing :
    ADD_AGENT_REGISTRATION_PASSWORD : ENABLED
    ADD_CS_TARGET_ASSOC : ENABLED
    AGENT_REGISTRATION_PASSWORD_USAGE : ENABLED
    AGENT_RESYNC : ENABLED
    AG_AUD_CREATE : ENABLED
    AG_AUD_DELETE : ENABLED
    AG_AUD_MODIFY : ENABLED
    APPLY_TEMPLATE : ENABLED
    APPLY_UPDATE : ENABLED

  • Where to see the user maintenance activity log (creation,deletion..)?

    Hi, SDN Fellows.
    This should be a Basis question. But I only able to find this category (Netweaver AS) to write this post.
    Our current user management engine is taken the user data source from the ABAP System (CRM system).
    I know that I can do the user maintenance tasks through TCode: SU01.
    I just wonder where I can see the log for all the user management activities, i.e. 1) User account creation; 2) user account deletion; 3) user profile modification and etc for particular period.
    Another question, can I see this activity through portal too? Assuming I am having Super Admin role portal.
    Thanks,
    Kent

    Hi Kent,
                     You can view the information in SU01-->Information----> change documents for the user your 1,2, and 3 can be viewed here.
              This information you can't see in the portal even you had super user access.
    Regards,
    Hari.

Maybe you are looking for