I Want to create report that do

Hello All
I want to make sql statment to dispaly months from jan and up to special (varible) month ,main reson is that i have table for empployees salaries every month and i want to make report to display employees salaries from start of year till to special
month supose my system installed in may 2005 i want report to display jan,feb.mar,april with value of zero
tank u

Create a table with months, and use an outer join to this table to retrieve records even if there are no salary data.
Look here:
Re: Empty records

Similar Messages

  • I want to create report on Sybase which provider I should use.

    I want to create report on Sybase which is good provider that I should use. I don't want to use the DSN.

    CR no longer has a native Sybase driver. Your only option is to u se ODBC or possibly a JDBC driver if they have one or their client supports one. Look on Sybases site for options.

  • I have a main fillable form.  From this main form the user may need additional forms.  I want to create checkboxes that link to these additional forms.  This part I believe I know how to do (Properties/Actions/Open a File).  What I want to add is a javasc

    I have a main fillable form.  From this main form the user may need additional forms.  I want to create checkboxes that link to these additional forms.  This part I believe I know how to do (Properties/Actions/Open a File).  What I want to add is a javascript to the checkbox that when the new file (or form) opens some of the data (the repetitive data like name, date, etc.) from the main form is placed into the form opened where the same form fields exist.  Is this possible?

    Yes, but then it all has to be done using a script. You can't use the built-in Open A File command.

  • I want to create forms that are printable and not for web usage?

    I need to create forms that are for use in an office setting not only for web usage.  How do i do that?

    Hi,
    You may design a form in FormsCentral and then save the form as submission-enabled PDF form. Please check out this tutorial: Tutorial: Creating and distributing fillable PDF forms.
    Thanks,
    Wenlan

  • Hw can i create report with Barcode?

    hi
    I want to create report that have barcode.
    but i don't how i can do it.
    is there any component or way to insert barcode in report?
    i appreciate your help .

    Hi Nahid
    Take a look at:
    http://otn.oracle.com/products/reports/htdocs/getstart/examples/
    under the title "JavaBean".
    Regards
    Sripathy

  • Need advice on how to create report

    I'm not sure how to do this, so I'm asking advice from the apex gods...
    here is the issue, I have two tables that I need to combine info from. not an issue in its self. I can do that. but here is the issue. in Table A I have some data like disc_id, title, theids, etc.. Table B contains fullname, theid, emplid
    now in table A the column 'theids' is populated from apex as a multi select list. so the values in the column is something like 48;3;88
    it got these id numbers from the Table B query (lov popup) that returns theid of the person chosen.
    now I have to create a report that will be used in a excel download and what they want is one line per disc_id and they want the more useful 'emplid' in the field where 'theids' are at. that is instead of :
    disc_id Title theids
    101 Test 48;3;88
    they want:
    disc_id Title Theids
    101 test N33456,N3457,N43562
    so I'm kind of stuck, I can figure out how to write a sql using instr to get something like this:
    101 test N33456
    101 test N3457
    etc
    but that is not what they want. so I'm thinking I need to create a package to do this and return some sort of values. the problem is I can't figure out how I can substitute the 48;3;88 for N33456,N3457,N43562
    I'm still new at this pl/sql and apex stuff so sorry if this seems to have some obvious answer.

    I might be dense so forgive me on this, but I don't think that will solve it.
    your example uses field from apex, like :P3_SOME _VALUE
    this report screen has no fields. there are no :P#_ type values to pull. I'm writing a report screen using a report template.
    all the data I need for the report exists within the table. I just need to display it the way they want.
    I could do just a:
    select *
    from my_table
    and it would create the report just fine. the only issue is one of the columns would have 48:3:88 in the field. which to a person reading the report means little. so i have no apex fields to pull.
    I was trying to write a pl/sql function that would substitute those delimited values with meaningful data. but when I do I get multiple rows and I can't have that. so my choices so far I see are..
    1) create the report with a simple select leaving the data as is
    2) create report that has multiple rows of data where each instr value now has the correct names (some have 2 some have 5, big list to read of dups)
    3) create a package that populates a temporary table with the data I need then select on that table to get the report.
    right now I'm thinking #3 is the only way to get what I want. By the way your examples would be a great help in doing that I can already see that I can use some of them to create a temp table with that data.
    what I was hoping for was some option that I don't understand or missed that a more experienced person would know. but its looking grim.
    I thank you all the info you have given, its been a great deal of info that I can use at some point, but so far I don't think it will solve my issue.

  • How to create report using Procedure.

    Hi All,
    I want to create report in apex.But i do not have sql code.I have one procedure.Is it possible to create report using this procedure in apex.
    CREATE OR REPLACE PROCEDURE headcsv_prc2
    AS
       CURSOR cr_header
       IS
          SELECT ood.organization_code, fm.formula_no AS "FORMULA_NAME",
                   fm.formula_vers AS "FORMULA_VERSION",
                   fm.formula_desc1 AS "FORMULA_DESC",
                   DECODE (fm.formula_status,
                           100, 'New',
                           400, 'Approve for Laboratory Use',
                           700, 'Approve for General',
                           800, 'On Hold',
                           900, 'Frozen',
                           1000, 'Obsolete/Archived'
                          ) AS "FORMULA_STATUS",
                   DECODE (fd.line_type, '1', msib.segment1) product,
                   DECODE (fd.line_type, '-1', msib.segment1) ingrediant,
                   DECODE (fd.line_type, '2', msib.segment1) AS "BY_PRODUCT",
                   DECODE (by_product_type,
                           'W', 'Waste',
                           'R', 'Rework',
                           'Y', 'Yield',
                           'S', 'Sample',
                           NULL
                          ) AS "BY_PRODUCT_TYPE"
              FROM org_organization_definitions ood,
                   fm_form_mst fm,
                   fm_matl_dtl fd,
                   mtl_system_items_b msib
             WHERE ood.organization_id = fm.owner_organization_id
               AND fm.owner_organization_id = msib.organization_id
               AND msib.organization_id = fd.organization_id
               AND fd.organization_id = ood.organization_id
               AND fm.formula_id = fd.formula_id
               AND msib.inventory_item_id = fd.inventory_item_id
               -- and fm.FORMULA_NO like'%TEA%'
               AND fd.line_type IN ('1', '2', '-1')
          GROUP BY ood.organization_code,
                   fm.formula_no,
                   fm.formula_vers,
                   fm.formula_desc1,
                   fm.formula_status,
                   fd.line_type,
                   msib.segment1,
                   by_product_type
          ORDER BY fm.formula_no, fm.formula_vers;
    BEGIN
       DBMS_OUTPUT.put_line (   INITCAP ('ORGANIZATION CODE')
                             || ','
                             || INITCAP ('FORMULA NAME')
                             || ','
                             || INITCAP ('FORMULA VERSION')
                             || ','
                             || INITCAP ('FORMULA DESC')
                             || ','
                             || INITCAP ('FORMULA STATUS')
                             || ','
                             || INITCAP ('PRODUCT')
                             || ','
                             || INITCAP ('INGREDIANT')
                             || ','
                             || INITCAP ('BY PRODUCT')
                             || ','
                             || INITCAP ('BY PRODUCT TYPE')
       FOR ch IN cr_header
       LOOP
          DBMS_OUTPUT.put_line (   ch.organization_code
                                || ','
                                || ch.formula_name
                                || ','
                                || ch.formula_version
                                || ','
                                || '"'
                                || ch.formula_desc
                                || '"'
                                || ','
                                || ch.formula_status
                                || ','
                                || ch.product
                                || ','
                                || ch.ingrediant
                                || ','
                                || ch.by_product
                                || ','
                                || ch.by_product_type
       END LOOP;
    EXCEPTION
       WHEN OTHERS
       THEN
          DBMS_OUTPUT.put_line ('Error No: ' || SQLCODE || 'Error Msg: '
                                || SQLERRM
    END;
    EXEC HeadCSV_Prc2
    Thanks,
    Raghu

    RaghuVarma wrote:
    I created one report using sql code.(Ex: select * from emp).
    But my higher authorities want that for security purpose They will change the code into java.
    What "higher authorities"? What "security purpose"?
    In this process they changed my code as a procedure.Finally they give that java code.they tell to me please fix in apex.
    Do these "higher authorities" know anything about APEX? What does the Java code actually do? Have you asked them how their approach is to be integrated into APEX?
    There is no reason why a properly written Java stored program cannot be used in APEX, provided that whatever it is doing makes sense in an APEX/web context, and isn't some nonsense like using DBMS_OUTPUT to generate a CSV.
    I tried so many ways.But it is not fixed.Different Different errors will occurs.
    Tried what? Demonstrate what you have tried, preferably using examples on apex.oracle.com.
    How to solve this.
    How to solve what? No clearly defined problem or requirement has been identified.
    Describe the the problem/requirement (not your attempted solutions) in detail.
    How to ask questions
    Re: 2. How do I ask a question on the forums?
    Include as much relevant information with your question as possible, starting with:
    APEX version
    DB version, edition and host OS
    Web server architecture (EPG, OHS or APEX listener), platform, and host OS
    Browser(s)/version(s) used
    Theme
    Templates
    Region type(s)

  • Iwant to create Report using master data

    i have created master data characteristic with attributes,is there is possible to create the info provider with the characteristic and attributes with transaction data and i want to create report in that cube.

    Hi,
    First create a infoobject as infoprovider, on which you want to create reports. Then also create cube for transction data. Then Create a multiprovider and include both master data and cube. Try to create a report on multiprovider based on requirement.
    Hope this helps out
    thanks
    PT

  • Create Report Plan & Actual Balance Sheet

    Hi,
    I want to create report BL with plan data.
    I use t-code FSE5N to input plan but in FSI3 plan data is not come out.
    Please help me, or there's another report painter that I should use.
    I use ECC 6 btw.
    Thanks for your help.

    Hi ,
    FSE5N is old T code use new T code
    New GL Planning     GP12N
    New GL Planning- Automatic Upload     GLPLUP
    Also Refer Reports
    Annual Plan/Actual Comparison ( Always provides report upto date)     S_ALR_87012253
    Half-Year Plan/Actual Comparison     S_ALR_87012254
    Quarterly Plan/Actual Comparison     S_ALR_87012255
    Periodic Plan/Actual Comparison     S_ALR_87012256
    Hope its useful.
    Regards
    Milind Nair

  • Cannot create report using DAD

    Hi,
    I have created a DAD under the HTTP Server (under mod_plsql services)
    for a remote database. In the list of DADs, it shows a green arrow indicating
    that the connection can be established.
    Now, I want to create Report Portlet in my portal page. When go to create
    a report using 'Report from Query Wizard', I do not see the tables from my
    database.
    Also, when click on 'Portal DAD Settings' under Portal:portal, I see only the
    default DAD that connects to the portal database.
    What am I missing?
    Thanks

    You have two applications, one work and the other not.
    What's different about them? 
    Did you trace the HTTP communication, using a tool like Fiddler?
    Sincerely,
    Ted Ueda

  • Create reports from jsp

    hello!
    I want to create reports from JSP; It works fine, I program every report/JSP.
    The problem is that the customers wants to create customer templates, templates which should be able to retrieve custom data from database, acording to user wish. Is there any possibility to create customer report templates with JSP, created complitely in browser?
    Is there already any tool like this?
    What other reporting JSP tools already exist?
    THANK YOU!

    please, nobody has not any idea?

  • CREATE REPORT FROM JOB LIBRARY

    Hi Everyone,
    I have created the job and saved in job library, and just want to create report from that job, am not able to find any option in that report.
    In breif,
    Created job - host command ( for ex : ls -tr)
    saved to job Library
    After that i just want to take report and send to everybody to the ouput...
    Please let me know is there any choice...
    Regards
    K

    So, you now have a report in your job library. To run it, you will need to schedule it..
    Edit the report, go to Schedule tab,
    - check the "Schedule Report" checkbox
    - specify when you want to run the report (now, later etc..)
    - check the "Email report each time scheduled report completes" checkbox
    - specify email addresses under Email report.

  • Create report without query wizard

    Hi,
    I want to create report without using query wizard in SAP B1. Can it possible by code?

    Maybe your question is related to this thread :
    Re: Execute report  query using vb.net code

  • Can you create report using report painter with Tcodes:FAGLL03,FCHN

    Hi Experts,
    1.I want to create report using report painter by using tcodes FAGLL03,FCHN.Can i create with report painter?
    2.i never used report painter can anyone provide report painter pdf for ecc6.0
    3.can any oneguide me how to develop report in report painter by using this tcodes.
    4.If not possible can i do with report writer?
    Regards,
    naresh.
    Moderator: Don't mix report painter with the TCodes wyou mentioned; there is no link between them. Regarding Report Painter - search SDN. Respect the rules and don't cross-post: you asked the same unclear question in several forums!

    cross posted
    Edited by: nareshvarma on Jul 19, 2010 9:11 AM

  • Creating zones that are on different subnets

    Hi,
    I am running Solaris 10 11/06 with zones. I had no issues creating zones with the same default router as the global zone. However, I want to create zones that will live in the DMZ, on a different subnet. I have looked around and the only thing I could find was to add the new subnet in the defaultrouter on the global zone.
    192.168.69.1 default route for global and zone 1
    10.10.6.1 default route for zone 2
    cat /etc/defaultrouters
    192.168.69.1
    10.10.6.1
    I did that, rebooted, and created the new zone. The new zone did not get the default route set. It was also not set in the global. The only way I can get this to work, is run :
    route add default 10.10.6.1
    I have created an init script to add this route at bootup on the global zone.
    Is this the right way to handle multiple subnets on a container host? Do I need to add the network in ./etc/netmasks?
    Thanks,
    David

    If you are stuck with update 3, this is a workaround we did on our system.
    create a startup script /etc/init.d/zone-defaultroute
    #!/usr/bin/sh
    #######START######
    /usr/sbin/ifconfig interface:x addif zone2_ipaddress netmask up
    /usr/sbin/route add default ip_router_zone2
    /usr/sbin/ifconfig interface:x removeif zone2_ipaddress
    /usr/sbin/zoneadm -z zone2 boot
    #######END########
    link the file to rc3.d
    ln -s /etc/init.d/zone-defaultroute /etc/rc3.d/S90zonedefaultroute
    Edited by: almazh on Oct 16, 2007 2:27 PM

Maybe you are looking for

  • Another, my Safari won't open, post

    OK, so I did the routine update last week which included Safari. After that, Safari would not open any windows. The only time it did was when I went into Safari help and it tried to open the Apple support page, but then it promptly crashed. Since non

  • How to keep all developments in one package

    Hi I have a requirement In my company one new training server was installed for which all developments should be copied from other servers client. For this i have to keep all developments in one package. Can anyone suggest me how to do this urgent pl

  • HD Camcorder Help

    I am looking to get a new HD Camcorder to record our high school basketball games.  I will be transferring the video into iMovie to possibly edit and then to iDVD to burn a disc.  Can anyone recommend a good High Definition Camcorder that won't break

  • Show an image created in an applet

    Hello all, I do an applet that creates me an image in a BufferedImage. The problem I has, is that I wanto to show the image in a new webBrowser and I don't want to certificate the applet so I don't want save the image to my disk an then shows What I

  • Check register for partially paid invoices

    Dear SAP gurus, I have paid a vendor for 4 invoices fully and 1 invoice partly. In check register, the system is showing payment value correctly but when i goto accompanying document tab, it gives the list of invoices which are settled fully. It does