Change Pics in Report

Hi!
Is there any way to change pics itselfs or its 'source filename' depend on After parameter form?
Thanx before
Paul

You can do this in a couple of ways:
1.Have multiple link file images and based on after parameter form results, return TRUE in one of the image's format trigger and FALSE is all others.
2.Let the images be in the database column(blob).
imageTable contains: (Imagename, image(blob))
Query : select image from imageTable where Imagename= :P_imagename;
In reports Layout, in this field's property palatte, set the column->File Format as Image.
Based on after parameter form, change the value of user parameter P_imagename so that each time you get the desired image.
-Siva B

Similar Messages

  • How to schedule the webi report based on data changes in the report data

    Hello,
    I want  to schedule a webi report based on data change in a column in the report.
    The scenario is something like below:
    1. If a data of a particular column changes from 2 to 3 than I would like to schedule this report and sent it to users mail box.
    I know how to apply alerts or schedule a report or data tracking for capturing changes in the report but I dont know how to schedule the report only for data changes.
    Anybody done this before.
    Thanks
    Gaurav

    Hi,
    May be these links can help you:
    http://devnet.magicsoftware.com/en/library?book=en/iBOLT/&page=SAP_R_3_Master_Data_Distribution_Defining_Change_Pointers.htm
    SEM-BCS: Load from data stream schedule
    Attribute Change Run

  • Reg: how to change layout in report writer

    HI all,
    how to change layout in report painter?
    regards
    JK Rao

    Hi everybody,
    I have a report painter using transaction ke30 and I want to change the header layout.
    Now it looks like that
    |_________|_________|
    But i want to add another header row above this row, so it will look like:
    |_________________________|
    |___________|_____________|
    Does anyone know the answer?
    Thanks a lot for your response
    Edited by: Vo Duy Pho on May 24, 2010 10:29 AM
    Edited by: Vo Duy Pho on May 24, 2010 10:37 AM

  • How to track personal details changes in the report without using triggers on the database tables

    Hi There,
    I'm having a requirement to track the oracle HRMS Personal details changes in the report not using the triggers.
    ex: if some changes the address of the person, then that changed values should be populated in the report.
    Please find below query:
    If any of the following columns data is updated, the new value should be populated in the report.
    SELECT PAPF.PERSON_ID                                                       PAPF_PERSON_ID
    ,      PAPF.EMPLOYEE_NUMBER                                               EMPLOYEE_NUMBER        
    ,      PAPF.FIRST_NAME                                                            FIRST_NAME   
    ,      PAPF.LAST_NAME                                                            LAST_NAME
    ,      TO_CHAR(PAPF.DATE_OF_BIRTH ,'DD-MON-YYYY')     DATE_OF_BIRTH
    ,      ADDR.ADDRESS_LINE1                                                   ADDRESS_1
    ,      ADDR.ADDRESS_LINE2                                                   ADDRESS_2
    ,      ADDR.ADDRESS_LINE3                                                   ADDRESS_3
    ,      ADDR.TOWN_OR_CITY                                                    TOWN
    ,      ADDR.REGION_1                                                              COUNTY
    ,      ADDR.POSTAL_CODE                                                     POST_CODE
    ,      ADDR.COUNTRY                                                              COUNTRY
    ,      PAY.PAYROLL_NAME                                                     PAYROLL_NAME
    ,      PLN_TYP.NAME                                                              PLAN_TYP
    ,      PLN.NAME                                                                     PRODUCT_NAME
    ,      BOF.NAME                                                                     COVERAGE
    FROM   PER_ALL_PEOPLE_F                                                PAPF
    ,      PER_ALL_ASSIGNMENTS_F                                          PAF
    ,      PER_ADDRESSES                                                        ADDR
    ,      PAY_PAYROLLS_F                                                       PAY
    ,      BEN_PRTT_ENRT_RSLT_F                                                 PEN
    ,      BEN_PL_TYP_F                                                         PLN_TYP
    ,      BEN_PL_F                                                             PLN
    ,      BEN_OIPL_F                                                           BOIPF
    ,      BEN_OPT_F                                                            BOF
    WHERE 1                                     = 1
    AND PAPF.PERSON_ID                          = PAF.PERSON_ID
    AND TRUNC(SYSDATE)                          BETWEEN PAPF.EFFECTIVE_START_DATE AND PAPF.EFFECTIVE_END_DATE
    AND TRUNC(SYSDATE)                          BETWEEN PAF.EFFECTIVE_START_DATE AND PAF.EFFECTIVE_END_DATE
    AND PAPF.PERSON_ID                          = ADDR.PERSON_ID
    AND ADDR.PRIMARY_FLAG                       = 'Y'
    AND ADDR.DATE_TO                            IS NULL
    AND PAF.PAYROLL_ID                          = PAY.PAYROLL_ID(+)
    AND PEN.PERSON_ID                           = PAPF.PERSON_ID
    AND PEN.BUSINESS_GROUP_ID                   = PAPF.BUSINESS_GROUP_ID
    AND TRUNC(SYSDATE)                          BETWEEN TRUNC(PEN.EFFECTIVE_START_DATE) AND TRUNC(PEN.EFFECTIVE_END_DATE)
    AND PEN.PRTT_ENRT_RSLT_STAT_CD              IS NULL
    AND PEN.SSPNDD_FLAG                         = 'N'
    AND ( PEN.ENRT_CVG_THRU_DT                  >= TRUNC(SYSDATE)
    OR    PEN.ENRT_OVRIDN_FLAG                  = 'Y')
    AND EXISTS(SELECT PIL.PER_IN_LER_ID
               FROM   BEN_PER_IN_LER PIL
               WHERE  PIL.PER_IN_LER_ID         = PEN.PER_IN_LER_ID
               AND    PIL.BUSINESS_GROUP_ID     = PEN.BUSINESS_GROUP_ID
               AND    PIL.PER_IN_LER_STAT_CD    NOT IN ('VOIDD','BCKDT'))
    AND PEN.PL_TYP_ID                           = PLN_TYP.PL_TYP_ID  
    AND TRUNC(SYSDATE)                          BETWEEN PLN_TYP.EFFECTIVE_START_DATE AND PLN_TYP.EFFECTIVE_END_DATE  
    AND PLN_TYP.PL_TYP_ID                       = PLN.PL_TYP_ID 
    AND TRUNC(SYSDATE)                          BETWEEN PLN.EFFECTIVE_START_DATE AND PLN.EFFECTIVE_END_DATE
    AND PLN.PL_ID                               = PEN.PL_ID
    AND PEN.OIPL_ID                             = BOIPF.OIPL_ID(+)
    AND TRUNC(SYSDATE)                          BETWEEN NVL(BOIPF.EFFECTIVE_START_DATE,HR_GENERAL.START_OF_TIME) AND NVL(BOIPF.EFFECTIVE_END_DATE,HR_GENERAL.END_OF_TIME)
    AND BOIPF.OPT_ID                            = BOF.OPT_ID(+)
    AND TRUNC(SYSDATE)                          BETWEEN NVL(BOF.EFFECTIVE_START_DATE,HR_GENERAL.START_OF_TIME) AND NVL(BOF.EFFECTIVE_END_DATE,HR_GENERAL.END_OF_TIME)
    AND (:P_SYSDATE)                            BETWEEN TRUNC(PEN.ENRT_CVG_STRT_DT) AND TRUNC(PEN.ENRT_CVG_THRU_DT)
    AND (CASE WHEN :P_PAYROLL_ID IS NULL THEN 'Y' ELSE NVL((SELECT 'Y' FROM DUAL WHERE PAY.PAYROLL_ID  = :P_PAYROLL_ID), 'N') END) = 'Y'
    AND PAPF.LAST_UPDATE_DATE                   = (:P_SYSDATE) ;
    --AND PAPF.LAST_UPDATE_DATE                   BETWEEN to_date(:P_SYSDATE) and (to_date(:p_sysdate) + INTERVAL '31' Day);
    --AND (:P_SYSDATE)                           = PAPF.LAST_UPDATE_DATE ;
    Thanks

    check this -
    Re: Best Event-Based notifications for Sox Complience?

  • Changing a custom report to be time sensitive

    Hi
    I posted this in FI too thought the MM people might have some inputs as to how to correct the Zvenclass if we use the standard SAP field on the accounting view table LFB1 MINDK minority indicator
    We need to change the custom report zvenclass, it is a report that tells us the amount spent for each vendor in a specific class. I have the date/time sensistive information for the amount spent but not the change in vendor class from the vendor master. I need this to be date driven too. As in if a vendor is a small business in 2005 and you change the vendor to be a large vendor in 2011. Then I want the report for dates and values in 2008 to show small business and the dates and values in 2011 to show large business.
    The assignment is not time dependent, it has to be manually changed.
    I did see through the CDHDR and CDPOS tables, but could not pinpoint to the changes in the valuation classes.
    Is there any other way if I can find whether I can find the changes?
    Now I did review the values from the custom tables, here I find that there is a difference in the sum totals of the postings when I add up the individual years compared to the consolidated report (for ex: 200720082009 is not equal to 2007 to 2009) so am I right in assuming that the system does account for the changes. Any other help in this regard would be appreciated.
    Any inputs on this will be appreciated.
    Thanks

    We are trying to solve this by altering the code for the report.
    Will update if it works though.

  • Unable to rename or save changes to Access Reports Access 2010

    Unable to rename or save changes to access reports in Access 2010
    This just started
    Tried changing report name, rename is allowed but does not save
    If change made to report does not save
    If trying to save as new report name error given saying name conflicts
    Queries and tables work fine
    Database file resides on server and this happens on all PCs, tried local copy to local machine and that has same problem, compact and repair completes but still same problem
    Any help welcomed

    Is the setup 1 Back end on the server, and 1 each Front end on each PC?
    peter n roth - http://PNR1.com, Maybe some useful stuff

  • Changes in Crystal reports are not reflecting after publishing

    Dear SDN Mates,
    We are facing problem with Crystal reports. After making the changes in the crystal reports, it is not reflecting in the portal after publishing. Still it is showing the older version of the report.
    Can anyone please help me on this.
    Thanks and Regards
    Arun S

    Hello Prathamesh,
    After publishing the report, we require some changes in the report and doing some modifications in crystal report and again we are publishing this report. After publishing the report for second time, those changes are not reflecting in the BOE portal.
    This is happening for all reports. Can you please suggest me on this.
    Thanks and regards
    Arun S

  • Changing datasource of reports in a loop only works for first report.

    Hi,
    I have code that loops through a list of reports to change the datasource and save the change in the report. The idea is that this can be done at build time so time taken at runtime is only for opening the report and running it.
    The problem is that the first iteration of the loop works, and any further ones don't. Apart from closing the client document is there anything else that should be explicitly closed? I don't retrieve any ReportSource from the Client Document so I shouldn't need to dispose of that...I don't think. In particular is there something that should be done to the databaseController retrieved from the clientDoc after each loop?
    The code goes like the below:
    for(File report : reports){
         System.out.println("Preparing report: " + report.getAbsolutePath());
         ReportClientDocument clientDoc = CRJavaHelper.getReportClientDocument(
                   report.getAbsolutePath());
         CRJavaHelper.replaceDBConnection(clientDoc, props);
         clientDoc.close();
         System.out.println("Report " + report.getAbsolutePath() + " prepared.");
    getReportClientDocument does this:
    ReportClientDocument clientDoc = new ReportClientDocument();
    clientDoc.setReportAppServer("inproc:jrc");
    clientDoc.open(fullPath,
              OpenReportOptions.openAsReadOnly.value());
    return clientDoc;
    replaceDBConnection does the following:
    DatabaseController dc = clientDoc.getDatabaseController();
    logonDataSource(dc, username, password);
    prepareReport(dc, schema);
    ConnectionInfos cis = dc.getConnectionInfos(null);
    for (IConnectionInfo oldci : cis) {
         IConnectionInfo newci = new ConnectionInfo();
         newci.setKind(ConnectionInfoKind.SQL);
         newci.setAttributes(propBag);
         newci.setUserName(username);
         newci.setPassword(password);
         dc.replaceConnection(oldci, newci, null, DBOptions._useDefault
                   + DBOptions._doNotVerifyDB);
    SubreportController src = clientDoc.getSubreportController();
    IStrings strs = src.getSubreportNames();
    Iterator<?> it = strs.iterator();
    while (it.hasNext()) {
            String name = (String) it.next();
         ISubreportClientDocument subreport = src.getSubreport(name);
         DatabaseController sdc = subreport.getDatabaseController();
         cis = sdc.getConnectionInfos(null);
         for (IConnectionInfo oldci : cis) {
              IConnectionInfo newci = new ConnectionInfo();
              newci.setAttributes(new PropertyBag(propBag));
              newci.setUserName(username);
              newci.setPassword(password);
              sdc.replaceConnection(oldci, newci, null, DBOptions._useDefault
                        + DBOptions._doNotVerifyDB);
    clientDoc.save();

    What's the URL for the site where you are using this?  Offhand, it looks like it should work with your first example so you are either placing the script before those elements are loaded or you might try wrapping your current javascript inside the:
    $(document).ready(function() {
    --- your existing javascript here
    This make sure the code runs once all the html is loaded on the page.  Without seeing a URL and debugging with the js console in Chrome I can't give you a solid answer.
    But, I do know that you can probably do this with a lot less markup.  Once we figure out what the actual problem is I have a better solution mocked up for you on jsfiddle.
    When looking at my HTML code on jsfiddle, please realize I setup some dummy HTML and removed your tags and added actual values which would be output by your tags.  The main thing I did was remove the whole div.more-selection and instead, added a "data-is-selected" attribute on your div.more-option element.  Then, in my javascript for each div.my-option element on the page, we loop through them, find the value of that data attribute and hide that div if it's less than 1 (or 0).
    Here's the fiddle for you to look at:  http://jsfiddle.net/thetrickster/Mfmdu/
    You'll see in the end result that only two divs show up, both of those divs have data-is-selected="1".
    You can try pasting the javascript code near the closing </body> tag on your page and make sure to wrap my js inside a <script> tag, obviously.  My way is neater on the markup side.  If you can't get it to work it's likely a jquery conflict issue.  My version is using the $(document).ready() method to make sure all the code is loaded before it runs.
    Best,
    Chris

  • 1099M - 2008 Legal changes for 1099 Reporting

    Hello experts,
      I have been using program RFW1099M via Sapscript form to generate the 1099M. Based on note 1279366 on 2008 legal changes for 1099 reporting, sap provided the 1099MISC form in Smartforms.
    I don't use Smartforms.  Is there any sap 1099M program provided using Smartforms ?
    The sapscript form i currently have looks the same as the 2008 1099Misc.  So I don't know why i have to use Smartforms.   Pls let me know what you think ?
    Thanks
    Joyce

    Question is closed.

  • Change the HTML Report format the same as TestStand 2010 SP1 in TestStand 2012

    I have a lot of test steps (~10K)  that gets executed and the indentations on HTML report format in TestStand 2012 gets too deep.  I have to slide the horizontal bar to the right to see the report when l'm in the middle.  I did not have this issue in TestStand 2010 SP1.  
    Is ther a way to change the HTML Report format (style) the same as TestStand 2010 SP1 in TestStand 2012? 

    dexrays:
    We are currently investigating this issue. In order to help us with the investigation could you post a sequence file and configuration that reproduce the problem? The configuration file is located in C:\ProgramData\National Instruments\TestStand 2012\Cfg\ModelPlugins\ResultProcessing.cfg for Windows Vista / Windows 7 or you can use the Cfg link in the TestStand 2012 installation directory. 
    You can use the Legacy Model Switcher (included in TestStand 2012) to use the legacy models instead of the new models. The legacy models are more backward compatible, however, this also means that you will not be able to use the improvements in the new models (for example, the new plug-in architecture). If this is acceptable then you can use the legacy model switcher to switch to the legacy models. The Legacy Model Switcher is located in the Start Menu under Programs->National Instruments->TestStand 2012->Tools->Compatibility. For more information on Legacy Model Switcher please read the online help.
    Thanks for your report and for your help with diagnosing this issue. 
    - Francisco

  • How to change layout of report  S_ALR_87012083?

    Hi everybody,
        How to change layout of report  S_ALR_87012083 except change  output control at selection screen ?
        For example,I need a list that there have vendor no. at every line of open item,and I don't need Total liabilities for every vendor.
    Thanks a lot for any help.

    Hi yu liang,
                     You can find vendor list having Vendor No. & without showing total liability for every vendor.
    after executing the report,
    1.You need to select "change layout (ctrl+F8)",
    a small window comes, it has two part -> column content & hidden fields.
    then u select "Vendor" from hidden field & move it to column content.
    2. at column content there is a column named "Total". u need to remove check for your column name "amount".
    now select "copy" button or enter. u will find the req. report.
    u can save it also by ur name.
    hope its helpful to u.......
    plz, reward points as a way of thanks if helpful...

  • Books not updating for changes to financial reports

    I have made some changes to financial reports which are contained in existing books. I have run the reports individually and the changes are correctly reflected. However, if I open the book containing the report it still shows the report as it existed before the changes. I have even deleted and re-added the relevant report into the book and it still makes no difference.
    Regards
    Katie

    Until and otherwise if anyone else has a suggestion,I would say apply the latest FR patch
    Patch 13024655: Patch Set Update: 11.1.1.3.519 for Oracle Hyperion Reporting and Analysis Financial Reporting
    And if still the issue persist,then open a Ticket with Oracle support for further troubleshooting.

  • How to make changes on Aging report of XLR

    Dear All,
    Our customer has a Aging XLR in SAP2005. However, after we upgrade them to SAP2007, the report cannot work properly. It looks like we have to make some changes on the report. Could anybody can let me know how to add a filter
    JDT1.BalDueDeb > 0
    I click line9 (the report data line), in the advanced report builder window (Row tab) >> Selections >> transaction row >> Dimension lookup >> List Tab >> Selection >> Attribute >> , I have some columns name but I cannot see JDT1.BalDueDeb
    Then I go the advanced report builder window (Report Default tab) >> Selections >> transaction row >> Dimension lookup >> List Tab >> Selection >> Attribute >> , I have some columns name but I cannot see JDT1.BalDueDeb
    Thanks a lot.
    Regards,
    Yuka
    Edited by: Jie Jin on Mar 5, 2010 7:01 PM

    in my Complete Selection window I have the following:
    FACT TTY( * ) FIG( RefDate <= CurrentDate And JDT1_BalDueDeb + JDT1_BalDueCred <> 0 )  Group By TTY.Code ,FIG.Ref1 ,FIG.OJDT_Ref2 ,FIG.LineMemo ,FIG.RefDate
    in the XLS cells I have the following:
    =ixGet("JDT1_BalDueDeb")
    and
    =ixGet("JDT1_BalDueCred")
    If you need additional clarification let me know.
    regards, Sotos Soteriou

  • How to view changes to expense reports

    I am trying to find a way of viewing changes to an Expense Report.
    In PR05 there is a history but it does not provide details about the change. I have also looked at PRTE and cluster AEND but again this does not provide the details that our business users require.
    Does anyone know if there is any other way of viewing the detail of changes to an Expense Report?
    On a related issue we have found that in PR05 the approver name is showing as the workflow user rather than the user ID of the person who approved the trip in the Portal. Can this be changed to the actual approver ?
    Thanks for any help with this
    Stephanie

    Hi,
    I think T-code PRTE provides only screen level changes (i.e who , when creates, save or updates by whome)
    For detail level changes in expense reports you need to activate Define History and Archiving of Forms
    V_T702N_R26_R27
    Please note that this is ONLY available with EHP5 BC 605 FIN_TRAVEL_3
    Following is help available
    _________________________________________________________________________Use
    In this step, you can activate the following functions:
    History
    If you activate logging of history, the system logs the changes to travel requests and expense reports. Users can display the history in the following user interfaces:
    Personal object worklists (POWL) for travelers, assistents, and approving managers on the Web Dynpro ABAP-based user interface of Travel Management
    Transactions of the travel expense report in SAP GUI; for example, in the Travel Expense Manager (transaction PR05) or in the Travel Calendar (transaction PR02)
    If you do not activate logging of history, the system automatically logs the changes made to expense reports (as in earlier releases). Users can display the change history only in the transactions of the travel expense report in SAP GUI.
    Storage of Travel and Expense Forms in the Archive
    If you have activated logging of history, you also can define that the travel request forms and expense report forms are to be automatically archived when certain events occur. You can determine which of the following events triggers the archiving of a form:
    When processing of a changed travel request or expense report is handed over from the user who makes the change to another user
    When the status of the travel request or expense report changes
    When a user saves the travel request or expense report
    You can archive the Adobe PDF forms or HTML forms for travel requests and expense reports, but not the forms for travel plans. If you use an ABAP list form, the system first converts this form to an HTML form and then archives the HTML form.
    In the following activities you define which kinds of forms the system uses:
    For travel requests, see Define Enterprise-Wide Control Parameters and attribute HTMLFORM_R_P.
    For expense reports, see Travel Expenses Control (Expert View), Other Settlement, field 24.
    Requirements
    The following prerequisites must be met:
    You have activated the updating of statistical data when trips are saved; see Define Structure of Trip Statistics.
    You have made the basic settings for ArchiveLink; see Basic Customizing for ArchiveLink.
    Note:
    If you want to archive Adobe PDF forms, the document type PDF under Edit Document Classes must contain an entry with MIME type application/pdf.
    If you want to archive HTML forms, the document type HTML under Edit Document Classes must contain an entry with MIME type text/html.
    Standard settings
    By default, history logging is not activated.
    or http://help.sap.com/erp2005_ehp_05/helpdata/en/1e/9467498ee0444f9d06070d3e267364/frameset.htm

  • Users unable to change their interactive reports

    What tables and fields control what user can change the report? a bit of history: Due to the terrible bug that plauges apex where user created interactive reports dont get promoted with code changes when promoting from dev to prod environments, we had to figure out a work around so that the users tabs and filters would show up. Now, several weeks after fixing this in the main table(APEX_030200.WWV_FLOW_WORKSHEET_RPTS), the users are now trying to modify the reports but apex just gives the spinng/hourglass when the user clicked the update/save button and it never comes back. Down at the bottom in of the screen apex reports that "error on page". Thats all we have to troubleshoot as far as feedback error messages.
    We have a work around where the user makes changes to their report and then saves it as a different name(they've been adding a "1" on the end). This workaround is making them upset and I suspect its just a flag in some table's field that needs changing. Anyone know/experience this from the install/report bug?
    Thanks,
    Dave

    I am running into almost the exact problem. My version is that there is one eul default for every user and no matter how many they have access to, the tools\options\eul tab does not allow them to change the eul. I am still searching for an answer if I find something I will post it for you.
    Thanks,
    Shelby

Maybe you are looking for

  • Deauthorization

    I just purchased a compaq laptop. I also bought an external hard drive. So I was browsing itunes. I purchased a tv show. I hooked up my ipod. I want to put it on my ipod but it wont let me. So I go to deauthorize and put in the correct information bu

  • GR for overdelivery tolerance PO

    Hi, I have issue with a user(Only one user having this issue),who is able to receive the goods for Fully delivered PO.User can receive up to overdelivery tolerance given in the PO.How to restrict this. Expecting some valuable inputs. With regards Ram

  • Image-hyperlink goes directly to that specific category of products (like balls only)

    Hello, I have a complex beekeeping trading site, gogobeekeeping.com and i'm having a stand still on how i'm suppose to code, design this part. Basically I have 8 images that represent a specific product(s) and I want it to go directly to those list o

  • Export-import task sequences between UAT-PROD environments

    Hi, What 's your idea of exporting-importing task sequences between UAT-PRD SCCM 2012 servers It would save me quite some time but I guess the files and folders, applications (if I would export them too) are kept somewhere in a general folder so that

  • Why won't Quicktime Player open a .mov VR file ?

    (I'm on a new MBP, with Yosemite 10.10.2, QT Player v.10.4) Nothing opens except the app when I double click on a .mov file, the playback controls don't even come up. This does not happen on all .mov files, but several VR files which were outputted t