Can i change BI Query before loading it to BO using some if than else logic

Hi guys
In my requirement I have a BI query which the users want to run in BO now. Now the requirement is that they want to change some values in the BI query after the BI query has run based on some u201Cif than else logicu201D for each row.
So my question is can BO modify a BI query. Is there some place I can write an abap routine between the BI query and the BO Report.
Thanks

Hi Adnan, in CR you can create Formula Fields, and you can include IF THEN ELSE statements there. This won´t modify the BI query, but´ll modify the results you see in CR (I believe this is what you want)
Here, you have information about formula fields, CR 2008 User Guide in chapter 22
You can do, something like this:
IF {Tabla.Campo}=1
THEN "AAA"
ELSE "BBB"
Hope this helps,
Liliana

Similar Messages

  • What does the option "can be changed in query navigation"?

    Hi all,
    I have created several variables so far, but I never activated this option. I have always ignored that option and everything works fine.
    But now I tried to rebuild some variables from other developers and saw this option activated. So before I just copy them, I need to know, what "can be changed in query navigation" really does. I already have read the SAP Help documents but still don't have a clue about the functionality. Thank you for answering!
    Best regards
    T. Duong

    If you choose the Can Be Changed with Query Navigation option, after you have run the query, not only are you able to select the values that you specified in the variables screen, but you are also able to use other values as dynamic filters for the query .
    This function is not possible if you are using the variable as part of a structure in the query definition. The system ignores the setting Can Be Changed with Query Navigation in this case.
    Hope it helps.
    Regards

  • BEx "Can be changed in query navigation"

    Hi all,
    I am using BEX setting for variable "Can be changed in query navigation".
    Unfortunately it is not working.
    The variable has following setting:
    Type of Variable: Hierarchy Node
    Processing by: Authorization
    It is Ready for Input + Can be changed in query navigation.
    Problem is when user filters some value in hierarchy and after that calls variable screen again and runs the report again, the selected hierarchy filter disappear and report display whole hierarchy.
    Is it allowed to use Authorization variable with this "can be changed in query navigation" setting?
    Any idea what could be wrong?
    Thanks a lot.
    Best regards,
    Petr

    Try the following...
    Right-click on the InfoObject in the InfoProvider and choose "Provider-Specific Properties". In this menu, change the Display setting to "7 Short Text".
    Hope this helps...
    Bob

  • Can you delete ODS indexes before loading each time in Process Chain

    Can you delete ODS indexes before loading eachin time in Process Chain and rebuild them just like a cube.And do you have to delete the indexes if its a daily refresh where data is deleted and a full update is done everyday.

    Hi,
    Are you using Secondary Indices on the ODS objects. I thought the Primary Index (which is also the Key Part of the ODS) is automatically updated during the Data Activation in the ODS. I am not sure if the Secondary Indicies are also automatically updated by the system.
    Naga

  • How can I change from paying with a credit card to using prepaid for itunes

    How can I change from paying with a credit card to using prepaid for itunes on ipad 2 .alrwady have app ID

    iTunes Store: Changing Account Information
    http://support.apple.com/kb/HT1918
    Apple ID Support - Manage Account
    http://www.apple.com/support/appleid/manage/
     Cheers, Tom

  • Do some processing before loading jsf fragment created using adf task flow

    Hi,
    I am working on JDev11g.
    I want to create SelectItems of SelectOneChoice dynamically before loading jsf fragment created using adf task flow
    I tried by implementing RegionController class's method RefreshRegion in my backing bean of jsf page fragement to do some processing before loading region
    But it seems to be not feasible approach because it is getting called every time any component on fragement gets partially submitted.
    Is there any method which is called only first time when region is loaded ?
    Or any other solution to achieve this.
    Regards,
    Devang

    Hi,
    don't think so. You would need a phase listener, but I don't see how you get it in. Wha about using a dynamic region and then use the method that is called from the dynamic region first time it is rendered?
    Frank

  • How can I change the email from my app store an use a different email forgot password

    How can I change the email from my app store an use another email

    Hi there,
    You may find the article below helpful.
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/HT1311
    -Griff W.

  • Can you change it back if you don't wanna use boot camp

    Can you change it back if you don't wanna use boot camp

    Yes. Use Boot Camp Assistant to remove the partition it created. it will return your drive to its original state.

  • Can I edit the rpt file & change the datasource before loading the report?

    We are an ISV and our application has a lot of reports.  Our reports use a SQL Server database as the data source and each SQL Server at our customer sites has a different name.
    In our testing we have determined that ReportDocument.Load tries to connect to the SQL Server that is saved in the RPT.  If it can't fine the SQL Server saved in the RPT the load take about 60 seconds while it is waiting for the SQL Server Connection to time out.
    We are using the Visual Studio 2008 version of Crystal Reports.  This did not seem to be a problem with VB6/CR8.5.
    We would like to edit the RPT and change the data source to the appropriate SQL Server before we call ReportDocument.Load.
    Is it possible to edit the rpt file and change the data source before loading the report?
    Or is there some way to tell Crystal not to try connecting to the DB
    during the report.load?
    In our case we will NEVER use the data source that is saved in the RPT, we will always change the data source using ApplyLogOnInfo.
    Thanks

    HI Todd,
    You Can Not edit the report document before ReportDocument.Load() because if you dont load the report then you dont have anything to Edit
    But as far as changing the datasource is concerned you can change that at runtime.
    For changing the datasource following code will help you if both databases have a same schema :
    Code for changing the database
    ConnectionInfo crConnectionInfo = new ConnectionInfo();
    crConnectionInfo.ServerName = "SERVER";
    crConnectionInfo.DatabaseName = "DATABASE";
    crConnectionInfo.UserID = "USERID";
    crConnectionInfo.Password = "PASSWORD";
    // Loop through the ReportObjects in a report and find all the subreports
    foreach(ReportObject crReportObject in crReportDocument.ReportDefinition.ReportObjects)
         // Check the kind of the ReportObject, if it is a subreport
         // proceed. If not skip.
         if(crReportObject.Kind == ReportObjectKind.SubreportObject)
              // Get the SubReport in the form of a ReportDocument
              string sSubreportName = ((SubreportObject)crReportObject).SubreportName;
              ReportDocument crSubReportDocument = crReportDocument.OpenSubreport(sSubreportName);
              // Use a loop to go through all the tables in the main report
              foreach(Table crTable in crSubReportDocument.Database.Tables)
    // Get the TableLogOnInfo from the Table and then set the new
    // ConnectionInfo values.
    TableLogOnInfo crLogOnInfo = crTable.LogOnInfo;
    crLogOnInfo.ConnectionInfo = crConnectionInfo;
    // Apply the TableLogOnInfo
    crTable.ApplyLogOnInfo(crLogOnInfo);
    // Set the location of the database. This value will vary from database to
    // database.
    crTable.Location = "DATABASE.OWNER.TABLENAME" or crTable.Locations;
    The sample for doing this is available on support site.
    Thanks,
    Prasad

  • HT2589 Can I change my account to one that doesn't use a credit card because when I started my account before that was an option

    iTunes is retrying to bill me over 100 dollars for apps I downloaded for free and I no longer have the credit card and I can't change it to a no card account

    You may need to reset/modify some prefs that have been changed.
    You can do a search in the <b>about:config</b> page.<br />
    See also the setting in Options > Privacy for the location bar.
    You can use the SearchReset extension to reset some preferences to the default values.
    *https://addons.mozilla.org/firefox/addon/searchreset/
    Note that the SearchReset extension only runs once and then uninstalls automatically, so it won't show on the "Firefox > Add-ons" page (about:addons).

  • HT204266 How can I change my country on my account if I still have less than a dollar left. It says that I have to finish my remaining ammount before I can change it but what can I buy for 0.81 cents? I am in Australia now.

    How can I change my country on my account? I have less than a dollar left and I moved to Australia from US? I have to spend the amount left on my acct but what can I buy for 0.81 cents. Thanks!

    Click here and request assistance.
    (69513)

  • How can i change the last frame in a trailer i have converted.  everything else is fine but the wording is wrong on the final "credits" and don't know how to edit after converting it to a project.  Thanks to All.

    looking to edit the final frame which is the the "credits" section.  I have already  converted the trailer.  Is it too late to correct some nserts in the credits?
    Thanks to all.

    If by "converted" you mean that you've converted the trailer to a normal project using the menu option File>Convert to Project, then YES it is still possible to edit the Credits Title.
    In the converted project, double-click on the blue Title bar that sits above the background clip. In the Viewer, double-click on the text you wish to change (or highlight text by dragging over it). Now you can replace the highlighted text by typing in the new text. You can also change fonts and font colours.
    It's always good practice to duplicate the Trailer before converting it. To do this, while in Project Library view, click on the Trailer name in the Library then select File>Duplicate Project. A copy will appear in the Library with the same name as the Trailer, but with the number 1 appended. You can rename this copy as desired. Now, convert the duplicate to a standard project and continue with your editing as required. You now have the original Trailer in template form (which can be further edited), and can duplicate it again if required.
    John
    EDIT: Regarding my first sentence - just noticed that you did mention "converting it to a project" in you topic header. Sorry!
    Message was edited by: John Cogdell

  • How can i change my bank account cos last time i used my credit card now i want to use my debit card sgain

    How can i change my bank account cos i used my credit card last time now i want to use my debit card again

    iTunes Store: Accepted forms of payment
    http://support.apple.com/kb/HT5552
    Changing Account Information  >  http://support.apple.com/kb/HT1918
    If necessary...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • How can I change the color of the highlighted text when using the FIND function in Terminal?

    When searching for text in the Terminal's buffer, the matched text is highlighted using a color which seems to be computed from the background's color. I'm using a black backgroud and the finder's highlighter is grey. How can I change this? I'd like to specify the foreground and background colors of the matching text. I couldn't find an appropriate setting in the terminal's settings, nor in the default settings using the command "defaults".

    In my .bashrc file, I have enabled a couple of grep environment variables.
    GREP_OPTIONS='--color=always'
    GREP_COLOR='00;38;5;226'
    The latter is a vivid yellow.
    From the shell, I can search my history:

  • How can i change VBAK-Faksk of VAO1 at header level using BAPI_SALESORD_CHA

    Hi Experts,
    How can i change the value of VBAK-FAKSK (Billing doc value) at header level .
    by using the bapi_salesorder_change.Could you please send the sample code
    how to change the value of any field in VBAk . so that i can take as reference and work accordingly ..
    It's urgent,
    thanks
    kumar.

    Hi,
    Check this
    PARAMETERS: p_vbeln type vbak-vbeln.
    DATA: l_header_inx TYPE bapisdh1x,
    l_header_in TYPE bapisdh1.
    data: lt_return type standard table of bapiret2.
    MOVE: 'U' TO l_header_inx-updateflag,
    'X' TO l_header_inx-bill_block,  " Billing
    'ZL' TO l_header_in-bill_block.  " Billing block.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
    salesdocument = p_vbeln
    order_header_in = l_header_in
    order_header_inx = l_header_inx
    TABLES
    return = lt_return.
    * check for errors.
    LOOP AT lt_return transporting no fields WHERE type = 'A' Or type = 'E'.
      EXIT.
    ENDLOOP.
    If sy-subrc = 0.
      write: / 'Error in updating'.
    ELSE.
      commit work and wait.
    endif.
    Thanks
    Naren

Maybe you are looking for

  • How do I transfer my pictures from a time machine back up

    Hello All, I recently had to wipe my laptop hard drive clean and reinstalled OSX  10.9.4 Now I want to transfer my pictures, stickies, and music from time machine backup on an external hard drive to my laptop. Having all sorts of problems figuring ou

  • I've updated flash to 16.0.0.305 and Firefox is still blocking it

    As above, really. I've made sure Firefox is the right version. I've updated Flash to .305 as shown in "about:addons," but it's still blocking. I've restarted my computer, with the restarting of firefox that that implies. All the questions I've seen i

  • Xcelsius - Pass Parameter to WeBi Report

    Hi all, I want Pass Parameters from Xcelsius DashBaord to WeBi Prompt ? I am using Live Office to Data Conenctivity .. Please help me on this..

  • I have a virus in time machine

    I have a win virus worm in my time machine back up. i have installed indigo virus scan but it will not remove it. each time i reinstall OXS the worm attacks...

  • Motherboard doesnt post / stuck in bootloop

    This is my first custom Build, so i may, or may not be a common mistake. Build: MSI PH67S-C43 Motherboard Intel Core I5 CPU - stock cooling unit Pareema DDR3-1333 8GB (2X 4GB sticks) RAM Sapphire/ATI Radeon 5570 Graphics Card SilverStone 500W SST-ST5