Jobs for EEO-4&5 Report in public sector...

Hi Gurus!
               I am working for a public sector PA impl. The client wants EEO 4&5 reports for public sector. We have a standard report for that. But since the report is based on jobs, i wanted to know if the jobs for EEO are the same jobs we have in Org management? or they are different and we need to create new ones for the report exclusively in PA?
Help urgent...
Thanks in Advance..
Soniya Singh

I have the same task, I've been requested to retrieve the data hehind the report. The main query is nearly 1000 lines long with I'd say two dozen parameters ( both internal and external)
Its been a nightmare trying to get the main query. I even used TOAD to revtrieve the SQL as the report is being run, but unfortunately you have to replace all the parameters your self.
Its a monster.. So directing the output to Excel via XML Publisher works ? Does it give you the data in the raw format?

Similar Messages

  • Public Webinar: OPA for Licensing and Permitting Applications in Public Sector

    All,
    You may be interested in the following public webinar, to be held on January 29.
    Best,
    Peter Still
    Executive Director, Policy Management and Strategic Decisioning, Oracle
    1/29 Introducing an Oracle e-License and e-Permit Wizard
    Making it easy to do business with government
    Wednesday, January 29 | 11:00 am PT / 2:00 pm ET
    REGISTER NOW
    Due to complex local government license and permit rules, citizens often find it difficult to start a business or to build or extend a property. Meanwhile, cities and counties are more reliant than ever on license and permit revenue to fund their operations. They also need to ensure public health and safety in areas that include food preparation, use of hazardous materials, and other areas of professional regulation.
    To combat these challenges, cities and counties are focusing on ways to better advise citizens and drive new economic development.
    Oracle’s e-Licensing and e-Permitting Citizen Service Solution:
    Reduces citizens’ and businesses’ confusion about the licenses and permits they are required to hold
    Alleviates governments’ concerns about lost revenue and public safety risks due to non-compliance
    Creates a cross-channel approach to promote business and professional license/permit programs
    Enables a “one stop” portal where citizens can seek personalized, real-time, automated advice, about the licenses/permits they require, with personalized fee calculations
    Provides an easy-to-use interface that can link to existing back-end license/permit application processes
    Join us on Wednesday, January 29th at 11am PT/2pm ET for a webinar which will showcase the interactive and highly personalized citizen service approach that Oracle offers for licensing and permitting applications, focusing on the dynamic advice capabilities of Oracle Policy Automation.
    The webinar will discuss real-world licensing and permitting scenarios and will include a government case study.
      REGISTER NOW
    Copyright © 2013, Oracle. All rights reserved.
    Contact Us | Legal Notices and Terms of Use | Privacy Statement
    Oracle Corporation - Worldwide Headquarters, 500 Oracle Parkway, OPL - E-mail Services, Redwood Shores, CA 94065, United States
    Your privacy is important to us. You can login to your account to update your e-mail subscriptions or you can opt-out of all Oracle Marketing e-mails at any time.
    Please note that opting-out of Marketing communications does not affect your receipt of important business communications related to your current relationship with Oracle such as Security Updates, Event Registration notices, Account Management and Support/Service communications.

    Hi All,
    I have looked at the Packaged Applications.
    I declined to use them because they would require quite a bit of modification to meet my needs.
    I find it faster and more reliable to code small utility applications from scratch so that my clients get exactly what they need; no more and no less.
    APEX is awesome at pumping out these utility applications quickly and cheaply with acceptable quality.
    Hope this helps.
    Cheers
    Patrick Cimolini

  • How to determine the time duration of each job for a particular report

    Hi guys,
    I am facing a very interesting problem which I want to share with all of you-hoping to get some input from you
    enlightened fellas :).
    I have vendor and vendor sub-range maintained in one custom table. For each vendor I have got article site combination maintained in another table. The thing is I have to execute this program in background. Now for each vendor I may have only 1 article or multiple articles. So if I schedule the job for 60 min. say then for 1 article the time alloted will be too big and for multiple articles the time alloted may prove to be too small. Another thing from a functional point of view is a vendor which has 1 article today may have more articles added to his name tomorrow (if the customer likes his product the company may buy more from him). So the point is we have to dynamically adjust the time alloted for each job.
    I could not find any utility in ABAP which can do this.
    Can any of you please help me?
    Thanks a lot !
    Hasso.
    Edited by: Hasso14 on Apr 28, 2011 3:06 PM

    Exaactly-only I want to find the best time needed to finish for an article or multiple articles i.e I do not know how many articles will be available for each vendor beforehand before doing a select on the 2 tables. But once I know the number (maybe 1 or more than 1) I want to allot the best time for that article/lot of articles(maybe JOB_OPEN  technique ?).Also the number of articles may vary over time so the algorithm should take care of that too.-quite a tricky prob :)-I would request the others to see this reply which I think will clarify their doubts.
    Edited by: Hasso14 on Apr 28, 2011 9:03 PM

  • Program works but background job for that program fails....

    I have a requirement where I have to collect the details of the purchase order and put the details in XML file format and FTP the XML file to an external third party FTP Server.
    To realize this I developed a report program which follows following logic.
    1)     First I collected the PO details by calling the BAPI BAPI_PO_GETDETAIL1.
    2)     Then using the following link "/people/r.eijpe/blog/2005/11/10/xml-dom-processing-in-abap-part-i--convert-an-abap-table-into-xml-file-using-sap-dom-approach
    I converted these PO details to the XML file format that the third party people accept.
           In the code I used u201CCALL METHOD cl_gui_frontend_services=>gui_downloadu201D and in this process first the XML file is generated and is getting stored on my deskytop.
    3)     Then I called HTTP_SCRAMBLE, FTP_CONNECT, FTP_COMMAND , FTP_DISCONNECT and RFC_CONNECTION_CLOSE.
    This works perfectly well and each time I execute the report the file is getting FTPu2019ed to the third party FTP server.
    Now I tried to schedule a batch job for this and the batch job fails with follwing errors
    02/25/2009 15:08:47 Error in Control Framework
    Message Class  = FES         
    Message Number = 022  
    Message Type   = E
    02/25/2009 15:08:47 Job cancelled after system exception ERROR_MESSAGE 
    Message Class  = 00        
    Message Number = 564  
    Message Type   = A                
    Can some one tell me what is going wrong. My report works perfect in front end but fails if I try to schedule a background job for it in SM36.
    Can you please tell me whatz going wrong with batch job? Any Help is highly appreciated.
    Regards,
    JEssica SAm

    Robert...Thanks for the reply...
    I am using follwing code
    l_xml_size = l_ostream->get_num_written_raw( ).
        CALL METHOD cl_gui_frontend_services=>gui_download
          EXPORTING
            bin_filesize = l_xml_size
            filename     = FILEPATH
            filetype     = 'BIN'
          CHANGING
            data_tab     = l_xml_table
          EXCEPTIONS
            OTHERS       = 24.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    Now what changes should i make..where should i store my XML file then instead of my desktop?
    and whih Function Module should i Use..

  • Schedule a background job for a program using ABAP code.

    Hi,
    I have to write a program to schedule a background job for another program.
    Need your help to understand how we can achieve this functionality.Any example of an abap code would be of great help.
    Need it urgently.
    Thanks in advance.
    Sandeep.

    Hi Sandeep,
    Here is the demo program regarding the BDC For the background job.
    report zprprbdc1
           no standard page heading line-size 255.
    include bdcrecx1.
    parameters: dataset(132) lower case.
    ***    DO NOT CHANGE - the generated data section - DO NOT CHANGE    ***
    *   If it is nessesary to change the data section use the rules:
    *   1.) Each definition of a field exists of two lines
    *   2.) The first line shows exactly the comment
    *       '* data element: ' followed with the data element
    *       which describes the field.
    *       If you don't have a data element use the
    *       comment without a data element name
    *   3.) The second line shows the fieldname of the
    *       structure, the fieldname must consist of
    *       a fieldname and optional the character '_' and
    *       three numbers and the field length in brackets
    *   4.) Each field must be type C.
    *** Generated data section with specific formatting - DO NOT CHANGE  ***
    ***data: begin of itab occurs 0 ,
    ***       matnr(20) type c,
    ***       mbrsh(30) type c,
    ***       mtart(30) type c,
    ***       kzsel(20) type c,
    ***       maktx(40) type c,
    ***       meins(5) type c,
    ***       end of itab.
    data: begin of record occurs 0,
    * data element: MATNR
            matnr_001(018),
    * data element: MBRSH
            mbrsh_002(001),
    * data element: MTART
            mtart_003(004),
    * data element: XFELD
            kzsel_01_004(001),
    * data element: MAKTX
            maktx_005(040),
    * data element: MEINS
            meins_006(003),
    * data element: MTPOS_MARA
            mtpos_mara_007(004),
          end of record.
    *** End generated data section ***
    start-of-selection.
    *perform open_dataset using dataset.
    perform open_group.
    **do.
    **read dataset dataset into record.
    **if sy-subrc <> 0. exit. endif.
    call function 'GUI_UPLOAD'
      exporting
        filename                      = 'c:\jitu\bdc\10002.txt'
       filetype                      = 'ASC'
       has_field_separator           = 'x'
    *   HEADER_LENGTH                 = 0
    *   READ_BY_LINE                  = 'X'
    *   DAT_MODE                      = ' '
    *   CODEPAGE                      = ' '
    *   IGNORE_CERR                   = ABAP_TRUE
    *   REPLACEMENT                   = '#'
    *   CHECK_BOM                     = ' '
    *   VIRUS_SCAN_PROFILE            =
    *   NO_AUTH_CHECK                 = ' '
    * IMPORTING
    *   FILELENGTH                    =
    *   HEADER                        =
      tables
        data_tab                      = record
    * EXCEPTIONS
    *   FILE_OPEN_ERROR               = 1
    *   FILE_READ_ERROR               = 2
    *   NO_BATCH                      = 3
    *   GUI_REFUSE_FILETRANSFER       = 4
    *   INVALID_TYPE                  = 5
    *   NO_AUTHORITY                  = 6
    *   UNKNOWN_ERROR                 = 7
    *   BAD_DATA_FORMAT               = 8
    *   HEADER_NOT_ALLOWED            = 9
    *   SEPARATOR_NOT_ALLOWED         = 10
    *   HEADER_TOO_LONG               = 11
    *   UNKNOWN_DP_ERROR              = 12
    *   ACCESS_DENIED                 = 13
    *   DP_OUT_OF_MEMORY              = 14
    *   DISK_FULL                     = 15
    *   DP_TIMEOUT                    = 16
    *   OTHERS                        = 17
    if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    loop at record .
    perform bdc_dynpro      using 'SAPLMGMM' '0060'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RMMG1-MATNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RMMG1-MATNR'
                                  record-matnr_001.
    perform bdc_field       using 'RMMG1-MBRSH'
                                  record-mbrsh_002.
    perform bdc_field       using 'RMMG1-MTART'
                                  record-mtart_003.
    perform bdc_dynpro      using 'SAPLMGMM' '0070'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MSICHTAUSW-DYTXT(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
    perform bdc_field       using 'MSICHTAUSW-KZSEL(01)'
                                  record-kzsel_01_004.
    perform bdc_dynpro      using 'SAPLMGMM' '4004'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BU'.
    perform bdc_field       using 'MAKT-MAKTX'
                                  record-maktx_005.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MARA-MEINS'.
    perform bdc_field       using 'MARA-MEINS'
                                  record-meins_006.
    perform bdc_field       using 'MARA-MTPOS_MARA'
                                  record-mtpos_mara_007.
    perform bdc_transaction using 'MM01'.
    **enddo.
    endloop.
    perform close_group.
    *perform close_dataset using dataset.
    &*****************Reward point if helpful************&

  • How to schedule SQL Agent job for XMLA script file of SSAS database instead of taking a backup.

    I want to script XMLA file instead of backup of database and also want to schedule a job for the process in SQL Agent. 
    Is there any pros and cons when I script the XMLA file of the SSAS db instead of taking a backup ? 
    Amir

    Hi Amir,
       You can take the Create SSAS database XMLA script and run the job to create the cube. The script contains the Metadata definition of the Database and it does not contain the actual data. 
    Pros: Since you are only creating an empty cube the script will run faster 
    Cons: You still need to process the created cube to use it for reports.
    Fastest option is to take the backup of the cube and restore wherever necessary.
    And you can also use TFS source control to deploy the cube and process it later.
    Regards,
    Venkata
    Venkata Koppula

  • How to schedule a job for transaction CG36, incl. variant?

    Hi all,
    When you enter transaction CG36, you need to select a User Exist (EHS_DXSDB). After that you need to define a file path.
    I would like to schedule a job for transaction: CG36 > Define User Exit: EHS_DXSDB (Import Dok-X material Safety Data Sheets) > and define a path. With transaction SE93, I found program name: RC1RIMPS (program is allowed to be job scheduled), only I can't create a Variant (to define the user exit and file path, no selectionscreen), how to create a variant?
    The following programs can't be scheduled either (as they are not of type 1 or J):
    SAPLC131
    SAPLC1EO
    SAPLC3G
    Thank you in advance!
    Kind regards,
    Roy Derks

    Hello Roy
    I am sorry. To my knowledge up to ECC 6.0 Enhancement Pack 4 there is no SAP EH&S process available there you can do what you are requesting. The "problem" is that you need to "answer" the user dialog. Therefore you can not generate/prepare a variant which could be processed as a job according to my knowledge.
    Therefore in my opinion you have this option only: prepare a copy of the transaction (or only the report) using either "Z" or "Y (customer reports). Then you need to exclude some line in the code (which gives rise to the user dialog) and prepare some customer specific coding so that the resulting report can be used in such a way that a variant is possible, but you must make sure that the process later (the real upload process) is processed too in this "job" queue. IN any case: you need to check the log of the report and this must be done by an user. Therefore an automatic process does have some "risks"
    The topic of import of reports is used in most cases during a set up of EH&S, because of mergers/acustions but not in the daily work with EH&S and there I believe that SAP does not support this demand.
    With best regards
    C.B.

  • E-Recruiting - Doubt about job for changes in HR system.

    Hi,
    We are on E-Rec 604 with seperated standlone e-rec system.
    I did the initial transfer of the Org Management and employees data through PFAL from ECC to E-Recruit and all were ok.
    Now we are planning the job for future changes.
    The job in e-recruiting is ok, using RBDMIDOC and RBDAPP01.
    But I have some doubts with the job in HR system. I think I have to use those steps in the job:
    RBDMIDOC
    RSEOUT00
    RBDMOIND
    RBDCPCLR
    It´s true?.
    And in this case, with those steps the new employees in HR system will be created as internal candidates in E-Recruiting without problems?.
    Could somebody help me, please?.
    Best Resgrads,
    Esther

    Dear Esther,
    In HR system, you only need to schedule these reports to transfer HR data from change pointers :
    RBDMIDOC to created idocs from change pointers
    RSEOUT00 to send idocs to the target system
    RHALESMD : is used to generate Idocs that have already been processed or failed when report RBDMIDOC was running so
    still with change pointers unprocessed in table BDCPV
    Hope it helps,
    Kind Regards
    Christine

  • ERROR in EEO Suite of Reports

    Hi All,
    I am done with EEO setup. I have single business group and 6 locations where employee are attached. I want to generate individual reports for each location. I have created different hierarchy to which different location are attached. But when I am running report i am facing following error:
    1) EEO Consolidated Report: It is not showing complete data and how many EEO-1 reports are submitted . it is just showing that that head count.
    2) EEO Establishment Employment Listing : ESTABLISHMENT LISTING - TYPE 5 :
    it is not showing any employee data as employee count is more than 49 and it is showing maximum employees 49.
    3) EEO-1 Exception Report (EEO-1 Exception Report):
    It is showing status Completed with warning ... and when i checked the log i got following massage:
    [7/27/10 3:16:05 AM] [27153:RT483659] Starting XML Publisher post-processing action.
    [7/27/10 3:16:05 AM] [27153:RT483659]
    Template code: PERRPEOC
    Template app: PER
    Language: US
    Territory: US
    Output type: PDF
    [7/27/10 3:16:05 AM] [UNEXPECTED] [27153:RT483658] oracle.apps.xdo.XDOException: Invalid input combination.
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:995)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5936)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3459)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3548)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:285)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:173)
    [7/27/10 3:16:05 AM] [27153:RT483658] Completed post-processing actions for request 483658
    Kindly Help me to sort out this issue. Thank u in advance.

    Hi Basaw;
    What is your EBS?
    I could find just 2 notes in metalink which has similar error like yours,please check them if its not help i suggest log a SR while you are waiting other forum users response here
    JGSLAJNLLG Global Ledger Journal Report runs in warning and produces no output [ID 1151273.1]
    Bug 9047550: AR TO GL RECONCILIATION REPORT COMPLETES WITH WARNINGS
    https://support.oracle.com/CSP/main/article?cmd=show&type=BUG&id=9047550&productFamily=Oracle
    Regard
    Helios

  • How to create Background job for Dialog program

    Hi Experts,
    I have copied Standard tcode to Z-tcode (CS12 tcode).
    Now my requirement is to create background job for this program (but program is not a 'E' type its 'I').
    How we can schedule Dialog program to Background.
    Pls suggest me.
    Regards
    SK

    Hi do as below :
    Reefer below :
    Bakcground Job Creation
    You will have to submit your report using Submit statement ,
    then inside the submitted report write open_job.
    Regards,
    Uma

  • Background job to download standard ALV reports

    Hi,
    Could anyone knows how to download an standard ALV report in a background job?
    In a job I made, some ALV reports were precessed and made, and their spools were made,
    but not downloaded.
    Regerds,
    Katsumi Makabe

    hi,
    I think you can have a network shared folder on application server.
    you said that it is a comma separated file.
    1) Using TCODE CG3Z, upload the flat file to application server , remember to copy the path (it contains file path aswellas name).
    2) Using DATASET read the filepath along with the name and read each line into workarea and split at ',' into fields.
    3) Then append those fields to internal table.
    using the FMs job_open, job_submit and job_close you can go for background scheduling.
    Please go through the following link for sample code on FTP.
    http://abap4.tripod.com/FTP_Using_SAP_Functions.html
    Reward points if helpful.
    Thanks and regards

  • Enhancement for Public Sector - HCM

    Dear Colleagues
    I am a beginner and I would like to ask your help for the following:
    I need to run some transactions/reports related to Public Sector in HR. I have the 6.0 version installed so the enhancement is already available but I can´t find it. I received the instruction that I need to activate it but I don´t know how, can you help me with this?
    I also need the confirmation regarding the effects that might come with the activation of the enhancement; will I lose some customizing tables/parts of the standard SAP HCM?
    Thank you very much for your help.
    Best Regards
    Sofia

    Dear Expert
    I am not sure if I totally understood your awser but I my problem is to find the Public Sector Enhancement  specifically for HR. I have several IS, and none IS-PS.  I am looking in SE80, to activate it. Am I checking in the wrong place?
    When you refered to T77s0, I don´t have any IS-PS there sorry
    Hope I made myself clear, if not please inform me.
    I would like to thank you already for your help
    Many thanks
    Sofia

  • I wander where to set import job for transports

    I wander where to set import job for transports to be imported automatically. On transport domain controller I can not manage other job than the one for the system itself.
    On the system which is not transport domain controler I have only display function

    are you asking for 'automatic import' in QAS/PRD ?
    When you go to STMS import queue in a particular system like QAS, there you can see a button 'import all'. This will enable to you schedule automatic import periodically in intervals for eg. 15 min or whatever you want.
    just click on import all and it will ask for inputs and schedule
    OR, do you want to confirm for RDDIMPDP job ?
    Run report RDDNEWPP to schedule RDDIMPDP
    Edit: Note 11677 - Transports with event-controlled RDDIMPDP

  • Requirement for the Q monitoring report

    Hi experts,
    i have this requirement. could you please tell me the solution.
    <b>Requirement for the Q monitoring report
    Transaction code LL01
    Requirement: The report to be generated for the open documents in all six warehouses D01 to D06.
    Option can be that one batch job should be created in ECQ which will run everyday and give us the report.
    Variants are set for all warehouses to capture the report.
    Please note that theses  variant is set to capture all the Stocks in interim storage types except 915
    Additional Variant is also set into the report to take the ‘CREATED BY” field in the displayed data. This can also be automated in the report.
    The steps which we follow to get the report is as follows
    Thanks & Regards
    Venkat</b>

    Hi,
    I donot think such Multi level Consumption Report is available. I think if use collective order concept, u can get it. Otherwise u have to pass the list Production order number for each BOM level at COOIS.
    or u have to develop customized report.
    Pradeep

  • CHARM: schedule job for tansport of copies

    Hi Expert,
    I'm working with charm and it work fine but we have an extra effort in order to perform manually the import of transport of copies in the test system. Is It possible to schedule a specific job in the test system  that is able to timport ONLY the transport of copies?
    Thank in advance for your help.
    regards
    gio'

    Hello Jansi,
    I am looking for the same feature for UC's. Is there a way to schedule an import job for the transports of UC's on a hourly basis?
    Both the Maintenance Cycle and the Urgent Changes use differenct tasklist variants. The Urgent Change Tasklist Variant does not contain any jobs which can be scheduled.
    Can you please explain how I can make the Maintenance Ccycle import job pick up UC's?
    As you have mentioned I have executed the reports:
    /tmwflow/scma_btch_sync_uc
    /tmwflow/scma_btch_sync_test
    But my hourly report /TMWFLOW/SCMA_TRORDER_IMPORT is only looking for Maintenance Cycle transport and does nothing with UC's.
    Please advise.
    Thanks in advance.
    Kind regards,
    Wouter Huiberts

Maybe you are looking for

  • ISA: Billing doc search

    Dear guru's   The Billing doc search in the ISA searches both open and closed billing docs(Invoices, Credit Memos). How do I restrict to get only the open items in the search. Thanks, Vivek.

  • Windows doesn´t recognize ipod error 1415

    iPod prior Mac recognized now intended for Windows can´t be updated, it shows error 1415, When I connect this windows xp Averatec shows there is a new device, but then it fails to recognize it. some help please, Thank you

  • How to import a text layer on multi-page document?

    Hi All, I have a slight problem and was wondering if there is a quicker solution? I'm working with acrobatproX I have been sent two pdf's form different sources. The first document is a 4c layer and the second is a translated text layer and I need to

  • Face time for macbook pro

    When people try to contact me through face time it says i am unavailable. How can I fix this?

  • Odd behavior: empty optical drive makes eject sound with lid closed

    Anyone heard of this? I've got a black MacBook (2.0Ghz) w/ Leopard. Laptop is plugged into outlet with lid closed & no disk in the optical drive. Every 2 minutes or so I can hear the eject sound like when you push the eject button. Any clues or sugge