Separate ABAP sub-forum for ABAP HR developments?

Dear Moderators
Can we have a separate category under ABAP for ABAP-HR developments? 
This would be helpful for many ABAP-HR issues to be addressed at the earliest and also search a solution in the relevent forums only.
Please give it a thought.
Regards,
Rupesh Mhatre
Edited by: Thomas Zloch on Mar 2, 2011 9:28 AM - subject enhanced

Moved to suggestions & comments.
This request has some history:
Separate ABAP-HR Forum?
Moderators cannot decide that, it's up to SCN administrators. I believe they want to see enough demand for a sub forum before creating it, and no good arguments against.
Personally I'm undecided. We don't have sub-forums for all other SAP modules. I know HR/HCM is technically different in some ways, but don't know enough about it to really make a call.
Thomas

Similar Messages

  • There should be seperate forum for ABAP HR

    Hello folks,
    I have recently joined SDN community. What I feel is that there should be different forum for ABAP HR. If I have to post a question or if I have to look what other members have asked in concern with ABAP HR then it is difficult to search in either ABAP or HCM forums.
    Please suggest.

    >technical ABAP issues could go to a new ABAP HR sub-forum
    @Thomas - with much of the new HCM technology being delivered in WDA and associated techs (POWL, etc) many of the issues are cross application. Having another segregation would mean these questions getting lost or even more work for moderators to move posts across forums.
    Tagging and being able to view all threads with a given tag (akin to the Google GMail labels for those needing a "real" example ) is the way to resolve these issues, but until we have a revolution in how SCN is organised, I'd be opposed to any further fragmentation. Perhaps I should set up an RSS reader and then going through multiple forums wouldn't be as tiresome, but I haven't got to that point, and I doubt most users have.
    Just my thoughts!
    Cheers,
    Chris

  • [Request] Separate Sub-Forum for TPT2

    Hi,
    Admins and Mods, is it possible to create a separate sub-forum for TPT2 ?
    I think it would be better if we had one. Without suitable thread titles, it is highly possible to distract owners/users.
    And surely they are totally different platforms, Hardware-Wise and Software-Wise.
    Thanks.
    ThinkPad Tablet 2 - 367927U
    ThinkPad Tablet - 183822U

    What is going on with this? I just came back to the forums after several months, and the TPT2 and TPT threads being mixed makes the forum very onerous. Please separate them somehow.
    Is the TPT getting so little support that even making the forums useful can't be done? Even an amateur webmaster would have seen this problem right away.
    ¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸ Lenovo ThinkPad Tablet 1838CTO (not rooted, from Lenovo Direct Japan); WiFi-only model (w/ Galaxy Note LTE as tether); 64GB system memory with Transcend 64GB Class 10 SDXC card; ThinkPadTablet_A310_02_0039_0090_JP rom; GPS works (slowly) after 2012/04 return (power button had broke); Camera will not focus. (note: I have not re-tested these since the ICS update 2012/06/21) ¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸

  • ABAP under  WEBDYNPRO for ABAP

    HI all,
    Can somebody tell me what ABAP exactly is required for WEBDYNPRO.I mean OO ABAP or module pool or....etc.
    Also i will be thankful if somebody tell me which one is more better between web dynpro for java and web dynpro for abap marketwise.
    Thanks.

    Hi,
    You will definately need some ABAP OO skills. The whole WDA framework is based on OO, and you will not get far, if you are not familiar with ABAP OO. And then of course you will need basic ABAP skills in general, but if you know ABAP OO, then you should already have these "basic ABAP skills".
    It's hard to say which on is better markerwise, WDA of WDJ. Probably currently there is much more need for WDJ, but in the near future this might change. Learn either one first, and then the second one should be quite easy to learn since the main concepts are identical.
    Regards,
    Karri

  • There is need for a separate sub-forum for Creative Cloud users.

    i.e One for regular users of Lightroom and one for Lightroom users through the CC package.

    I'm going to respectfully disagree.
    I saw something similar at elementsvillage.com when they created a "Mac-Specific" forum. People who had questions that really had nothing to do with their Mac, for example "Can't open RAW from D7000", still put the question in the Mac-Specific forum, because they were using a Mac. As a result, the community was fragmented in ways that had nothing to do with the question. People who might have benefited from this question but didn't have a Mac and so didn't look in the Mac-Specific forum, and didn't get the answer as quickly. People who asked questions in this forum that had nothing to do with Macs wound up relying on a smaller community of experts to help solve the problem. I know I certainly never read that forum, so I didn't provide answers, nor did I learn from the information in that forum. I consider that decision to create a "Mac-Specific" forum to be a failure.

  • Debug ABAP code used for ABAP mapping

    Hi Experts,
    I have worked on Abap mapping. I have executed the code in SE24 to acheive desired mapping and the desired output is also generated.
    attached below is a part of the code i have used:
    method IF_MAPPING~EXECUTE.
    * initialize iXML
      TYPE-POOLS: ixml.
      CLASS cl_ixml DEFINITION LOAD.
    * create main factory
      DATA: ixmlfactory TYPE REF TO if_ixml.
      ixmlfactory = cl_ixml=>create( ).
    * create stream factory
      DATA: streamfactory TYPE REF TO if_ixml_stream_factory.
      streamfactory = ixmlfactory->create_stream_factory( ).
    * create input stream
      DATA: istream TYPE REF TO if_ixml_istream.
      istream = streamfactory->create_istream_xstring( source ).
    * parse input document =================================================
    * initialize input document
      DATA: idocument TYPE REF TO if_ixml_document.
      idocument = ixmlfactory->create_document( ).
    * parse input document
      DATA: iparser  TYPE REF TO if_ixml_parser.
      iparser = ixmlfactory->create_parser( stream_factory = streamfactory
                                            istream        = istream
                                            document       = idocument ).
      iparser->parse( ).
    I just want to debug and see if an input is provided how does each of these methods make a difference to it.
    I tried to input some value in the SOURCE parameter on executing the code but it is not working fine.
    Could you please suggest hiw i should go about so that i can see the exact way the input Xstring is affected by each of these methods in the debugger.
    Help will be appreciated.
    Many thanks,
    Neha
    Edited by: Neha Nagrani on Jul 7, 2008 11:46 AM

    Hi Neha,
    Write a Small Report as Folows:
    1.  Create your XMl payload of Type xSTRING.
    2.  Call the method EXECUTE
    Place a Breakpoint on the method. and then keep debugging inside.
    the SetParamter method is obviously called from inside.
    This is the Simplesrt Solution.
    Reward points if useful
    Regards,
    Abhishek

  • How do i write UTF convertor in ABAP  sample code for ABAP please

    How do i write UTF convertor in ABAP
    Regards,
    Jagrut BharatKumar Shkla

    you want to convert a string to utf format?
    try this code
    app_type = 'text/xml; charset=utf-8'.
    call function 'SCMS_STRING_TO_XSTRING'
      exporting
        text     = xml_string
        mimetype = app_type
      importing
        buffer   = xl_content.
    concatenate  cl_abap_char_utilities=>byte_order_mark_utf8
                 xl_content
                 into xl_content in byte mode.

  • Trouble with EA6500 and WHS and Why aren't there sub forums for each router?

    Since I have got my router I have not been able to run the UPNP setup from my WHS 2011 box. It alwyas fails on the port forwarding is not configured correctly on the router.
    So I configured it all manually and I can access it remotely, sometimes. I would expected firmware updates to come out much more often for the flagship router.

    Try to reset the router and reconfigure. Try these steps in enabling ports on the router.

  • Separate ABAP-HR Forum?

    Hi All,
    I read the below 2 threads:
    [What is the relevant Place to post?|What is the relevant Place to post?; in 2008 from SAS
    [Why not ABAP HR Forum|Why not ABAP HR Forum; in 2009 from Sikindar
    So, any good news?
    I am working on ABAP-HR for the past 5 years and had learnt a lot from here.
    I asked very few questions till date as I could mostly get my solutions by searching and I posted very less as almost all of the good questions were already answered by experts before I could do.
    But when I ask questions or search for ABAP-HR related questions, I really feel, it is good to have a separate forum and I am not sure how much cross posting might happen by having a separate forum for ABAP-HR.
    Appreciate your valuable responses.
    Regards,
    Eswar

    IMO there's no need for a separate forum for ABAP-HR. All technical questions can be asked in ABAP, General and the functional ones in HCM forum.
    Too many forums will cause information to be spread-out. Hence searching will become more tedious. Add to that the confusion and ignorance of posters, and we have a difficult time keeping the forums in order!
    Just my 2 cents,
    pk

  • [ REQUEST] Possibility of creating dedicated/separate SUB-FORUMS ??

    Hello,
    Just purchased the IdeaPad A2109 a couple of days ago and would like to suggest the creation of a dedicated/separate sub-forum for this great device..
    Actually separating all the models in dedicated sub-forums should be the way of doing things...
    This forum looks quite messy right now..
    My 2 cents

    Could you add a link for Flash Builder and Flex SDK (Adobe Forums > Adobe Labs > Flash Builder and Flex SDK) to the Adobe Forums > Flex page?
    I think the link would help with organization and less confusion to where the correct Flex 4/Flashbuilder forum is.
    Thanks.

  • Using the Execute Preloaded Option for ABAP Dataflows in SAP BODS

    Hello All,
    This is regarding the use of Advanced Option in SAP Application Type (ECC) Datastore settings in SAP BODS 4.2, where there are two options to select from for ABAP Execution Option property: (1)Generate and Execute and (2) Execute Preloaded. Since our ECC client is often locked by BASIS team even on DEV environment, we would like to make use of the second option 'Execute Preloaded' so that we could extract the data from ECC tables without having to ask the BASIS team to unlock the ECC client every time before extraction.
    The problem is that we are getting an error upon generating and uploading the ABAP program to ECC client. I have searched the blogs and so far I have only found that there are certain ABAP programs or function modules that come with SAP BODS which need to be installed by BASIS team on ECC side to allow the ABAP dataflows to be generated and uploaded to ECC server. I would appreciate it if anyone could provide a list of which function modules BASIS needs to install on ECC or a blog that provides details around using this option.
    So far, from the SAP BODS designer, we are performing below steps but getting an error upon generating and uploading the ABAP dataflow program:
    1. Create a test ABAP Dataflow using SAP ECC datastore. Provide the ABAP program options.
    2. Right click, select Generate ABAP Program.
    3. Once the ABAP Program Generation Dialog box appears, check the box "Upload Generated Program".
    4. Upon clicking OK, we are getting the following error:
    The ABAP program <ZRTEST01> for ABAP data flow <RT_TEST_R3> (datastore <R3_DS>) was not uploaded: < RFC CallReceive error <Function /BODS/RFC_ABAP_INSTALL_AND_RUN: RFC_ABAP_MESSAGE- Exception condition "NOT_SUPPORTED_BY_GUI" trigger[SAP NWRFC 720][SAP Partner ### ][clientname][servername][accountname][4103]>. >.
    Any help would be greatly appreciated.
    Thanks,
    Rizwan

    All,
    The BASIS team reviewed steps provided in the BODS document and attempted to install the Function Modules but now none of the BODS jobs would work. All BODS jobs are being terminted with the Syntax Error error when extracting data from ECC using ABAP dataflows:
    17740 16404 R3C-150412 06/17/2014 9:38:46 AM |Data flow RT_DF_TEST_PC207
    17740 16404 R3C-150412 06/17/2014 9:38:46 AM RFC CallReceive error <Function /BODS/RFC_ABAP_INSTALL_AND_RUN: RFC_ABAP_RUNTIME_FAILURE-(Exception_Key: SYNTAX_ERROR)- Syntax
    17740 16404 R3C-150412 06/17/2014 9:38:46 AM error in program /BODS/SAPLBODS                          .[SAP NWRFC 720][SAP Partner 740 ][DEV1][Server][account][4103]>.
    22052 20572 R3C-150412 06/17/2014 9:38:46 AM |Data flow RT_DF_TEST_PC207
    22052 20572 R3C-150412 06/17/2014 9:38:46 AM RFC CallReceive error <Function /BODS/RFC_ABAP_INSTALL_AND_RUN: RFC_ABAP_RUNTIME_FAILURE-(Exception_Key: SYNTAX_ERROR)- Syntax
    22052 20572 R3C-150412 06/17/2014 9:38:46 AM error in program /BODS/SAPLBODS                          .[SAP NWRFC 720][SAP Partner 740 ][DEV1][Server][account][4103]>.

  • How can we benefit from WebDynpro for ABAP over Normal ABAP

    Dear Guru's,
    Please guide me what are +Ves of WebDynpro over Normal ABAP. Once all Applications are developed how can we organize them. For Example In SD module there is sequence of Tcodes to be executed this is true for all modules . Is there any concept involved in this new technology.
    For What purpose we can suggest someone to implement in an Organization.
    Many Thanks in Advance.
    Regards
    Ram

    Hi Ram,
    Here Are some comparisions I made w.r.t Webdynpro for ABAP (also some benifits over Java):
    1     "Pros:it will be easier to move your development project through the system landscape if both the UI and business logic are in the same development environment.(Update: This is is less of a concern now that CTS+ lets you bundle your WD Java UI developement with ABAP development objects into a single transport, with SPS13. )
    2     tons of custom ABAP business logic is easier to access via WD for ABAP
    3     WD for ABAP has a code wizard, so easy to build
    4     SAP List Viewer and ALV handled better
    5      The biggest thing is the NWDI. Most of the SAP customer have ABAP stack, but not everyone has the Java stack. To develop WD Java you need to set up the NWDI envrionment, like SLD, CMS, CBS, DTR, etc. which is a huge effort if you don't have them in place. While for WD ABAP, the environemnt is normally there as given for most of customers if they have the right version.
    6     If your business is in SAP system, I would prefer WD ABAP. There are many WD components available in WD ABAP like select-option, Alv table, F4-help which are not available in WD Java. Beside in WD ABAP you can deal the context node in form of internal table which is much more performant than dealing with the contextelement which is the case for WD Java.
    Regards,
    Tanaya
    Edited by: Tanaya A on Dec 10, 2009 6:19 PM

  • Performance tuning sub-forum?

    Hi there
    I wonder if there is a dedicated sub-forum for discussion on 'performance tuning'? Or should I post performance and AWR related questions in the "General Questions" sub-forum?
    Best regards

    user130038 wrote:
    Hi there
    I wonder if there is a dedicated sub-forum for discussion on 'performance tuning'? Or should I post performance and AWR related questions in the "General Questions" sub-forum?
    Best regards
    post here or in SQL subforum

  • Why no sub-boards for different Sound Blaster cards?

    Unless Creative's forums are limited by software functionality, why not create independant sub-forums for various Sound Blaster (SB) incarnations (E.g., Titanium, Li've!, Audiology, Vista, XP, W7, etc.)?
    Doing so would really improve the enduser experience.
    Message Edited by ashe on 04-7-2009 08:07 PM

    @To the OP:
    I own a X-Fi Elite Pro for the past 8 years now.
    Since there, this card has faithfullly seen me through 3 major PC upgrades.
    I'm currently at a point where, very sadly, much of what you've described is also weighing on my decision to not go for a Z line.
    @Creative:
    I do hope you're listening and can come up with a solution to a simply design feature - namely a fully working Stereo Surround, like the one that was available in the X-Fi line of cards via CMSS-3D.
    Regards,

  • Forum for HR ABAP

    Hi Experts,
    I have been searching for a dedicated forum for HR ABAP but could not find any. Can any one help me on  this?
    If there is no forum, it would be great if a forum can be started for this.
    Regards,
    Swati

    Adding my Vote to this...
    Matt pls have your  hand which is highly recognized
    Regards
    sas

Maybe you are looking for