SAP FUNCTIONAL

Hi,
I want to get in to SAP functional side, please guide me which is best in the market.
I'm in IT field for more than 7 yrs.
Thanks in advance.

Dear Kobby bryant,
It will be helpful if you can let us know the brief of your academic background and work profile. This will help the forum membes to guide you better.
In case you want to know what are the key and hot areas in SAP, then please refer to the this:
Solution Manager
Why use it and why do I need it?
SAP's strategy and plans
Will it become mandatory to use Solution Manager?
Customer experiences
Practical uses of the product
What tools are included in Solution Manager?
The role of Solution Manager in upgrades and loading data
Presentations showing and discussing functionality in the areas of System Monitoring, Helpdesk, System Landscape Management, Business Process Management, Change Management, Testing and Document Management
What other tools are currently available as a comparison? Why choose other tools and what are the consequences?
User Interfaces
Current UI's - what are their features, benefits and characteristics?
Why should I choose one over another?
What are the pre-requisites and support implications?
UI's developed using WebDynpro (both ABAP and Java)
Adobe UI's - Forms and Flex
GuiXt, Visual Composer, Portals, .NET
Mobile technology and mobile infrastructure
Upgrades
Building a business case
Examples of a business case and justification for an upgrade
What are the compelling reasons to upgrade?
What benefits and ROI can be gained?
To upgrade or re-implement?
Hear customer stories from completed upgrades
Leveraging an upgrade to gain a business benefit
New functionality contained in the latest versions
The new features and tools - how to find and use them
After the upgrade - exploiting new functionality
Technical aspects of an upgrade
What are the landscape and sizing implications and how do we manage those issues?
Virtualisation - what benefits can it deliver and what limitations exist?
Unicode upgrades
Preparing your technical staff and resources for the upgrade
How can I address the training and education requirements?
Planning for continuous improvement
TDMS - why use it and what benefits will it bring to us?
Planning an archiving strategy, as opposed to deletion strategy
SAP Strategy/Futures
SAP has stated its strategy for new releases up to 2011. What does this mean to the current customers who need to make strategic plans of their own?
In light of recent acquisitions what are the implications to customers and partners?
The interdependencies between the various SAP solutions such as BI, CRM, and APO
What's coming with each solution and how does this affect customers?
What is the effect of implementing each component of SAP on other areas and the total system landscape?
Using existing functionality in industry solutions within your solution
Business By Design
SAP's SDN and BPX communities
SAP training and certification changes and what they mean
What is coming next?
XI(PI)/xApps/NetWeaver
How is XI (PI) currently being used and what are the plans for the future?
Real solutions, what has been done, how is it used and what is the benefit of replacing existing interfaces with XI?
How are companies exchanging information between systems using XI (B2B)?
Customer success stories and examples of what can be achieved with XI and xApps
The xApps that are available
The NetWeaver technology strategy
NetWeaver core components and inter-relationships
What demand do the inter-relationships place on the system landscape?
Development/Modelling
Building WebDynpro applications that are supportable, upgradeable and reusable
Object oriented ABAP, ABAP shared objects, consuming web services and SAP's enhancement framework
Discussions and demonstrations of the various modelling and developing tools
ABAP vs Java and .Net and Java WebDynpro
Designing and building in the composite environment
Comparisons of the various modelling tools in the market, including Visual Composer and some common third party tools such as ARIS etc.
What skills are required within an organisation for modelling?
Business Process modelling
Testing environments - use, requirements and demonstrations of TDMS
Portals
The business case
Justifying the need to implement a portal
What are the benefits we can expect to achieve?
The new features and functionality of EP 7.1 over EP 6
Federated portals and examples of successful implementations
The technical case
Remote access and security
Single sign-on, authentication and authorisations
System dependencies, administration issues and enterprise search
Third party portals - what are the options about deploying content?
Integrating non-SAP technology and portals
What skills have customers had to employ to support new portal technology?
System Admin
Virtualisation and adaptive computing - what options are available?
System landscape optimisation, managing complex landscapes and sizing
Unicode conversions
Server consolidation and performance tuning
Database comparisons, managing large databases and database migration
To TDMS or not to TDMS?
Archiving and archive links
Document management solutions
Data integration, workflow and job scheduling
Infrastructure and architecture platforms
Installing, monitoring and maintaining SAP's J2EE server
SAP's support pack strategy
Monitoring and maintaining the SAP portal
Security
Security continues to be of interest as more people work from outside the traditional environment and also with the increasing use of Portal technology.
Best practices
Portal issues
Role management, identity management across systems and the aspects of a single sign-on environment
Authentication and authorisations in the mobile workforce
Access for non-SAP users
Access for contractors and short-term workers
Additional security products such as Versa
Support
SAP's support pack strategy and support tools
What does SAP's active Global support offer?
Outsourcing issues and options
Best practices for support
The service marketplace - Helpdesk experiences and alternatives
Building a support team
Do let me know in case of any queries.
Hope this helps you.
Regards,
Rakesh

Similar Messages

  • Exception handling for a standard SAP Function Module - the OO way

    Hello,
    I was wondering what is the correct way to call a standard SAP function module inside a method of global class.
    I want to display the error via the:
    get_text( ) and get_longtext( ) methods.
    I don't want to use the sy-subrc check. Is this possible?
    My example doesn't seem to work...
    See example bellow:
    DATA: ex_object_cx_root TYPE REF TO cx_root,
          ex_text TYPE string,
          ex_text_long TYPE string.
    TRY.
          CALL FUNCTION 'L_TO_CONFIRM'
            EXPORTING
              i_lgnum                        = i_lgnum      " Warehouse number
              i_tanum                        = i_tanum      " Transfer order number
              i_quknz                        = '1'          " '1' - confirm withdrawal only (picking )
              i_commit_work                  = 'X'          " Indicator whether COMMIT WORK in function module
            TABLES
              t_ltap_conf                    = it_ltap_conf " Table of items to be confirmed
            EXCEPTIONS
              to_confirmed                   = 1    " Transfer order already confirmed
              to_doesnt_exist                = 2
              item_confirmed                 = 3
              item_subsystem                 = 4
              to_item_split_not_allowed      = 51
              input_wrong                    = 52
              OTHERS                         = 53.
        CATCH cx_root INTO ex_object_cx_root.
          ex_text = ex_object_cx_root->get_text( ).
          ex_text_long = ex_object_cx_root->get_longtext( ).
          " Error:
          RAISE EXCEPTION TYPE zcx_transfer_order
            EXPORTING textid = zcx_transfer_order=>zcx_transfer_order
                 err_class = 'ZCL_WM_TRANSFER_ORDER'
                 err_method = 'CONFIRM_TO_2STEP_PICKING'
                 err_message_text = ex_text
                 err_message_text_long = ex_text_long.
      ENDTRY.
    Thank you very much in advance

    Hello Marko,
    If i understand correctly you've enclosed the call to the FM 'L_TO_CONFIRM' inside the TRY ... CATCH ... ENDTRY block.
    CATCH cx_root INTO ex_object_cx_root.
          ex_text = ex_object_cx_root->get_text( ).
          ex_text_long = ex_object_cx_root->get_longtext( ).
    You can't do this because the FM 'L_TO_CONFIRM' doesn't propagate OO exceptions!
    Your approach is almost correct, what you've to do is goes like this:
    CALL FUNCTION 'L_TO_CONFIRM'
      EXPORTING
        i_lgnum                        = i_lgnum      " Warehouse number
        i_tanum                        = i_tanum      " Transfer order number
        i_quknz                        = '1'          " '1' - confirm withdrawal only (picking )
        i_commit_work                  = 'X'          " Indicator whether COMMIT WORK in function module
      TABLES
        t_ltap_conf                    = it_ltap_conf " Table of items to be confirmed
      EXCEPTIONS
        to_confirmed                   = 1    " Transfer order already confirmed
        to_doesnt_exist                = 2
        item_confirmed                 = 3
        item_subsystem                 = 4
        to_item_split_not_allowed      = 51
        input_wrong                    = 52
        OTHERS                         = 53.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
              INTO ex_text. "Get the ex_text by this technique & not by CX_ROOT->GET_TEXT()
    ENDIF.
    I'll have to check how to fetch the long text of the message
    BR,
    Suhas

  • Reading SAP function modules using FromSAPIdentity pass

    Hi,
    We have SAP NW IDM 7.2 SP7 environment
    And I have been using FromSAPIdentity pass to read SAP function modules.
    A typical configuration will looks like below
    Above works like a charm and everything is as expected :-)
    Now i am trying to fetch data from another function module.
    Here the challenge is import parameter entry need to be provided with selection criteria say something like below for PARAMETER1
    SIGN=E
    OPTION=EQ
    LOW=<Value>
    HIGH=<Value>
    Does FromSAPIdentity pass accepts selection criteria input for "PARAMETERS" ?
    If yes, which format should i follow to provide those values ?
    Thanks
    Karthik

    Use DD03L table .
    Also use this FM.
    F4_DD_TABLE_FIELDS
    DD_GET_DD03P

  • Does SAP.Functions support unicode?

    Hi,
    I have an ASP page using Server.CreateObject("SAP.Functions") to connect to SAP ecc 6.0. Does anyone know whether the wdtfuncs.ocx supports unicode? The result i got back from SAP shows English contents correctly but not Cyrillic character. Source code is something like this
    Set oSAP = Server.CreateObject("SAP.Functions")
    Set oConn = oSAP.Connection
    oConn.User = sUID
    oConn.Password = sPWD
    oConn.Language = "EN"
    oConn.Destination = sServer
    oConn.Client = iClient
    oConn.GroupName = sServer
    oConn.MessageServer = sMessageServer
    oConn.codepage = "4110"
    oConn.Logon 0, True
    Set oRFC = oSAP.Add(SAPFunctionModueName)
    Set oParam = oRFC.Exports(ParameterName)
    oParam.Value = ParameterValue
    Set oOut = oRFC.Tables(SAPoutputTableName)
    oRFC.Call
    The SAP .net connector works well, but in this case i have to use the .ocx file trying to avoid rewriting existing application with .net.

    Sorry, the SAP version is 710

  • Pro's and cons of becoming SAP functional consultant

    Dear All,
    I am shifting towards SAP functional consulting job. I want to know the Pro's and con's of SAP functional consultant job.

    You can unload a lot of work on the technical consultant / developer and let him join the logical dots of what you're trying to design, and you get paid 50% more on top, now how's that?
    All you need to do is look business and talk business.
    Thomas
    P.S. wait, I'm a technical consultant, arrrgh...

  • SAP ABAP or SAP Functional???

    Hi all,
    Im in SAP technical consultant since 16 months but i have observed that functional consultants have better prospects in career growth, im interested to switch to functional. Is this a right decision to switch to functional?
    If yes, which module should i be traind in and any registered institute in bangalore providing the same.
    And is it that only MBA candidates can go into functional?
    And what will be my job profile after 2 yrs?? will it be SAP technical or SAP functional or SAP technofunctional and for which profile shuld i apply for?
    Thanks in advance

    Hi,
    Both technical and functional has better career prospects. It depends on each person to which career path
    he likes to take. If you are good at technical you should continue in the same. It is always better to be in
    your strong area instead of moving to another area thinking of career prospects.
    And to move to become a functional consultant you should have domain experience. It is not like
    learning the technical things. You have to gain that through experience. With such a small experience of
    16 months, i would say you continue for some more time there and learn the functional side of the
    module that you are currently working on. If you move to the functionla side in same module, you
    will be more comfortable. But if you are moving to a totally different module, domain experience
    matters and the career prospects for you will be less with no domain experience.
    And there is nothing like an MBA can only do functional. It is the domain experience matters, not really the degree.
    And the profile after 2 years, you should decide which path to take. With the current profile , you will be a technical
    consultant.
    Regards,
    Leon

  • Crystal Reports Charting Issue with SAP Function Module

    I created a custom SAP Function module that returns 2 tables. The first table (summary table) contains two columns, column "a"  contains a grouping and column "b" is a quantity.  The second table is the detail and is linked to the first table by the grouping, column "a" , in both tables.  I can bring the function module into Crystal Reports, but cannot create a drill down using a pie chart off the summary table.  When I go into the Chart Expert - Data Tab only the Advance button is active and the Group, Cross-Tab, and OLAP buttons are deactivated.  First of all, is it possible to do this using a SAP Function Module, if yes, what am I doing wrong.

    hello Jhess,
    i am not sure if you found an answer for your question yet. if you have a Group and a Summary on your report (i.e. the Sum of your Quantity field) then group charts should be enabled.
    cheers,
    jamie

  • Remote SAP function call from a plsql procedure

    Hi,
    How i can call a remote SAP function from a plsql procedure?
    Thnaks in advance:
    Bianca

    I don't see any relation to Oracle Forms in this question. Is there any? If so, can you specify what you want to do, and the version numbers of Forms and databases involved?
    And what does a call to a remote SAP procedure look like? Is it a DB procedure in an Oracle database? Then you can simply use a database link to the SAP database.

  • Documentation for SAP function modules??

    Hello,
    is there any documentation for the SAP function modules available?
    I need documentation for SJ01 (SAP Objects). If I try to view the documentation in SE80, I get the error message: "Document OJ_XXX(whatever I selected) is not available in language DE"
    Where can I get this documentation?
    Is there an overview+documentation available somewhere of all SAP functions which may be used for own programs? Or how do I know what's already available and how to use it?
    Thanks
    Steffi

    Hi,
    Go thru this links
    http://sap.ittoolbox.com/topics/t.asp?t=303&p=449&h2=322&h1=303&h3=449
    http://www.erpgenie.com/abap/functions.htm
    Thanks
    Sunil

  • SAP Functional Module for authorization tables

    I would like to know are there any standard SAP Functional Modules which could update the Authorization Tables, like AGR_1251.
    Thank you

    Hi Prabhu,
    Other than function modules with role, I had also tried to look for function modules with AuthObject*.
    Because, I would like to update remove one of the authorization object from the system. For example, remove all data which AUTHORIZATION OBJECT = S_SCD0 and ACTIVITY = 06 in the system.
    I got the list of functions from the search, but all of them are without proper documentations. So is very hard for me to understand their functionalities and purposes.
    Kindly advice.
    Thank you.

  • Module pool / Screen Prog is there any standard SAP functionality ?

    Hi I am creating a Module pool / Screen Prog. On this screen I have nearly 100 fileds , now I want to take print out of all the information shown on the screen for the same is there any standard SAP functionality ?
    Does SAP provides any standarar ready made functionality for the same. ?

    No, there is no standard functionality for this.  dynpros are not designed to "print out".  This is what list displays are for.  That said, you will need to write your logic to kick off  a list display with all of your field values there,  then the user can print.
    Regards,
    Rich Heilman

  • Can a SQL Server stored procedure call an SAP function module?

    Can a SQL Server stored procedure call an SAP function module.? The stored procedure will be called via a trigger when data records are added to a Z table.

    You have two options:
    - the other software can use the RFC SDK and call directly in the system
    - the other software can use a database connect
    Markus

  • How to pass multi value selection parameter to SAP Function Module?

    Hi ,
    Anyone know how to pass CR multi value parameter - array to SAP Function module ?
    eg  multi selection of customer in CR
    and then pass to Function module
    in SAP FM,  the SQL select these customer only
    How should the import parameter / table of SAP Function module designed?
    and how should CR pass the data to SAP FM
    thx
    John

    Moved to Integration Kit forum

  • Remove a Function from SAP.Functions (opposite of .add)

    Hi,
    I have a function written in SAP which I call several times with new importparameters (called by VBA/Excel).  The output goes to a table.
    Although the functions clears the table, the table just keeps growing in the result.
    It seems like the data is kept, but I guess with every new call all the previous functions get called as well, so I need to unload the function every time (un-add it ), however I don't know how to do this (I didn't try obvious commands like REMOVE or so, as I guess it might reset also the connection).
    Can anyone help me with this ?
    Thanks,
    Alain
    In addition, some snippits:
        Set functionCtrl = CreateObject("SAP.Functions")
        Set sapConnection = functionCtrl.Connection
    (than login is done)
    The above is called only once, the next part several times with new matererialnumbers....
       Set theFunc = functionCtrl.Add("YRFC_MyFunc")
       theFunc.exports("Mat") = MatNr
       FuncResult = theFunc.Call
        If FuncResult = True Then
            For Each veld In theFunc.tables("TABUIT").Rows
                Cells(teller, 6) = veld("MFRNR")
                Cells(teller, 7) = veld("LIFNAME")
                Cells(teller, 8) = veld("HTNNR")
                Cells(teller, 9) = veld("MFRPN")
                Cells(teller, 10) = veld("MSTAE")
                teller = teller + 1
            Next
            Set theFunc = Nothing
        Else
                Cells(teller, 6) = "???"
        End If

    If I clear the table with 'free' i.s.o. 'clear', the problem doens't occur...(I had to change something else when I remembered that clear isn't always the best for Tables)
    However, now just for fun, if any knows if a function can be removed, please reply anyway

  • Call SAP function from BSP

    Hi BSP Gurus,
    I am new to BSP World.
    I was told that review the existing BSP module and modify the SAP function module to take care of the new business unit.
    Now my question is where to start ?....do I need to know the existing BSP module ? How would I know what SAP function is being called from BSP ?
    Please help.
    With regards,
    Pranav

    calling Function module is same in ABAP & BSP..there is no difference..Look at the layout or any one evenings (Under event Tab) for CALL FUNCTION '...'..
    Since you are new to BSP look at the below links:
    <b>some links:</b>
    http://www.sapdevelopment.co.uk/webapps/bsp/mvc_example1.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/101c3a1cf1c54be10000000a114084/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/e5/edae3b59e17646e10000000a11402f/frameset.htm
    http://www.sapdesignguild.org/resources/htmlb_guidance/
    Look at the below links.. Some of them are step by step procedures.
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/weblogs/topic/24
    http://help.sap.com/saphelp_nw04/helpdata/en/7a/b86041397211d5992200508b6b8b11/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/7a/b86041397211d5992200508b6b8b11/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/4e/ac0b94c47c11d4ad320000e83539c3/content.htm
    https://www.sdn.sap.com/irj/sdn/weblogs
    /people/durairaj.athavanraja/blog/2005/08/21/running-your-first-bsp-application-in-sap-netweaver-04-abap-edition--nsp
    www.thespot4sap.com/Articles/SAP_WAS_BSP_Apps.asp
    www.thespot4sap.com/Articles/SAP_WAS_Overview.asp
    help.sap.com/saphelp_nw04/helpdata/ en/56/e6f3409ade8631e10000000a1550b0/content.htm
    New to BSP
    New to BSP. Where do I start from?
    New to BSP's ....Please Help me.......................
    And also recommend you to go through the BSP Weblogs in the BSP forum...highly Suggested and Helpful
    ;\ New BSP Weblogs
    <b>BSP Book:</b><a href="http://www.sap-press.com/current_releases.cfm?account=">Advanced BSP Programming</a>
    <i>* Reward each helpful answer</i>
    Raja T

  • Too many connections to call SAP functions

    Hello everyone,
    I'm having a random problem while accessing SAP functions on my applications.
    Sometimes i get this message:
    Could not create JCOClientConnection for logical Systems: WD_MODELDATA_DEST - Model: class com.xxx.sap.NameController.
    Please assure that you have configured the RFC connections and/or logical system name properly for this model.
    A friend tells me that this has to do with the fact that i use one model per SAP function ,
    and a custom controller for each unique model.
    This creates too many connections and launches the error.
    Can anyone tell me how to solve this problem without
    having to reimport all my functions into one single model  and one single custom controller ??
    My biggest problem is that doing that would increase the time spent on project development dramatically.
             Thank you everyone,
                  Nuno Santos

    Hi Guillaume,
    My answers:
    1. All connections are closed by time-out, but i would really apreciate if someone could explain how to explicitly close them after calling them.
    2. No. That is the big problem. This was my first project, and in a very simplistic (and stupid) way i created a webdynpro model for each SAP function that i call. This means that an application may call 5 or 6 functions during it's runtime, meaning 5 or 6 connections. Multiply this by a few hundred users...
    What are my choices here?
    Help will be really apreciated.
       Thanks to everyone,
           Nuno Santos

Maybe you are looking for

  • How can I import my Google calendar to iCloud calendar via web or ios?

    I've decided I want to move from contacts/calendar in gmail to icloud. I was going to do the same with mail, but it seems iCloud doesn't have the level of functionality that gmail does. My problem is that all instructions for importing my gmail calen

  • Can I paste football table from Safari into Numbers by Dec 23?

    *Can I paste a table from Safari into Numbers - and get a table?* Whether I use Paste or Paste Match Style (?) it just goes into one column, which is useless. Same result in Pages. But in the Appleshop demo I copied the table from Safari into Excel a

  • Nested select statements.

    Hi, I am writing a piece of code in which i use nested select statements for 4 tables to retrieve one column's data (ie: POSNR). But when i execute it, it takes way too long to get the data. I'm quite new to ABAP so very in need of your help. Thanks

  • Remote impdp oracle 10G in window 2003 server

    Hi Experts, I can use IMP/EMP to remote IMP/EMP as imp/exp USERID=SYSTEM/SCOTT@ORCA...... However, datapump need to create a directory=IMP_dir we have 2 server between east and west coast. exp dump files locates in local server. Can we remote IMPDP d

  • How to monitor Hyperion services

    Hi Experts, Some of the services stop working/not responding randomly which we come to know when user inform us. We find this is due to Hyperion services (like workspace and Planning) stop working. Is there any workaround (or better way to monitor) s