Reg Parameter .

Hi.
This is ranganadh,
i am generating very simple report, but under laying it has very huge table and lot of joins .. but i have a proper indexing to get results much  faster ..
i have taken new report, and given oracle command for data source, i wanted to make some fields are as a parameters to that report. let us take ..
i have a query like ..
   select phoneno,contactno ... from contacts where phoneno =1000 some thing
i wanted to make phone no as a parameter to the report, so that i removed where class for the phoneno=100 .. and put it in record selection formula ..
but report is taking ages to run, i am thinking that report is trying to get all the data from query after on-words it is puting filter operations.
is there any way some thing like, pass a report parameters as a query parameters to the database from Crystal report.
some kind of feature is allredy there in SQL server reporting tools, just i want to know that is there any feature in crystal reports like that ..
pls reply ASAP

If you want to create a dynamic parameter you can create using business view manager. This is possible when you are using server(BOE or CRS) and you need to have client installation in the client machine. Try to create  List of Values using business view and save that in repository. Now create a report using add command like this
select * from table where phone_num={?Parameter}
{?Parameter}  is a command level parameter and now edit this paraemter in the report and make it as dynamic and select the option existing and point this parameter to LOV created in repository. Now the prompt will show all te numbers from LOV and you can run the report using add command.
Regards,
Raghavendra

Similar Messages

  • Reg: Parameter Value in CRMPAROLTP table in ECC 6.0

    Hi,
    While trying to build a middle ware for CRM 5.0 and ECC 6.0 we came across CRMPAROLTP table in ECC 6.0. In this we need to maintain Parameter Name and Parmaeter value. If the Parameter name is CRM_RELEASE wht will be the parameter value for CRM Version 5.0?
    Regards

    Hi Veerendra,
    Parameter value is 500.
    Regards
    Nadh.

  • Reg parameter table

    Hi ,
    plz check my below program and exaplain me how to make use of parameter table
    CLASS cl_abap_objectdescr DEFINITION LOAD.
    CLASS add DEFINITION.
      PUBLIC SECTION.
        METHODS add IMPORTING x TYPE i
                              y TYPE i
                    EXPORTING z TYPE i.
    ENDCLASS.                    "add DEFINITION
    CLASS add IMPLEMENTATION.
      METHOD add.
        z = x + y.
      ENDMETHOD.                    "ADD
    ENDCLASS.                    "ADD IMPLEMENTATION
    TYPE-POOLS: abap.
    START-OF-SELECTION.
      DATA : x TYPE i VALUE 10,
             y TYPE i VALUE 20,
             z TYPE i.
      DATA :  it_ptab TYPE abap_parmbind_tab,
              wa_ptab TYPE abap_parmbind.
      DATA : obj TYPE REF TO add.
      DATA : add TYPE string VALUE 'ADD'.
    wa_ptab-name = 'X'.
    wa_ptab-kind = cl_abap_objectdescr=>exporting.
    GET REFERENCE OF  X INTO wa_ptab-value.
    INSERT wa_ptab INTO TABLE it_ptab.
    wa_ptab-name = 'Y'.
    wa_ptab-kind = cl_abap_objectdescr=>exporting.
    GET REFERENCE OF  Y INTO wa_ptab-value.
    INSERT wa_ptab INTO TABLE it_ptab.
    wa_ptab-name = 'Z'.
    wa_ptab-kind = cl_abap_objectdescr=>importing.
    GET REFERENCE OF  Z INTO wa_ptab-value.
    INSERT wa_ptab INTO TABLE it_ptab.
      CREATE OBJECT obj
        TYPE
          (add)
        PARAMETER-TABLE
          it_ptab.
      WRITE : z.
    The dump analysis is as follows
    Runtime Errors         DYN_CALL_METH_PARAM_NOT_FOUND
    Except.                CX_SY_DYN_CALL_PARAM_NOT_FOUND
    Date and Time          2008.07.28 02:10:02
    Short text
         Formal parameter not found during dynamic method call.
    regards

    Hi,
    Parameter table in Method call is Basically used when call method Dynamically and pass the actual parameter dynamically.
    The error you have mentioned occured when the specified and actual parameter are different.
    Just follow the procedure and criteria for using parameter table in case of method call in this link.Hope you will get to know the reason for the runtime error.
    http://help.sap.com/saphelp_nw70/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm
    Regards,
    Sujit

  • Reg parameter filtering ./.

    Hi.
    This is ranganadh,
    i am generating very simple report, but under laying it has very huge table and lot of joins .. but i have a proper indexing to get results much faster ..
    i have taken new report, and given oracle command for data source, i wanted to make some fields are as a parameters to that report. let us take ..
    i have a query like ..
    select phoneno,contactno ... from contacts where phoneno =1000 some thing
    i wanted to make phone no as a parameter to the report, so that i removed where class for the phoneno=100 .. and put it in record selection formula ..
    but report is taking ages to run, i am thinking that report is trying to get all the data from query after on-words it is puting filter operations.
    is there any way some thing like, pass a report parameters as a query parameters to the database from Crystal report.
    some kind of feature is allredy there in SQL server reporting tools, just i want to know that is there any feature in crystal reports like that ..
    pls reply ASAP

    Hello,
    Quite ofen if CR can't directly generate the SQL with the WHERE clause it does mean all of the records will be returned to CR and on the second pass then the filtering is done.
    You can try checking on the options under the Report Options - Use Indexing or Server for Speed and Perform grouping on Server. If those don't fix the issue then your best bet would be to write a Stored Procedure with parameters and make the phoneno a SP parameter.
    This way all of the data collection is done server side which is much more efficient that passing the data to CR to filter. CR will then just get the final data set and will display the report very quickly.
    Thank you
    Don

  • Reg parameter options

    Hi Experts,
    Im executing a report program.Parameter option is provided for the User to enter/select the value from the search help.but the particular field dont have any help assigned to it.Is there any alternates to do this .?
    Thanks !

    Check this code...
    PARAMETERS:p_matnr TYPE mara-matnr.
    DATA:BEGIN OF itab OCCURS 0,
    matnr TYPE mara-matnr,
    END OF itab.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_matnr.
      SELECT * FROM mara INTO CORRESPONDING FIELDS OF TABLE itab
      UP to 10 rows.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield    = 'MATNR'
          dynpprog    = sy-repid
          dynpnr      = sy-dynnr
          dynprofield = 'P_MATNR'
          value_org   = 'S'
        TABLES
          value_tab   = itab.

  • Reg: Parameter ID

    Hi Friends,
        Is it possible to check the value of a Parameter ID in debug mode? System: 4.6C
    Regards,
    Nathan.

    Hi nathan,
    try this:
    DATA: PARA TYPE TPARA-PARAMID VALUE 'WRK',
          WRK(4).
    GET PARAMETER ID PARA FIELD WRK.
    IF SY-SUBRC <> 0.
      MESSAGE 'Parameter not found' TYPE 'I'.
    ELSE.
      WRITE: / WRK.
    ENDIF.
    Its from the Docu of get parametar id.
    Regards, Dieter
    regards, Dieter

  • How to edit registry using recovery console or dos

    Hello everybody!
    Due to some reason (virus) the value of  - "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon - Shell " was changed so I repaired it with Explorer.exe. But  due to some spelling mistake now I can log in in Win Xp. When the user log in screen appears and I choose the account its automatically logOff and return to the User Log in screen.
    Now I have to repair the spelling mistake in registry key.
    Please inform How can I do this. I can't log in so I can't use "Regedit". Can it is possible to edit the registry using recovery console?
    Thanks & regards
    nitin

    Step 1
    Type "cd %systemroot%/system32/" into the command prompt to go to the folder that contains the Registry Editor.
    Step 2
    Type "reg" into the command prompt to display a list of parameters and instructions on how to edit the system registry.
    Step 3
    Type "reg [parameter] /?", replacing "[parameter]" with one of the listed parameters, into the command prompt to list all available functions that can be used with that parameter.
    Step 4
    Type "reg [parameter] [function]" into the command line, but replace "[parameter]" with one of the listed parameters (query, add, delete, copy, etc.) and "[function]" with a function listed above, along with any additional options
    for each function. For example, to delete a registry key, type "reg delete [rootkey]\[keyname]", replacing the "[rootkey]\[keyname]" text with the location of the registry key.
    Step 5
    Save a registry key by typing "reg save [rootkey]\[keyname] [filename].hiv", where the "[rootkey]" and "[keyname]" text are the location and name of the registry file and "[filename]" is the name of the file to which
    you are saving the key.
    Step 6
    Restore a registry key by typing "reg restore [rootkey]\[keyname] [filename].hiv", where the "[rootkey]" and "[keyname]" text are the location and key name that you want to restore and "[filename]" is the name of the
    file containing the saved key.
    Step 7
    Import a "REG" file by typing "reg import [filename].reg". To export a registry key to a "REG" file, type "reg export [rootkey]\[keyname] [filename].hiv", where the "[rootkey]" and "[keyname]" text
    are the location and key name that you want to export and "[filename]" is the name of the "REG" file you are exporting.

  • Modbus address confusion

    In my application i have to talk to a servomotor encoder drive with modbus protocol. I've used modbus protocol programming before where i'm aware of the addresses of holding reg, control regs of range 30000 and 40000.
    For this particular drive they've not mentioned anyparameter in terms of holding reg parameter or control reg parameter and also the addresses are like the following.
    address
    00xx H    -   Monitor parameters
    01xx H    -   basic parameters
    02xx H    -   Extension parameters
    03xx H    -   Communication parameters
    04xx H    -   Diagnosis parameters
    my confusion is how do I translate these addresses 4 digit hex number to a 5digit address in the range 30000 and 40000. The manual of the hardware does not say anything about this
    Thanks...
    Pallavi

    it seems very simple q to ask..... it turned out all the regs are holding regs and the corresponding addresses were the decimal equivalent.
    01xx H = 256 + decimal
    Thanks...
    Pallavi

  • Reg the Al11 directory parameter FM

    I need a FM that takes the Directory parameter(DIR_LOCAL) in AL11 as import and File path(D:/test\data\path\) as output, please help me in this reg.

    Hi,
    U can use Tcode CG3Y for downloading the file from application server to file on presentation server.
    With Regards,
    Dwaraka.S

  • Reg: Need help to call a Stored Procedure - Out Parameter using DBAdapter

    HI
    I have created a procedure with Out Parameter, using DBAdapater i have invoked it. I have assigned the out parameter also. But while running i am getting this error.
    My Procedure is shown below. It executes successfully when its run in database.
    create or replace
    PROCEDURE SP_QUERY(s_string in varchar2, retCodeString out varchar2)
    AS
    l_sql_stmt varchar2(1000);
    BEGIN
    l_sql_stmt := s_string;
    EXECute immediate l_sql_stmt;
    commit;
    if SQLCODE = 0 then
    retCodeString := 'OK';
    end if;
    END;
    java.lang.Exception: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException:
    Client received SOAP Fault from server : Exception occured when binding was invoked.
    Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'ExecuteScript' failed due to:
    Stored procedure invocation error. Error while trying to prepare and execute the SOADEMO.SP_QUERY API.
    An error occurred while preparing and executing the SOADEMO.SP_QUERY API.
    Cause: java.sql.SQLException: ORA-06550: line 1, column 15:
    PLS-00904: insufficient privilege to access object SOADEMO.SP_QUERY ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored Check to ensure that the API is defined in the database and that the parameters match the signature of the API.
    This exception is considered not retriable, likely due to a modelling mistake.
    To classify it as retriable instead add property nonRetriableErrorCodes with value "-6550" to your deployment descriptor (i.e. weblogic-ra.xml).
    To auto retry a retriable fault set these composite.xml properties for this invoke: jca.retry.interval, jca.retry.count, and jca.retry.backoff.
    All properties are integers. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.
    at oracle.sysman.emas.model.wsmgt.WSTestModel.invokeOperation(WSTestModel.java:808) at oracle.sysman.emas.view.wsmgt.WSView.invokeOperation(WSView.java:384)
    Please help me in this issue.

    Hi
    Right now i geeting the below error
    java.lang.Exception: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: Client received SOAP Fault from server : oracle.fabric.common.FabricException:
    oracle.fabric.common.FabricInvocationException: java.lang.RuntimeException: java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist :
    java.lang.RuntimeException: java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist
    at oracle.sysman.emas.model.wsmgt.WSTestModel.invokeOperation(WSTestModel.java:808) at oracle.sysman.emas.view.wsmgt.WSView.invokeOperation(WSView.java:384)
    at oracle.sysman.emas.view.wsmgt.WSView.invokeOperation(WSView.java:301) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.
    invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at com.sun.el.parser.AstValue.invoke(Unknown Source)
    at com.sun.el.MethodExpressionImpl.invoke(Unknown Source) at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.
    invoke(MethodExpressionMethodBinding.java:53) at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1256)
    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.
    run(ContextSwitchingComponent.java:92) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96) at oracle.adf.view.rich.component.fragment.
    UIXInclude.broadcast(UIXInclude.java:102) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361) at oracle.adf.view.rich.component.
    fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96) at oracle.adf.view.rich.component.fragment.UIXInclude.
    broadcast(UIXInclude.java:96) at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475) at javax.faces.component.UIViewRoot.
    processApplication(UIViewRoot.java:756) at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:889) at
    oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:379) at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.
    execute(LifecycleImpl.java:194) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265) at weblogic.servlet.internal.
    StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.
    invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.sysman.emSDK.license.LicenseFilter.doFilter(LicenseFilter.java:101) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446) at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177) at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.emas.fwk.MASConnectionFilter.doFilter(MASConnectionFilter.java:41) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:179) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.eml.app.AuditServletFilter.doFilter(AuditServletFilter.java:179) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:203) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.core.model.targetauth.EMLangPrefFilter.doFilter(EMLangPrefFilter.java:158) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.core.app.perf.PerfFilter.doFilter(PerfFilter.java:141) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:542) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119) at java.security.AccessController.doPrivileged(Native Method) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442) at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103) at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171) at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209) at weblogic.work.ExecuteThread.run(ExecuteThread.java:178) Caused by: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: Client received SOAP Fault from server : oracle.fabric.common.FabricException: oracle.fabric.common.FabricInvocationException: java.lang.RuntimeException: java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist : java.lang.RuntimeException: java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist at oracle.sysman.emSDK.webservices.wsdlapi.dispatch.DispatchUtil.invoke(DispatchUtil.java:362) at oracle.sysman.emSDK.webservices.wsdlparser.OperationInfoImpl.invokeWithDispatch(OperationInfoImpl.java:1004) at oracle.sysman.emas.model.wsmgt.PortName.invokeOperation(PortName.java:750) at oracle.sysman.emas.model.wsmgt.WSTestModel.invokeOperation(WSTestModel.java:802) ... 79 more Caused by: oracle.j2ee.ws.client.jaxws.JRFSOAPFaultException: Client received SOAP Fault from server : oracle.fabric.common.FabricException: oracle.fabric.common.FabricInvocationException: java.lang.RuntimeException: java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist : java.lang.RuntimeException: java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist at oracle.j2ee.ws.client.jaxws.DispatchImpl.throwJAXWSSoapFaultException(DispatchImpl.java:1040) at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:826) at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.synchronousInvocationWithRetry(OracleDispatchImpl.java:235) at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.invoke(OracleDispatchImpl.java:106) at oracle.sysman.emSDK.webservices.wsdlapi.dispatch.DispatchUtil.invoke(DispatchUtil.java:358) ... 82 more

  • Reg: How to submit out of two parameter either one should mandatory.

    Hallo All,
    I have a requirement in concurrent program parameter submit following conditions.
    scenario:
    1. I have two parameters in which atleast either one should always pass. for this case concurrent parameter should allow to submit the pgm.
    2. If I missed out two marameters, Program should not allow to submit, there should pop-up message, "Please select item name or creation date parameter"
    Thanks in advance.
    Please guide me how to achive this scnario?
    Thanks,
    Velu.
    Edited by: user10348287 on Mar 12, 2012 2:53 AM

    Hi Anthony,
    Try to connect the table with the "save FM". This FM should only execute, if it contains a text (via formula). After saving it should call the FM for displaying the selected record of the table. For initializing you can call the FM for displaying directly (use a guard condition).
    Best Regards,
    Marcel

  • Reg: passing wdEvent as a parameter .

    Hi All,
    I have a event handler method in my view. I am calling that method in some other method in the same view based on one condition by passing wdEvent as a parameter bcozz event handler methods have wdEvent as a parameter.
    for this I did
    com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent1 = null;
    wdThis.from_Summary_to_Individual( wdEvent1 );
    Can we do like this ? But it is giving error. What could be the reason.
    Is it bcozz I set it to null or other reason?
    Thanks in advance.

    Hi,
    Do you really need this parameter wdEvent for you processing?
    If not create a custom method and call if from both the places.
    You can create this method from the methods tab of the view.
    Regards
    Ayyapparaj

  • Reg:BAPI for updation of Progress parameter and status profile

    Hi,
    Can anybody suggest name of BAPI used for updating "progress parameter" & "Status Profile" in actvity.
    With Regards
    Rohit Prakash

    Hi Ammar,
    I have checked both BAPI but BAPI are not working as per our requirement.
    Firstly we wanted to update progress parameter like measurement method(progress version,method plan,method actual) & POC weight into activity but as per BAPI given by you there is no any field available related to measurement method(progress version,method plan,method actual).
    And secondly we wanted to update status profile residing in Activity tab not in network header or WBS.
    Waiting for some more input related to  query.
    With Regards
    Rohit Prakash

  • Reg..csv file as input parameter in sqlloader

    Hi,
    I have .ctl file. every time i received the file name in diff name.
    rather than hardcode file name i wants to take .csv file as input parameter plesase do help in this.
    here is the code..
    OPTIONS (SKIP = 1, BINDSIZE=100000)
    LOAD DATA
    CHARACTERSET WE8ISO8859P1
    INFILE '/WOAU1/bkp/pgp_masterkey.csv'
    BADFILE '/WOAU1/bkp/pgp_masterkey.bad'
    DISCARDFILE '/WOAU1/bkp/pgp_masterkey.dsc'
    Thanks
    Atul

    A better alternative would be to avoid using SQL*Loader and instead use External Tables for which you can use an ALTER TABLE statement to change the LOCATION of the table (which details the filename). (A valid reason for using EXECUTE IMMEDIATE in PL/SQL). That way you keep all your control inside the database and you're not messing about with o/s scripts to pass different parameters to an external program.

  • Parameter readings entry on day to to day basis in EHS -reg

    Hi,
    Requirement is to enter the parameter readings which are taken at ETP -effluent treatment plants in to SAP -EHS module
    Parameters which affect the environment like TDS, Caco3 %, Mgco3% in the effluent before treatment and after treatment etc.. are measured on day to day basis and to be entered in SAP to track , analyse and for other MIS reports
    parameter readings are taken at different locations like effluent treatment plants, solvent  treatment plants , paint shops etc...
    is there any provision in SAP-EHS module for this ?
    please suggest
    regards,
    Madhu Kiran

    Hello Madhu / Pavan,
    This is what I can say
    1)Requirement is to enter the parameter readings which are taken at ETP -effluent treatment plants in to SAP -EHS module Using Environmental Compliance Material Management option, you can create Input and Output characteristics
    Using Task Management  - You can trigger tasks for ETP Analyst to mannually feed the data into analysis. Day today analysis data can be easily stored. 
    2) Parameters which affect the environment like TDS, Caco3 %, Mgco3% in the effluent before treatment and after treatment etc.. are measured on day to day basis and to be entered in SAP to track , analyse and for other MIS reports
    Effluent parameters like pH, TDS, VOC, BOD, Alkalinity u2013 before and after treatment is carried out to assess the treatment, check against CPCB / SPCB requirements, identifying deviations if any, and propose tasks to correct the error and prepare regulatory or Exception reports. In EC it is possible to set up.
    3) Parameter readings are taken at different locations like effluent treatment plants, solvent treatment plants , paint shops etc.
    In Environmental Compliance u2013 we define Facility Structure replicating the facility and its sub structures, processes, activities, control devices etc. It is possible to capture data at each location and store them for assessment or analysis. 
    4)The solution Jaya has proposed may hold true for the parameters being captured with "online analyzers" (JayaKumar, Please correct me if I am wrong). With SAP EC solution, you can directly integrate your field's real time sensors with data historians.
    No Pavan, Environmental Compliance can also capture manuall entries. 
    SAP EH&S Measurement Project u2013 it is basically for Workarea / Risk Assessment. There is difference between Measurement Management and Compliance / Permit Management. If you are capturing the data for Permit or Compliance perspective and to generate Regulatory reporting  against set Permit values (Wastewater  Water Quality / Air Quality Standards), then Environmental Compliance is the best pick.
    Thanks
    Jayakumar

Maybe you are looking for

  • Problem in popup that appear when mouse is rested on a ribbon control.

    I have developed a Word Application level Add-in for providing some DTP facilities specific to my native language. In Word 2010 when the mouse is rested over a ribbon button then a popup appear with description about the button and prompt to press F1

  • Stuck sleep/wake button

    Hi everyone. I have an iPod for almost 6 months and in its second month I cracked its screen. But it was a really small crack, it didn't even bother me in. It was only there on the right bottom side and I was happy with it. Last week when I was chang

  • Shift keys are not working

    I just bought this Slatebook and after a week of having it the shift keys stopped working. Not sure if its somthing in the settings, or the key is broken. If anyone knows PLEASE HELP  Spoiler (Highlight to read) This question was solved. View Solutio

  • Previously downloaded apps in the app store are not downloadable any more

    I had deleted apps on my iPad2 and now I'm trying to re-download them again from the Apps store, but these apps are dimmed in color, which indicates that I'm unable to download them any more. (The cloud is grayed out). Can anyone help?

  • Am i able to get adobe kuler on my mac desktop?

    Hi there, I was just wondering if there was a way to access adobe kuler (or color cc) as a download for my mac desktop so I don't have to be online to use it? Thanks!