RSPC How to modify additional parameters for OS command

Hi,
I am facing a problem updating the 'additional parameters' for OS command in RSPC (process chains). I am trying to use a pre-created OS command in the system. But the additional parameters area is greyed out. Do you know from which transaction I can update this field please ?
Thanks for your help,
Best regards,
Neeraj

Thanks, Sircar.
Is 'sappfpar' transaction name ? Can you pls give the full name?
Best regards,
Neeraj

Similar Messages

  • In Mail, I can't find how to modify smtp parameters for all my account, I have yosemite...

    Hello,
    I have yosemite
    if I add an imap account, I don't found how to access smtp parameter after closing and open mail app
    it is same for gmail account, once added, can't find where to modify smtp
    thanks

    Open Mail preferences. Select Accounts tab, then Accounts Information tab in the window. You can edit the SMTP server list there for all accounts.

  • Help: how to modify a setting for a running

    solaris 10 10/05 on sUN E3000
    Q: how to modify the setting for a running zone.
    I want to add a lofs mount for /usr/local read/write.
    also I want to add access to cdrom
    so I use zonecfg to "add fs ", and stuff then commit.
    now what should I do to make effect in the zone.
    thanks.

    to rephase my question:
    once I have a zone installed, is there a way to
    modify the zone settings , such as adding a fs
    or devices, without destory the zone? thanks.

  • How to modify Adapter parameters in PI 7.1 EHP1 ? using NWA

    Hi,
    Please advise me how to modify adapter service parameters in PI 7.1 EHP1 using nwa ?
    in the previous version 3.0 and 7.0, i can use visual admin ---> cluser -
    > services and i can find all the adapter service and modify the parameters.
    Thank You and Best Regards
    Fernand Lesmana

    Hello Fernand
    You can use the following alias to link directly to the PI adapter services
    http:<hostname>:<port>/nwa/sys-config
    See the link below for further details on this.
    Java Service Properties for the Adapter Framework 
    http://help.sap.com/saphelp_nwpi71/helpdata/EN/9f/cbd1413f389c39e10000000a155106/content.htm
    Regards
    Mark

  • How to update additional data for a premise in ISU?

    Hi Experts,
    Does any1 have any ideas about how to update additional data (Such as number of premises, flat area) for a premise? I mean not use ISU_DB_EWA_VBS_UPDATE directly. I tried to use ISU_S_PREMISE_CHANGE to update the data, but I do not konw how to use the parameters, can any1 help?
    Thx in advance, points will be rewarded.
    Vincent.

    Hi Vincent,
    Here is an example coded by me. Hope this is useful to you. If so, please reward points.
    l_premise = '0000004454'.
    CALL FUNCTION 'ISU_S_PREMISE_PROVIDE'
      EXPORTING
        x_vstelle            = l_premise
        x_wmode              = '1'
      X_TEILOBJ            =
    IMPORTING
      Y_OBJ                =
       y_auto               = x_auto
    EXCEPTIONS
       not_found            = 1
       foreign_lock         = 2
       general_fault        = 3
       not_authorized       = 4
       invalid_wmode        = 5
       OTHERS               = 6.
    IF sy-subrc <> 0.
    ENDIF.
    x_auto-evbsd-haus_num2 = '99999'.
    CALL FUNCTION 'ISU_S_PREMISE_CHANGE'
      EXPORTING
        x_vstelle            = l_premise
        x_upd_online         = 'X'
        x_no_dialog          = 'X'
        x_auto               = x_auto
      X_OBJ                =
      X_NO_OTHER           =
    IMPORTING
      Y_DB_UPDATE          =
      Y_EXIT_TYPE          =
      Y_NEW_EVBS           =
    EXCEPTIONS
       not_found            = 1
       foreign_lock         = 2
       input_error          = 3
       general_fault        = 4
       not_authorized       = 5
       OTHERS               = 6.
    IF sy-subrc <> 0.
    ELSE.
      COMMIT WORK.
    ENDIF.
    Thanks,
    Pranjal.

  • How to update additional data for Premise in ISU?

    Hi Experts,
    Does any1 have any ideas about  how to update additional data (Such as number of premises, flat area) for a premise? I mean not use ISU_DB_EWA_VBS_UPDATE directly. I tried to use ISU_S_PREMISE_CHANGE to update the data, but I do not konw how to use the parameters, can any1 help?
    Thx in advance, points will be rewarded.
    Vincent.

    Hi Vincent,
    Here is an example coded by me. Hope this is useful to you. If so, please reward points.
    l_premise = '0000004454'.
    CALL FUNCTION 'ISU_S_PREMISE_PROVIDE'
      EXPORTING
        x_vstelle            = l_premise
        x_wmode              = '1'
      X_TEILOBJ            =
    IMPORTING
      Y_OBJ                =
       y_auto               = x_auto
    EXCEPTIONS
       not_found            = 1
       foreign_lock         = 2
       general_fault        = 3
       not_authorized       = 4
       invalid_wmode        = 5
       OTHERS               = 6.
    IF sy-subrc <> 0.
    ENDIF.
    x_auto-evbsd-haus_num2 = '99999'.
    CALL FUNCTION 'ISU_S_PREMISE_CHANGE'
      EXPORTING
        x_vstelle            = l_premise
        x_upd_online         = 'X'
        x_no_dialog          = 'X'
        x_auto               = x_auto
      X_OBJ                =
      X_NO_OTHER           =
    IMPORTING
      Y_DB_UPDATE          =
      Y_EXIT_TYPE          =
      Y_NEW_EVBS           =
    EXCEPTIONS
       not_found            = 1
       foreign_lock         = 2
       input_error          = 3
       general_fault        = 4
       not_authorized       = 5
       OTHERS               = 6.
    IF sy-subrc <> 0.
    ELSE.
      COMMIT WORK.
    ENDIF.
    Thanks,
    Pranjal.

  • How to log input parameters for Function Modules?

    Hi,
    I need to create a Logging system to trace input parameters for function modules.
    The log functionality could be done by developing a class method or a function module (For example 'write_log'), and calling it within each function module that I want to log. The 'write_log' code should be independent from the interface of the Function Module that I want to log.
    For example, I'd like to write a function/class method that can log both these functions modules:
    Function DummyA
       Input parameters: A1 type char10, A2 type char10.
    Function DummyB
       Input parameters: B1 type char20, B2 type char20, B3 type char20, B4 type Z_MYSTRUCTURE
    Now the questions...
    - Is there a "standard SAP" function that provide this functionality?
    - If not, is there a system variable in which I can access runtime all parameters name, type and value for a particular function module?
    - If not, how can I loop at Input parameters in a way that is independent from the function module interface?
    Thank you in advance for helping!

    check this sample code. here i am capturing only parameters (import) values. you can extend this to capture tables, changin, etc.
    FUNCTION y_test_fm.
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(PARAM1) TYPE  CHAR10
    *"     REFERENCE(PARAM2) TYPE  CHAR10
    *"     REFERENCE(PARAM3) TYPE  CHAR10
      DATA: ep TYPE STANDARD TABLE OF rsexp ,
            ip TYPE STANDARD TABLE OF rsimp ,
            tp TYPE STANDARD TABLE OF rstbl ,
            el TYPE STANDARD TABLE OF rsexc ,
            vals TYPE tihttpnvp ,
            wa_vals TYPE ihttpnvp ,
            wa_ip TYPE rsimp .
      FIELD-SYMBOLS: <temp> TYPE ANY .
      CALL FUNCTION 'FUNCTION_IMPORT_INTERFACE'
        EXPORTING
          funcname                 = 'Y_TEST_FM'
    *   INACTIVE_VERSION         = ' '
    *   WITH_ENHANCEMENTS        = 'X'
    *   IGNORE_SWITCHES          = ' '
    * IMPORTING
    *   GLOBAL_FLAG              =
    *   REMOTE_CALL              =
    *   UPDATE_TASK              =
    *   EXCEPTION_CLASSES        =
        TABLES
          exception_list           = el
          export_parameter         = ep
          import_parameter         = ip
    *   CHANGING_PARAMETER       =
          tables_parameter         = tp
    *   P_DOCU                   =
    *   ENHA_EXP_PARAMETER       =
    *   ENHA_IMP_PARAMETER       =
    *   ENHA_CHA_PARAMETER       =
    *   ENHA_TBL_PARAMETER       =
    *   ENHA_DOCU                =
       EXCEPTIONS
         error_message            = 1
         function_not_found       = 2
         invalid_name             = 3
         OTHERS                   = 4
      IF sy-subrc = 0.
        LOOP AT ip INTO wa_ip .
          MOVE: wa_ip-parameter TO wa_vals-name .
          ASSIGN (wa_vals-name) TO <temp> .
          IF <temp> IS ASSIGNED .
            wa_vals-value = <temp> .
          ENDIF .
          APPEND wa_vals TO vals .
        ENDLOOP .
      ENDIF.
    ENDFUNCTION.

  • Additional parameters for Adapters in XI 3.0

    In the online doc for adapters in XI 3.0, it refers to SAP Notes under the section for Additional parameters. Has anyone found these Notes?
    /Elling

    Here is the text of the note:
    Symptom
    In the File Adapter documentation it is stated that parameter settings
    for the parameter table in the "advanced mode" section of the
    configuration are documented via OSS note.
    Other terms
    J2EE XI 3.0 30 Adapter Engine File Adapter
    Reason and Prerequisites
    You are looking for additional parameter settings. There are two possible reasons why a feature is available via the "additional parameters" table in the "advanced mode" section of the configuration, but not as documented parameter in the configuration UI itself:
    Category 1: The parameter has been introduced for a patch or a SP upgrade where no UI upgrade and/or documentation upgrade was possible. In this case, the parameter will be moved to the UI and the documentation as soon as possible. The parameter in the "additional parameters" table will be deprecated after this move, but still be working. The parameter belongs to the supported adapter functionality and can be used in all, also productive, scenarios.
    Category 2. The parameter has been introduced for testing purposes, proof-of-concept scenarios, as workaround or as pre-released functionality. In this case, the parameter may or may not be moved to the UI and documentation, and the functionality may be changed, replaced or removed. For this parameter category there is no guaranteed support and usage in productive scenarios is not supported.
    When you want to use a parameter documented here, be aware to which category it belongs!
    Solution
    The following list shows all available parameters of category 1 or 2. Please remark:
    Parameter names are always case-sensitive! Parameter values may be case-sensitive, this is documented for each parameter.
    Parameter names and values as documented below must be used always without quotaton marks ("), if not explicitly stated otherwise.
    The default value of a parameter is always chosen that it does not change the standard functionality
    File Sender Adapter parameters
                   = No parameters available up to and including SP10 =
    File Receiver Adapter parameters
                   = No parameters available up to and including SP10 =

  • Does anybody know how to modify the driver for the Tektronix 370A curve tracer so that it will work with the 370B?

    I am trying to control a Tektronix 370B curve tracer using LabView via a GPIB interface. However, there are no drivers available for download for the 370B. There is one available for the 370A, but it is not compatible with the 370B and I have been unable to figure out how to modify it to make it work with the 370B. Does anyone know how to modify this driver, or know of an existing driver that works with the 370B? Thanks!

    Hi S _Bracht,
    Yeah, unfortunately, the Tektronix 370B does not currently have an instrument driver and the driver for the 370A is not supported by National Instruments (it is just posted on our website as a courtesy) - so I am afraid that there is not really any more information on the differences that might exist between the two available from National Instruments.  As an alternative, you can always develop your own driver using the VISA and 488.2 drivers + a copy of the user manual for the Tektronix 370B.  Otherwise, you may consider speaking with Tektronix or getting ahold of a User Manual for the 370A and comparing some of the settings - there are likely some differences in your configuration options at the very least.  Or, if someone out there has tackled this before and shares their knowledge...
    Good luck! 
    Regards,
    Anna M.
    National Instruments

  • How to modify select query for retrieve assets from assets tab and assets in merchandising in 10.1.2?

    Hi All,
          I need to modify the SQL for retrieving assets from assets tab and assets in merchandising in 10.1.2. I found the class for SQLQuery builder, but I want to change the SQL.
          Could you anyone please how to solve this.
    Thanks & Regards,
    Bala

    Hi All,
          I need to modify the SQL for retrieving assets from assets tab and assets in merchandising in 10.1.2. I found the class for SQLQuery builder, but I want to change the SQL.
          Could you anyone please how to solve this.
    Thanks & Regards,
    Bala

  • How to set single parameters for two tables?

    SELECT GM.GRNNO,GM.GRNDATE,SUM(GS.APPROVED),SM.ISSUENO,SM.ISSUEDATE,GS.ITEMCODE,SUM(SS.ISSUEDQTY)
    FROM IMS_GRNM GM,IMS_GRNS GS, IMS_ISSUEM SM, IMS_ISSUES SS
    WHERE GM.GRNMSERIAL=GS.GRNSSERIAL
    AND SM.ISSUEMSERIAL=SS.ISSUESSERIAL
    AND GM.POSTED='T'
    AND SM.POSTED='T'
    AND GS.ITEMCODE=SS.ITEMCODE
    AND GS.ITEMCODE='01-01-02-019'
    AND *******
    GROUP BY GM.GRNNO,SM.ISSUENO,GM.GRNDATE,SM.ISSUEDATE,
    GS.ITEMCODE ORDER BY GM.GRNDATE,SM.ISSUEDATE;
    ******* here i have to select the data from both the tables between two parameters named :P_1 and :P_2.
    the date column in IMS_GRNM is named as GRNDATE.
    the date column in IMS_ISSUEM is named as ISSUEDATE.
    how to set such parameters???

    I think all you need is
    Where table1.column1 between :p1 and :p2
    and table2.column2 between :p1 and :p2

  • Practical to modify app parameters for deployed app (using Builder, perhaps)?

    I see that it's very convenient to deploy a WAR file to WebLogic using WebLogic
    Builder. It's also easy to edit the init parameters of a WAR file and redeploy
    it.
    I'm wondering, however, how practical it will be to dynamically edit application
    parameters and redeploy in a production environment.
    For instance, if I'm in my development environment, I will definitely have a WAR
    (exploded or not) in my build environment that I can edit and deploy.
    In production, however, we don't necessarily have the original WAR that was referenced
    in the deployment, we have what was installed into WebLogic. Is it practical to
    run WebLogic Builder on an already installed WAR file, edit it, and then redeploy
    it? Would we instead have to store the WAR file to be deployed into a "staging"
    environment before it is actually deployed? Any changes made to the WAR by the
    administrator would be made to the staged WAR file and then redeployed. I guess
    the "staging" filesystem would have to be reachable by the host where the administrator
    runs WebLogic Builder.

    "David M. Karr" <[email protected]> wrote in message
    news:[email protected]...
    >
    "Sanjeev Chopra" <[email protected]> wrote:
    "David M. Karr" <[email protected]> wrote in message
    news:[email protected]...
    I see that it's very convenient to deploy a WAR file to WebLogic usingWebLogic
    Builder. It's also easy to edit the init parameters of a WAR file andredeploy
    it.do you mean servlet init-param ?Both that and context init parameters.
    I'm wondering, however, how practical it will be to dynamically editapplication
    parameters and redeploy in a production environment.
    For instance, if I'm in my development environment, I will definitelyhave
    a WAR
    (exploded or not) in my build environment that I can edit and deploy.
    In production, however, we don't necessarily have the original WARthat
    was referenced
    in the deployment, we have what was installed into WebLogic. Is itpractical to
    run WebLogic Builder on an already installed WAR file, edit it, andthen
    redeploy
    it?
    Would we instead have to store the WAR file to be deployed into a
    "staging"
    environment before it is actually deployed?If the .war is deployed with staging mode as "stage", you should have
    no
    problem modifying the master copy and then doing a redeploy. The redeploy
    operation will take care of copying the modified .war to the staging
    areas
    of all targets.Ok, but what I'm wondering is if this "master copy" that you refer to isin a
    location that we set up outside of WebLogic, or whether that is where thedeployed
    WAR gets stored. I'm trying to determine whether WARs that get deployedwill first
    have to be stored outside of WebLogic in a directory that we control,which will
    be on a filesystem that will be accessible by the administrator runningWebLogic
    Builder (using Samba, perhaps).The 'master copy' is the path specified to the deployment tool (deployer,
    admin console) when you deployed the app to WLS. So yes, if thats not
    available to the user running builder, they have to keep a copy, modify it
    and make it available to the admin.

  • Eigrp - How to modify Admin distance for redistributing connected links and over WAN

    We have a single EIGRP domain 101 across 2 locations (A and B) separated by a WAN link. Each location has a number of L3 switches at the IDF behind the router which has  the L3 vlans VL1, VL2 etc. We run eigrp 101 across all the switches and on the routers but we dont advertise any of the L3 vlans on them and we do redistribute static and connected for the static and the vlans to be distributed on eigrp.
    Qn
    1. How do i reduce the admin distance of the directly connected vlan on IDF on our core switch. ie. Vl1 and Vl2 that are distributed via connected has a admin distance of 170 locally as the other switches sees that as External without having to advertise the networks individually on each switch.  
    2. Is that possible to increase the admin distance over the WAN link without having to create a 2nd eigrp domain. ie.. Add a admin distance of say 50 over the WAN link  and that way devices on both sides do see that there is a 130 distance for the remote side and 90 for local for admin distance.
    Why?
    I am trying to separate two locations and i don't think we will be able to create an additional domain and i am trying to see alternate methods of achieving this.  
    Additional info-
    The design i mentioned has 2 locations with a WAN connection and i have mixed (90/170) distance based on where the routes are coming(eigrp/connected/static) from eventhough  everything is within the same network.  We only have 1 Eigrp network 101 and was looking to alter the AD for just connected if at all possible.
    Assuming i put in all the routes into the network how can i make site 2 see the site 1 network with a larger admin distance and 1 to 2 with a larger admin distance while not altering the admin distance within the local site.
    Underlying reason: We are getting a MPLS link(lower bandwidth) connecting to site 3,4 and 5 at both sites and wanted to clear the internal routing first before i can add them or redistribute them into bgp.

    If these two sites are connected via a P2P link and you are exchanging EIGRP routes across it then you need to be aware of what you redistribute into BGP because each site will know about it's own subnets but also the other sites subnets.
    If you just redistribute all EIGRP at both sites then it's a lottery as to which MPLS connection the non EIGRP sites use.
    So you either need to -
    1) when you redistribute EIGRP at each site into BGP use a route map and only allow the local networks for that site
    or
    2) if you want each of the EIGRP sites to back each other's MPLS connection up you could have them both advertise out all networks ie. their own and the other EIGRP site's networks but modify the BGP attributes of the non local networks so they are least preferred.
    You still want to use a route map to ensure only the local and other EIGRP sites network are redistributed because remember you are also receiving BGP routes from the non EIGRP sites and redistributing these into EIGRP at each site and these are exchanged via the P2P link as well.
    It realty depends on what you are trying to do.
    The actual basic redistribution is very straightforward, see this link -
    http://www.cisco.com/c/en/us/support/docs/ip/border-gateway-protocol-bgp/113506-failover-eigrp-bgp-00.html
    but you need to decide what you are going to do in terms of EIGRP to BGP advertisements as covered above.
    I'm not trying to make things complicated for you but because you have a P2P link connecting these sites and you are running EIGRP over it then any routes received via BGP will be redistributed into EIGRP and you need to make sure they are then not redistributed back into BGP on the other site router.
    Jon

  • SEM-BPS how to load additional data for special users at runtime?

    Let´s assume you have a transactional info cube which contains SD Data from the source system.
    If you want to show additional data, let´s say the attributes of the sold materials which can be read in the table MARA of the source system (provided you use R/3, etc.)
    and you only want to show this data for a small amount of users, which need to see it, then i wonder how to do  this.
    am i right, that i can use the exit functions to init key figures, i.e. i could write some code which connects to the source system over RFC, downloads the data at runtime and presents it at the users excel sheet????
    moreover, is it necessary to extend the existing cube, just to achieve this aim?
    Message was edited by: Gideon Lenz

    Hello Gideon,
    there's no need to program anything. You can display any attribute in planning layouts. In your case you would extract the master data from material from SAP R/3 (MARA) into BW. The setup the layout to show the required attribute(s) in the layout in BPS.
    If the attribute is relevant only for a specific user group, just give them access to this "special" layout (create a planning folder or web interface for this group).
    Regards
    Marc
    SAP NetWeaver RIG

  • How to put additional charges for Service in Different Accounts

    Dear SAP Colleagues,
    I am trying to make a PO for Air Tickets i.e. Purchase of Air Ticket.
    I need to put Base Price, Airport Tax and Airport Passage as conditions in ticket and when I do MIRO it needs to be put into separate accounts when accounting document is generated.
    I thought of using Material with Mat Type DIEN or Service (Item Cat = D)
    1. I configured the pricing procedure and assigned condition types for Airport Tax as well as Airport Passages (Fixed Amounts in both the cases).
    2. Attached Acc Keys for Airport Tax (ZAT) and Airline Passage (ZAP) to the Condition Types.
    3. Defined the corresponding accounts for ZAT and ZAP in OBYC.
    However for DIEN as well as Service Items, it asks for mandatory Account Assignment Category (so I am using K)
    However once I assign the Account Assignment Category as K, system ignores setting in the Pricing Procedure --> Acc Key --> OBYC --> G/L Account setting and it puts Credit to Customer and Debit to External Services account (A/C that is assigned in the Account Assignment tab in PO)
    1. My query is which Material can be used?
    2. If Service Master is used, what are the additional settings.
    3. How should I change the config so that it considers settings in Pricing Procedure --> Acc Key --> OBYC.
    Thanks and Regards,
    SAP ROI

    Hello pebble,
    I want to begin with apologizing for my delayed response to your post, Best Buy greatly appreciates the fact that you’ve been a loyal customer. I’m discouraged to hear that your recent experience has left you frustrated and not wanting to consider us as your future destination for your next purchase.
    I know from firsthand how important it is to protect your technology, when I learned about the technology that screen protectors have, I knew it was worth the investment. Installing them hasn’t always been easy for me, and for that it’s nice to know that Geek Squad can do it for me while the phone is being activated. Mbrguy and kst8no1 have explained it’s an optional fee if you require the service, I know that I have other family members who feel confident in installing the screen protector themselves. In the future, I would highly recommend discussing your circumstances with your local Best Buy representatives though. They can provide the best information and options for your situation.
    While we may not be able to undo your recent experience, rest assured that the appropriate teams will be notified of your concern. Best Buy relies on customer feedback to improve our stores, our website, and our product and service offerings, so your input is greatly appreciated!
    Thank you for taking the time to share your experience with us.
    Karina|Social Media Specialist | Best Buy® Corporate
     Private Message

Maybe you are looking for

  • How to have 2 different ipods on one itunes..

    For the longest time i've been the only one with an ipod in my family, so I just imported through my main music library. Now my sister has an ipod, and I need to know how to make it so we can have seperate song folders that won't sinc eachothers musi

  • Newbie - setting up small home network

    I'm hoping to get some advice & suggestions. I'm basically a newbie at teching w/macs - I've done some pc teching over the years and am a MS Office wiz. I'm helping an artist friend out with their home office set up after a bad experience with a Comp

  • Late 2011 Macbook Pro 13inch, 1TB SSD?

    Quick question, Can my machine accept the 1tb SSD? and does anybody here with the same machine as mine already has the 1tb ssd? Im looking to upgrade my machine to 8gb Ram and 1tb SSD (if possible). I saw a great deal of the 1tb SSD from samsung

  • Backup itouch on another mac and not lose whats on itouch when sync

    backup itouch on another mac and not lose whats on itouch when sync

  • Inquiry status

    my customer want inquiry report withthe different status of sales, how can we give, is there any standard setting can somebody explain me how can we give the same Edited by: varada rajan on Feb 5, 2008 12:42 PM