View profile parameters through RFC

Hi,
Do you know any RFC FM that allows you to view profile (start, instance, default) profiles' content?
I would like to receive a table, similar to the output of RSPARAM.
cheers,
Ivan.

Hi,
Sorry for intervention. I have just tried "test"-ing the FM PFL_MODIFY_PARAMETER. When you test(F8) it,  in the following screen you will have "import parameters" and "Tables" sections.
In the tables section you have PAR_VALUE_TAB, PAR_COMMENT_TAB, PAR_TAB.You can double click on the PAR_VALUE_TAB and in the next screen it will ask  Profile name and the parameter you want to change.
Hope this is what you're looking for.
Regards,
Srihari

Similar Messages

  • Passing parameters to RFC iview

    Hi
    Can anyone let me know how to pass parameters to RFC iview ?
    i want to pass the parameter through URL to the RFC iview (funtion_params_name1)
    thanks

    Hi Thanks for your reply. I have a RFC function module that accepts two input parameters, queries R3 database and returns table output. Need to create a Portal page for the end users out of those returned data. Your help is much appreciated!.
    Hi
    Well it is possible
    try this....
    Create a abap webdynpro application, here you can call the RFC function module as a supply function
    get the data from the function module and display it on the webdynpro view
    convert this webdynpro to a iview and attach this iview to the portal page.( this is just a few steps process)
    thanks

  • Changes don't reflect using BAPI_PROJECT_MAINTAIN through RFC adapter

    Hi,
    I am working on a Integration Scenario in XI. In this I am executing BAPIs through RFC adapter. I am using BAPI_PROJECT_MAINTAIN to create WBS Elements in Project System. After creating WBS Elements when I try to define the hierarchy, the BAPI calls executes successfully but the hierarchy is not visible when viewed in the SAP WEB GUI.
    I am using following parameters to define WBS hierarchy:
    *IMethodProject
        OBJECTTYPE = WBS-HIERARCHY
        METHOD = CREATE
        OBJECTKEY =
        REFNUMBER =
        OBJECTTYPE =
        METHOD = SAVE
        OBJECTKEY =
        REFNUMBER =
    *IProjectDefinition
        PROJECT_DEFINITION = P-0300-00-04
    *IWbsHierarchieTable
        WBS_ELEMENT = WBS-001
        PROJECT_DEFINITION = P-0300-00-04
        UP =
        DOWN = WBS-002
        LEFT =
        RIGHT =
        WBS_ELEMENT = WBS-002
        PROJECT_DEFINITION = P-0300-00-04
        UP = WBS-001
        DOWN =
        LEFT =
        RIGHT =
    In normal case the WBS element 'WBS-002' should move below 'WBS-001', but when I execute BAPI with above parameters, the Hierarchy is not visible in the GUI the both WBS Elements remain at root level, even I get '000' as response with no errors.
    When I run the BAPI through transaction SE37 with same parameters as above, the changes are visible in the GUI.
    Can anyone please tell what am I missing here.
    Thanks & Regards,
    Ajay

    Hi Ajay,
    I understand the problem this way, when u do something thru XI you dont see the effect (even if the the transaction is successful), whereas when it done is directly in the R/3 you can see the output.
      look into the below
    - check if your XI user is having necessary authorisations (you can do this by enabling the trace in ur R/3 - back end system)
    - check if you are passing the input properly in the XI. (like field formats, padding characters, prefixes etc)
    Hope this helps to fix ur issue
    Regards
    Vishnu

  • How to create a view with parameters; read the documentation but nothing!

    Hello!
    I'm new to the Oracle world but together with my coworkers we need to very quickly study Oracle to figure out whether we'll add Oracle to our list of supported databases or not.
    Question: How do I create a view with parameters?
    I've read the documentation but I could not find this! I found the sql syntax to create a view but no parameters whatsoever...
    I have found on the web some very complicated way of doing this, but doesn't Oracle support Views with parameters?
    The goal here is to return a recordset, don't forget, so,please don't speak about stored procedures unless you are going to tell me how to get a recordset out of a stored procedure! ;)
    Thanks for all your help and attention!
    Jorge C.

    You can set up a parameterized view via context as follows:
    1. Set up a procedure to set your context values:
    create or replace procedure p_set_context (p_context IN VARCHAR2,p_param_name IN VARCHAR2,p_value IN VARCHAR2)
    as
    BEGIN
    sys.dbms_session.set_context(p_context,p_param_name,p_value);
    END;
    2. Create your context using the procedure you just created
    create or replace context my_ctx using p_set_context
    3. This is the test table I'll use
    create table my_table(col1 number)
    and populate it:
    begin
    for v_index in 1..10
    loop
    insert into my_table values(v_index);
    end loop;
    end;
    and the view that will be parameterised
    create or replace view v_my_table as select col1 from my_table where col1 between sys_context('my_ctx','start_range') and sys_context('my_ctx','end_range')
    4. Now set the parameters using the procedure above.
    begin
    p_set_context('my_ctx','start_range','1');
    p_set_context('my_ctx','end_range','5');
    end;
    5. Selecting from my_table will give you 1 to 10 (no surprise there :-) )
    selectng from v_my_table will give you 1 to 5
    You can use the context to set formats etc using the same principle. A common gotcha to watch for is trying to set the context directly using DBMS_SESSION.SET_CONTEXT instead of creating a procedure. This belongs to SYS and SYS won't have the privileges to set your context so you get an insufficient privileges result leading to much headscratching and unnecessary grants (at least that's my understanding of it).
    Sorry Jorge, as you're new to Oracle I should also have pointed out for completeness sake, that you can change the parameters at any time through recalling the p_set_context, for example, following on from above, after your "select * from v_my_table" and seeing 1 to 5, you could then do
    begin
    p_set_context('my_ctx','start_range','3');
    end;
    and when you requery 'Select * from v_my_table' you will now see rows 3 to 5.
    Bit of a simplistic example, but you can see how easy it is. :-)
    Message was edited by:
    ian512

  • Is it possible to create views with parameters ?

    Hi,
    As MS-Access, is it possible to create views with parameters ?
    Ms-Access syntax : parameters [a] text; select * from table where code = [a]
    If yes, can you give samples ?
    Regards
    Pascal

    I suggest you you write a stored procedure that returns a recordset in oracle. Then execute the stored procedure and loop through the record set.
    Look in in MS Knowledgebase searching on ADO Stored Proceedures for the VB/C++/VBS .. code.
    Look in in Oracle PL/SQL guide for the Stored Proceedure code.

  • Dynamic profile parameters

    Hi
    I would like to get all the list of dynamic profile parameters at R/3 level.
    Could anyone please let me know if there is any OSS note availabe which lists out all the dynamic parameters? I tried but,couldn`t find the related ones.
    Is there any way to find out from R/3 level?
    regards,
    Vinodh.

    Dear Vinod,
    There is a table called TPFYPROPTY which lists you all the dynamically switchable parameters identified by dynamic indicator. you can view this table using transaction se16.
    you can also get into Rz11 and check the dynamically switchable check box value for that corresponding parameter.
    Reward points if useful.
    Sree

  • Profile parameters

    Hi all ,
    my system showing one warning .Actually i am having ECC with Abap.When ever I was entering the RZ10 t code and click on to the display ,create or any button it showing this warning "there is no any profile parameters".can you suggest to me how can i add profile parameters i mean default profile parameters.
    regards ,
    sai

    you can set profile parameters....
       SAP profiles are operating system files that contain instance setup information. The profiles are stored under /usr/sap/SID/SYS/profile directory.
    The following three types of parameter files are defined in SAP:
    u2022 Default -DEFAULT
    u2022 Start profile - START_DVEBMGS00_
    u2022 Instance profile - SID_DVEBMGS00_
    These parameters are used for setting the system parameters. These parameters can be maintained by the transaction u2018RZ10u2019 or through the menu:
    CCMS ->Configuration ->Profile maintenance
    For creating a new profile:
    1. Execute transaction u2018RZ10u2019
    2. Specify the name of the profile that is to be created and choose Profile -> Create. The system creates the version number automatically.
    3. Enter a short description of the profile, the filename into which the profile should be activated, a reference server and the profile type. Then choose Copy.
    4. You can maintain parameters and their values by flagging either Basic or Extended maintenance and choosing Maintain.
    5. Once the changes are made, choose Copy to return to the initial screen of Transaction RZ10.
    6. Then check, save and activate the profile that has been created
    7. After this the instance has to be restarted
    and also use the links which i provided in my previous post.
    regards,
    Pradeep

  • Profile parameters controlling idle passwords

    We are planning to activate the two profile parameters:
    login/password_max_idle_initial
    login/password_max_idle_productive
    on our productive ERP system to control the validity of idle initial & productive passwords.
    Our Basis-team are concerned about this, because the change will take effect on all clients on the system. Once in a while they need access to client 000, 001 & 066 and now they fear that the passwords on their personal accounts will be expired when they try log on to those clients (nobody, except the basis-guys have access to client 000,001 & 066)
    I would like to hear from you, how you handle this issue in your installation.
    Best regards,
    Peter Jæger

    Luckily for you, people have thought this to be usefull before and it was added to the [SDN Security Funactionality Wishlist |https://wiki.sdn.sap.com/wiki/display/Security/Abilitytoassignsecuritypoliciestospecific+users] some time ago.
    Last I heard, the status was that the code base for the feature was approved and already implemented. The application components to be able to use it will be delivered with a future release (so you are looking at sometime next year).
    Anyway, why don't you give the basis folks the ability to logon to client 000 from their SolMan using trusted RFC? This was the local password can be deactivated without any interuptions and when the do need it for some reason, they go via the SolMan and reset the password in SU01.
    Cheers,
    Julius

  • Profile Parameters - Definition and Description

    I am looking for a complete list of profile parameters and their functions.
    I have been able to generate a list through the RSPARAM. however there is quite a significant amount of the parameters that are not described and their usage seems quite elusive as a Google of some of these parameter does not return any results.
    I have been able to place together some of the descriptions and values through certain documentation and feature articles, however I am far from completely understanding most of the parameters. I would be most grateful if anyone could point the way to any resources that could help me out in this matter.
    Thanks in advance.

    Hello Anshara,
    I don't know where you could check the meaning of all possible parameters, all at once.
    However, you can access the transaction RZ11, type the parameter name, hit "display" and then hit "documentation". This should work for most of the parameters, and it will explain what the parameter does, including syntax and possible values.
    For the parameters that are not documented on RZ11, you can try to find SAP notes describing them.
    Regards,
    Isaias

  • SO Creation through RFC

    Dear all,
        Greetings from my side..
    I'm facing little bit tricky issue, the issue is while creating the SO through Program it is working fine and the same thing if we are using through RFC it is through dump if it is more than 200 line items. it is throwing time out error.
    Here i'm attaching the which FM i'm using ..
    BAPI_SALESDOCU_CREATEFROMDATA1
    Please suggest your valuable suggestions..
    Regards,
    Krishna

    Hi,
    please check profile parameter rdisp/max_wprun_time.
    It is set to value 7200 on our systems (default value is 600), but maybe you need another value.
    You can use report RSPARAM to do that.
    Regards,
    Klaus

  • Can you read Reports and Tables through RFCs and BAPIS?

    Is there any way to read established reports and tables through RFC or BAPI function calls?  We have a middleware that can execute various BAPIs and RFCs.  I see a few promising ones: RFC_READ_REPORT, but no examples anywhere what the parameters needed are for the inputs. 

    Hello Scott,
    Check below FMs for reading tables and programs.
    Tables : RFC_READ_TABLE
    Program : RFC_READ_DEVELOPMENT_OBJECT
    Please note that for reading program using RFC_READ_DEVELOPMENT_OBJECT , lines in program should not exceed 72 chars else FM will throw dump(READ_REPORT_LINE_TOO_LONG).
    Program code will appear in table QTAB which is 72 chars wide.

  • Viewing system parameters

    I want to view the following system parameters:
    EM/TOTAL_SIZE_MB
    ztta/roll_extension
    ztta/roll_area
    abap/heap_area_dia
    abap/heap_area_nondia
    abap/heap_area_total
    Please give the transaction code(s) to be used.
    Thanks!

    Hello,
    Use RZ11 to view one parameters at a time.
    Use RZ10 to view all at once, start RZ10, select INSTANCE profile, select display and then you can see all the mentioned parameters.
    PS: Always use help.sap.com before posting questions to the forum.
    Regards,
    Siddhesh

  • Hi. I am having an issue with music on my Ipod. It would probably be easier to explain my specific issue: I have songs by Band of Horses from Cease to Begin. When viewing my albums through cover flow, it shows Cease To Begin as two separate albums, one wi

    Hi. I am having an issue with music on my IPod. It would probably be easier to explain my specific issue: I have songs by Band of Horses from Cease to Begin. When viewing my albums through cover flow, it shows Cease To Begin as two separate albums, one with only Islands on the Coast, and the other having Islands on the Coast with 3 other songs. If I delete the album with only one song from my IPod, it deletes the song from the other "album" as well. If I go to "All Songs" by Band of Horses, it only shows one Islands on the Coast, so it is not a duplicate issue. Also, in Itunes, it only shows one album. I just recently updated to iOS5 on my 4th Gen IPod Touch, if that helps.

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • How to upload a file in R/3 system through RFC using WebDynpro Java

    Hi There,
    we need to pass a file(mostly xml) using file upload feature in Webdynpro and then need to pass the file in R/3 system using RFC. What should be importing parameters for RFC and how should i implement the fileUploadUi in this case.
    I have already seen example of how to add this in a table input form.
    Any pointers will be great help.
    Regards,
    Sudhir

    Use this code to convert the file content to bytes in WDJ:
    Apart from the resource context attribute create a context attribute of type binary.
    get the data from resource & convert it to binary & pass that to RFC. U can use this code for conversion
    byte fileData[] = null;
    try{
    InputStream fileIs = wdContext.currentAttachCVElement().getFileData().read(false);
    ByteArrayOutputStream bOut = new ByteArrayOutputStream();
    int length;
    byte[] part = new byte10 * 1024;
    while ((length = fileIs.read(part)) != -1) {
    bOut.write(part, 0, length);
    fileIs.close();
    fileData = bOut.toByteArray();
    bOut.close();
    } catch (Exception e) {
    wdComponentAPI.getMessageManager().reportSuccess(e.toString());
    Here getFileData reffers to the attribute of type resource. rest of the code u can use directly.
    Use this code in your R/3 function module to convert the data.
    *" VALUE(XCONTENT) TYPE XSTRING OPTIONAL
    OUTSTRING TYPE STRING,
    CONV TYPE REF TO CL_ABAP_CONV_IN_CE.
    Convert data passed from WD Application.
    CONV = CL_ABAP_CONV_IN_CE=>CREATE( INPUT = XCONTENT ).
    CONV->READ( IMPORTING DATA = OUTSTRING ).
    SPLIT OUTSTRING AT CL_ABAP_CHAR_UTILITIES=>CR_LF INTO TABLE IT_DATA.
    DELETE ADJACENT DUPLICATES FROM IT_DATA.
    Let me know if you run into issues, please award points accordingly.

  • I can no longer view my photos through th photo icon.  There is not an icon on my "slide to unlock" screen that when touched starts a slide show of my photos.  How do I turn that off so I can access my photos as before?

    I can no longer view my photos through th photo icon.  There is not an icon on my "slide to unlock" screen that when touched starts a slide show of my photos.  How do I turn that off so I can access my photos as before?

    Oroilore-
    I do not see a way to disable the Picture Frame icon.  I looked at Settings-Picture Frame, but none of the options turns it off.  The only way I can thinik of, would be if all of your photos had been deleted.  If there were no photos, you couldn't have a slide show!
    One thing to try is to reset (reboot) your iPad.  Hold both the Home and Sleep buttons for several seconds until the Apple logo appears.  Ignore the "Slide to power off" arrow.  The iPad will restart after a couple of minutes.  Resetting this way will not hurt anything, and sometimes clears up mysterious problems.
    Fred

Maybe you are looking for

  • Urgent : Problem in displaying 0fiscper as dynamic data col.

    Hi SEM gurus, I have a problem in displaying 0FISCPER in data columns. Say, in my planning level I have restricted 0FISCPER to 0001.2005 to 012.2005. and I did selected in data column,  “Dynamic for 0fiscper”. Now when I run my lay out for keyfig. 0A

  • Image split error in iBooks

    My epub file contains an error I'm unsure how to fix. When looking at the file in iBooks horizontally, some images split between two pages (ie the top of an image appears at the bottom of the page and the remaining image appears at the top of the nex

  • Header file

    I need to create a header file with the following specifications FILLER IS CREATED BY SPACING THROUGH THE FIELD FOR THE APPROPRIATE SIZE OF THAT FIELD. A FILLER SIZE OF ONE WOULD REQUIRE THE CURSOR BE ADVANCED BY ONE SPACE USING THE SPACE BAR. FIELD

  • Graphics intensive apps cause keyboard input loss

    Hi Everyone I have recently had some unfortunate incidents that have required me to re-install Mac OS X. Post re-installation, i have had issues with some relatively graphical intensive apps (Pixelmator, Photoshop, Sketchup 7) after 10-20 minutes usi

  • Where can I download .Sim files related to SAP BI?

    Hi, Can any one tell from where can I download .Sim files related to SAP BI? I have searched this forum but no where I can the sim files. Please help me to get those files Muthukumaran