Help regarding data element

I need some help regarding data element ZEXPDT.  I used it in an infoquery that was transported to QAS and it does not exist in QAS.  I thought it might be locked in a transport, but the below screen clip says it is not locked.  It was created in 3/2014.  Thanks.

Either trick the system, SE11, add a space at end of text desciption and save,
Or call transport workbench (SE01, SE10) create a transport request or use an existing one, then double-click on a task, switch to modify mode, add a line with R3TR DTEL name of the data element, save, then object list, lock in request/task menu.
Or SE80, contextual menu of data element. (other functions, write transport entry)
Regards,
Raymond

Similar Messages

  • F4 help in data element.

    I have a fileld in table that has the structure of eban.
    There is a field pstyp and it has input help in it's data element.
    I want to suppress the f4 help and attach customized f4 help without implementing Badi.
    Please help how to suppree the data elements f4 help.

    make your own structure, use own data element. Assign own search help to data element. Or assign own search help in your own structure. Then you dont even need an own data element, just copy structure EBAN and change search help assign in structure..
    Thats when you need it generally.
    If you just need to overwrite the search help for e.G. a certain Dynpro, then just assign your own search help to the dynpro field.

  • F1 Help for Data elements

    Hi All,,
    i want to add F1 help for data elements.How can i do this.Kindly suggest me the steps to perform this.

    hi
    use this link
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/d47ee849e111d189730000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/45/11e39c459d7201e10000000a155369/frameset.htm
    Cheers
    Snehi
    Edited by: snehi chouhan on Jul 24, 2008 11:10 AM

  • How to add user defined search help to data element -EXTWG ?

    Dear All,
    EXTWG is external material groupp field in Material Master. I am using this field to provide some external material group .But there is no search help attached to it. I want to create a search help and attach to it .I can create a search help but how to attach to a standard date element .How can i do??

    hi
    good
    go through this links ,i hope these ll help you solve your problem
    http://help.sap.com/saphelp_nw2004s/helpdata/en/90/8d7307b1af11d194f600a0c929b3c3/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ee86446011d189700000e8322d00/content.htm
    thanks
    mrutyun^

  • Hi friends.....i need a help regarding date manipulations

    I want to know that how can i get the week date ranges of a specified month.
    for example: the input is month = 6 and year = 2007
    i need the output as 01.05.07 - 07.05.07
                                  08.05.07 - 14.05.07
                                  15.05.07 - 21.05.07
                                  21.05.07 - 27.05.07
                                  27.05.07 - 30.05.07
    Waiting for your positive response.
    Kesavadas T

    parameters : month(2), year(4).
    data : date type sy-datum.
    data : last_date type sy-datum.
    data : day(2) value '01', last_day(2).
    data : from_date type sy-datum, to_date type sy-datum.
    concatenate year month day into date.
    CALL FUNCTION 'SG_PS_GET_LAST_DAY_OF_MONTH'
      EXPORTING
        day_in                  = date
    IMPORTING
       LAST_DAY_OF_MONTH       = last_date.
    last_day = last_date+6(2).
    from_date = date.
    to_date = date + 6.
    while to_date <= last_date.
      write : / from_date, '-', to_date.
      from_date = to_date + 1.
      to_date = from_date + 6.
    endwhile.
    if from_date <= last_date.
      write : / from_date, '-', last_date.
    endif.
    This works fine. Hope this solves your problem.
    Regards
    Anil Madhavan

  • Need qucik help  regarding date

    Hi, I have table A which has column report_month
    its has values like 10/1/2012, 11/1/2012,12/1/2012
    I try to do the following, apparently both are not working, I just want to retrieve 11/1/2012
    select * from A ehere report_month like (11%)
    or
    select * from A ehere report_month like ('11%')

    Hi,
    949523 wrote:
    Hi, I have table A which has column report_month
    its has values like 10/1/2012, 11/1/2012,12/1/2012
    I try to do the following, apparently both are not working, I just want to retrieve 11/1/2012
    select * from A ehere report_month like (11%)
    or
    select * from A ehere report_month like ('11%')You mis-spelled WHERE.
    If report_month is a DATE (which is the most reasonable data type), then
    SELECT  *
    FROM    a
    WHERE   EXTRACT (MONTH FROM report_month) = 11
    ;will display rows dated November of any year.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ {message:id=9360002}

  • Need a help regarding date

    Dear all,
    SimpleDateFormat simpleDate = new SimpleDateFormat("dd-MMM-yyyy");
              Calendar calendar = Calendar.getInstance();
              int month = calendar.get(Calendar.MONTH);
              calendar.set(Calendar.MONTH, month-1);
              calendar.set(Calendar.DATE, calendar.getActualMaximum(Calendar.DATE));
              System.out.println("Previous Month End Date is :: " + simpleDate.format(calendar.getTime()));From the above code i am able to find the last month end date according to System date .
    But how to find the last month end date of a userdefined date.
    For example,user defined a date as '05-AUG-2009' how can i find the last month end date

    Thanks all,
    Hope this is the solution .
    Any Suggestions will be appreciated
    String dateString = "10/2009";
             StringTokenizer st = new StringTokenizer(dateString,"/");
             String dateStringm = (String) st.nextElement();
             int month = Integer.parseInt(dateStringm);
             String yearStringm = (String) st.nextElement();
             int year = Integer.parseInt(yearStringm);
             System.out.println("month :"+month);
             System.out.println("year :"+year);
             Calendar calendar = Calendar.getInstance();
             calendar.set(year, month,1);
             calendar.set(Calendar.MONTH, month-1);
             SimpleDateFormat dateFormat = new SimpleDateFormat("MM/yyyy");
             String previous_month_end_date =  dateFormat.format(calendar.getTime());
              System.out.println("Previous Month End Date is :: " + previous_month_end_date);
              Calendar cld = Calendar.getInstance();
              cld.set(Calendar.DAY_OF_YEAR,1);
              String year_start_date =  dateFormat.format(cld.getTime());
              System.out.println("First day of year is :: " +year_start_date);

  • Regarding custom currency data element issue in custom Table.....

    Hello,
    I am currently working on creation of a Z custom table in SAP. There is data coming from
    mainframe for amount field in the form -9999.9999.
    To store data like this I am creating a custom Z data element with Z domain definition as follows:
    Data type; Curr
    No of characters: 5
    Decimal places: 4
    Sign box is checked.
    Now when I use this Z data elemnt for a firle in custom table, while activating, it asks for table refernce and table field. What do I give it here ?
    Please help.
    Regards,
    Jainam..

    Hi Jainam,
    very basic ABAP knowledge: A field of type CURR isn used to store a currency amount. Every currency field must be connected to a currency key of type CUKY.
    The same concept applies for quantities and units.
    You can spare a lot of trouble if you look at standard tables and programs, copy or use data elements and/or structures from standard.
    If you want to re-invent the world, you may need more than seven days.
    Regards,
    Clemens

  • How to create hyperlinked text in F1 help of a particular Data Element.

    Dear Guru
    I have encountered an issuse regarding to create hyperlinked text in F1 help of a particular Data Element.
    For Example what i am trying to do is ---
    If you open a particular data element say "ATNAM" in se11 you will found the below documentation available for ATNAM -->>
    DE ATNAM
    Text
    Characteristic Name
    Definition
    Name that uniquely identifies a *characteristic*.
    >> The "characteristics" comes in hyperlinked bluecolor and if we press this it linked to below --- >>
    Definition: characteristic
    Classification (CA-CL)
    Property for describing and distinguishing between objects, such as length, color, or weight.
    Profitability Analysis (CO-PA)
    I am able to make 1st part of the documentation using SE61.
    But I am not able to make Hyperlinked part of that documentaion .
    please show me some way to develop this
    Thanks & regards
    Saifur Rahaman

    HI,
    you can give the hyperlink in the documentation by going to the path below
    MENUBAR ----> INSERT -----> TEXT -----> HYPERTEXT.
    this will solve the issue
    have a good day
    regards
    sarves

  • Change data element in search help

    Hi at all,
    how can i change the data elemte of an parameter in the search help?
    The selektion method of the search help is a view and the data element comes from the DB.
    Maybe it is possible to change the length of the parameter in the result list? That would help, too!
    Thanks in advance.
    Regards

    Alexander,
    see this code bellow:
    REPORT  zsearch.
    TYPES:
    BEGIN OF ty_scustom,
      id   TYPE scustom-id,
      name(8) TYPE c,
    END OF ty_scustom.
    DATA: wa_scustom TYPE ty_scustom.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-002.
    SELECT-OPTIONS s_name FOR wa_scustom-name NO INTERVALS OBLIGATORY.
    SELECTION-SCREEN END   OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_name-low.
      PERFORM f_select.
    *&      Form  f_select
    *       text
    FORM f_select.
      TYPES: BEGIN OF ty_data,
            name TYPE scustom-name,
            END OF ty_data.
      DATA: tl_data TYPE STANDARD TABLE OF ty_data,
            wl_data TYPE ty_data,
            tl_return TYPE STANDARD TABLE OF ddshretval,
            wl_return TYPE ddshretval.
      SELECT  name
        FROM scustom
        INTO  TABLE tl_data.
      CHECK sy-subrc = 0.
      SORT tl_data BY name.
      DELETE ADJACENT DUPLICATES FROM tl_data COMPARING name.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
    *   DDIC_STRUCTURE         = ' '
          retfield               = 'NAME'
         value_org              = 'S'
        TABLES
          value_tab              = tl_data
    *   FIELD_TAB              =
         return_tab             = tl_return
      EXCEPTIONS
          parameter_error = 1
          no_values_found = 2.
      IF sy-subrc = 0.
        READ TABLE tl_return INDEX 1 INTO wl_return.
        CHECK sy-subrc = 0.
        s_name-low = wl_return-fieldval.
      ENDIF.
    ENDFORM.                    "f_select
    Is it helpful? In search help show full name, but in parameter, only 8 first chars. Is it what you want to do?
    Regards,
    Rodrigo

  • ZSearch Help: Unable to attach it with Data Element XBLNR1

    Hi,
    I made a ZSearch help, which will show the contents of one field of a Ztable.
    There is a field XBLNR(Reference) with data element XBLNR1 in transaction FB50.
    I want to attach Zsearch help with it.
    I have the access key also, but when I am unable to attach Zsearch help with the data element XBLNR1 because it is not in editable mode.
    Can anyone tell me the solution?
    Or is there any other method with which I can attach Zsearch help with the screen field?
    Regards,
    Priyanka.

    Hi Priyanka,
    you can attach search help to the XBLNR element direclty.
    GO to the program SAPMF05A screen number 1010  in SE51.go to layout and double click on doc.ref field. You can assign searhelp in attributes.
    ofcourse , u need access key for this.
    hope that helps.
    regards,
    sap fan.

  • Search Help attached to Data Element Question

    Hello! Hopefully this is a simple question to answer. I have looked online but cannot find exactly what I need.
    We currently have a search help attached to a data element. The search help is a custom search help. It does work so when you are in the screen it will show you options to pick from for that field. However, the field also allows for free-form text so the user can type in whatever and the screen will take it.
    Is there a way through the data element or search help to make it so the user is restricted to only what is in the search help and cannot just enter whatever?
    Thanks!!

    For restricting values You can use the at selection screen event  on that field.
    The search help field values will be there in a table .
    So what ever values are there in the table for that particular field , only those values will come in F4 also ..
    If it not maintained then issue an appropriate error message.
    at-selection screen on p_field.
    selct single  field from table into v_value.
    if sy-subrc <> 0.
    message ""Error message.
    Endif.
    Regards
    Mishra

  • COPA unable to create as charac data element with LIFNR as domain HELP ASAP

    Hi
    We had a data element created with KUNNR as domain.
    We added to PAPARTNER STRUCUTRE and created as characteristics in our operating concern.
    Now there is a need to change to LIFNR as domain instead of KUNNR.
    There we created a new dala element with LIFNR as domain and added to PAPARTNER
    structure and when we tried to create them as characterisc system did not let us transfer to
    our operating concern.
    We do not know why we are unable to create this characterisic.
    When we tried to create the characteristic it was shown under 'Transfer from'
    But when we wanted to move right to left it was shown under 'grey' status and not ready for transfer.
    We need a solution very urgent and any help is greatly appreciated.
    Thanks
    Raj

    Hi
    KEA0 - Display Data Structure
    Now, Extras > Chars > Unlock
    after this try to push from right to left
    br, Ajay M

  • URL in data element documentation (F1 help)

    Hi, is it possible to insert a URL within a data element documentation ? I know it is possible to link the F1 help functionality to go to a URL instead of the data element documentation, but what was asked is to display the regular documentation for the data element, but include a URL to a web site for further information. Any idea how to do this ?

    Hi,
    Check This Link
    http://help.sap.com/saphelp_erp2005/helpdata/en/49/e8884118aa1709e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/b6/ab3a9003ac11d4a73f0000e83dd863/frameset.htm
    <b>Also to add link in Documentation</b>
    Do this
    1) Open Program
    2) Click on documention ( open documentation Window for any program )
    3) Follow this Menu Option.
    Insert--->Link
    A dialog Box will Be opened
    In Documentation Class
    Select <b>WeB Application</b> From F4 Help Option
    Save and activate.
    <b>Rewards Points & Mark Helpful Answers if it helps.</b>
    Message was edited by: Manoj Gupta

  • Display Help for Field not referred through Data Elements in ALV

    Hi,
    I am working on a report program where the output is in ALV_LIST display format.The internal table used to define the field catalog contains fields that are not declared using Data elements.For these fields, when i press F1 from the output, the message I receive is 'No Document Available'.Can someone tell me how I can attach a help document to these fields without creating a new data element for each of these fields....
    For eg : My internal table that forms the field catalog is
      Data : Begin of i_itab occurs 0,
             matnr like mara-matnr,
             Name(50),
             end of i_itab.
    When this table is displayed in ALV, if F1 is pressed on the field matnr the corresponding dictionary help pops out.But since the field Name has no help document attached to it, i cannot view any help for this..Kindly tell me how i can attach my own help document to this field.
    Thanks,
    Swathi

    Hi,
    This issue was solved using the followiing steps.
    1. There is a parameter 'IT_EVENT_EXIT 'in the FM REUSE_ALV_LIST_DISPLAY or REUSE_ALV_GRID_DISPLAY.
    2.Set the value of the field of this paramter as
    EXIT-UCOMM= '&ELP'  " F1
    EXIT-BEFORE = 'X'
    This will make the control go directly to the user command functio written inside the program rather than the standard SAP define duser command....
    3. Inside the perform -usercommand in the ALV program use the FM HELP_DOCULINES_SHOW to show the appropriate help document
    This method may be used to display help text for those fields/columns in the ALV which are not referred to the fields/data elements in the data dictionary tabel

Maybe you are looking for