Oracle Techno Functional module career path suggestions

Hi,
My educational background is BE(Computers) and MBA (Banking and insurance). At present I am working as QA lead and have 5 years of work experience in QA. But I want to switch my career path from QA to Oracle techno functional consultant with oracle finance module. Can anybody please suggest what will be my future prospects or career path for this. I wanted to sign up for a oracle techno functional training but before this wanted to get some expert advise if this will be beneficial. Any help in this matter will be deeply appreciated.

I was an accoutant by trade 1991-1999 and started learning DB concepts and reporting in general. I was able to get a job writing crystal reports for Solomon accounting package. That led to support for the accounting package. That was in 2000.
Our company purchased the Oracle ERP suite in 2003, so i was able to go to train and be here for implementation and go live. I was lucky in that i was able to get training. You have a good business background, which is very important for functional analysts. The tough part is too get a foot in the door in a company that uses Oracle.

Similar Messages

  • Oracle apps functional consultant career

    Dear all,
    I am planning to become a oracle apps functional consultant in SCM domain.I have good domain knowledge.But I badly want to know what are all the things that I should do to prepare for this career? If your time doesnt permit to list all of them, at least mention the most imp things that I should do.like reading the user guides,going through forums....
    Thanxxx a lot...
    Anand

    Hi,
    if you have not get satisfied with the same question/thread you posted in the past...
    Oracle apps functional career
    you can search .....There are indeed some useful discussions:
    http://forums.oracle.com/forums/search.jspa?threadID=&q=career&objID=f475&dateRange=lastyear&numResults=15
    Greetings,

  • Pls advice to make a career path in SAP

    Hi,
    My qualification is MCA...  Fresher... working in past 4months... Now am supporting Internal Billing applications of my organization developed by ASP and ASP.net with back end SQL server.... In my team SAP people also there for support to the functions of HRIS (Human Resource Information System and the Billing Applications). I am having the opportunity to get the knowledge from the SAP team... with in short period am able to  slowly and slowly move  to that team.. So please advise me is that SAP functions are having good growth.... and i start to learn technical SAP ABAP first by that suggestion given by that SAP team member... pls anybody give advise?
    Moderator message: moved from ABAP General to Career Center, please post in correct forum next time.
    Edited by: Thomas Zloch on Oct 26, 2010 9:57 AM

    Dear Ayyappan,
    It is you to decide whether you should opt for technical or the  functional expertise based on your qualifications and interest areas. As you are the best judge of your own skills!!
    As per my take, seeing your experience i strongly feel that you have some technical background and should opt for the technical ABAP expertise. In case u feel that you are good at the functional expertise as well and can make a mark then you should go for techno functional modules which requires the knowledge of both the technical as well as functional i.e., in case of all Industrial modules like the ISU etc.
    Regards,
    Prashant

  • Standard function module inside a loop.

    Hi Experts,
    I am trying to improve performance program that has a standard abap function module inside a loop. I am some what lost on what to do here. Here below is what the code looks like as of now. I have read that i need to try and not use the function module at all be it is a very complicated function module. Any suggestions will be appreciated.
    DATA: tl_retorno TYPE bapireturn1 OCCURS 0 WITH HEADER LINE. "Retorno
       DATA: wl_bukrs   LIKE acct_det_bf-comp_code,     "Empresa
             wl_process LIKE acct_det_bf-process,       "Chave
             wl_symko   LIKE hrpp_acct_det-symb_acct,   "Conta Simbólica
             wl_momag   LIKE hrpp_acct_det-eg_acct_det, "Agrupamento
             wl_razao   LIKE acct_det_bf-gl_account.    "Conta Razão
    *-->                  <--*
       SORT tg_rubcr BY bukrs lgart.
       LOOP AT tg_rubcr.
         CLEAR: wl_bukrs, wl_process, wl_symko, wl_momag, wl_razao.
         wl_bukrs   = tg_rubcr-bukrs.
         wl_process = tg_rubcr-process.
         wl_symko   = tg_rubcr-symko.
         CLEAR tg_aux.
         IF tg_rubcr-u_momag IS INITIAL. "A rubrica necessita de agrupamento?
           CLEAR wl_momag.
    * Busca Contas Razão sem Agrupamento de Empregados
           CALL FUNCTION 'HRPP_FI_ACCT_DET_HR'
             EXPORTING
               companycode              = wl_bukrs
               process                  = wl_process
               symb_acct                = wl_symko
               eg_acct_det              = wl_momag
               add_modif                = ' '
             IMPORTING
               gl_account_debit         = wl_razao
    *         GL_ACCOUNT_CREDIT        =
    *         POSTING_KEY_DEBIT        =
    *         POSTING_KEY_CREDIT       =
    *         ACCOUNT_TYPE             =
             TABLES
               return_tab               = tl_retorno.
           tg_rubcr-razao = wl_razao.
           tg_aux = tg_rubcr.
           APPEND tg_aux.
         ELSE.  "Não necessita de agrupamento de empregado?
           LOOP AT tg_t52em. "Para todos os agrupamentos
             CLEAR tg_aux.
             CLEAR tl_retorno.
             REFRESH tl_retorno.
             CLEAR wl_momag.
             wl_momag  = tg_t52em-momag.
    * Busca Contas Razão com Agrupamento de Empregados
             CALL FUNCTION 'HRPP_FI_ACCT_DET_HR'
               EXPORTING
                 companycode              = wl_bukrs
                 process                  = wl_process
                 symb_acct                = wl_symko
                 eg_acct_det              = wl_momag
                 add_modif                = ' '
               IMPORTING
                 gl_account_debit         = wl_razao
    *           GL_ACCOUNT_CREDIT        =
    *           POSTING_KEY_DEBIT        =
    *           POSTING_KEY_CREDIT       =
    *           ACCOUNT_TYPE             =
               TABLES
                 return_tab               = tl_retorno.
             tg_rubcr-razao = wl_razao.
             tg_aux = tg_rubcr.
             tg_aux-momag = tg_t52em-momag.
             APPEND tg_aux.
           ENDLOOP.
         ENDIF.
       ENDLOOP.
    * Limpa tabela com rubricas e move todo o conteúdo da auxiliar
       REFRESH tg_rubcr.
       CLEAR tg_rubcr.
       tg_rubcr[] = tg_aux[].
    ENDFORM.                    " busca_conta_razao

    Hi Patrick,
    If you do not want to use the function module then the other option that you can use is do selects from the tables that the FM 'HRPP_FI_ACCT_DET_HR' is using to get the importing "parameter  gl_account_debit         = wl_razao"  outside the loop.
    So steps will be:
    Debug FM 'HRPP_FI_ACCT_DET_HR'  to find out how it getting importing data using exporting parameters.
    Then before the loop is called do a select for all entries on table tg_rubcr. And id muliple tables are used Read statements to populate a final table with gl_account_debit         = wl_razao value.
    Then use the final table to get this value inside the loop.
    Please let me know if you need more details.

  • Call ABAP function module from script?

    Hi,
    I have an ABAP function module, which works fine when I call it in a transformation.
    Since I don't need to execute this function for each record but rather for each file I process, I would like to move the call from the DataFlow to a script in the WorkFlow. When I click on the 'functions' button the ABAP FM is available in my SAP Datastore, so I drag and drop it into my script. I also make sure to populate all required variables.
    There are no error messages or warning when I check my job definition.
    When I execute it, I get the following RFC error:
    Function call <xxx  ( abcd ) > failed, due to error <150413>: <RFC CallReceive exception <FUNCTION_NOT_FOUND>.>.
    Is it just not possible to call an RFC enabled function module in SAP from a script or am I doing something wrong here?
    Thanks,
    Jan.

    Could you please let me know how I can call an abap function module from a transformation? (from abap xslt program). I know how we can call methods of a class from the transformations, but no idea how we can call function modules. Any suggestions or a sample code snippet towards this will be very useful for me.
    Thanks,
    Shashi.

  • Some issue with the Function Module u0093'SKWF_FIND_BY_QUERY' in a BW ECC6.0

    Hi All,
    Need some urgent help..
    Iam facing some issue with the Function Module “'SKWF_FIND_BY_QUERY' in a BW ECC6.0 system.
    As shown below, in the function module, the Table “IT_PROPERTIES_RESULT” gets populated with some values based on inputs like IT_CLASSES, IT_QUERY, and ‘L’.
    This updation of “IT_PROPERTIES_RESULT” table is happening for some of the services sent through IT_QUERY and is not getting populated for some.
      call function 'SKWF_FIND_BY_QUERY
    exporting
      CONNECTION_SPACE         =
        OBJ_TYPE                 = 'L'
      PTYPE                    =
      X_STRICT                 =
    IMPORTING
      ERROR                    =
         tables
         CLASSES                  = IT_CLASSES
         QUERIES                  = IT_QUERY
         RESULT_OBJECTS           = IT_LOIO
      PROPERTIES_REQUEST       = PROPERTIES_RESULT        = IT_PROPERTIES_RESULT.
    The values are as follows:-
    Values getting populated in IT_CLASSES – BW_LO_TRAN               Values getting populated in IT_QUERY – 1) BW_QUERY, 2) /BIC/ZSERVICE
    I would like to know whether any Standard Customizing BW transaction is present that is maintaining “IT_PROPERTIES_RESULT” table properties  and fetching through this Function Module.
    Also, suggest how this issue can be resolved
    Thanks & Regards,
    Shailesh nagar

    Thanks Suhas. That definitely helped.
    Also the following links helped.
    http://help.sap.com/saphelp_nw70/helpdata/EN/86/1c8c3e94243446e10000000a114084/frameset.htm
    /people/siegfried.szameitat/blog/2005/09/29/generic-extraction-via-function-module
    Cheers,
    Preethi

  • Deactivate authorization checks in BSP or function modules?

    Hi all
    I have a BSP application that seems to use a standard function module that performs an unwanted authorization check on object M_MATE_VKO (Material check on sales organization)
    I know it is possible to globally deactivate authorization checks in certain SAP transactions (SU24)
    Does anyone know if there is a similar functionality for BSP applications or function modules? Any suggestions on how to deactivate such authorization checks in BSP applications?
    Regards
    Mike

    > I will also check with my developer if this function module has any return codes etc that can be useful for a custom authorization check. However, I thought these checks were all done within the function module and that it will only return a true/false authorization, sort of... and I am not sure it's a good idea to override all standard authorization checks in this function module
    Sometimes you can handle the messages, but your developer will be able to help you decide whether that is a good idea or not.
    Globally deactivating the object for the whole system is most likely not a good idea, as you seem not to want to grant it because you need it somewhere else...
    Deactivating all checks for the function module is probably not wise either, as I would think that it applies to the whole function group. Developers can do such things sometimes, but often it results in all end users being able to do the same.
    I know that proposal indicators can be set for function modules, but have not tried check indicators. Again, I suspect that it would apply to the whole function group.
    I would think that a carefull choice of function module and consulting with your functional guru about config which will not interfer with other requirements is the best route to take.
    I like threads like this. If I bump into a specific solution I will remember it. Try using the search here at SDN on the names of some of the FM's which you are considering - someone might already have solved it...
    Cheers,
    Julius

  • Changing delivered class/function module.

    Hello All,
    Can I change delivered ABAP class "CL_HRMSS_RECRUITING_WF" (add functionality to a method "CREATENBOBJECT"). Also can I change a delivered function module "HRWPC_EREC_CREATE_EREC_OBJECT" .
    My original problem.
    I am trying to pass the my object (with few attributes read from tables) using CREATENBOBJECT as a parameter to the function module "HRWPC_EREC_CREATE_EREC_OBJECT" (CREATENBOBJECT calls HRWPC_EREC_CREATE_EREC_OBJECT).
    The "CREATENBOBJECT" is called as an activity in the workflow (personnel requisition workflow).
    Kind regards.
    Srinivas

    Hi Srinivas,
    Using SE24 to copy CL_HRMSS_RECRUITING_WF  to say  Z_CL_HRMSS_RECRUITING_WF
    Copy Class:
    Path:
    1> Goto SE24
    2> Type in CL_HRMSS_RECRUITING_WF  in screen field  Object Type
    Menu path
    3> Object Type/More Functions/Copy. Here you mention your class name (ex: Z_CL_HRMSS_RECRUITING_WF)
    Copy FM:
    Path
    1> SE37
    2> Type in HRWPC_EREC_CREATE_EREC_OBJECT in screen field 'Function Module'
    Menu Path
    3> Goto Function Module/ Other Functions /Copy. TYpe in your FM say Z_HRWPC_EREC_CREATE_EREC_OBJECT
    I hope this solves your problem of copying. Herewith make your changes with these new objects.
    Please reward points if it has satisfied your requirement.
    AKJ

  • Is there any function module? Fiscal week no problem

    Hi friends,
    I want how to get physical week for given date.
    Ie for 01-04-2009 week no is 1.
    Is there any function module?
    Pls suggest
    Regards
    Moosa

    Hi,
    Use the below code.
    DATA: v_ersda TYPE sy-datum VALUE '20090618'.
    DATA: v_month(2) TYPE c,
          v_week(2) TYPE c,
          v_full_week LIKE scal-week.
    MOVE v_ersda+4(2) TO v_month.
    CALL FUNCTION 'DATE_GET_WEEK'
      EXPORTING
        date         = v_ersda
      IMPORTING
        week         = v_full_week
      EXCEPTIONS
        date_invalid = 1
        OTHERS       = 2.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    MOVE v_full_week+4(2) TO v_week.
    WRITE:/5 'Month = ', v_month.
    WRITE:/5 'Week = ', v_week.
    Regards,
    Kumar Bandanadham

  • Function module GET_SMTP_PPF

    Hi experts,
    How to use this function module GET_SMTP_PPF plz suggest me
    Thanks,
    Shiva
    Title was edited by:
            Alvaro Tejada Galindo

    Hi
    Take one address number and Addrss type from Address tbles like ADR6 or ADRC and execute
    first try it in SE37 enter some address number which is there in ADR6 table
    and see
    for address type enter 1 or 2 or 3
    Address type (1=Organization, 2=Person, 3=Contact person)
    Regards
    Anji

  • PDF Attachement in RFC Function Module

    Hi Experts,
    We are going to send the PDF format of Purchase Orders to other Non-SAP System through RFC Function Module.
    Please suggest, is there any RFC function module to send PDF file as the attachment.
    Or is there any other way to send the PDF files on regular basis from SAP to Non-SAP system.
    Regards,
    Nrusingha

    Hi ,
    follwo the belwo steps..
    *      Work Area for Print Parameters
    Data :      wa_pri_params TYPE pri_params,
    *      Work Area for Converted PDF file
    Data :       wa_pdf TYPE tline,
      if t_ouputdata[] is not initial.
    *    WAIT UP TO 1 SECONDS.
        CONCATENATE 'E'
                     w_tabix
                     sy-datum+4(4)
                     sy-uzeit INTO
                     wa_pri_params-plist.
      ENDIF.
      NEW-PAGE PRINT ON NO DIALOG PARAMETERS wa_pri_params.     "creating spool request
      WRITE : / text-s32.
      ULINE.
      LOOP AT t_error INTO wa_error.
        WRITE : / wa_error-text.
      ENDLOOP.
      WRITE : / text-s33.
      NEW-PAGE PRINT OFF.                                                                   "closing spool request
    * To fetch the spool number from TSP01 table
      SELECT rqident
             FROM tsp01
             INTO w_rqident
             UP TO 1 ROWS
             WHERE rq2name = wa_pri_params-plist.
      ENDSELECT.
    * Subroutine to convert ABAP spool to PDF file
      PERFORM abapspoll_to_pdf.
    * Now t_pdf table contains the PDF data...
    " now call the function module in backgrond task destination and push the PDF format dat to external system...
    FORM abapspoll_to_pdf.
    * Function Module to Convert Spool to PDF file
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          src_spoolid     = w_rqident
          no_dialog       = 'X'
          dst_device      = 'LP01'
          pdf_destination = 'X'
        TABLES
          pdf             = t_pdf.
      CLEAR wa_mail_receivers.
    ENDFORM.                    " ABAPSPOLL_TO_PDF
    Regards,
    Prabhudas

  • Posting inv. doc. using function module 'MB_CREATE_INVENTORY_DIFFERENCE

    Hi Gurus,
    I am posting inventory document using transaction using MI10 transaction. I am debugging the standard code and have put a breakpoint at function module 'MB_CREATE_INVENTORY_DIFFERENCE'. No pressing F8 after entering the debugger is taking me inside this function module but my objective is to know how the tables that are input to this function module are getting populated.For this i have to go back in debugger just before calling this function module.Please tell me how to acheive this.Why i need this information is because i want to post inventory document directly from 'MB_CREATE_INVENTORY_DIFFERENCE' rather than MI10. For this i need to know whatall fields are required to be filled for successful posting and hence creation of MBLNR which is EXPORT parameter of this function module. PLease suggest how to do it.
    Thanks

    OK

  • Functionality of function module - RSCRMBW_REPORT?

    Hi Experts,
    Can anyone explain me the functionality of function module RSCRMBW_REPORT.
    I am passing query name to a web service which use one function module -
    in turn call the function module RSCRMBW_REPORT.
    I am getting message as " Query has not been intialized" (in function module RSCRMBW_REPORT)
    when I have tried to debug the code . I have checked the query & it is working fine.
    I am not able to understand the exact problem but need information on this module.
    Thanks
    Shamkant

    Hi,
    I am using i_execmode = 'ONLINE' while calling function module 'RSCRMBW_REPORT' in my code.
    Can anyone suggest me which are the mandatory parameters to be passed?
    Also for parameters I_GET_TEXTS  & I_GET_CMP_VALUES what values should be used/provide?
    If anyone has used function module 'RSCRMBW_REPORT' please suggest me your inputs as I am not able to resolve the problem.
    Thanks in advance.
    Shamkant

  • Any function module/program to write-xml schema of a idoctype

    Hi experts,
    I need to write the xml format into an internal table.
    input---idoc type.
    output--xml schema file in an internal table/or in some file.
    Through we60 we can get the xml schema.but through some program i want to get it .how to go for it.
    Any function module do you suggest which fits to this requirement and do the work for me.
    For ex: idoc type--orders05
    Message was edited by:
    dasr r

    Hello Dasr
    There are several function modules available. Please check yourself if any of them matches your demands.
    EDIN                           IDoc: Eingangsverarbeitung
    IDOC_INBOUND_XML_VIA_HTTP      eingang über http
    IDOC_XML_FROM_FILE             IDoc: Eingangsverarbeitung vom XML über Dateischnittstelle
    IDOC_ADAPTER_MB                Message Broker IDoc Adapter
    IDX_IDOC_TO_XML                Konvertierung IDoc nach IDoc XML im XMB
    IDOC_XML1                      erweiterte Tabellenpflege (generiert)
    IDOC_XML_DISPLAY               Anzeigen eines IDocs in XML-Format mit XSL
    IDOC_XML_TRANSFORM             Anzeigen eines IDocs in XML-Format mit XSL
    Regards
      Uwe

  • Oracle financials functional differences version wise eg :11.5.3.... etc..

    HI,
    ALL,
    i appreciate if anyone of you can recomend me where i can find the functionality differences of oracle financials functional module version wise, eg : 11.5.3 vs 11.5.6 vs 11.5.9 vs 11.5.10.2
    you can e-mail me : [email protected]
    -sujay

    Check Note: 215868.1 - 11i Release Notes
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=215868.1

Maybe you are looking for

  • Network drives show while connected

    I have a WD NetworkCenter Drive connects to the network via CAT5, here is the poser, this will not connect or be seen while I am wireless, but once I plug in the CAT5 Cable, all SHARED drive connections are there. Would some one please tell me what a

  • Oracle Portal Redirection

    Hi, I am running a form. I want to display an error message when a record with a certain criteria is existing. I have created a label - error_label (not related to any tables). In the Save button of the Form I have written the following code: p_sessi

  • Create Index error on all jobs of import abap installation phase

    Hello, I'm facing an issue on import abap phase on IDES SAP ERP 2004 installation over SLES 11/MaxDB 7.6.03 build 9. Logs below are focused on table REPOSRC because it is the first error over installation, the same error appear again and again for th

  • How do I get the Document ID for a BW Object?

    I'm trying to get the Logical and/or Physical Document numbers for BW_LO_META and BW_PH_META.

  • Follow Oracle OpenWorld Updates on Twitter

    Follow Oracle OpenWorld Updates on Twitter - Follow http://twitter.com/exadata Find a complete Exadata 2009 Oracle OpenWorld session schedule at: http://www.oracle.com/technology/products/bi/db/exadata/pdf/focuson.pdf