Report with Location attribute in Header URGENT

Hi
I need to insert the attribute dimension which is in the POV to the header of the report. Say XYZ Report for "particular Location" which we will be selecting through the POV. How to achiev it. kindly let me know.

POVAlias function used

Similar Messages

  • MCI8 report with Location

    Dear All,
    MCI8 Cost analysis report can be generated FL, Equipment, month wise. My client requirement is to see the report Plant wise so they will know how many orders types have been generated in a plant and the cost.
    Please help if any Exit is required or STD is available.
    Regards,

    Dear Tehsin,
    Thanks, here it is not showing Order types, as in MCI8 we can select the period in months and the reports shows the order type created in that month, same way when I select location it should show order types too.
    E.g. I have slected Period from 04-2011 to 09-2011 F8. it shows Preventive maintenance. breakdown maintenance and maintenance request order types with no's and cost respectively.
    same way I should be able to select location or in my case plant and period  from- to when F8 is selected the report should show Preventive maintenance. breakdown maintenance and maintenance request order types with no's and cost respectively.
    Regards,

  • Issue with URL attribute in Header

    Hi,
    I am facing an issue with the URL attribute.
    I have created an header attribute #HDR_TEST_URL and selected the type as URL.
    Given a default value as http://www.google.com as the url
    Associated this attribute to the Notification message.
    But in the notification, the URL is being shown as the plain text not as a link.
    Can you please let me know what I am missing here.
    Thanks

    Please check the notification format if it is text then it might not be shown as a url but if it is HTML it might show up, if it is not showing then i would recommend using the anchor tag to create the Hyperlink.
    Regards,
    Varun

  • Report with Delivery number and header text as output

    Hello all,
    I need to create a "quick and dirty" report that which will give me every delivery number, and the corresponding header text, in the month of July for given shipping points.  I am having trouble figuring out how to get the header text for the deliveries.  I have searched and searched but the solutions given just don't make sense to me.
    Regards,
    Davis

    Hi,
    You need to use the function module READ_TEXT to read delivery header text.
    Please go to transaction SE75 and use VBBK as the OBJECT to find the specific ID which is required.
    Regards,
    Ferry Lianto

  • SQL Report with 1 updatable column - help urgent

    Hi,
    I have a SQL report. I am using collection to store value of selected record by link column.
    I have a updatable text item (NULL) in the column. I am able to store that value in the collection.
    Any clue?
    Code
    1. Creating a collection in parent page:
    apex_collection.create_or_truncate_collection
    (p_collection_name => 'ORDER');
    2. Query to populate item rows with option to key 'QTY' before pressing 'Add to Order' link.
    select
    itemcode,
    description,
    NULL AS qty,
    'Add to Order' add_to_order
    from itemtab
    3. Made 'QTY' to Text item -- to allow users to key value
    4. Created 'hidden & protected' items P1_ITEMCODE, P1_QTY
    5. Set values of itemcode, qty in add_to_order link
    6. Created a process to add values into collection:
    for x in (select * from itemtab where itemcode = :P1_ITEMCODE)
    loop
    apex_collection.add_member(p_collection_name => 'ORDER',
    p_c001 => x.ITEMCODE,
    p_c002 => x.DESCRIPTION,
    p_c003 => :P1_QTY
    end loop;
    7. Display value of itemcode, description, qty in report region
    select c001, c002, c003
    from apex_collections
    where collection_name = 'ORDER'
    Probem: The value of qty is not being stored in the collection and not appearing in the #7 report. itemcode and description values are fine.
    Thanks,
    Dip

    Dip,
    I'm guessing here as I can't see your application, I think your missing the page process to collect the data from your QTY field.
    I created a quick demo of what i think your trying to achieve on apex.oracle.com
    http://apex.oracle.com/pls/apex/f?p=19923:2
    I added this to the html expression on the report Field add to:
    <input type="button" onclick="doSubmit(#RANDOM_ID#)" value="Add To" />
    Then the page process to collect and set the page item:
    DECLARE
    l_qty number;
    BEGIN
    FOR i in 1..APEX_APPLICATION.G_F03.COUNT LOOP
    l_qty := nvl(APEX_APPLICATION.G_F03(i),0);
    IF l_qty > 0
    THEN
    :P2_QTY := l_qty;
    :P2_RANDOM_ID := :REQUEST;
    EXIT;
    END IF;
    END LOOP;
    END;
    Let me know if this helps
    Mark
    Don't forget to mark reply as helpful or correct as this may help others reading this thread in the future!
    Edited by: cptbutcher on Mar 25, 2010 10:40 PM

  • How to genrate AUditLog Report  with custom Attribute

    Hi,
    I would like to a add a custom search parameter in audit Log report.Please suggest solution for the same.
    Thanks in Advance

    It's unclear exactly what you are asking for, but you can set up an auditlog report to find specific kinds of data changes.
    Internally, attribute changes are saved in the format:
    BEFORE: ATTRIBUTE="ORIG VALUE"
    AFTER: ATTRIBUTE="FINAL VALUE"
    As long as you know the ATTRIBUTE name and the value transition you are looking for, you can set up the report to check for attribute changes. E.g.,
    [x] Attribute Changes [contains] BEFORE: ASSIGNEDLHPOLICY="POLICY1"as the condition will find all cases where account policies changed from being "POLICY1" to some other policy. (Attributes are only listed in the logs if they changed).
    Not sure if that's the kind of custom search parameter you are looking for though.

  • Please any one provide crystal report for  Location wise sales report with GP

    Please any one provide crystal report for  Location wise sales report with GP.Please its urgent

    A report writer tool like Crystal reports is not available due to the cost involved in its licenses.Do you think that Oracle Reports is free then? It's $$$$.
    You can download and test it for free, but if you want to use it in production you have to buy a license.

  • Apex IR report with Heading label

    i have IR report with 15 column with heading..
    The end user can accessing from different department, when the user can see the report shown only their particular department rows only. each department have different column value and Header label .how can display the column header depend on the department user.
    e.g. IR report view
    Seq# -- Department -- date -- Subject/Customer Message
    1                          Communication done with Jony(from HR department)
    2                          low sales from East region(from Sales Department)IN the IR report Table data structure.Heading_code value as LOV in IR form(1.Subject/2.Customer Message/ect...) and Column_value as Text Field.
    Seq# -- Dept_name -- Heading_code --  Column_value
    1        HR              1           Communication done with Jony
    2        Sales           2           low sales from East regionApex have limitation of one IR report in one page. so i could not create different Report region even i don’t want create another page due to the further functionality issue.
    Thanx,
    Ram

    I'm glad you could apply that approach. I'm not crystal clear on what is needed but I have a few general ideas.
    1) If there will only have 3 or 4 classes (types) of users, you might try using a CASE statement in a Before Header process:
    BEGIN;
      CASE
        WHEN condition for 'KAC' THEN
             SELECT [first label constant or variable], [second label], ...
                  INTO &Px_COL_HEAD1., &Px_COL_HEAD2, ... FROM ... ;
        WHEN condition for 'MIS' THEN
             SELECT [first label constant or variable], [second label], ...
                  INTO &Px_COL_HEAD1., &Px_COL_HEAD2, ... FROM ... ;
        WHEN  condition for "ADMIN"  THEN
             SELECT [first ADMIN label constant], [second ADMIN label constant], ...  
                  INTO &Px_COL_HEAD1., &Px_COL_HEAD2, ... FROM ... ;
        ELSE -- default case
             SELECT [default first label constant or variable],
                         [default second label constant or variable], ...  
                  INTO &Px_COL_HEAD1., &Px_COL_HEAD2, ... FROM ... ;
        END;
    END; NOTE: Do not make the "ADMIN" case the default. That seems like a security hole. I would always want a data check for the ADMIN case.
    2) Or put the above code in an Application Process rather than a Page (Before Header) Process so it's only computed once.
    Does that give you some ideas?
    Regards,
    Howard

  • Web Analysis report is not coming with the border/logo/heading while print

    Hi All,
    I am using 9.3.1 version of hyperion planning were Web Analysis report is not coming with the border/logo/heading while printing with the option "print all object", Only the data grid is coming in the print. If I use "print screen" it is coming with border/logo/heading but it gives a screenshot of the report, that won't cater out need.
    So please suggest us with a resolution to have border, logo and heading, while using Print all object.
    Thanks with regards....
    Rao

    Hi Sagar,
    In scripts when you will see print preview the logo will be not shown up with clarity.Take the print out of the document and check whether logo is printing up with clarity.
    Thanks
    Phani

  • Asset Report by Location wise with address & other details

    Hi,
    Can any one guide me any reports are available for Asset Report by location wise, address and
    other details.
    Thanks in advance.
    Regards,
    GB

    Hi Govind,
    I have solution for your requirement.
    Go to Tcode OAVI
    Create new entries.
    Difine a name for the sort version and enter description for the same.
    Choose fields for display in standard SAP asset reports.
    For your case enter table name ANLAV field names MENGE, STORT, and KOSTL. etc
    Here you can choose various other fields also.
    Then use this sort version while runnnig the SAP standard asset reports.
    By using this sort version you can able to to see the quantity, location and cost center fields available during any any asset balances report. So take a printout of the asset balances report S_ALR_87011964 - Asset Balances by Asset Class along with the above fields and go for physical verification
    Note: This development you can directly do it in your production system
    This will defenetely fix your requirement.
    Add Point*s, if problem resolved.
    Thanks,
    Srinu

  • Report with no heading descriptions IN ALV OUTPUT

    Report with no heading descriptions and nothing to choose when press "change layout button".
    means when i execute a report of alv no heading comes out in output.

    Hi,
    Give the command in the Report Program name itself.
    For EX : Your Program Name is ZTEST.
    In the first line itself.
    REPORT ZTEST NO STANDARD PAGE HEADING.
    This will solve ur probs

  • Report With Two Heading

    Hi,
    How to create Report With Two Heading
    [http://apex.oracle.com/pls/apex/f?p=267:31:]
    thanks

    See: Re: Two level row header

  • Dynamic Heading not translated in report template "Value Attribute Pairs"

    Hello,
    I created a report in which I use application item names in the column heading of the items.
    When I use the report template "Value Attribute Pairs" the heading displays not the contents of the application item names but the exact contents of the headings.
    for instance:
    application item name "trm_label_1" has the value : "Naam".
    I created a report based on the SQL: select x.name from persons x
    The heading of column "name" is: "&TRM_LABEL_1.".
    The report shows the text "&TRM_LABEL_1." instead of "Naam".
    When I change the report template in "Standard" the substitution is done well.
    Can anyone explain what (not) happens and how I can fix this problem?
    Gr.
    Rob

    Hi Rob,
    You can do this by choosing as Headings Type: PLSQL in the Column Attributes.
    You would have something like Deptno:DName:Loc:&APP_ITEM.
    Where the first columns are normal text and the last one is an application item.
    Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://apex-evangelists.com/
    -- http://apexblogs.info/

  • Tree Matrix Report with double line heading

    Hi,
    I am very new to HTML-DB and HTML as well.
    I need to create a matrix report with a tree functionality and with two line heading.
    Basically This is what I need to generate
    REGION1 REGION2 REGION3
    COL1 COL2 TOTAL COL1 COL2 TOTAL COL1 COL2 TOTAL
    ===========================================================
    CAT1+
    Sub_CAT1
    Sub_CAT2
    CAT2+
    Sub_SCAT3
    Sub_SCAT4
    Where CAT1 , CAT2 needs to be collapsible rows. SCAT1..SCAT4 are sub categories under main categories.
    REGION1.... REGION3 are top level headings. And COL1,COL2 are sub headings under top level headings.
    Thanks,
    Shri

    Please help me on this!
    Thanks,
    Shri

  • Can you create a product report with attributes?

    I have tried create a customer and orders report in order to show a list of people who have purchased classes..
    My product is setup as : SATURDAY CLASSES, with product attributes eg: JAZZ, BALLET, DRAMA etc
    When I run the report, it only shows the initial product, SATURDAY CLASSES, and no attributes.
    Report goes like this:
    Custom Reports > Add a Customer Report
    > Customers and Orders > Then I choose my fields required..  and Generate Report.
    I realise to fix this problem I could change the products to individual products and group them together, but that means the product discounts I have set up wouldn't work....
    Which makes it hard to see who has booked into which class..
    Is there any way to run a report that will show attributes?

    Our reports currently do not include product attributes. I believe that this item is on the wishlist so I would encourage you to go there and vote for it.
    Cheers,
    Mario

Maybe you are looking for