Urgent! How to give S_RFC to function group PWP2?

Please help. Points guaranteed.
Thanks!

Hi,
Hi a RFC connection fail can have many reasons.
It need not always be authorizations.
Perhaps you can try by giving SAP_ALL and SAP_NEW to the User ID which is trying to perform the RFC action. If it fails even then its not a authorization issue.
Then perhaps you might want to have a look at the password value and whether the user ID is expired or other system paramters settings specific to RFC's.
Hope this helps
Manohar

Similar Messages

  • How to find suitable( existing) function group for a Function Module ?

    How to find suitable( existing) function group for a Function Module to be created?
    This is FM for converting amounts to text.

    Hi,
            If you are not sure into which Function group your FM should go in then its advised to create a Function group of your own. Its not advised to create a function module in any other function group unless its owned by you since your FM can get deleted by others or it can get changed.
    Create your own Function group. But if you want to create in an existing FG then best way is to find out the Function Group by searching for suitable existing Function module then see their function group
    Regards,
    Sesh

  • How to give only one function module execution Auth for a User ?

    Dear Experts
    I have reviewed S_DEVELOP auth object. It is not ful filling my requirement
    Any Ideas !!
    Rgds

    Rakesh...Firstly thanks for reply.
    As i said i reviewed these and found it is not meeting my requirement.
    As we aware We can control auth to Function modules thru object type
    Filed OBJTYPE----
    FUGR --> 1st control
    and with Function Group Name
    Field OBJNAME----
    <Function Group Name>  --> 2nd control
    In my scenario - I have given the authroizations as below
    ++++++++++++++++++++++++++++++++++++++++++++++++++++
    ACTVT            Activity                                                 Display, Execute
    DEVCLAS       Package                                               *
    OBJNAME      Object name                                         ZECC_FG
    OBJTYPE       Object type                                           FUGR
    P_GROUP       Authorization group ABAP/4 pro              *
    ++++++++++++++++++++++++++++++++++++++++++++++++++++
    The above authroization is giving all Function modules authrozation under ZECC_FG Function Group.
    My Requirement
    I shoudl be able to give only one Function Module of a Function group where multiple function modules exist under the same Function Group.
    How can i acheiveit. Any Custom Control can be place to acheive this.
    I am sure S_DEVELOP will not solve my requirement (I Beleive)
    Regards

  • How to create a new function group in EEWB creating new fields.

    Hi gurus,
    Iu2019m creating an enhancement of the BP Object through EEWB, but when I finish I received the following message:
    Message no. FL030
    Diagnosis
    You attempted to add a function module to a function group that is already full. A function group can contain a maximum of 99 function modules.
    Procedure
    Create a new function group or reorganize the existing one.
    Could you guys kindly guide me in how to create or reorganize the function groups in order to include the total of my custom fields?
    Thanks in advance!

    Hi,
    the issue has been investigated in the customer system.
    You're trying to create a table extension using EEWB and the table has 55 fields and each field has checktable.
    EEWB creates for each field with checktable 2 function modules. However, there is a limitation that one function group
    can contain only 99 function modules. That's why you got the error.
    Possible solutions can be following:
    1. Design question: Do you really need checktable for all fields? Do you need all 55 fields in one table? Otherwise, you can split it into two tables.
    2. Instead of using checktable, you can also use domain fixed values. For that you have to define your own data element and domain with fixed values.
    Regards,
    Steve

  • URGENT : How to give W3 command to DRC 91C using LabView

    Hi,
        I am very new to LabView and this is the first assignment that i need to carry out.
    I need to set the DRC 91C Heater % to 20 by creating a program using LabView.
    I tried placing an DRC 91C control on the front panel. Now how to use it.
    Can someone help?
    I have read the Manual for DRC 91C from Lake Shore but it only mentions what parameters to use to execute W3.
    But where should i give there parameters (N1N2N3,N4N5N6,N7N8N9,N10,N11N12N13) .
    Any type of info will be helpfull. 
    Please Guide a bit.
    Regards,
    Shriniket Sarkar 

    Please refer to table 4-9 and 4-10 page 4-14,4-15. The N(x) denotes a number
    Besides which, my opinion is that Express VIs Carthage must be destroyed deleted
    (Sorry no Labview "brag list" so far)

  • How to give alias name for group of columns.

    the below is the query to get Columns. But, i need to make single alias name to all the column which i get. I need to get column names also event, domain, entity, bpdid. Above columns should be under single alias name like 'baseMessage'. Please advise on this.
    select (select decode(ICKD_CHR_KY1_ID,'I','New','D','Cancelled','U','Modified') from ICKD where ICKD_APLN_ID = 'CSTCOM' and ICKD_NUM_KY1_ID = 1438227010) event, 'Client' domain, 'CustomerCommunication' entity, 'General' scope, (select ICKD_NUM_KY6_ID from ICKD where ICKD_NUM_KY1_ID = 1438227010 and ICKD_APLN_ID = 'CSTCOM') bpdId from dual;

    ; WITH CTE AS (
        SELECT Case When  sum(b.targetTotal) > 0 then  Sum(b.targetTotal)  
                          else 0
               end as Profttarget,
               Case When  sum(a.salestotal) > 0 then  Sum(a.salestotal)  
                          else 0
               end as Sales,
               Case When  sum(a.salescost) > 0 then  Sum(a.salescost)  
                    else 0
               end as SalesCost
        From  Sales A
        JOIN  Target B A.salesdate = B.salesdate
    SELECT Profttarget- ( Sales - SalesCost ) as TargetRequired
    FROM   CTE
    This gives you a query that runs in SQL Server.
    But it does not look right to me. I don't know what the keys of these tables are, but is it really salesdate in both? And even if it is, the join still looks strange.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Urgent: How to use xdofx:replace function in xdoxslt

    Hi,
    I have to replace multiple occurrences of a particular string(#BR#) with the new line character. I tried <?xdoxslt:replace(stringpath,'#BR#',chr(10))?>, but it is giving error.
    Later I tried <?xdofx:replace(stringpath,'#BR#',chr(10))?> which works properly.
    the problem is that the string in which I have to do this operation is stored in a variable(I have stored it in a variable after doing some other replace operations). So now if I try <?xdofx:replace(xdoxslt:get_variable($_XDOCTX, 'teststring'),'#BR#',chr(10))?>, it does not work.
    What should I do to resolve this issue. Is there any way in xdoxslt by which I can replace the string with new line character?
    Or if there is any other way of storing the string by which it will work with XDOFX?
    Thanks in advance.

    I tried the same code <?xdofx:replace(xdoxslt:get_variable($_XDOCTX, 'teststring'),'#BR#',chr(13))?>, but it is not working. It is producing a blank line.
    Can anyone tell me what is the new line character in xdoxslt/OBIP. For e.g. if I have to enter a new line after the year in the following code, what I should write in place of xxx
    <?concat(xdoxslt:sysdate(‘YYYY’),XXX, "Report for ", FirstName, LastName)?>
    I tried chr(10), \n but all of them are giving error.
    Thanks and Regards

  • How to create function group in Maintainence view

    Hi,
    For creating a maintainence view of a particular table (only1) what is the need of a function group. How can i create a function group like what type of includes, etc are present in the function group,etc.
    Thanks,
    Arnab

    in the table maintenance view
    just enter the function group name any(Z* )
    and give the screen name (single or over view Scree)
    It will automatically creates the function group which ever you specified.
    now the function group contains
    the screen, TOp include ...
    Thanks
    Sekhar.

  • How to assign whole Function Group in a Transport

    Hi Experts,
    I have to transport a big Function Group from one system to another. So how i can assign whole Function Group to a Transport without going each and every function module (includes and text) and attaching them to Transport.
    Thanks in advance.
    Regards,
    Anil

    Hi Amit,
    I tried this option. it was not accepting the Transport Request.
    Please, give some details.
    Regards,
    anil

  • How to copy function group from one SAP system to another

    dear all,
    our company will set up a sub-company currently,and the sub-company want to copy some programs from our SAP system.
    how to pack and copy function group?
    pls help me,tks!

    Hello  Snow zeng,
    Will the 2 systems be connected ? I.e Same land scape ?
    If they are non connected systems, check this Wiki by Marcin [How to copy Repository Objects between non-connected SAP systems|http://wiki.sdn.sap.com/wiki/display/ABAP/HowtocopyRepositoryObjectsbetweennon-connectedSAPsystems]
    Regards

  • Adding authorization object for "Function Group"s ?

    Is it possible to add any authorization object for any function group ?
    We have an issue i.e. whenever user "XYZ" is getting some Windows Excel related error whenever trying call an excel report from BW server. System log related to "XYZ" user shows that -> User "XYZ" has no RFC authorization for the function group "ABCD". The RFC authorization object is S_RFC.
    Function Group you can check through SE37->GoTO->Display Function Group
    Now is it possible to add authorization for any "Function Group" ?

    You give authorisation for all function groups by giving auth object S_RFC a * value in field RFC_NAME
    However I do not recommend this as giving wide access to RFC's can bypass a lot of the security you have implemented for the users.
    In this case, add only the function group that the user requires in this instance into S_RFC

  • VKOA - function group inconsistent

    Hi all,
    we try to maintain the settings in transaction VKOA. But for some combinations, the system gives the error 'function group COxx is inconsistent', and it seems that there are none-existant.
    Is there a way to solve this error ?
    thanks in advance !

    Hi  C Singh,
    sorry, didn 't saw the first mail yesterday. Guess you solved it on the same way as I did
    Happy to hear that your problem is solved.
    br,
    Björn

  • Add FUNCTION GROUP to a TRANSPORT REQUEST

    Hi Experts
    How can I add a Function Group to a Transport Request?
    Thx

    the method I suggested, will take everything (main program, includes, screens, GUI statuses, etc.)
    just display the transport request you want to use, double click to to the object list, go to change mode and add the following line: R3TR FUGR ZI26, than Save, release and import (as usual)
    alternatively you can use the SE80 method, suugested by others

  • FUNCTION GROUP INCLUDE S

    Hi all,
         i  got a program starting with " <b>LSS.</b>........."  it is a <b>function group include</b> .
    can u please tell me the <b>T-code and procedure</b> how to include this particular function group  include program.
    Thanks.

    Hi,
    goto the main prog of the group and just include your own include over there
    use tcode se 37
    Regards,
    siva chalasani.

  • Clone Functional Group

    Hi all,
    I want to clone one sap standard function group (say A ) which has 4 function module and function module has some user exits thas has different functional group(say B) . so when I was trying to clone the A function group it clone all the data but not the user exit that is under the function module( which is in functional group B ) . So how can I clone the functional group A so it clone the dependent user exit.
    thanks

    Hi,
    Generally User Exits dont get copied. Thats why in upgradation also we need to do them again. If it is not getting copied from Tcode se80 then you need to do it manually.
    Ashvender

Maybe you are looking for

  • How do you password protect web gallery

    Iphoto is easy to protect. How do you password protect your movies in webgallery? The help menu is not very clear

  • Mac Mini with DVI to video adapter REFUSES to display on TV!! Please help!!

    I purchased an apple DVI to Video adapter - which says for Mac mini and power mac G5 on the package. However not matter what I do, I can't get a picture on my TV, I have tried on 2 TV's and I get nothing but blank screen on both, with occassional gre

  • Unable to create a customizing request to transport BPC10 content to Quality

    Hi Unable to create a customizing request to transport BPC10 content to Quality . From the transport connections tab, i am selecting the required objects and then clicking the transport truck but it does not pop up and ask for a transport request . S

  • Accordion widget and pages

    Hi I've got a website in which i've got an accordion widget of all the pages. When i click on a part of the accordion, it displays the correct page, but the accordion resets by itself when the requested page is loaded. Would it be possible to stop it

  • Trouble in transferring files from Mac to flash drive

    I can transfer files from my flash drive to my Mac but am having trouble transferring files from the Mac to the flash drive.  I also tried to install the NTSF 3G software as recommended by some people. However, it did not work either. The flash drive