Infoset Query- F4 help missing for few selection fields

Dear Experts,
While creating Infoset/ Quick view queries, I find few fields of the selection screen are not having F4 help.
How this happens and How to correct this?
Regards
Jogeswara Rao

Jogeswara Rao,
In case when the reference table field doesn't contain a match code / Search help,You should be assign Match code object to the selection field while defining the same. When you define the selection criteria in the info sets, use the "Extras" field there to assign a specific match code for the work center object . (In your case MATCHCODE OBJECT CRAM. CRAM is the search help for work center field).
Regards
Narasimhan

Similar Messages

  • In a query, for the selection field 'KNB1-ZWELS' a match-code isn't availab

    Hi All,
    Creating a query, for the selection field 'KNB1-ZWELS' a match-code isn't available.
    Could anyone tell me the reason?
    Thanks
    Gandalf

    Hi,
    Match Code Object is not available for the field ZWELS. If required, You need to contact a Developer for creating one .

  • Foreign key cannot be created for the selected field A907-MWSKZ

    Dear Guru's,
    I am having the requirement for creation of access sequence having country/Plant/vendor/tax code but during creation of condition table i am getting the error as
    Foreign key cannot be created for the selected field A907-MWSKZ.
    Anything i am missing please let me know.
    Regards,
    Umesh

    Hi Umesh,
    Actually i am also facing exactly the same problem as mentioned by you that is "Foreign key cannot be created for the selected field A769-MWSKZ ".
    I think you found some solution regarding this..can you please help me to solve it.
    Looking forward for your prompt reply..
    Thanks & Regards,
    Sandeep Sharma

  • Infoset Query is not available for generic Extractor

    Hi,
    I've created an infoset in SAP ECC with sq02. Then I've created an Infoset Query on top of this Infoset, because I wanted to exclude records with specific values. Now I want to use this Infoset Query (with the filter restrictions) in my generic DataSource. I can only chosse the Infoset, but not the InfoSet Query. Normally I use the filter in the InfoPackage, but neither IP nor DTP can exclude values with a pattern (f.e. exclude all record that contains a $ symbol in the string)
    Any suggestions?
    Thanks and regards,
    Sebastian

    I agree with Jen, that BW side routines would work just fine.
    If it is extractor performance you are worried about and that is why you want to build the $ exclusion in the select, then I would suggest just creating an extractor from scratch using a custom written function module.  It's actually very strait forward and provides many advantages over table/view/InfoSet based generic extractors.
    I am not a fan of using InfoSets for generic extractors.. but you can create InfoSets based on a data read program in which case you code all the selects and whatnot.  But if you go that far with the InfoSet, why not just write the FM...
    Thanks

  • ESS - Create Expense Report Link is missing for few users

    Hi,
    We are on ECC 6.0 Ehp 3 with EP 7.0.
    We are using the ESS and in that Standard SAP provided Travel and Expenses Module.
    For few of the users, the Create Expense Report  link is missing eventhough the user is assigned with the  Traveller Role
    SAP_FI_TV_TRAVELER
    Request you to let me know if any setting needs to be done in the back end/infotype to make the Create Expense Report link visible in the portal.
    Appreciate your help.
    Thanks and Regards,
    Sekar

    Hello, 
    Same happened on our side.  User is already set with the proper roles, with the correct info types but when logging in the Portal- she, too, could not view the link for Create Expense Report (which is supposed to Create an expense report for a trip without a travel plan).
    When i use my userid, and just switch personnel number to her number, I could create an expense report on her behalf. 
    That made me conclude that her traveller roles are fine.
    Pls help.

  • After upgrade from 4.6c to ECC6.0 F4 Help is not coming for few date fields

    Hi Friends
    Just now we have completed upgrade project from 4.6c to ECC6.0.
    After upgrade F4 help is not working for some date fields.
    For example its working in MB11,Its not working in va01,vf01 like that.
    In abap side we checked ...not able to find any issues in coding level, because its a standard SAP code.
    So if any solution is there to correct this issue.Kindly help me to resolve this asap.
    Thanks
    Gowrishankar
    Edited by: gowrishankar p on Nov 17, 2009 7:25 AM

    Hi
        Please refer to the SAP note 1278056 and 1278115 - PDS Display: F4-characteristic values are not selectable.  Hope this will resolve your issue.
    Regards,
    JB

  • F4 HELP FOR ONLY SELECTED FIELD VALUES

    Hi,
    I have to display the F4 help for the selection screen field parameter. From the ICON table, I need to display the field ID values. In the ICON table, I have lot of field values for the field ID, but I need to display only 3 field values into F4 help.(like say @07@, @08@, @0A@ only at the F4 help).
    Thanks in advance.
    Regards
    Ramesh mavilla.

    Hi,
    See the follwoing code example
    REFRESH: I_DYNPREAD .
    CLEAR : I_DYNPREAD .
    I_DYNPREAD-FIELDNAME = 'P_KAPPL'.
    APPEND I_DYNPREAD.
    CLEAR I_DYNPREAD.
    L_REPID = SY-REPID .
    L_DYNNR = '1000' .
    CALL FUNCTION 'DYNP_VALUES_READ'
    EXPORTING
    DYNAME = L_REPID
    DYNUMB = L_DYNNR
    TABLES
    DYNPFIELDS = I_DYNPREAD.
    IF SY-SUBRC EQ 0.
    READ TABLE I_DYNPREAD INDEX 1.
    P_KAPPL = I_DYNPREAD-FIELDVALUE.
    ENDIF.
    REFRESH: I_DYNPREAD .
    CLEAR : I_DYNPREAD .
    REFRESH: I_KSCHL.
    TRANSLATE P_KAPPL TO UPPER CASE.
    TRANSLATE P_KVEWE TO UPPER CASE.
    SELECT KAPPL KVEWE KSCHL VTEXT FROM T685T
    INTO CORRESPONDING FIELDS OF TABLE I_KSCHL
    WHERE KAPPL = P_KAPPL
    AND KVEWE = P_KVEWE
    AND SPRAS = 'EN'.
    IF SY-SUBRC <> 0.
    MESSAGE E001(ZZ) WITH 'No Condition Type exist for Application'.
    *p_kappl ' and Usage' p_kvewe.
    ELSE.
    REFRESH: I_FIELDS.
    I_FIELDS-TABNAME = 'T685T'.
    I_FIELDS-FIELDNAME = 'KAPPL'.
    I_FIELDS-SELECTFLAG = ''.
    APPEND I_FIELDS.
    I_FIELDS-TABNAME = 'T685T'.
    I_FIELDS-FIELDNAME = 'KVEWE'.
    I_FIELDS-SELECTFLAG = ''.
    APPEND I_FIELDS.
    I_FIELDS-TABNAME = 'T685T'.
    I_FIELDS-FIELDNAME = 'KSCHL'.
    I_FIELDS-SELECTFLAG = 'X'.
    APPEND I_FIELDS.
    I_FIELDS-TABNAME = 'T685T'.
    I_FIELDS-FIELDNAME = 'VTEXT'.
    I_FIELDS-SELECTFLAG = ' '.
    APPEND I_FIELDS.
    CLEAR: V_SEL.
    CALL FUNCTION 'HELP_VALUES_GET_NO_DD_NAME'
    EXPORTING
    CUCOL = 0
    CUROW = 0
    DISPLAY = ' '
    SELECTFIELD = 'KSCHL'
    TITEL = 'Cond Type'
    IMPORTING
    IND =
    SELECT_VALUE = V_SEL
    TABLES
    FIELDS = I_FIELDS
    FULL_TABLE = I_KSCHL
    IF SY-SUBRC = 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDIF. "SY-SUBRC.
    And also go throw the link which it clears more about F4
    Check the link below for creating collective search help
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee86446011d189700000e8322d00/content.htm
    Check the ink below for creating elementary search help
    http://help.sap.com/saphelp_erp2005/helpdata/en/cf/21ee5f446011d189700000e8322d00/content.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/3d/e53642e2a3ab04e10000000a1550b0/content.htm
    <b>Reward with points if helpful.</b>
    Regards,
    Vijay

  • Why the ipad ranking is missing for few days in some itunes stores ?

    Are you aware of some modification in the itunes store concerning ipad ? As I am spending marketing money to promote ipad app. I need this ranking.
    Thanks for your help.

    Thanks for your help! Yes, they are available but in the German iTunes Store only. Some older songs are available even in the US iTunes Store, but not the new songs from those German artists mentioned above.
    I cannot provide a German billing/paying info because I live in California. I would like to switch over to the German iTunes store to buy the albums available there, however, I do have a German iTunes Card but you still need to provide a valid card (visa,master card etc) to purchase songs from the German iTunes Store (I wish the German iTunes gift card itself  would be enough, this would make everything easy for many people).
    Please help me out and do I need to create a new Apple ID associated ONLY with the German iTunes Store?
    Thanks,
    shindymagjeder

  • Access Help missing for T420, X220 and W520

    I do install Access Help files for my workstations (e.g. T410 Access Help).
    Now I want those online help files also for the T420, X220 and W520 but they seems to be not available or moved/renamed ?
    Does someone know where I can find those Access help files ?

    Access Help application - User's Guide information
    Note: A User's Guide is not included with newer ThinkPad systems, therefore it is also not available in PDF or hardcopy format.
    Found there: http://support.lenovo.com/en_US/diagnose-and-fix/diagnose-by-symptom/detail.page?&LegacyDocID=MIGR-5...
    Productivity Center: http://support.lenovo.com/en_US/downloads/detail.page?&LegacyDocID=MIGR-61378
    My home-forum: http://www.thinkpad-forum.de
    Wiki: Deutsches ThinkPad-Wiki English ThinkWiki
    My ThinkPad-Collection

  • Additional fields in infoset query can not be used as datasource fields

    I create one infoset query with additional fields (using ABAP code) in R/3. When I create datasource RSO2 using this infoset query, system only show all fields without additional fields that I enhanced in infoset query. Does that mean we can not get additional fields information in generic datasource creation that we enhanced in infoset query?

    dear Awa,
       you are enhanced some fields in r/3.right that fields are  shown in
    rsa6 select your data source click on display your datasource then select
    extract structure its shows how many fields are haveing particular
    datasource .or otherwise goto rso2 select your data source display
    double click on  your extractstructure  its show how many fields haveing
    the particular datasource. check the Rsa6 what ever fields you newly added that field default hide mode
    you remove the hide tickmark.

  • SAP Query; change the name of the selection fields

    Hi,
    I created a SAP query using SQ01. When I execute the report, the selection field are the names of the table fields. As an example, I would like to change the selection field name «Customer number 1» for «Customer number». How can I change this selection field name in a SAP Query?
    Thanks,
    Julien

    Check Page Number 8 of this below mentioned document
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/40bec8da-4cd8-2910-27a9-81f5ce10676c

  • F4 help values for currency key field in table

    Hi all,
    I have added currency and currency key fields in my Z table. For the curreny key field, i have assigned the standard data element WAERS. I have implemented Table Maintenance Generator for my table. But the F4 help values for the currency key field is not appearing when i tried to maintain table entry.
    Should i need to check the Foreign key check box for the field attribute? But this check box is in disable field in screen layout.
    Could someone tell me how to solve this issue?

    Hi,
    Make the check table of the currency field of your Ztable as TCURC,which is the master table of Currency.Inside the domain of the field you write the TCURC as a value table.and make foriegn key relationship with the TCURC table.
    Regards,
    Suvajit.

  • Help missing for PS CS2 on Vista

    I installed both Premiere Pro 2.0 and Photoshop CS2 on Vista. The Help files are available for Premiere Pro 2.0 but not available for Photoshop CS2. Tried all steps outlined in Adobe TechNote 319210 for cases when Help Center content is missing. However, none of these steps solved the problem. Help for Photoshop CS2 is still not listed in Help Center.
    Thanks for any tips or directions on getting Help to work for Photoshop CS2 running on Vista.

    Thanks for the replies. Tried the following, as suggested, but no success.
    1) Looked in C:\Program Files\Common Files\Adobe\Help\en_US\ but no Photoshop or Premiere folder. There was an Adobe Reader folder with the Help.html however.
    2) Went to FAQs and followed steps provided in post there. Cleared the Help Preferences, then deleted the Cache, Database, Preferences, and Search folders under ...\AdobeHelpData\. Left the Packages folder with the Photoshop_9.0_en-us.zip and PremierePro_2.0_en-us.zip files, then double clicked the ahc.exe file. Help Center appeared but no indication that rebuilding was taking place, and the Help Center content was empty (not even Premiere Pro). I looked at the directory structure under ...\AdobeHelpData\ and Help Center did rebuild the folders previously deleted.
    Restored folders under ..\AdobeHelpData\ to original status and executed Help Center again. As expected, Premiere Pro appeared in the content but not Photoshop CS2.
    The product version of Help Center I am using on Vista is 2.1.212002.0.
    Tried to reinstall Help Center (using download from Adobe), but installation was aborted. The error mesg only said that a problem occurred, but gave no details.
    I do not think this is a Vista problem since Help Center works fine with Premiere Pro 2.0. However, not sure.
    Is there anything else I can try?

  • F4 Help for standard selection field of tcode F-02 for the field of xblnr

    Hi Experts..........!
    I need F4 help fo the field of bkpf-xblnr in that selection screen of tcode F-02  .
    please help me....!
    Regards ,
    vamsi

    Hi,
    Go for Implicit enhancement...Pls go the link..
    Re: Executing a Planning Enhancement in Debug

  • ST03n Data missing for few days

    Hi All,
    While checking the total data in workload in expert mode of st03n. I can see data till 15th April and can see today's data.
    But entries of days after 15th till today are missing.
    Stat collector job ran fine during this period and did not get canceled.
    The issue is in an ECC production system. We are working on ECC6.0.
    Can any one please help to resolve this issue.
    Thanks !
    Varun

    Hi Varun,
    Please go to Sm37 and check SAP_COLLECTOR_FOR_PERFMONITOR job is running fine...
    Also check Note 16083 - Standard jobs,reorganization jobs
    Apart from this there is a link on help.sap where you can know about how to display contents in workload databs..
    http://help.sap.com/saphelp_nw70/helpdata/EN/4c/0f0e422efcdf2ce10000000a1550b0/frameset.htm
    Hope this helps.
    Please revert back if still the problem persists.
    Thanks You,
    Shobhit Garg

Maybe you are looking for

  • I need some simple examples to start with for Oracle ESB

    Hi All, Please share some simple examples to startwith for Oracle ESB. I need to understand, what are the files are created, once created an ESB project. What is the use of the files how to edit them with out using JDeveloper. Iam trying to create a

  • Any work around ideas to get Shake to work with Yosemite?

    Alright, now that I have confirmed the sad news about Shake on Yosemite: Does shake still work with OS X Yosemite? I imagine I will eventually need to upgrade for the sake of my other software... Any ideas for a work around for when the day comes? An

  • Cant download iTunes 10.5.3

    I cant get my laptop to load iTunes 10.5.3. Each time it stops downloading stating 'Error writing to file C:\Programfiles\iTunes\iTunes.Resources\de.lproj/StoreGetButton.png Verify that you have access to that directory.'

  • How to unlock a record

    hi everybody im doing a bdc to create  customer hierachy but at each loop in the internal table, its telling customer is locked by myself how to unlock that?

  • CS5 Indesign question

    I have a question about CS 5 Indesign, When I go to print a document, I cannot get the option for a certain line screen when the color is on composite. When I have it on separation , I am able to put it on any line screen. I called the support line a