How to give F1 help

I need to know, how to use AT SELECTION-SCREEN ON HELP-REQUEST FOR <Check_box>.
I need to display  atext information for a check box.
After using the above event.
where do I write the documentation I want to display ???
Is ther any FM ?
Thanks in advance.

Hi,
Use this..
AT SELECTION-SCREEN ON HELP-REQUEST FOR s_prps.
  CALL FUNCTION 'DSYS_SHOW_FOR_F1HELP'
    EXPORTING
      dokclass         = 'TX'
      doklangu         = sy-langu
      dokname          = 'Y_S_PRPS'
    EXCEPTIONS
      class_unknown    = 1
      object_not_found = 2
      OTHERS           = 3.
Create the documentation in SE61...
Edited by: Sukriti Saha on Nov 7, 2008 4:03 PM

Similar Messages

  • How to give f4 help to oo ALV ?

    How to give f4 help to oo ALV

    hello Madhukar,
    If the fields that you are showing on the Output has implicit search helps, Domain values, Check tables attached to it . It will automatically appear in the Grid when you press f4 for the Fields .
    Also you can create F4 during runtime . for this you have to have an f4 event handler method for the grid. then set the handler method using set handler statement
    This event handler method gets parameter Fieldname imported into the method . Then you can use FM
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' to show the F4 in output.

  • How to give F4 help

    Hi all,
             Please solve this query of mine . I am displaying an ALV report . I want to give F4 help on a field . Please tell me how to give the F4 help without using OO concept.
    Kindly reply as fast as possible.
    Regards,
    Vijay

    HI,
    Specify the ref_tabname and ref_fieldname for that field in the field catalog. Fill in the database table name and field name for ref_tabname and ref_fieldname respectively. Then the field will inherit the properties from the ABAP dictionary. Any search help or check table defined for the field will be shown as well
    Thanks
    Mahesh

  • How to give F4 Help for out put screen

    Hi ,
    I have out put grid display which is editable , in that i want to give F4 help for one of the eidtable field. if any body know about this please me .
    My problem is i need to add F4 for my out put screen.
    Thanks ,
    saleem.

    Check the following code it may hel u.
    REPORT ABC.
    DATA : BEGIN OF ITAB OCCURS 0,
    UNAME LIKE USR01-BNAME,
    END OF ITAB.
    data : RETURN_TAB LIKE DDSHRETVAL occurs 0 .
    data : RETURN_wa LIKE DDSHRETVAL .
    PARAMETERS : A(12) TYPE C.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR A.
    ITAB-UNAME = 'U01'. APPEND ITAB.
    ITAB-UNAME = 'U02'. APPEND ITAB.
    ITAB-UNAME = 'U03'. APPEND ITAB.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    DDIC_STRUCTURE = ' '
    retfield = 'ITAB-UNAME'
    PVALKEY = ' '
    DYNPPROG = SY-REPID
    DYNPNR = SY-DYNNR
    DYNPROFIELD = 'A'
    STEPL = 0
    WINDOW_TITLE =
    VALUE = ' '
    VALUE_ORG = 'S'
    MULTIPLE_CHOICE = ' '
    DISPLAY = ' '
    CALLBACK_PROGRAM = ' '
    CALLBACK_FORM = ' '
    MARK_TAB =
    IMPORTING
    USER_RESET =
    tables
    value_tab = ITAB
    FIELD_TAB = FTAB
    RETURN_TAB = return_tab
    DYNPFLD_MAPPING =
    EXCEPTIONS
    PARAMETER_ERROR = 1
    NO_VALUES_FOUND = 2
    OTHERS = 3
    Regards

  • How can we give F4 help

    Dear Freinds,
                     I would like to know can we give F4 help to employee no , similar to the one which has
    the F4 help when we have user logical database PNP . I mean to say can i give the F4 help to the field emp_no( Employee no) like the same functional which we get for the field Personnel no ( pernr-pernr) when we are using the logical database PNP.
    In my report iam not using the logical databse (PNP)in this requirement. If i can provide the F4 help on my field  emp_no  , please help me in this regard.
    Thanks & regards
    Divya.

    Creating a basic search help which allows you to provide the user with a selection help to select specific fields from
    a table or view is very straight forward. Simply create a search help with the desired table as the selection method
    and add the fields you want them to see/select into the search help parameters section. See below for details of how
    to create a search help for table TRDIR
    Step1: Execute transaction SE11
    Step2: Create new search help called 'ZSH' (must be less than 5 chars long to be used as matchcode)
    Step3: Enter the following details:
    Step4: Save and activate
    Step5: Add following line into your program: PARAMETER p_prog LIKE trdir-name MATCHCODE
    OBJECT zsh.
               Or see other methods of adding a search help.

  • How to give Help

    Hi All,
    Can anybody suggest me how to give help of Screen Painter form. Like Context help F1 in Help menu.
    Means suppose i open Sales order system form of SAP and then i go to in Context help then i get the help of that form.
    Like this i also want to give help in context help of User define form of Screen Painter.
    Thanks,

    Thats fine,  now what we have to do is limit the code only to ur user form. Just paste the following.
    Private Sub SBO_Application_MenuEvent(ByRef pVal As SAPbouiCOM.MenuEvent, ByRef BubbleEvent As Boolean)
    If pVal.MenuUID = "275" And pVal.BeforeAction = True Then
    If SBO_Appln.Forms.ActiveForm.TypeEx = "UserFormType" Then 'this is the form type of ur user form
    Dim psi As New ProcessStartInfo()
    psi.UseShellExecute = True
    psi.FileName = "C:\Documents and Settings\Harish Patil\Desktop\Checkbox and Option button\ChkOpt\ChkOpt\New_HTML_Help.chm"
    Process.Start(psi)
    BubbleEvent = False
    End If
    End If
    Hope with this we'r done.. If so award the points and close the thread.
    Regards,
    Vasu Natari.
    Edited by: vasu natari on Aug 12, 2008 11:59 AM
    Edited by: vasu natari on Aug 12, 2008 12:02 PM

  • How to give Authorization?

    I have created a 'Z' application which consists of create, change and display User interface.Whenever the user selects craete all fields go editable, change will have some fields editable and display all uneditable.I used only one view and i handled all three modes using invisible and enable property.
    Now i want to allow only certain users to access create and change but display for all users.How to give this kind of autorization in webdynpro????
    Please explain me about authorization in webdynpro taking my scenario?

    Hello,
    I hope you are aware of authority checks in ABAP in general. In your scenario, what you can do is: create one context attribute IS_AUTHORIZED of type WDY_BOOLEAN.
    And in WDDOINIT of the component controller or view controller,
    do the authorization check using AUTHORITY-CHECK stmt and if the check fails i.e. sy-subrc is not equals to 0, then
    set the attribute  IS_AUTHORIZED to false. Otherwise set it to true.
    And you have to bind the enabled property of the buttons to this context attribute IS_AUTHORIZED.
    Please refer to the following code sample:
        DATA lo_nd_selection_type TYPE REF TO if_wd_context_node.
        DATA lo_el_selection_type TYPE REF TO if_wd_context_element.
        lo_nd_selection_type = wd_context->get_child_node( name = wd_this->wdctx_flex_config ).
        lo_el_selection_type = lo_nd_selection_type->get_element( ).
      AUTHORITY-CHECK OBJECT <objectName>
      ID <name1> FIELD <f1>
      ID <name2> FIELD <f2>.
      IF sy-subrc <> 0.
    * Prohibhit the user from modifying config
        lo_el_selection_type->set_attribute(
          name =  `IS_AUTHORIZED`
          value = abap_false ).
      ELSE.
        lo_el_selection_type->set_attribute(
          name =  `IS_AUTHORIZED`
          value = abap_true ).
      ENDIF.
    Hope this helps!
    Regards,
    Srilatha

  • How to give no of lines per page in alv report

    hi
    could anybody tell me
    how to give no of lines per page in alv report
    i need bottom of page too
    if possible plz send the code too
    it ll be very helpful to me
    thanx
    kals.

    Hi,
    This is possible, using some of the events in the ALV.
    You could use AFTER_LINE_OUTPUT event and call you form after say, a certain line count is reached on the list output.
      MOVE 'AFTER_LINE_OUTPUT' TO gw_event-name.
      MOVE 'AFTER_LINE_OUTPUT' TO gw_event-form.
      APPEND gw_event TO gt_events.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
           EXPORTING
                it_events                = gt_events[]
    and define the form for each event as follows - this would be a dynamic call by the ALV.
    *&      Form  after_line_output
    *       Form for the After Line Output Event in the internal table
    *      --> rs_lineinfo
    FORM after_line_output USING rs_lineinfo TYPE slis_lineinfo.
      IF sy-linno eq v_linno.          "Defaulted value for line count
        perform write_footer.
        NEW-PAGE.
      ENDIF.
    ENDFORM.                    " after_line_output
    For lines per page:
    rs_lineinfo-tabindex would give you the index of the current line in the list, which you could use to read the t_outtab table, and reduce the line count of items displayed on the earlier page.
    There are a few other events too, like BEFORE_LINE_OUTPUT and END_OF_LIST which you can use as required and print the data.
    Regards,
    Anil.

  • How to Use F4 help in Module Pool Programming??????

    Hi Friends,
    This is Jagadeesh, I have an issue Module Pool Programming. Any of you can go through on this and can give an required answer.
    Issue is as follows,
    I have an Input/Output field for that i need to give f4 help, based on that field the related data should sit in to my table control. The thing is there is no relation between the input/output field and the table control fields.
    Is this possible? If so how can i do this.

    Hi Jagadeesh,
    For F4 Values on Screen:
    PROCESS ON VALUE_REQUEST
    using module call starting with FIELD i.e FIELD field MODULE module
    There are number of function modules that can be used for the purpose, but these
    can fullfill the task easily or combination of them.
    DYNP_VALUE_READ
    F4IF_FIELD_VALUE_REQUEST
    F4IF_INT_TABLE_VALUE_REQUEST
    POPUP_WITH_TABLE_DISPLAY
    DYNP_VALUE_READ
    This function module is used to read values in the screen fields. Use of this
    FM causes forced transfer of data from screen fields to ABAP fields.
    There are 3 exporting parameters
    DYNAME = program name = SY-CPROG
    DYNUMB = Screen number = SY-DYNNR
    TRANSLATE_TO_UPPER = 'X'
    and one importing TABLE parameter
    DYNPFIELDS = Table of TYPE DYNPREAD
    The DYNPFIELDS parameter is used to pass internal table of type DYNPREAD
    to this FM and the values read from the screen will be stored in this table.This
    table consists of two fields:
    FIELDNAME : Used to pass the name of screen field for which the value is to
    be read.
    FIELDVALUE : Used to read the value of the field in the screen.
    e.g.
    DATA: SCREEN_VALUES TYPE TABLE OF DYNPREAD ,
    SCREEN_VALUE LIKE LINE OF SCREEN_VALUES.
    SCREEN_VALUE-FIELDNAME = 'KUNNR' . * Field to be read
    APPEND SCREEN_VALUE TO SCREEN_VALUES. * Fill the table
    CALL FUNCTION 'DYNP_VALUES_READ'
    EXPORTING
    DYNAME = SY-CPROG
    DYNUMB = SY-DYNNR
    TRANSLATE_TO_UPPER = 'X'
    TABLES
    DYNPFIELDS = SCREEN_VALUES.
    READ TABLE SCREEN_VALUES INDEX 1 INTO SCREEN_VALUE.Now the screen value for field KUNNR is in the SCREEN_VALUE-FIELDVALUE and can be used for further processing like using it to fill the internal table to be used as parameter in F4IF_INT_TABLE_VALUE_REQUEST ETC.
    F4IF_FIELD_VALUE_REQUEST
    This FM is used to display value help or input from ABAP dictionary.We have to pass the name of the structure or table(TABNAME) along with the field name(FIELDNAME) . The selection can be returned to the specified screen field if three
    parameters DYNPNR,DYNPPROG,DYNPROFIELD are also specified or to a table if RETRN_TAB is specified.
    CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
    TABNAME = table/structure
    FIELDNAME = 'field name'
    DYNPPROG = SY-CPROG
    DYNPNR = SY-DYNR
    DYNPROFIELD = 'screen field'
    IMPORTING
    RETURN_TAB = table of type DYNPREAD
    F4IF_INT_TABLE_VALUE_REQUEST
    This FM is used to dsiplay values stored in an internal table as input
    help.This FM is used to program our own custom help if no such input help
    exists in ABAP dictionary for a particular field. The parameter VALUE_TAB is used to pass the internal table containing input values.The parameter RETFIELD
    is used to specify the internal table field whose value will be returned to the screen field or RETURN_TAB.
    If DYNPNR,DYNPPROG and DYNPROFIELD are specified than the user selection is passed to the screen field specified in the DYNPROFIELD. If RETURN_TAB is specified the selectionis returned in a table.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    RETFIELD = field from int table whose value will be returned
    DYNPPROG = SY-CPROG
    DYNPNR = SY-DYNNR
    DYNPROFIELD = 'screen field'
    VALUE_ORG = 'S'
    TABLES
    VALUE_TAB = internal table whose values will be shown.
    RETURN_TAB = internal table of type DDSHRETVAL
    EXCEPTIONS
    parameter_error = 1
    no_values_found = 2
    others = 3.
    POPUP_WITH_TABLE_DISPLAY
    This FM is used to display the contents of an internal table in a popup window.The user can select a row and the index of that is returned in the CHOISE
    parameter.The VALUETAB is used to pass the internal table.
    A suitable title can be set using TITLETEXT parameter. The starting and end position of the popup can be specified by the parameters STARTPOS_COL / ROW and ENDPOS_ROW / COL .
    CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
    EXPORTING
    ENDPOS_COL =
    ENDPOS_ROW =
    STARTPOS_COL =
    STARTPOS_ROW =
    TITLETEXT = 'title text'
    IMPORTING
    CHOISE =
    TABLES
    VALUETAB =
    EXCEPTIONS
    BREAK_OFF = 1
    OTHERS = 2.
    e.g.
    DATA: w_choice TYPE SY-TABIX.
    DATA: BEGIN OF i_values OCCURS 0 WITH HEADER LINE,
    values TYPE I,
    END OF i_values.
    PARAMETRS : id TYPE I.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR id
    i_values-values = '0001'.
    APPEND i_values.
    i_values-values = '0002'.
    APPEND i_values.
    i_values-values = '0003'.
    APPEND i_values.
    i_values-values = '0004'.
    APPEND i_values.
    CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
    EXPORTING
    ENDPOS_COL = 40
    ENDPOS_ROW = 12
    STARTPOS_COL = 20
    STARTPOS_ROW = 5
    TITLETEXT = 'Select an ID'
    IMPORTING
    CHOISE = w_choice
    TABLES
    VALUETAB = i_values
    EXCEPTIONS
    BREAK_OFF = 1
    OTHERS = 2.
    CHECK w_choice > 0.
    READ TABLE i_values INDEX w_choice....now we can process the selection as it is contained
    ...in the structure i_values.
    Other FM that may be used to provide input help is HELP_START .
    regards,
    Dj
    reward for all useful answers.

  • How to give connection between sap R/3 to sap BI 7.0 system

    how to give connection between sap R/3 to sap BI 7.0 system

    Hello,
    Check this links:
    http://help.sap.com/bp_biv135/BBLibrary/documentation/B84_BB_ConfigGuide_EN_DE.doc
    You can look at:
    OSS Note 184971 'Notes on BW source system connections' and http://help.sap.com/saphelp_nw04/helpdata/en/80/1a61e5e07211d2acb80000e829fbfe/content.htm
    You can use this best practice connectivity guide for connecting BW to any SAP source system . It explains step by step procedure to connect the source systems to BW.
    http://help.sap.com/bp_biv135/BBLibrary/documentation/B84_BB_ConfigGuide_EN_DE.doc
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ac/4a4e38493e4774e10000009b38f889/frameset.htm
    http://help.sap.com/bestpractices/crossindustry/businessintelligence/v131/BBLibrary/documentation/B84_BB_ConfigGuide_EN_DE.doc
    check this:
    http://wiki.ittoolbox.com//index.php/HOWTO%3ARe%2DConnect%5FR/3%5Fand%5FBW#Type_Transaction_SM59._Maintain_RFC_destinations
    Regards,
    Jorge Diogo

  • How to give dynamic file path in the selection  screen

    Hi All,
    How to give dynamic file path f4 functionality to user on the selection so that he can browse for the path in the presentation serve? I believe there is one fun module is there for this purpose I am not getting that
    Please help me in this regard.
    Thanks&Regards
    Mahesh

    HI,
    check this program.
    <b>report ZWA_TEST2.
    PARAMETERS: a(100) default 'PRESS F4'.
    data: filet type table of FILE_TABLE.
    data: wa type file_table.
    data: count type i.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR a.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG
      CHANGING
        FILE_TABLE              = filet
        RC                      = count .
    loop at filet into wa.
      a = wa-FILENAME.
    endloop.</b>
    Regards,
    HRA

  • How to give raw footage shot in AVCHD to wedding clients?

    I’ve been living in AVCHD **** for the past couple weeks.  I just recently upgraded my old Sony PD-170s to new Panasonic AG-AC90s which record in AVCHD.  I mostly shoot weddings and deliver the raw footage directly to my clients.  When I was shooting DV, I just gave them the tapes and was done.  Now, I’m completely stressed out because I’ve been trying to figure out how to give my clients their footage without worrying if they’ll be able to play it back on their computer without any problems.  I’m particularly worried since I’m on a late 2008 Macbook Pro 2.66 GHz Intel Core 2 Duo with 8GB of RAM and the files won’t play back smoothly for me.  I need to be able to deliver the footage so that it will play back smoothly on both Mac and PC, even if they’re not as powerful as my own computer.
    I went to the Apple Store and they recommended I get a new SSD and a new battery for my laptop.  I’m waiting on both and we’ll see if they make any difference.  They told me I could use Compressor to convert the files to a more compatible format, but I tried that and it took nearly half an hour to convert a one-minute clip to 720p.
    I’ve thought about just burning all their footage to blue-ray so they can watch it on their HDTV, but that would mean buying a blue-ray burner and having no idea how long that whole process would take on my outdated MBP.  If I had any luck going that route, maybe I could just give them the AVCHD files on an external hard drive and disclose to them that their computer may not be able to handle playback.  At least they could give the drive to a professional editor who would know what to do with it.
    I feel like I’m in way over my head.  I don’t have the money to buy a new computer right now, but if I have to take out a loan so as to not wind up with unhappy clients, I will.  I just have no idea how much of an investment I would need to make to be able to do the transcoding in a reasonable amount of time.  The “genius” at the Apple Store didn’t have any great advice other than to tell me to use Compressor.  I really need to figure out how to do this in the most efficient and economical way possible.  I’m broke, I’ve been living with my parents and I’m just trying to get back on my feet after the worst year of my life in 2013.
    I’ve spent many hours over the past two weeks researching these issues, reading articles, posting on various message boards and still not feeling like I’m close to any real solution.  Any help would be a tremendous blessing. 

    If you are giving the clients the raw footage it's best I think to give them the entire media structure from the camera card. Just make a separate folder for each card, call them Joe&Joan1, 2, 3, etc. Drag the complete contents of each card into it's separate folder. Put the folders on an ExFAT formatted jump drive.
    That's the down and dirty method, but it depends what the client wants to do with the video, just watch it on the TV or maybe do something with it themselves. If the latter, then the way I described above is probably the safest for giving them the most options on how to deal with it. If they just want to view, most recent systems can play back raw .mts files in H.264, but the client will have to dig it out of the folder structure to find it.

  • How to get F4 help for Standard Text Key of a operation based on Order type

    Hi Experts,
      How to get F4 help for Standard Text Key (STK) of a operation based on Order type entered in selection screen. The F4 help should give the STK of related order type. At the same time the F4 help for Task Types based on Notification type. How to acheive the above two. Please provide the table names or any search help name if exists or Function modules...
    Thanks in Advance.
    Regads,
    Bujji

    Hi Guys,
       Any help on this...
    Regards,
    Bujji
    Edited by: Bujji on Dec 22, 2008 12:42 PM
    Edited by: Bujji on Jan 5, 2009 2:00 PM

  • In BSP how to give the input field as mandatory?

    Hi friends,
    In BSP how to give the input field as mandatory?
    In BSP i want to validate the input field (example checking the material no is valid or not)
    if this material no doesnot exit means i want to pass error message.What is the code for that.
    Moosa

    hi
    try this
    in LAYOUT
    <htmlb:inputField id = "vname"  disabled = "False" value = "<%= v_visitor %>"/> <font color="red" size="2"><b><%= page->messages->assert_message( 'vname' ) %></b></font></td>
    in DO_HANDLE_EVENT
    in oninputprocessing
    CLASS CL_HTMLB_MANAGER DEFINITION LOAD.
    IF event_id = CL_HTMLB_MANAGER=>EVENT_ID.
      DATA: event TYPE REF TO CL_HTMLB_EVENT.
      event = CL_HTMLB_MANAGER=>get_event( runtime->server->request ).
      IF event->name = 'button' AND event->event_type = 'click'.
        DATA: button_event TYPE REF TO CL_HTMLB_EVENT_BUTTON.
        button_event ?= event.
      ENDIF.
        case event->id.
            when 'select'.
               if v_visitor = ''.
                 page->messages->add_message(
                 condition = 'vname'
                 message   = 'Visitor Name can not be blank'
                 severity  = page->messages->CO_SEVERITY_ERROR ).
              ELSE.
                    here u can write ur when ur field getting filled
            endif.
         endcase.
    endif.
    give marks if it is helpful
    thanks

  • How to add F4 help for the custom field of a custom table

    Hi All,
    How to add F4 help to the custom table field? in the table maintainance when user clicks on F4 i want to provide possible values for this field I am trying to write the code in the screen of table maintainace like the following
    PROCESS ON VALUE-REQUEST.
      FIELD ZTEST_MAH_F4-KUNNR MODULE zVALUE_kunnr .
    But when i am double clicking on module it's giving options to create include program but after that it's giving user is currently editing the table i am not getting this can some body clarify my doubt it's gr8 if some body give some examp code
    Thanks&Regards
    mahesh

    Hi,
    Create a subroutine under the event and call the following FM
    1. Select all the related data into an itab, for ex i_kunnr
    2.    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
          EXPORTING
        DDIC_STRUCTURE         = ' '
           retfield               = 'KUNNR'
        PVALKEY                = ' '
           dynpprog               = sy-repid
           dynpnr                 = '1000'
           dynprofield            = <selection screen field>
        STEPL                  = 0
        WINDOW_TITLE           =
        VALUE                  = ' '
           value_org              = 'S'
        MULTIPLE_CHOICE        = ' '
        DISPLAY                = ' '
        CALLBACK_PROGRAM       = ' '
        CALLBACK_FORM          = ' '
        MARK_TAB               =
      IMPORTING
        USER_RESET             =
          TABLES
           value_tab              = <b>i_kunnr</b>
        FIELD_TAB              =
           return_tab             = < return table >
        DYNPFLD_MAPPING        =
         EXCEPTIONS
           parameter_error        = 1
           no_values_found        = 2
           OTHERS                 = 3

Maybe you are looking for

  • HOW TO HANDLE MULTIPLE VALUES IN BDC FOR A PARTICULAR FIELD.

    I THINK IT IS HANDLING OF TABLE CONTROLS IN BDC PLEASE LET KNOW WHETHER THESE TWO ARE SAME CONCEPT OR NOT HOW TO HANDLE TABLE CONTROLS IN BDC Moderator message - Please do not use all caps. Please do not ask interview questions -  post locked Edited

  • Satellite M40-307: Accessibility utility doesn't work with limited user account

    Hello everybody, I have got a Satellite M40-307 (PSM44E), and I have got a problem with the "accessibility" utility, that displays an icon in the Windows XP notification bar, to let the user know whether the "Fn" key is active or not. That this utili

  • Assignment field in FAGGLL03 and FBL3N

    Hi experts, Assignment fields in GL line item display, of FAGLL03 and FBL3N are different. Does anyone have any idea on this? How do fix this?  Anything related to structure: FAGLPOSYEXT? My Problem: FAGLL03 to display reconciliation GL line item, sa

  • How do I disable sound ducking in FaceTime?

    Is there a way to disable this feature when using facetime?

  • Surveys in PCUI 5

    Hi, I am trying to open a survey in PC-UI activities. In the windows SAPGui, the survey works without problems, but in PC-UI I get the error message "Survey Could Not Be Found", and if I do anything else after this message has been displayed, I get a