No value found for text variable ZTFYEAR

Hi,
I have used Text variable ZTFYEAR with replacement path on fiscal year 0FISCYEAR. I have three columns in my report for value for current fiscal year, fiscal year-2, fiscal year-1.When I use the text variable with replacement path , it shows in the header &ZTFYEAR&Value instead of showing 2007value, 2005 Value , 2006 Value.
Any bosy can help?
Error message :
Message no. BRAIN612
Diagnosis
Text variable ZTFYEAR, which is found in the item " Values", needs to be replaced by the value of the characteristic 0FISCYEAR. This value is not clearly specified in the item " Values". Therefore, no replacement takes place.
Thanks,
Ajay

Hi Ajay,
Is this teaxt variables created on 0FISCYEAR?
if yes
then did you include 0FISCYEAR in your selection while creating a row or a column as the part of the structure?
If you are using 0FISCYEAR and then still not getting the value replaced check in your amster data if you ahve the key,small text,  middle text and long text which ever you have used while creating your text variable has values in it or if it's blank?
hope this helps!!
Regards
Sri

Similar Messages

  • No value found for text variable ZZCALQTR in "&ZZCALQTR&"

    Hi,
    I m currently working on cell definition and facing some problems.
    Considerthis
                    Structure1
                    Current Cal Quarter   Last Cal Quarter
    Row1
    Row2
    Total
    For Current Cal Quarter and Last Cal Quarter i have text variable &ZZCALQTR& and inside i have restricted 0CALQUARTER.
    ANd i have used
    different offset for )CalQuarter in individual cell definition.
    So, it is giving me this error
    No value found for text variable ZZCALQTR in "&ZZCALQTR&".
    what should i do...any solution
    regards,
    Sandeep Khatri

    Hi San,
    i think u r exeuting the Query without providing any value in selection screen.then it displays the error message which u mentioned...just enter some value in selectionand try it..
    hope this helps
    regards

  • No value found for Text Variable

    Hi All,
    I have 2 different variable created on 0VERSION. One for user entry and second one is text variable with replacement path as "text".
    I have 3 different columns in the report.
    One is Restricted KF, based on user entry variable. Heading of this column has to be Result (&ZVERTXT&), where ZVERTXT is my text varaible.
    Now, in second column I m using formula to calculate percentage. Heading of this column is &ZVERTXT& (%).
    Now, in third column i m again using formula using the same KF as in first column. But this time, in the heading this text variable thorws "no value found error"
    can anybody help me out in this issue.. ??

    Hi,
    This is the proble to get value for text variables with Replacement path ,in case system is getting 2 reference values .So it get confusion and says that <i>No value found for Text Variable </i> .
    So as a work around :
    Instead of a text variable with automatic substitution(replace ment path) from another characteristic value, you can also create a text variable that is filled by a customer exit.In the code you  assign the Text value by looking into TEXT table with the value you got from User entry variable( which is used in first Restricted KF).
    With rgds,
    Anil Kumar Sharma .P

  • No values found for text with replcement path

    Hi Guys,
      I made a query header to replace with the fiscal year/period dynamically. Query has restricted
      key figures for current month and previous month.
      When I execute this it is showing the current and previous month details but it is not showing the
      fiscal year/period in  query(description) header. It is showing the same technical name like
      &ZFISPER&.
      I have seen other postings in sdn and restricted the compunded characterstics in query.
      If I restrict the fiscal year period in filter it is reflecting in query header but I'm not getting the previous
      month values. Previous month values are showing blank. It is replacing in restricted key figure header
      but not working in query description.
      Can any one through me some light here?
      Thanks
      Prasad

    Hello,
    You cannot place in filter as it will restrict to current month only and hence ur previous month will be blank obviously.
    In  7.O, it is possible to use. replacement path from infoobject or from variable as well!
    variable (current month text variable)may suit in your case.
    or
    You can try some formatting options in teh workbook to achieve this
    or
    You can try to convince client that u will display the current month and previous month in their respective colums instead of Query Description.
    Reg,
    Dhanya

  • What is the include for text variable?

    Dear Friends
    I am trying to add a customer exit for text variables.
    I have done variable exits for things like fiscal period but not for customer exit TEXT variables.
    I could not find any text variable code in the include ZXRSRU01  .
    Please advise what should be the program name?
    Is it found in a different include?
    regards
    Bass

    Hi Bass,
    Customer exit for text variables is also the same how we create customer exits for characterisitics variable. As per the clarity what i got from ur question.
    I'll just explain a small program in customer exits which will act as a text variable.
    Go to SE38 -->
    Display the program ZXRSRU01 --> (This can be done only if you have added the enhancement of the system from CMOD)
    Then add ur following case statement to the existing code.
    After all the data declarations start ur main program
    when 'YEAR_CUST'.
      if i_step = 2.
        l_year1 = sy-datum+2(2). //Data declaration
        l_mon1 = sy-datum+4(2).  // Data Declaration
       l_date1 = sy-datum+6(2). // Data Declaration
         case l_mon1. //case statement which has the technical name of ur Exit variable
         when  '01'. // This statement generally checks the whether the given variable entry has a value '01' then enters the statement here and returns the value as JAN //
              CONCATENATE 'JAN' l_year1 into dat.
              l_s_range-low = dat.
              l_s_range-high = l_s_range-low.
              l_s_range-sign = 'I'.
              l_s_range-opt = 'EQ'.
              APPEND l_s_range TO e_t_range.
              endcase.
             ENDIF.
    Hope this helps u and have given the explanation as per the understanding of your questionand can give more clarity to you.

  • How to Get User entered value in a text variable

    Hi,
    I have made a text variable to show the user entered value in the column header.
    The user enteres value in a formula variable ABC whose default value is say '30'.
    I am using customer exit to capture this value in the text variable. The code is as follows
    IF i_vnam EQ 'txtvar'.
    if i_step = 2.
    LOOP AT i_t_var_range INTO loc_var_range
    WHERE vnam = 'ABC'.
    CLEAR l_s_range.
    l_s_range-low = loc_var_range-low.
    l_s_range-opt = 'EQ'.
    l_s_range-sign = 'I'.
    APPEND l_s_range TO e_t_range.
    EXIT.
    ENDLOOP.
    endif.
    endif.
    Now when I am executing the query I am getting the default value in the column header i,e, 30. But when the user changes this default value to something else while executing the query, I simply get blank in the column. The changed value is not getting captured in the text variable.
    Thanks

    Hi,
    Insted of  going for exit,
    just create a Text variable proceesing typr Default/ Manual Entry and set the default value as u wish,
    use it in the KF header; dont use the same Text Variable for Query Title.
    Now i tried this for you and it is working fine.
    Regards
    ReddY A

  • No value found for Organizational Unit BILL_ORG

    Hi Experts,
    I am creating a Service transaction - Incident and then creating a follow up document (RFC). Upon saving the follow up document the system shows the following error:
    An error occurred in system FEDCLNT200 during account assignment
    Message no. CRM_ORDER_MISC 060
    Orgfinder: No value found for Organizational Unit BILL_ORG (Notification E CRM_OFI 002)
    I am not using any billing unit and do not even require one - also made settings for billing unit in Master data>Organization Management> Cross-system assignment of Org.Units... but still facing the same error
    Kindly help.
    Regards.

    Hi Amit,
    It has been a long time since I have seen this issue. As far as I remember, and also mentioned in my answer, if distributing the document to another system is not part of your process / requirement, then simply switch off the distribution via status management and transaction control.
    Select the status profile and add transaction control to the status on which the error shows up.
    Hope it helps !
    Haseeb.

  • Max Character Length for Text Variables

    Hi folks,
    Quick question:
    Does OPA have a max character length for text variables?
    -Isamu

    Obviously common sense prevails here. The system is unlikely to perform very well if you start passing around MBs of data in text variables!

  • How to Derive value in a text variable from numeric variable.

    Hello experts!!
    I have a requirement where i need to show some derived text in the column headers of my BEx query.
    Say i have a text variable for the column header FYT which need to have the fiscal year text. I have another variable on 0FISCYEAR -- FY which has values of the fiscal year.
    I have used FYT = &FY&, so, if FY = 2007, then the column header will show '2007'.
    But my requirement is, If FY = 2007, then FYT should have FY-1, if FY = 2008, FYT should have FY-2 and so on.
    I am not sure if we can use a normal and a text variable in a formula together. Please suggest what to do.
    Thanks and Best Regards,
    Vikas Bittera.

    Hi Bob,
    Thanks for the reply. But i am very clear about the explanation given. I enter one FY value on the screen say 2007.
    Now depending on this value i have multiple columns say for 2008, 2009, 2010. So it will always vary according to the entered year. For example if i enter 2006, then i will have columns for 2007, 2008 and 2009.
    The requirement is to show text for these columns. Say FY-1, FY-2 and FY-3. But this text is not same always. Say i take the year 2007 as my reference year for the start of use of my application.
    Then when i will put 2008, then my columns should display FY-2, FY-3 and FY-4.
    Please give the steps needed for the same. Be assured for full points
    Thanks and Best Regards,
    Vikas Bittera.

  • 0UNIT - No SID value found for value 'FYR' of characteristic 0UNIT

    Dear All,
    Request your help for the following issue observed.
    Please find below the details of the issue observed:
    Scenario: A flat file upload in and ODS with field Alternate Unit of Measure (mapped to 0UNIT)
    Issue: While activating the data in the ODS (Transformation, RSDS transaction datasource), it gives an error stating 'No SID found for value 'FOZ' of characteristic 0UNIT'.
    Measures tried: Transferring Global Settings, Checking in the table 'T006', Checking the format of the flat file.
    May I please request your help for the above issue at the earliest.
    Thank you.
    Regards,
    Kunal Gandhi

    Hello,
    Same issue here.
    I've checked the entries in 0UNIT SID table: The unit "xxx" is not present.
    But this unit is present in T006 table, with no specific option.
    The update mode for Master Data on SPRO is : "Create master data if Not avalaible (Auto_sid)"
    The update mode in infopackage is "Always update data, even if no master data exist for the data"
    I've used the "Rebuild tables" mode for Units of measurement for my source system.
    The tried the simulate update for my datapackage.
    ==> No errors
    ==>deletion of package on the data target
    ==>manuel update of data from the package
    ==>change to green
    ==>check the 0UNIT SID table : The unit "xxx" is now present !
    Hope this helps

  • Multiple loops in one loop for text variables

    Dear experts,
    Please find the code below.This is text variable customer exit.Can u ple help me to put these multiple loops into one loop.Do u suggest this code is ok?
    Appreciate your help.
    WHEN 'ZSTXTPE01AA'or 'ZSTXT0FISCPER305AA'or 'ZSTXT0FISCYEAR01AA'
    INCLUDE Z_VARIABLES_TEXT
    DATA: vtype i,
          fisper i,
          fisyear i
    IF I_STEP=2.
    LOOP AT I_T_VAR_RANGE INTO loc_var_range WHERE VNAM='ZS0VTYPE01AA'
    vtype=LOC_VAR_RANGE-LOW
    ENDLOOP.
    CLEAR L_S_RANGE.
    L_S_RANGE-LOW= vtype.
    L_S_RANGE-SIGN = 'I'.
    L_S_RANGE-OPT = 'EQ'.
    LOOP AT I_T_VAR_RANGE INTO loc_var_range WHERE VNAM='ZS0FISCPER305AA'
    fisper=LOC_VAR_RANGE-LOW
    ENDLOOP.
    CLEAR L_S_RANGE.
    L_S_RANGE-LOW= fisper.
    L_S_RANGE-SIGN = 'I'.
    L_S_RANGE-OPT = 'EQ'.
    LOOP AT I_T_VAR_RANGE INTO loc_var_range WHERE VNAM='ZS0FISCYEAR01AB'
    fisyear=LOC_VAR_RANGE-LOW
    ENDLOOP.
    CLEAR L_S_RANGE.
    L_S_RANGE-LOW= fisyear.
    L_S_RANGE-SIGN = 'I'.
    L_S_RANGE-OPT = 'EQ'.
    APPEND L_S_RANGE TO E_T_RANGE.
    ENDIF.
    Rgds
    ACE

    Hi ACE BW,
    You can try to use the SELECT statement and then include the LOOP inside it.
    Thanks,
    Daniel

  • F4 Value Help for Bex Variable (BRAIN646)

    Hi ,
       I set a authorization variable which allow user to select in a Bex query . When I run query and click value help on that variable, the system keep send a warning msg like :
    Value if variable ZVAPLAMS is automatically converted
    Message no. BRAIN646
    Is there any way to suppress this warnning msg?
    Thx,
    Jeff

    Hi Sims,
    I had also the same Problem (BRAIN 646). I've debugged the Query with transaction rsudo -> Execute User as "User with warning" -> Possible Transaction "RSRT" -> Start Transaction.
    The Transaction RSRT is opened and you can now debug your Query by klicking on "Execute + Debug" -> Expand "Variables" and activate "Customer Exit Variable (Before)".
    Don't forget to enter your Queryname.
    You are in Debuging-Mode and set Break-Points (see screenshots)
    1. Set break-point on FORM VALUE_FROM_AUTHORITY_FILL then F8 and get in with F5
    2. Set break-point on  IF l_i1 <> l_i2. then F8 and you get your cursor on IF l_i1 <> l_i2.
    You may see, if internal tables "l_i1" and "l_i2" have the same count of rows. If not take a look at   "l_i1", if there Interval value exist, if internal value do exist. If interval values do exist and in "l_i2" doesn't than you have replace your variable " ZVAPLAMS" with another Variable (selection option). It has to be "Selection Option", than only selection option variable accept single values and interval values.
    Regards
    Wanda Soetomo

  • NO SID value found for 'PR' in 0UNIT

    Hi,
    When I run a query on a remote multiprovider , though the SID value exists in the SID table, I get this error message.
    I tired all the options of running the SID conversion for 0UNIT in RSRV. Its fine, no errors.
    Also ran the consistency check for dimensions of the cube.
    I ran thru LISTCUBE for the same selections i made in the query.
    Basically the query has a selection on the key figure which has unit as 0BASE_UOM  which has restriction on a date field which is a NUMC datatype with 8 characters.
    If I remove the date field the query runs fine but no value is retrived and is blank for key figure.
    I see data existing for the selections I have made in the query.
    Any idea why it happens only when there is a restriction on the date field. Though date is populated and the key figure too.
    Thanks

    Can you try updating Unit tables ?
    BI - RSA1 - Source System - RClick on Source System -
    Transfer Global Settings - Select Units of Measurement -
    Update Tables - Execute.

  • INVALID VALUE FOUND FOR VENDOR_SITE_CODE

    HI ALL
    while approving supplier i cant find supplier site in LOV. i already have defined sites for the supplier.do i need to give site access to an org.
    does any body has an idea about this.
    regards,
    naveen

    hi
    i m sure that i have defined thr site for the supplier in the particular org.
    and my structure is not multi org.
    for my case
    business grp/legal entity/operating unit/ are all one and the same.
    i feel that there are some setup issues.
    tell me if u know some setups issues related to this.
    naveen

  • INVALID VALUE FOUND FOR VENDOR_SITE_CODE (Purchaing)

    HI ALL
    while creating requisition i cant find supplier site in LOV. i already have defined sites for the supplier.
    does any body has an idea about this.
    regards,
    naveen

    ok i got it
    all supplier sites had been checked as RFQ only.
    i unchecked this.working fine.
    regards
    naveen

Maybe you are looking for

  • How can I use layer axis versus world axis to animate?

    Hi all, I'm open to alternate ways to approach this. I'm trying to create a sphere using several images. Say, 200 images, arranged in 3d space so they face outwards and are all forming one large sphere. Pretty standard thing (like the glowing blue dr

  • How can I shape tween crossing objects?

    I want to shape tween multiple objects on the same layer.  When they are placed independently from each other all the time on the canvas, I have no problem to make them morph into the other shapes in the ending keyframe. However, when some of the obj

  • Acrobat Reader Runtime Error

    When I try to launch Adobe Acrobat 6.0, I get the following error: Runtime Error! This application has requested the Runtime to terminate it in an unusual way. I've tried every fix I could fin on the Web including reinstalling the program. Does anyon

  • Inserting a second query in workbook

    I've ran a BI query and successfully saved as a workbook. I would now like to insert a second query into the same workbook on a different Excel tab but I cannot find how to do this from the documentation I have. If I try an 'Open Query' again it prod

  • I did not sound in my IPA 2, iOS 7.0.4

    No sound find in my ipd2 iOS 7.0.4