Query input variable issue

Hi experts,
We are using BEx 3.5.
1.We defined a RKF such that restricting the 0deb_cre_lc on Fiscal Year/period and restricted Fiscal Year/Period with a mandatory variable and the condition is <= ( Less than or equal to ).
When we execute a query a input screen will come asking to enter a Fiscal Year/Period.
Its a mandatory field.As per our client only 16 periods are defined and the fiscal year variant is V3.
Periods are from 001 to 016.
User will be entering like 001.2005 or 012.2008 like that.So in the output we will be getting the balance
i.e 0deb_cre_lc amount less than or equal to the user entered fiscal year/period.
But when user enters 234.2008 or any other wrong value which is other than 001 to 016 the report should
not be executed.But now it is executing.
Is there any possibility such as if user enters any period out of the range 001 to 016 then the report
should not be executed. or show any error message. Or Is there any possibility such that if user enters
only the values which are in the infoprovider then only the report should be executed.
For the above requirement, please check whether the following code matches or not. But the code is not
working.
Tables: /BIC/AZSM_DSO00.
data: begin of zfisc occurs 0,
fiscper(7),
end of zfisc.
Data WA_I_T_RANGE like line of I_T_VAR_RANGE.
If i_step = 3.
Case i_vnam.
WHEN 'TEST_FCE'.
SELECT FISCPER FROM /BIC/AZSM_DSO00 INTO table ZFISC where FISCPER = /BIC/AZSM_DSO00-FISCPER.
READ TABLE I_T_VAR_RANGE INTO WA_I_T_RANGE WITH KEY VNAM = 'TEST_FCE' .
*READ TABLE ZFISC with key fiscper = WA_I_T_RANGE-LOW.
IF ZFISC CA WA_I_T_RANGE-LOW.
IF sy-subrc EQ 0.
exit.
else.
CALL FUNCTION 'RRMS_MESSAGE_HANDLING'
EXPORTING
i_class = 'CD'
i_type = 'E'
i_number = '121'
i_msgv1 = 'Enter Correct value for FISCPER'
EXCEPTIONS
dummy = 0
OTHERS = 0.
RAISE no_processing.
ENDIF.
ENDIF.
Endcase.
Endif.
Please check the code and let me know if i have done any mistakes.
Regards,
smitha.

Have done the specified changes. The code is as follows. But it is not working.
Tables: /BIC/AZSM_DSO00.
data: begin of zfisc occurs 0,
fiscper(7),
end of zfisc.
data: text(12) type c.
text = text-001.
Data WA_I_T_RANGE like line of I_T_VAR_RANGE.
If i_step = 3.
Case i_vnam.
WHEN 'TEST_FCE'.
*SELECT FISCPER FROM /BIC/AZSM_DSO00 INTO table ZFISC where FISCPER = /BIC/AZSM_DSO00-FISCPER.
SELECT FISCPER FROM /BIC/AZSM_DSO00 INTO table ZFISC.
READ TABLE I_T_VAR_RANGE INTO WA_I_T_RANGE WITH KEY VNAM = 'TEST_FCE' .
READ TABLE ZFISC with key fiscper = WA_I_T_RANGE-LOW.
*IF ZFISC CA WA_I_T_RANGE-LOW.   commented this
IF sy-subrc EQ 0.
exit.
else.
CALL FUNCTION 'RRMS_MESSAGE_HANDLING'
EXPORTING
i_class = 'CD'
i_type = 'E'
i_number = '121'
i_msgv1 = text
EXCEPTIONS
dummy = 0
OTHERS = 0.
raise again.
RAISE no_processing.
*ENDIF.  commented this
ENDIF.
Endcase.
Endif.
The structure of table /BIC/AZSM_DSO00. It is having 96 fields. Short des is 'ODS Object ZSM_DSO : Active Records'
Regards,
smitha.

Similar Messages

  • Performance issues with query input variable selection in ODS

    Hi everyone
    We've upgraded from BW 3.0B to NW04s BI using SP12.
    There is a problem encountered with input variable selection. This happens regardless of using BEx (new or old 3.x) or using RSRT. When using the F4 search help (or "Select from list" in BEx context) to list possible values, this takes forever for large ODS (containing millions of records).
    Using ST01 and SM50 to trace the code in the same query, we see a difference here:
    <u>NW04s BI SQL command</u>
    SELECT                                                                               
    "P0000"."COMP_CODE" AS "0000000032" ,"T0000"."TXTMD" AS "0000000032_TXTMD"                             
    FROM                                                                               
    ( "/BI0/PCOMP_CODE" "P0000" ) LEFT OUTER JOIN "/BI0/TCOMP_CODE" "T0000" ON  "P0000"."COMP_CODE" = "T0000
      "."COMP_CODE"                                                                               
    WHERE                                                                               
    "P0000"."OBJVERS" = 'A' AND "P0000"."COMP_CODE" IN ( SELECT "O"."COMP_CODE" AS "KEY" FROM              
      "/BI0/APY_PP_C100" "O" )                                                                               
    ORDER BY                                                                               
    "P0000"."COMP_CODE" ASC#                                                                               
    <u>BW 3.0B SQL command:</u>
    SELECT ROWNUM < 500 ....
    In 3.0B, rownum is limited to 500 and this results in a speedy, though limited query. In the new NW04s BI, this renders the selection screen unusable as ABAP dumps for timing out will occur first due to the large data volume searched using sequential read.
    It will not be feasible to create indexes for every single query selection parameter (issues with oerformance when loading, space required etc.). Is there a reason why SAP seems have fallen back on a less effective code for this?
    I have tried to change the number of selected rows to <500 in BEx settings but one must reach a responsive screen in order to get to that setting and it is not always possible or saved for the next run.
    Anyone with similar experience or can provide help on this?

    here is a reason why the F4 help on ODS was faster in BW 3.x.
    In BW 3.x the ODS did not support the read mode "Only values in
    InfoProvider". So If I compare the different SQL statements I propose
    to change the F4 mode in the InfoProvider specific properties to
    "About master data". This is the fastest F4 mode.
    As an alternative you can define indexes on your ODS to speed up F4.
    So would need a non-unique index on InfoObject 0COMP_CODE in your ODS
    Check below for insights
    https://forums.sdn.sap.com/click.jspa?searchID=6224682&messageID=2841493
    Hope it Helps
    Chetan
    @CP..

  • Error in Query input variable

    Hello Experts
    I have a query which has input variable 0I_FPER for Fiscal year period and takes interval as input.
    when i try to select values i get following error. i have tried different inputs
    "Characteristic Fiscal year/period has no master data for "003.2010" "
    I tried creating new input variables and still get same ptoblem for TO value put in.
    Please help.
    Thanks in advance
    Regards
    Sudeep

    Hi
    I am using 0FISCPER infoobject for restriction, master data table for this is T009B.
    i even tried to rebuild this using tranfer global setting s option but problem still exists.
    0FISCPER object has no SID table.
    Moreover this report work fine using RSRT but give error at inputs when i run it over web.
    I am still facing same problem
    Please help
    Regards
    Sudeep
    Edited by: Sudeep Paranjape on Dec 27, 2010 10:50 AM

  • Dynamic Query Input Variables / Dynamic Reporting Ouput

    Hi All,
    Overall Architecture :
    Front End : Webpshere Portal
    Middle Tier : Webpshere Application Server
    Reporting Presentation Layer : Business Objects Reports (The reports will use the BEX query as a datasource)
    Reporting DataSource = BEX Query
    I am trying to build a BEX query based on the following. I have a sales ODS that shows the following data. Based on a user's selection, the report should return the corresponding data. What would be the best way to tackle something
    like that ? Thanks all or your help !
    Example :
    SALES ODS :
    Customer -
    Sales $ - Rebate Indicator---Refund Indicator-----Equipment Indicator
       Apple -
    1000--False False--
    False
       Apple -
    10--True -  False--
    False     
       Apple -
      50--False True--
    False
       Apple -
    40--False False--
    True
    QUERY INPUTS #1 :
    Customer Site             = Apple
    Rebate Indicator       = True
    Refund Indicator       = True
    Equipment Indicator     = False
    QUERY RESULT :
    Customer -
    Sales $
       Apple -
         1060
    QUERY INPUTS #2 :
    Customer Site              = Apple
    Rebate Indicator        = False
    Refund Indicator        = True
    Equipment Indicator      = False
    QUERY RESULT :
    Customer----
    Sales $
       Apple----
    1050

    Hi Nigel ,
    Instead of creatin query on ODS u should create on Cube .
    ODS Data :
    Customer -
    Sales $ - Rebate Indicator---Refund Indicator-----Equipment Indicator
    Apple -
    1000--False False--
    False
    Apple -
    10--True - False--
    False
    Apple -
    50--False True--
    False
    Apple -
    40--False False--
    True
    Cube data :Would get aggregated depend on Customer and other similar charatoristic.

  • Error while running a query-Input for variable 'Posting Period is invalid

    Hi All,
    NOTE: This error is only cropping up when I input 12 in the posting period variable selection. If I put in any other value from 1-11 I am not getting any errors. Any ideas why this might be happening?
    I am getting the following error when I try and run a query - "Input for variable 'Posting Period (Single entry, mandatory)' is invalid" - On further clicking on this error the message displayed is as follows -
    Diagnosis
    Variable Posting Period (Single Value Entry, Mandatory) is used as a lower limit (X) and an upper limit () in an interval selection. This limit has the value #.
    System Response
    Procedure
    Enter a different value for variable Posting Period (Single Value Entry, Mandatory). If the value of the other limit is determined by another variable, you can change its value also.
    Procedure for System Administration

    OK.
    Well, if the variable is not used in any interval selection, then I would say "something happened to it".
    I would make a copy of the query and run it to check if I get the same problem with period 12.
       -> If not, something is wrong in the original query (you can proceed as below, if changes to original are permitted).
    If so, then try removing the variable completely from the query and hardcode restriction to 12.
       -> If problem still persists, I would have to do some thinking.
    If problem is gone, then add the variable again. Check.
       -> If problem is back, then the variable "is sick". Only quick thing to do, is to build an identical variable and use that one.
    If problem also happens with the new variable, then it's time to share this experience with someone else and consider raising an OSS.
    Good luck!
    Jacob
    P.S: what fisc year variant are you using?
    Edited by: Jacob Jansen on Jan 25, 2010 8:36 PM

  • Want to See Selected Input Variables in the query output

    Hi al
    My client gives a requirment like they want to see selected variables in the query output. Like suppose if i am  entering Profit center, controlling area, version, caldayas a input on the screen. Now they want to see only Profit center and version on the query result.
    Please let me know if any one has this solution.
    Regards,
    Amit Shetye

    Hi
    Can you please give us user requirement and according to ure requirement so we given replies . If ure requirement please explain detail
    But it is not neccessary that we can put something in free char and all. Inspite of that they wanted to select the input variable as per their requirement. They dont want to restrict them in Free char.

  • Report based on query w/ input variable

    Hi,
    How can i do a sql report on APEX with an input variable (:P1).
    In my tests i've created a sql report then added one text box to the page with name (P1).
    When i execute the report it gives me the text box, then i insert the value, press enter and it gives me the result No data found. If i activate the debug i can see, :P1=P1="xpto", so the text box is working fine, but why the report is not generated/displayed?
    Thanks In advance

    When i activate the debug mode this is what i get.
    As you can see it seems that the binding is working and it also seems that the query is done because of the message rows loop: 15 row(s), but it doesn't apear any result in the page.
    0.06: Computation point: BEFORE_BOX_BODY
    0.06: Processing point: BEFORE_BOX_BODY
    0.06: Region: Search
    Search
    0.06: Item: P606_FILENAME TEXT
    Search Filename
    0.06: Item: P606_GO BUTTON
    0.06: Region: Files &P606_TEXT.
    Files Ola
    0.06: Item: P606_TEXT HIDDEN
    0.07: show report
    0.07: determine column headings
    0.07: parse query as: ADMINSTI
    *0.08: binding: ":P606_FILENAME"="P606_FILENAME" value="FLAP_090909.251"*
    0.08: print column headings
    *0.08: rows loop: 15 row(s)*
    no data found
    0.08: Computation point: AFTER_BOX_BODY
    0.08: Processing point: AFTER_BOX_BODY

  • Anding of the Input Variables in a BEx Query

    Hello,
    I have following scenario: If the report is executed by user1, then one set of shipto's should be visible (also if that user enters a valid shipto, then only that should be visible) AND if the report is executed by user2, then any shipto's should be visible.
    If I take two input variables for Shipto, one of them I give to user for input and the other I populate in the exits (I_Step = 1) by checking the user type and populate the 2nd input variable accordindgly then the list of shipto's for that user is given.
    The PROBLEM occurs when the user also enters a Shipto, then the Output shows: List of Shipto's derived thru the exit plus the ones that user has entered, WHEREAS it should be that if the user has entered a Shipto then only that should be visible, i.e. it should be an 'AND' operation not 'OR' between two variables.
    I hope this can be achieved by some way. If you have an idea about the same, it will be of Great Help.
    Many thanks for your help.
    Best Regards,
    Sumita

    Hi Sumita,
    I think concept Valueset can be used here.
    You define your values of "shipto" for user in a table and than accordingly you can use this in BEx.
    I will see if I can find some more solutions.
    Hope this helps.
    Regards,
    Ashish

  • BPS Variable Exit issue - input variable is not hardcoded

    Hi SDNer
    I have a problem in derivation of 3 variables from one variable. The scenario is like this..
    Curr Year - Hard coded in one Pl Area and all other Area get the same value by using a FM
    Planning for year : User Input variable in Layout
    We are planning for Projection ( Ver - p) Budget ( Ver - B) and 3 Forecast (Ver - F)
    Now based on the planning for year and current year variable,system should calculate these three versions.Curr Ver  Next Ver Prev Ver which are in layout at present and entered by user manually
    Example:
    For  Curr Year 2008 and Plan Year 2008
    Curr Ver - P Next Ver - B and Prev Ver - A
    For  Curr Year 2008 and Plan Year 2009
    Curr Ver - B Next Ver - F and Prev Ver - P
    Thanks
    Saurabh

    Hi Kirill
    Still no luck...here is my code
    I am populating Variable ZVAR which is based on 0VERSION. With help of plan year ZFISCYEAR and Current year ZPLYEAR
    I assigned this FM to ZVAR variable in plan area.
    Also i am using this variable along with these 2 time variable in the planning folder......
    I am getting error ZVER can't be computed ????
    FUNCTION VERSION_AUTOMATION_TEST_KAMAL.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_AREA) LIKE  UPC_AREA-AREA OPTIONAL
    *"     VALUE(I_VARIABLE) LIKE  UPC_VAR-VAR OPTIONAL
    *"  EXPORTING
    *"     REFERENCE(ETO_CHARSEL) TYPE  UPC_YTO_CHARSEL
    Data: lp_subrc type sysubrc.
    Data: lc_subrc type sysubrc.
    Data: lpt_varsel type table of upc_ys_api_varsel.
    Data: lps_varsel type upc_ys_api_varsel.
    *Data: l_plan_year type upc_ys_api_varsel.
    Data: ls_chasel type upc_ys_charsel.
    Data: l_VERSION TYPE C.
    Data: l_plan_year type i.
    Data: l_curr_year type i.
    data: lcto_varsel   TYPE upc_yto_charsel.
    DATA: lcs_varsel TYPE upc_ys_charsel.
    Data: DIFF TYPE i.
    Data: l_area type upc_y_area.
    Data: l_variable type upc_y_variable.
    if i_variable = 'ZFISCYR'.
    *Read Planning For Year Variable.
    call function 'API_SEMBPS_VARIABLE_GETDETAIL'
          Exporting
           i_area = i_area
           i_variable = i_variable
          Importing
           e_subrc = lp_subrc
           tables
           etk_varsel = lpt_varsel.
        if lp_subrc = 0.
          clear lps_varsel.
          read table lpt_varsel into lps_varsel index 1.
          l_plan_year = lps_varsel-low.
        endif.
    Read Current Year Variable.
    *data: l_buffer_call TYPE boole-boole           VALUE 'X'.
        Fix value of current year from below FM
      CALL FUNCTION 'Z_VAR_GET_DETAIL'
            EXPORTING
              i_area     = 'ZPLBSCF1'
              i_variable = 'ZPLYEAR'
            IMPORTING
              e_subrc    = lc_subrc
              eto_varsel = lcto_varsel.
          if lc_subrc = 0.
            clear lcs_varsel.
            read table lcto_varsel into lcs_varsel index 1.
            l_curr_year = lcs_varsel-low.
          endif.
    DIFF = l_plan_year - l_Curr_year.
            IF l_plan_year = l_Curr_year.
                 l_VERSION = 'P'.
                 ELSEIF ( DIFF = 1 ).
                      l_VERSION = 'B'.
                      ELSEIF ( DIFF = 2 ).
                           l_version = 'F'.
                           ELSE.
                                l_VERSION = 'F'.
         ENDIF.
    ls_chasel-chanm = '0VERSION'.
    ls_chasel-opt = 'EQ'.
    ls_chasel-low = l_VERSION.
    insert ls_chasel into table eto_charsel.
    Endif.
    ENDFUNCTION.
    Thanks alot
    Saurabh

  • Input Variable in BO Webi Report

    Hi,
    We have BW-Query and have defined BO Webi-Report using Universe on this query.
    When we execute BW-Query direct in BW, we can see all plants from
    master data table in the input Variable (Input help/F4).
    When we execute BO-Report in BO, it shows only plants in the input variable, for which there are transaction data
    in InfoCube. I expect here to see all plants from the master data table (like BW Query).
    Is it normal? Or is there some other issue?
    Thanks

    Hi,
    as the webi report will contain only transactional data anyway (webi MDX statement will ask for non empty records), this is the normal behavior what you are experiencing.
    What settings do you have on the infoObject, on which you have the variable set?:
    -Query Def Filter Value Selection
    -Query Execution Filter Val. Selection
    There you should be able to choose between "Only Values in InfoProvider" and "master data".
    Best regards

  • Variable for navigational attribute affected fiscper input variable

    Dear Friends
    Initially, the query is having an input variable for fiscper. The query was able to run properly.
    When i add a input variable for a navigational attribute to the same query which is based on multiprovider, the fiscper input variable is no longer  seen.
    So, I removed the global filter for the navigational attribute and it is ok again.  I fixed a value for the navigational attribute at filter level is also fine.
    Please advise what could be the cause. Thank you so much.
    Best regards
    Bass

    Hi Bass,
    Again seems to be a strange issue, if you have two independent characteristic with two different input enabled variables then there is no reason for the variable to not to show up on selection screen.
    Once you add the new variable and save the query just make sure that you have earlier variable as it is and check the query properties popup and see the fiscper variable sequence in the variable list.
    Regards,
    Durgesh.

  • Variable issue for Alternate Unit of Measure

    Hello Experts
    I have implemented the soultion for reporting data in Alternate Unit of measure using the "How to..." guide provided at https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b7b2aa90-0201-0010-a480-a755eeb82b6f
    This solution involves creating a variable which prompts the user to enter the required unit of measure.
    However I have a situation where I would like to create variable which is not input-ready and has a fixed value assigned to it without prompting the user. Moreover, I cannot modify the already existing input-ready variable as it is used in other Queries.
    Does this involves creating a new user exit or modifying the existing user exit. If yes then can you please tell me how this can be done.
    Thanks
    Rishi

    Hi Rishi,
    You can follow any one the below procedure for solve your issue.
    1. You can change the variable by removing the check box "Ready to input". But you mentioned that you used that variable in other queries also. So, I am not suggesting this.
    2. You create a new variable same as the existing variable but with out selecting "Ready to Input" check box. Now when the user run the query, that variable will not be seen to the user. Now, we will see the customer exit, you assign new variable value to existing variable, before that you have to write a condition for checking the query name. If you are running the query which have the new variable then assign the variable value to old variable. This will solve your question.
    I hope you understood this procedure. If you have any doubts let me know.
    Regards,
    Patil.

  • Diagnostics Workload Analysis - Java Memory Usage gives BI query input

    Dears
    I have set up diagnostics (aka root cause analysis) at a customer side and I'm bumping into the problem that on the Java Memory Usage tab in Workload analyis the BI query input overview is given
    Sol Man 7.0 EHP1 SPS20 (ST component SP19)
    Wily Introscope 8.2.3.5
    Introscope Agent 8.2.3.5
    Diagnostics Agent 7.20
    When I click on the check button there I get the following:
    Value "JAVA MEMORY USAGE" for variable "E2E Metric Type Variable" is invalid
    I already checked multiple SAP Notes like the implementation of the latest EWA EA WA xml file for the Sol Man stack version.
    I already reactivated BI content using report CCMS_BI_SETUP_E2E and it gave no errors.
    The content is getting filled in Wily Introscope, extractors on Solution Manager are running and capturing records (>0).
    Did anyone come accross this issue already?
    ERROR MESSAGE:
    Diagnosis
    Characteristic value "JAVA MEMORY USAGE" is not valid for variable E2E Metric Type Variable.
    Procedure
    Enter a valid value for the characteristic. The value help, for example, provides you with suggestions. If no information is available here, then perhaps no characteristic values exist for the characteristic.
    If the variable for 0DATE or 0CALDAY has been created and is being used as a key date for a hierarchy, check whether the hierarchies used are valid for this characteristic. The same is valid for variables that refer to the hierarchy version.
      Notification Number BRAIN 643 
    Kind regards
    Tom
    Edited by: Tom Cenens on Mar 10, 2011 2:30 PM

    Hello Paul
    I checked the guide earlier on today. I also asked someone with more BI knowledge to take a look with me but it seems the root cause analysis data fetching isn't really the same as what is normally done in BI with BI cubes so it's hard to determine why the data fetch is not working properly.
    The extractors are running fine, I couldn't find any more errors in the diagnostics agent log files (in debug mode) and I don't find other errors for the SAP system.
    I tried reactivating the BI content but it seems to be fine (no errors). I reran the managed system setup which also works.
    One of the problems I did notice is the fact that the managed SAP systems are half virtualized. They aren't completely virtualized (no seperate ip address) but they are using virtual hostnames which also causes issues with Root Cause Analysis as I cannot install only one agent because I cannot assign it to the managed systems and when I install one agent per SAP system I have the message that there are already agents reporting to the Enterprise Manager residing on the same host. I don't know if this could influence the data extractor. I doubt it because in Wily the data is being fetched fine.
    The only thing that it not working at the moment is the workload analysis - java memory analysis tab. It holds the Key Performance Indicators for the J2EE engine (garbage collection %). I can see them in Wily Introscope where they are available and fine.
    When I looked at the infocubes together with a BI team member, it seemed the infocube for daily stats on performance was getting filled properly (through RSA1) but the infocube for hourly stats wasn't getting filled properly. This is also visible in the workload analysis, data from yesterday displays fine in workload analysis overview for example but data from an hour ago doesn't.
    I do have to state the Solution Manager doesn't match the prerequisites (post processing notes are not present after SP-stack update, SLD content is not up to date) but I could not push through those changes within a short timeframe as the Solution Manager is also used for other scenarios and it would be too disruptive at this moment.
    If I can't fix it I will have to explain to the customer why some parts are not working and request them to handle the missing items so the prerequisites are met.
    One of the notes I found described a similar issue and noted it could be caused due to an old XML file structure so I updated the XML file to the latest version.
    The SAPOscol also throwed errors in the beginning strange enough. I had the Host Agent installed and updated and the SAPOscol service was running properly through the Host Agent as a service. The diagnostics agent tries to start SAPOscol in /usr/sap/<SID>/SMDA<instance number>/exe which does not hold the SAPOscol executable. I suppose it's a bug from SAP? After copying the SAPOscol from the Host Agent to the location of the SMD Agent the error disappeared. Instead the agent tries to start SAPOscol but then notices SAPOscol is already running and writes in the log that SAPOscol is already running properly and a startup is not neccesary.
    To me it comes down the point where I have little faith in the scenario if the Solution Manager and the managed SAP systems are not maintained and up to date 100%. I could open a customer message but the first advice will be to patch the Solution Manager and meet the prerequisites.
    Another pain point is the fact that if the managed SAP systems are not 100% correct in transaction SMSY it also causes heaps of issues. Changing the SAP system there isn't a fast operation as it can be included in numerous logical components, projects, scenario's (CHARM) and it causes disruption to daily work.
    All in all I have mixed feelings about the implementation, I want to deliver a fully working scenario but it's near impossible due to the fact that the prerequisites are not met. I hope the customer will still be happy with what is delivered.
    I sure do hope some of these issues are handled in Solution Manager 7.1. I will certainly mail my concerns to the development team and hope they can handle some or all of them.
    Kind regards
    Tom

  • How to transport the BW query's variable to BO  webi report

    Hi all
    I'd like to know how to transport the BW query's variable to BO 's webi . today ,I created a sap customer varible in my bw system to get the max calmonth in the active table.The varible in the BW side run's well ,but I use this query to build a new univers ,and created a new webi report base on this univers ,but the question is the webi report can't get the varible's value I wann to know how to transport the bw varible value to BO webi report
    Thanks and regards,
    Peter .zhu

    I have changed my variaable in my bw query ,I found if you use SAP default variable it is ok in BO side . So I get a guidline by SAP default variable ,I changed my customer variable in variables edite ,don't use 'ready for input' .And then the variable can be useful in BO side .
    Edited by: peter zhu on Jun 16, 2008 11:43 AM

  • Formula variable with replacement path to another input variable

    Hi @ all,
    i have a question regarding "Formula variable with replacement path to another input variable".
    My Problem is that in selection screen and for info-fields the input variable is shown with its key and not with its description.
    Scenario:
    A formula variable (X) is used to get an input value of a characteristic variable (Y) for 0Fiscper3 to realize a IF-Then scenario.
    The formula variable (X) uses replacement path by variable (Y) replace by "key".
    In selection screen of the query variable (Y) is named with its key "ZAB_BUPE01" and not with its description " fiscal period". Same as for info-fields where the description is "ZAB_BUPE01" and not " fiscal period".
    Does anybody have a solution to display the selection variable correctly?
    Regards
    Tobias

    Issue Solved!
    The input varaible (y) for 0Fiscper3 was saved globally on the InfoProvider. This results in that the formula variable with replacement path only shows its technical name. I put the input variable in the query itself and it soved the problem. The variable is displayed with its description in selection screen.
    Regards

Maybe you are looking for

  • Can't connect to weblogic embedded LDAP from an init block

    Hi I am trying to use weblogic's embedded LDAP directory in an OBIEE RPD initialisation block, using 10g security model in OBIEE 11g. I need the internal user, BISystemUser, to be validated by an init block in the rpd, but I am not able to configure

  • Different PO through SOCO with different delivery address

    Hi, We are facing issue with sourcing cockpit. While creating purchase order for multiple shopping carts through Sourcing cockpit, If multiple line item have different shipping location it is creating different Purchase orders. We have requirement to

  • Gaim again

    hi, I'm posting about this issue for the second time because I'm puzzled. I did a clean install of arch, made a system update, installed gaim at it wont work. this happened to me twice before on 2 others previous installs of arch. then, doing a syste

  • Large Scale Digital Printing Guidelines

    Hi, I'm trying to get a getter handle on the principles and options for creating the best large and very large scale prints from digital files.  I'm more than well versed in the basics of Photoshop and color management but there remain some issues I'

  • Upgraded to iTunes 10.1 and now nothing!! WHY?????

    After upgrading to 10.1, desktop icon does nothing. Tried to repair upgrade/install, still nothing. Tried to uninstall, re-install, still a big zero. So, thinking I had a bug or virus, I initiated a run of Advanced SystemCare Free 3.7.3 to clean up t