Reg: F4 help

i tried to create f4 help using the following code.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_MBLNR-LOW.
     SELECT MBLNR MJAHR BWART WERKS FROM MSEG
                                   INTO TABLE IMSEG
                                   WHERE MJAHR = p_docyr
                                   AND   WERKS = P_WERKS.
   CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
     EXPORTING
      DDIC_STRUCTURE         = 'MBLNR'
       RETFIELD               = 'S_MBLNR-LOW'
     PVALKEY                = ' '
     DYNPPROG               = ' '
     DYNPNR                 = ' '
     DYNPROFIELD            = ' '
     STEPL                  = 0
     WINDOW_TITLE           =
     VALUE                  = ' '
     VALUE_ORG              = 'C'
     MULTIPLE_CHOICE        = ' '
     DISPLAY                = ' '
      CALLBACK_PROGRAM       = 'ZAMM019E '
     CALLBACK_FORM          = ' '
     MARK_TAB               =
   IMPORTING
     USER_RESET             =
     TABLES
       VALUE_TAB              = IMSEG
     FIELD_TAB              =
     RETURN_TAB             =
     DYNPFLD_MAPPING        =
    EXCEPTIONS
      PARAMETER_ERROR        = 1
      NO_VALUES_FOUND        = 2
      OTHERS                 = 3
    but i am not getting f4 help.
please give me solution this is urgent

i tried to create f4 help using the following code.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_MBLNR-LOW.
     SELECT MBLNR MJAHR BWART WERKS FROM MSEG
                                   INTO TABLE IMSEG
                                   WHERE MJAHR = p_docyr
                                   AND   WERKS = P_WERKS.
   CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
     EXPORTING
      DDIC_STRUCTURE         = 'MBLNR'
       RETFIELD               = 'S_MBLNR-LOW'
     PVALKEY                = ' '
     DYNPPROG               = ' '
     DYNPNR                 = ' '
     DYNPROFIELD            = ' '
     STEPL                  = 0
     WINDOW_TITLE           =
     VALUE                  = ' '
     VALUE_ORG              = 'C'
     MULTIPLE_CHOICE        = ' '
     DISPLAY                = ' '
      CALLBACK_PROGRAM       = 'ZAMM019E '
     CALLBACK_FORM          = ' '
     MARK_TAB               =
   IMPORTING
     USER_RESET             =
     TABLES
       VALUE_TAB              = IMSEG
     FIELD_TAB              =
     RETURN_TAB             =
     DYNPFLD_MAPPING        =
    EXCEPTIONS
      PARAMETER_ERROR        = 1
      NO_VALUES_FOUND        = 2
      OTHERS                 = 3
    but i am not getting f4 help.
please give me solution this is urgent

Similar Messages

  • Reg exp help

    Hi
    I want to extract the first token of filename (and not the directory path) from a string like this:
    D:\MIRACLE\UPLOADS\1361\HG-ORA02#xaldb#alertlog_contents#22022010111941.mirdf.loadfailed_240210095258_62
    HG-ORA02#xaldb#alertlog_contents#22022010111941.mirdf.loadfailed_240210095258_62
    \HG-ORA02#xaldb#alertlog_contents#22022010111941.mirdf.loadfailed_240210095258_62
    /HG-ORA02#xaldb#alertlog_contents#22022010111941.mirdf.loadfailed_240210095258_62
    the tokens would bed HG-ORA02 in all instances
    Could you help me creating a reg expression to get the token?
    best regards
    Mette

    Hi,
    Whenever you have a problem, it helps if you post your sample data in a form people can use.
    CREATE TABLE and INSERT statements are great; so is:
    CREATE TABLE     table_x
    AS          select 'D:\MIRACLE\UPLOADS\1361\HG-ORA02#xaldb#alertlog_contents#22022010111941.mirdf.loadfailed_240210095258_62'
                   AS filename, 1 as x_id FROM dual
    UNION ALL     SELECT 'HG-ORA02#xaldb#alertlog_contents#22022010111941.mirdf.loadfailed_240210095258_62'
                   AS filename, 2 as x_id FROM dual
    UNION ALL     SELECT '\HG-ORA02#xaldb#alertlog_contents#22022010111941.mirdf.loadfailed_240210095258_62'
                   AS filename, 3 as x_id FROM dual
    UNION ALL     SELECT '/HG-ORA02#xaldb#alertlog_contents#22022010111941.mirdf.loadfailed_240210095258_62'
                   AS filename, 4 as x_id FROM dual
    ;It also helps if you explain how you get the results you want from that data.
    Assuming that
    (a) the filename is divided, first, by '/' or '\' characters, and
    (b) each of those parts may be divided into tokens by '.' or '#' characters, and that
    (c) we want the first (b) part of the last (a) part:
    SELECT     REGEXP_SUBSTR ( REGEXP_SUBSTR ( filename
                              , '[^/\]*$'
                    , '[^.#]+'
                    ) AS token_1
    FROM     table_x;Here, the inner REGEXP_SUBSTR finds the last part delimited by / or \. You can add other delimiters by putting them in the square brakets, anywhere after ^.
    The outer REGEXP_SUBSTR operates on the results of the inner one. It returns the first part delimited by . or #. Again, you can add other delimiters.

  • Reg expression help

    Can/will you help me make a regular expression for these characters? I want to replace eveyone occurance in a string contianing these chars
    \/:*"<>|
    with
    right now I am doing a string.replaceAll(...) on each char but I was wanting to combine that to one reg expression. What cha got? I am doing this b/c I am generating file names and those are not valid chars allowed in file names.
    Thanks
    Doopterus

      String regex = "[*<>/'\"\\\\]";In a character class (i.e., between the square brackets), "|" has no special meaning.

  • Reg : F4 help for custom fields in ALV report

    hi friends..
    in my internal table i have fields including 1 custom field..
    DATA : BEGIN OF i_final OCCURS 0,
      pernr LIKE p0000-pernr,
      begda LIKE p0000-begda,
      plans LIKE ZPOSITION-plans,  (custom)
      werks LIKE pspar-werks,
      end of i_final.
    i want to display this i_final table in alv. for that i genetrate one fieldcatalog
    PERFORM fcat USING:
                      'I_FINAL' 'PERNR' 'P0000' 'PERNR' '15' 'X' '',
                      'I_FINAL' 'BEGDA' 'P0000' 'BEGDA' '10' 'X' '',
                      'I_FINAL' 'PLANS' 'ZPOSITION' 'PLANS' '8' 'X' '',
                      'I_FINAL' 'WERKS' 'PSPAR' 'WERKS' '14' 'X' ''.
    in custom table zposition, i maintain serch help for custom field "PLANS".
    then i used reuse_alv_grid_display.. for all the std fields along wit custom fields
    i got f4 all std fields but for my custom i am not getting the f4 help
    how can i get the F$ help for this custom fields Zposition-plans..
    plz give some idea

    Hi
    In that Ztable against the field
    PLANS give the check table name as  <b>T528B</b>
    then it will automatically give the search help
    or you can create your own search help(elementary) and add to that field
    Reward if useful
    regards
    Anji

  • 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: F4 help on the selection screen

    Hi,
    My requirement is that I want to get the set of  values which i want on the f4 help of the field. But not the default search help which comes.
    Similar to getting f4 help in ABAP by using the function module F4IF_INT_TABLE_VALUE_REQUEST'.
    please help me in the regard.
    Thanks,
    Khan.

    You will need to use either OVS or Freely Programmed Help

  • Reg : F4 help in disable mode

    hi,
    I have a input field for which search help is assigned.
    its working fine.
    Now, my req is : I want this field to be in  display mode.when the user presses F4 he should get a list of values...when he selects any value ...that should be selected in to the input field.
    Same like code wizard...when user presses F4 ..he gets all the nodes and attributes...and he selct some node.....that will be selected in that input field .
    any ideas plz
    Regards
    arjun

    Hi Arjun,
    Refer to the comments of Abhimanyu in this thread: https://forums.sdn.sap.com/click.jspa?searchID=25610796&messageID=5830508
    I hope it helps.
    Regards
    Arjun

  • Reg : F4 help in webdynpro

    Hi,
    Am developing Webdynpro Application to Connect R/3 by using Bapi's.
    My question is :
    Is it possible to bring field contents(f4 help contents) in webdynpro ?.
    Thankyou,
    Ramganesh.

    Hi Ramganesh,
    Depends what exactly you require in the value help. If all you need is a simple input field with value help in key-value format, you can make use of the EVS searchhelp. You get the output of the Bapi and fill the valueset. You can use it for input fields and dropdowns. Please see link below
    http://help.sap.com/saphelp_nw04/helpdata/en/95/93fe1e71a2e44691b1f041e67f71aa/frameset.htm
    if you use EVS, you have to insert code that looks like this in your init method of the view.
    IWDAttributeInfo attributeInfo =
                   wdContext.nodeYourNode().getNodeInfo().getAttribute(
                        yourView.IYourNodeElement.YOUR_FIELD);
              ISimpleTypeModifiable fieldType =
                   attributeInfo.getModifiableSimpleType();
              IModifiableSimpleValueSet valueSet =
                   fieldType.getSVServices().getModifiableSimpleValueSet();
              for (int i = 0; i < wdContext.nodeYourBAPIOutputNode().size(); i++) {
                   wdContext.nodeYourBAPIOutputNode().setLeadSelection(i);
                   valueSet.put(
                        wdContext.currentBAPIOutputNodeElement().getKey(),
                        wdContext.currentBAPIOutputNodeElement().getValue());
    If you need to filter the search criteria before you display values, and need multiple columns in the search, you can use the OVS search helps. This is slightly complicated than the EVS because you have to implement the OVS custom controller etc. But once you have done it, it works beautifully..Have a look at the link below for OVS
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/tutorial%20on%20advanced%20value%20help%20and%20object%20value%20selector%20-%209.htm
    Hope that helps,
    Regards,
    L Menon

  • Reg.Please help anyone

    Dear All
    Please consider my below problem and give the solution.When try to create Purchase order in ME21N(IDES) the following error occured.
    Dear All
    I try to create one Purchase order in our IDES system after entered the sale order the following error occured.
    "SDI 180000087/1 is not assigned to a business area.
    Message no. KI167
    Diagnosis
    Account assignment object 180000087/1, type SDI, is not assigned to any business area, although business area balances for company code TEST are to be generated.
    System Response
    In these company codes, all CO account assignment objects must be assigned to a business area.
    Procedure
    Assign SDI 180000087/1 to a business area."
    I donn't know where to assign. Very urgent
    Please help.
    Thanks
    Rajakumar

    Dear Sir
    As per your advise I deactived the business area,after that a new error occured
    "G/L account 221002 cannot be used (please correct)
    Message no. ME045
    Diagnosis
    Comparison of the field selection strings from the G/L account 221002 and the account assignment category E reveals that there is an incompatible combination of field selections for the field selection group 'Sales order'.
    The G/L account field selection is stored in table T004F; that for the account assignment is stored in table T162K.
    Procedure
    Please enter a correct G/L account."
                               How to solve this problem
    I used the Tcode OMSK,OMWM,OMWN,OMWD and OMWB
    But now working the G/L account,that is not assigned automatically in the G/l acct field if I enter the plant and storage location.
    Thanks
    Rajakumar

  • Reg : Value Help in interactive forms

    Hi,
         I am trying to fill the ValueHelp drop down list Ui Element in the interactive form design. I am able to get the value in the dropdownbykey UI element of the view but i couldn't get it in the Interactive form. Could anyone please help me to solve it.
    Thanks,
    Mugu

    Hi Mugunda,
    I am krishna Balaji(Pollachi).I am also working in Web dynpro java.
    In which area in SAP are you working.

  • Reg : Search Help Exit

    Hi Experts,
    I have some values in record_tab string .Need to display them in order ..needed help .
    loop at lt_gril_a01.
          record_tab-string+33(10)  = lt_gril_a01-gril_type.
          record_tab-string+43(10)  = lt_gril_a01-gril_stat.
          record_tab-string+55(140) = lt_gril_a01-gril_desc.
          record_tab-string+53(1)   = 'A'.
          append record_tab.
        endloop.
    now i need to display the same in f4 help how to do that ?
    regards,
    Vishnu

    Use the following code according to ur requirement-----
    SELECTION-SCREEN BEGIN OF BLOCK A WITH FRAME TITLE TEXT-000.
    SELECTION-SCREEN BEGIN OF BLOCK A1 WITH FRAME TITLE TEXT-001 .
    SELECT-OPTIONS : CODE FOR QASE-CODE1.
    SELECTION-SCREEN END OF BLOCK A1.
    SELECTION-SCREEN END OF BLOCK A.
    DATA: BEGIN OF INTTAB OCCURS 10,
    CODE LIKE QPCT-CODE,
    KURZTEXT LIKE QPCT-KURZTEXT,
    END OF INTTAB.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR CODE-LOW.
    SELECT CODE KURZTEXT FROM QPCT INTO TABLE INTTAB WHERE CODEGRUPPE = 'QCREMARK'.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    RETFIELD = 'CODE'
    DYNPPROG = SY-CPROG
    DYNPNR = SY-DYNNR
    DYNPROFIELD = 'CODE-LOW'
    WINDOW_TITLE = 'Select Quality Remark Code'
    VALUE_ORG = 'S'
    TABLES
    VALUE_TAB = inttab
    EXCEPTIONS
    PARAMETER_ERROR = 1
    NO_VALUES_FOUND = 2
    OTHERS = 3.

  • Help reg Search Helps

    Hi All,
    On selection screen I have two fields Plant & storage location.
    If I enter Plant =0100 and click on storage location (F4) values,only Sloc pertaining to that plant should come and not all Sloc's.
    Thanks !!
    Manjunath

    Hi,
    Check the below link
    Re: Search help with 3 return values
    in place of the variable (CARRID CONNID FLDATE ) take WERKS and LGORT and fetch the data from MARD table
    alternatively you can use DYNP_VALUES_READ in F4 module of STORAGE LOCATION and capture the value entered in the first field and can continue.
    Hope this serve your Issue.
    Cheerz
    Ram

  • Reg: F1 Help modification

    Hi Friends,
    I need to change the F1 Help content for a field.
    Please let me know how it can be done.
    Helpful answers will be definitely rewarded.
    With Thanks and Regards
    Ravishankar Vembu.

    Hi,
    check note <a href="https://service.sap.com/sap/support/notes/520295">520295</a>.
    Peter
    Points always appreciated

  • Reg: Plz Help me.. Not Getting output

    Hi all,
    I created a rdf using oracle 10g report for below query
    SELECT EMPNO,ENAME,DEPTNO,SAL,MGR FROM EMP
    I Registered above created rdf in oracle apps with output format as xml
    when i ran the report using concurrent request, i am getting below output.
    <G_EMP>
    * <EMPLOYEE>*
    * <EMPNO>1</EMPNO>*
    * <ENAME>ALEX</ENAME>*
    * </EMPLOYEE>*
    * <EMPLOYEE>*
    * <EMPNO>2</EMPNO>*
    * <ENAME>RAGHU</ENAME>*
    * </EMPLOYEE>*
    <EMPLOYEE>
    * <EMPNO>3</EMPNO>*
    * <ENAME>GURU</ENAME>*
    * </EMPLOYEE>*
    * </G_EMP>*
    NOTE:
    I am not getting for rest of column in above query (ie. DEPTNO,SAL,MGR) but when i ran that rdf in oracle 10g report all column in above query are displaying..
    How to resolve this. Its urgent .. Plz help me.

    Hi,
    Please refer to this thread and see if it helps.
    XML report disply XML code instead of report out put
    XML report disply XML code instead of report out put.
    Regards,
    Hussein

  • Reg Exp help needed (trouble with line breaks)

    Hello,
    I am attempting to parse a line of text with regular expressions. I am having difficulty with the line breaks.
    I want to divide the following line by the first '\n' char.
    For instance, I wan the output to be as follows:
    found 1: one
    found 2: ddd
    dddHowever, I get the following with my attached code:
    found 1: one
    found 2: dddHowever, the second line break seems to be the end of the second group.
    How do I get the any character '.' to read past any subsequent line breaks?
    import java.util.regex.*;
    public class Test
         String rawSequenceArg = ">one\nddd\nddd";     
           Pattern p = Pattern.compile(">([^\n]+)\n(.+)");
           Matcher m = p.matcher(rawSequenceArg);
           if(m.find())
                System.out.println("found 1: " + m.group(1));
                System.out.println("found 2: " + m.group(2));
    }

    In this case, the DOTALL flag is the one you need; it allows the dot (period, full stop) to match line separator characters. MULTILINE makes the '^' and '$' anchors match the beginning and end of logical lines, instead of just the beginning and end of the input.

Maybe you are looking for

  • ViewObject (Date column) works fine in 9.0.3 but causes errors in 9.0.5

    Good Morning, I have generated entity/view objects, from the same table, for JDev9.0.3 and JDev9.0.5. The application runs fine under JDev9.0.3. When I drag/drop a view onto the design panel within 9.0.5 and run its associated dataAction two unexpect

  • Generating pdf report via concurrent manager and xml publisher

    I have report (rdf) which works fine in eBusiness Suite but I’d like to create translatable reports with reach layout (comparing with the Report Builder) based on the functionalities of the XML publisher. I’ve made all necessary steps (first change t

  • Legend Text Wrapping

    Is it possible to wrap the legend text for a combination chart? I am placing the legend at the bottom of the chart and have long series names that scroll out of the object box.

  • I have an unresolved problem with unresponsive scripts despite the ed-meister's kind help

    on approx.dec.10,the ed_meister emailed me answer 122359 and i took his advice and registered at informaction(noscript)forum.they were supposed ti email me a key to complete the registration but they never did so i subsequently uninstalled noscript.h

  • Linking Report Designer pdf to iview

    Hi, I have created several pdf reports using the bex report designer in BI Bex tools. I now wish to link these reports to iview in the portal side. I have succesfully linked queries using this string infocube=ZMFITVC01&query=Z_TRIP_MILEAGE_REPORT I h