Missing ctrl functions in string edit

I have a string control open for editing.  In program edit mode it accepts CTRL-C for copy etc. fine.  In run mode, CTRL-C becomes just the letter, not the control.  I have used string control with CTRL codes successfully in other projects.  Is there some global command that would cause CTRL keys to be interpreted a plain keys?

Problem appears to be with the Menu.  On entry into the editing code which had the CTRL function problem, I used the "Enable Menu Tracking" function to disable (False) the "Current VI' Menubar" so that attempts by the user to make menu selections while in the editing screen would be ignored.
If this is removed, the string editing function works correctly with CTRL functions etc.
If it is re-enabled, the string editing functions fails to properly receive and/or process CTRL functions.
Is there a problem with my concept of disabling the Menu while editing?
If so, is there another way to prevent the user from accessing the Menu when it is actually not available, i.e. during the edit? 

Similar Messages

  • Missing some function on photo editing on iphone5

    missing some function on photo editing on iphone5

    Hi crtravis55,
    Welcome to the Support Communities!
    It's possible that your iOS apps may have been moved.
    Page 139 of the iPhone User Guide will show you how to reset the Home Screen layout:
    manuals.info.apple.com/en_US/iphone_user_guide.pdf
    Go to Settings > General > Reset, then choose an option:
    Reset the Home screen layout: Returns the built-in apps to their original layout on the Home screen.
    I hope this information helps ....
    Have a great day!
    - Judy

  • SQLDeveloper-64bits Missing Migration-Functionality

    Hi all, after years of absence from Oracle, I am back
    I've installed Oracle11gR2 64bits (11.2.0) , jdk1.7.0_40 64bits and SQLDeveloper 64 bits on WIndows7, all seemingly successful. Then, I tested the installation by creating a test schema and some views.
    Following that I tried to migrate the MS SQLServer database Northwind to Oracle, using these instructions:
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/hol08/sqldev_migration/mssqlserver/migrate_microsoft_sqlserver_otn.htm#t2
    At the point where the instructions say to "Capture the Microsoft SQL Server Exported Files", I noticed SQLDeveloper missing the functions for Migrations.
    Since my return to Oracle is mainly to study the 64bit version of 11gR2  and to migrate SQL Server databases to Oracle, it would be most helpful to know how to use the missing migration
    function, else it is a show-stopper.
    Where can I get the add-in for the Migration function in SQLDeveloper?
    Some help please?

    Some doc links:
    3.2.2 help doc:  SQL Developer: Migrating Third-Party Databases
    3rd party migrations: Database Migration Technology</title><meta name="Title" content="Database Migration Technology&q…
    Of course, searching the forums can be useful if you have questions after reading through the help documentation:
    Forum dedicated to migration: Database and Application Migrations
    Message was edited by: GaryGraham

  • Fix Links option missing from Functions menu

    Version 11.1.2.2.300
    I have Smart View tab that is missing the "Fix Links" option in the Functions menu in Edit section. I have done the following:
    - checked no item has been disabled in Excel options
    - re-installed Smart View on the machine, same result
    - repaired Office , same result
    - logged as another user, same result
    - blown user profile, same result
    - re-imaged machine, same result
    Installed Smart View on another machine, and found that the Fix Links option is also not there.

    Hi,
    Did the issue happen only for you or for multiple users?
    If the issue only happen for one user please try to delete Lync user profile and then test the issue again.
    %UserProfile%\AppData\Local\Microsoft\Office\15.0\Lync
    Please also make sure Lync client update to the latest version.
    Best Regards,
    Eason Huang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Eason Huang
    TechNet Community Support

  • Missing terminating null in string argument

    When the statement is executed "if ((strstr (refData, "end section") != test) || (strstr (refData, "end file") != test))", it displayed "Missing terminating null in string argument".The error is about refData,refData is a variable.
    I don't know why this problem turned up,because it did not always appear except serval parameters.
    Please tell you how to resolve this problem.
    Thank you!

    C assumes that a string is a character array with a terminating null character. This null character has ASCII value 0 and can be represented as just 0 or '\0'. This value is used to mark the end of meaningful data in the string. If this value is missing, many C string functions will keep processing data past the end of the meaningful data and often past the end of the character array itself until it happens to find a zero byte in memory, see here
    So in order to resolve the problem make sure that your string ends with a null character.

  • 3113: Activity 'XXPONIT/233480' is missing a function reference.

    Hello All,
    I have designed a workflow in which i have to call workflow for n number of times.
    In this workflow i have taken one notification and one function . when user submits workflow, its reached to user's parent level(1). If it approves then forwarded to function. it will check whether for that parent level(1) parent is found or not. if parent is found then it will identify the parent level(2) and sets into Attribute level(1) .
    and forwarded back to notification.
    when i am trying to run this workflow am getting the *(3113: Activity 'XXPONIT/233480' is missing a function reference.) error.
    Eg. ____________Yes_______
    | |
    v Approve | No
    Start---> Notification ------------------> function ------------------> End
    | ^
    |_____________________________________|
    Reject
    I am pasting pl/sql code here: Suggest me where i am wrong:
    create or replace package body XXPO_WF_NIT_APPROVAL_PKG is
    v_user_id number;
    v_user_name VARCHAR2(15);
    v_flag_parent_exist varchar2(1);
    v_item_key NUMBER;
    PROCEDURE WF_START_PROCESS(p_user_id NUMBER) IS
    v_initiator varchar2(15);
    BEGIN
    /*To generate Unique Value for item key*/
    SELECT XXPO_NIT_SEQ.nextval INTO v_item_key FROM dual;
    dbms_output.put_line('item key ' ||v_item_key);
    /* To create Workflow Process*/
    wf_engine.CreateProcess(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    process => 'NIT_PROC');
    /* For Getting Initiator name who has initiated workflow*/
    SELECT fu.user_name INTO v_initiator
    FROM fnd_user fu
    where user_id = p_user_id;
    /*for getting next approver level user name and user Id*/
    SELECT fu1.user_name,fu1.user_id INTO v_user_name,v_user_id
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061 /*PO Test NIT Heirarchy*/
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = p_user_id/*1547*/ )));
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'INITIATOR',
    avalue => v_initiator);
    dbms_output.put_line(v_initiator);
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'ATR_LEVEL1',
    avalue => v_user_name);
    dbms_output.put_line('6');
    wf_engine.StartProcess(itemtype => 'XXPONIT',
    itemkey => v_item_key);
    COMMIT;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':No data found' || SQLERRM);
    WHEN DUP_VAL_ON_INDEX THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':Duplicate values found' || SQLERRM);
    WHEN OTHERS THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':Other Exception' || SQLERRM);
    END WF_START_PROCESS;
    --====================End of WF_Start procedure================
    procedure is_comment_null(itemtype IN VARCHAR2,
    itemkey IN VARCHAR2,
    actid IN NUMBER,
    funcmode IN VARCHAR2,
    resultout OUT VARCHAR2) is
    v_comments_fst_level varchar2(200);
    v_result_fst varchar2(100);
    v_count number;
    BEGIN
    v_comments_fst_level := WF_NOTIFICATION.GetAttrText(WF_ENGINE.CONTEXT_NID,
    'COMMENT_FST');
    v_result_fst := WF_NOTIFICATION.GETATTRTEXT(WF_ENGINE.CONTEXT_NID,
    'RESULT');
    dbms_output.put_line(v_result_fst);
    IF( FUNCMODE = 'RESPOND') THEN
    IF (v_result_fst = 'REJECTED') THEN
    IF v_comments_fst_level IS NULL THEN
    RESULTOUT :='ERROR: Comment is required while rejecting the request';
    RETURN;
    END IF;
    END IF;
    END IF;
    dbms_output.put_line(SQLCODE || ':No data found' || SQLERRM);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    dbms_output.put_line('is_comment_null'|| SQLCODE || ':No data found' || SQLERRM);
    WHEN DUP_VAL_ON_INDEX THEN
    dbms_output.put_line('is_comment_null' || SQLCODE || ':Duplicate values found' || SQLERRM);
    WHEN OTHERS THEN
    dbms_output.put_line('is_comment_null'|| SQLCODE || ':Other Exception' || SQLERRM);
    END is_comment_null;
    --===================================
    PROCEDURE Next_approver(ITEMTYPE IN VARCHAR2,
    ITEMKEY IN VARCHAR2,
    ACTID IN NUMBER,
    FUNCMODE IN VARCHAR2,
    RESULTOUT OUT NOCOPY VARCHAR2)
    IS
    v_count number;
    BEGIN
    --==============To initiate next approval workflow================
    IF( FUNCMODE = 'RUN') THEN
    SELECT count(fu1.user_name) INTO v_count
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = v_user_id)));
    IF v_count > 0 THEN
    v_flag_parent_exist := 'Y';
    /* To get next approver name */
    SELECT fu1.user_name INTO v_user_name
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = v_user_id)));
    --WF_START_PROCESS(v_user_id);
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'ATR_LEVEL1',
    avalue => v_user_name);
    ELSE
    v_flag_parent_exist := 'N';
    END IF;
    END IF;
    IF v_flag_parent_exist = 'Y' THEN
    RESULTOUT := 'Y';
    ELSE IF v_flag_parent_exist = 'N' THEN
    RESULTOUT := 'N';
    END IF;
    END IF;
    END Next_approver;
    end XXPO_WF_NIT_APPROVAL_PKG;
    Thanks,
    sheetal Mittal

    HI
    I believe the document that you are looking for can be found in the following location. This help file describes the NI-DAQmx Library functions, which you can use with National Instruments data acquisition and switch devices to develop instrumentation, acquisition, and control applications.
    Message Edited by jaced on 11-05-2007 12:18 PM
    JaceD
    Signal Sources Product Support Engineer
    National Instruments
    Attachments:
    NI-DAQmx C help.jpg ‏98 KB

  • [SOLVED] Missing package () function for PyTyle2

    Hi, I was trying to install this tarball from the AUR: https://aur.archlinux.org/packages.php?ID=42541
    But it prompts the following error:
    ==> ERROR: Missing package() function in /home/kolt/AUR/pytyle2-hg/PKGBUILD
    I've read the PKGBUILD and have no idea why this is happening. I already installed the dependencies needed.
    Any clue?
    Last edited by Kolt Penny (2015-02-06 08:31:45)

    Kolt Penny wrote:I've read the PKGBUILD and have no idea why this is happening. I already installed the dependencies needed.
    Read the pacman output, it refers to the package() function and makepkg doesn't find it in the PKGBUILD as said. Ask the maintainer to update or orphan it, if he doesn't respond file an AUR request.

  • Interactive Report Subscription - missing search functionality

    Hi,
    when receiving the output of a report subscription in Apex 4.1.1, the search Box is missing, only the Text string 'Suche:' is displayed.
    If i download the report as Email or html, the search box is there and usable.
    Maybe i'm wrong, but this was not under Apex 4.0.2.
    Has anyone the same disfunction?
    regards,
    Wolfgang

    Hi Christina,
    i have a smilar problem with Email subscriptions, i don't use items, but i use collections in the where clause!
    Example:
    select * from PUMA_MMRDB_GSM_LB a
    where
    case
    when (select C001 from APEX_COLLECTIONS where COLLECTION_NAME = 'TMP_SELECTION') = 'BRD' then 1
    when (select C001 from APEX_COLLECTIONS where COLLECTION_NAME = 'TMP_SELECTION') = 'REGION' and (a.Region in (select C001 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME = 'REGION_M')) then 1
    when (select C001 from APEX_COLLECTIONS where COLLECTION_NAME = 'TMP_SELECTION') = 'NL' and (a.NL in (select C001 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME = 'NLK')) then 1
    end = 1
    Sometimes i see the Errror ORA-01722 in the 'error message' field of the apex_application_page_ir_sub view. I don't know if this related to the above.
    Can you point me in the right direction?
    thanks,
    Wolfgang

  • OBIEE UI Interface is missing prompt functionality and Column Selector

    Hi,
    OBIEE UI Interface is missing prompt functionality and Column Selector in Answers when creating a report. This problem occurs on all the reports. Also the problem occurs in firefox too. Could you please suggest me any suggestion to overcome this issue.
    Thanks and Regards

    May sound stupid, but do you have the Privileges to add these things to a report? These features can be turned on/off from the Privilege Administration Screen, for a group or user. Have a look.
    Cheers,
    A.

  • I updated my iMac to Mountain Lion and when I want to fit my screen view... in the last version I had to examples where I could choose wide after format but I miss that function now in Mountain Lion. Can anyone please help me???

    I updated my iMac to Mountain Lion and when I want to fit my screen view... in the last version I had to examples where I could choose wide after format but I miss that function now in Mountain Lion. Can anyone please help me???

    I'm sorry for my bad english, my problem is that I want the program I open in a new window to be avilable in full screen mode. Before I uppdated my os to Montaine Lion I could choose wide under screen in settings. I'll take an ex for you. When I play poker online I want to see the tabel in full screen but I don't manage to fix that. Do you Sir have any idea???

  • "Missing external function lvanlys.dll" when running EXE

    Windows 7 x32, LV2009SP1 / LVRuntime 2009
    I am trying to build an EXE from a customer's code.  They use the analysis library (NI_AALBase.lvlib).
    It runs fine on my dev machine.  When I build the EXE and pass it to a target machine with LVRuntime on it, I get the error:
    Missing external function lvanlys.dll: Mean_head:C NI_AALBase.lvlib:Mean.vi.
    I explicitly added the lvanlys library to the project.  I added the library as a source file in the build.  Finally I added the DLL itself to the project and as a source for the build.
    Always the same error.  The DLL is located in the data folder after the build.  I tried to move it into the same folder as the EXE, and into the system32 folder.  Nope.
    I just changed the DLL's extension to dllx and tried again, and I get the same error, so it looks like it can't find it.
    Do I need to register this DLL or something?  Does it need a support file?
    Solved!
    Go to Solution.

    Runawaycode wrote:
    As the application was launched, a pop up window suggested to download the Labview run time engine, and an internet address was suggested.
    I am not aware that there is a download link suggestion. Can you show us a picture of the popup window? Does the link really point to the minimum run time engine? That would be hard to believe.....
    Runawaycode wrote:
    National Instruments should warn the users that there are more download versions or possibly suggest the complete version if something goes wrong. 
    The download page for the run time engine is very specific about the various versions. It is a matter of actually reading it.
    It is even more clear in the newer versions, where the minimum run time version has been renamed into web browser plugin. The description is:
    This is the download page for the LabVIEW 2012 (32-bit) Remote Front Panel Web Browser Plug-in (formerly known as the Minimum Run-Time Engine). The Web Browser Plug-in is a smaller download intended for viewing VIs embedded in a web page.  It does not contain the full run-time engine and is not recommended for running executables.
    Compare with the standard run time engine where the description is:
    "This Run-Time Engine must be installed on any 32-bit or 64-bit Windows system where you plan to run executables that you build with the Application Builder in LabVIEW 2012 or 2012 SP1 (32-bit). Executables built with LabVIEW 2012 or 2012 SP1 (64-bit) require the LabVIEW 2012 (64-bit) Run-Time Engine.
    Additionally, the Run-Time Engine allows your browser to display VIs embedded in Web pages."
    I am not sure how much clearer it could be made. Do you have a suggestion?
    LabVIEW Champion . Do more with less code and in less time .

  • This message always appears: [JavaScript Application] "Error: missing } after function body" Please, i need help with this.

    A window appears with this message : [JavaScript Applicaction] Error: missing } after function body.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Function Module to edit the ALV Output

    Hi,
      I have an ALV report output.I need the edit values based on some conditions in the ALV output and 
      save the changes. Is there any function module to edit the output and proceed further.
      Thanks in advance.
    Regards,
    Navas

    First create the field catalog of the field that you want to edit in this way
    WA_fieldcat-fieldname  = 'MENGE'.
      WA_fieldcat-qfieldname = 'MEINS'.
      WA_fieldcat-seltext_m  = 'PO Quan.'
      WA_fieldcat-edit = 'X' .
    Secondly you keep a custom button like 'SAVE' in the toolbar and  also try to keep a checkbox in your ALV.
    for checkbox you have to keep a following code snippet in your finallly displayed interanal table:
    chk(1)    TYPE c, and in the fieldcatalog you have to write following piece of code
      WA_fieldcat-fieldname = 'CHK'.
      WA_fieldcat-seltext_m = 'CheckBox'.
      WA_fieldcat-checkbox = 'X'.
      WA_fieldcat-edit = 'X' .
      WA_fieldcat-input = 'X'.
      WA_fieldcat-tabname = 'IT_FINAL'.
      WA_fieldcat-col_pos = 1.
    then you have to set the parameter i_callback_user_command           = 'USER_COMMAND'
    of FM REUSE_ALV_GRID_DISPLAY.
    Then write a subroutine like the following one to handle the SAVE operation
    FORM user_command USING I_r_ucomm LIKE sy-ucomm
                      rs_selfield TYPE slis_selfield.
    DATA:l_cntr TYPE i.
    CASE I_r_ucomm.
    WHEN '&ZXZ'.
          CLEAR l_cntr.
          CLEAR WA_final.
          LOOP AT IT_final INTO WA_final.
            IF WA_final-chk = 'X'.
              l_cntr = l_cntr + 1.
            ENDIF.
          ENDLOOP.
          IF l_cntr GT 1.
            MESSAGE i011.
          ELSEIF l_cntr = 1.
               READ TABLE IT_final INTO WA_final WITH KEY chk = 'X'.
               MODIFY IT_final FROM WA_final TRANSPORTING menge
              WHERE chk = 'X'.
              CLEAR WA_final.
              PERFORM disp_alv. <<<This is to display the refreshed alv after saving your data
         endif.
    ENDCASE.
    ENDFORM.

  • How do I trim video clips in Quicktime Player?  The "trim" function under the edit menu is gray and won't do anything.

    I am trying to edit video clips from about two yesrs worth of video for an iMovie.  I don't want to load all of the clips into a new event because it would be hours worth of video.  I don't even know if iMovie could handle it.  I have tried to use Quicktime Player to do this, but the "trim" function under the edit menu is gray and won't let me do anything.  What can I do?

    Thank you so much!
    It works!
    I used this code...
    videoDisplay.addEventListener(VideoEvent.COMPLETE, videoCompleteHandler);
    private function videoCompleteHandler(event:VideoEvent):void {
         hideVideo();
    private function hideVideo():void {
         this.visible = false;
         this.includeInLayout = false;
    I have a follow up question...
    What is the syntax to target the video player from a different component to add an event listener to a button in the Sharing Widget called Back to Video?
    Thanks!!
    DK

  • Function modules to edit table's record

    Hi, thanks in advance. I have two questions:
    1. I call function 'STC1_FULLSCREEN_TABLE_CONTROL' to edit a table, the problem is fieldnames are not displayed, all emptys. Please check below calling.
    CALL FUNCTION 'STC1_FULLSCREEN_TABLE_CONTROL'
           EXPORTING
                HEADER = p_table
                tabname = p_table
                endless = 'X'
                no_button = space
           IMPORTING
                okcode = w_okcode
           TABLES
                 nametab = it_dfies
                 TABLE = <itab>
                 fielddif = it_fdiff
                 modif_table = <ntab>
           EXCEPTIONS
                 OTHERS = 1.
    2. The second question is above function module is to edit a table in full screen style, multiple record lines are displayed. Could you please tell me which function module can be called to only edit one record in the screen?
    Thanks.
    Tom

    Hello Tom
    Use the following code before calling the function.
    loop at IT_DFIES into is_dfies.
        if is_dfies-reptext is initial.
          select single scrtext_s into is_dfies-reptext from ddftx where tabname = is_dfies-tabname
                                                                     and fieldname = is_dfies-fieldname
                                                                     and ddlanguage = sy-langu.
          IF sy-subrc = 0 and is_dfies-reptext is initial.
            select single scrtext_m into is_dfies-reptext from ddftx where tabname = is_dfies-tabname
                                                                       and fieldname = is_dfies-fieldname
                                                                       and ddlanguage = sy-langu.
            IF sy-subrc = 0 and is_dfies-reptext is initial.
              select single scrtext_l into is_dfies-reptext from ddftx where tabname = is_dfies-tabname
                                                                         and fieldname = is_dfies-fieldname
                                                                         and ddlanguage = sy-langu.
            endif.
          endif.
          If is_dfies-reptext is initial.
            select single fieldtext into is_dfies-reptext from ddftx where tabname = is_dfies-tabname
                                                                       and fieldname = is_dfies-fieldname
                                                                       and ddlanguage = sy-langu.
          ENDIF.
          If is_dfies-reptext is initial.
            is_dfies-reptext = is_dfies-fieldname.
          ENDIF.
          modify it_dfies from is_dfies .
        endif.
      endloop.
    I hope that could help
    Regards
    dstj

Maybe you are looking for

  • Can't get e-mail on IPod Touch

    I have always gotten my AOL email on my IPod but today I couldn't.  I get the spinning wheel and it never stops checking for mail.  No mail appears.  I deleted my AOL account than added back but when I put it back just the inbox shows and it is empty

  • Finder requires password deleting files

    Hey guys, finder requires password when I try to delete my files. I have read some of the suggestions on how to fix this online. That includes 1. Open up Terminal and type in 'sudo chown yourusernamehere .Trash' and the other one is 2. Click on the G

  • Screen Entry Values Query Problem

    Anything wrong with this query....It is taking LONG TIME to execute select papf.FULL_NAME EMPLOYEE_NAME,papf.EMPLOYEE_NUMBER, papf.PERSON_ID ,papf.BUSINESS_GROUP_ID ,CASE WHEN peevf6.SCREEN_ENTRY_VALUE is not null THEN 'Remaining Balance 7' WHEN peev

  • Duplex printing with Designer 8 (not ES)

    Hi, I only have the Designer 8.0 that came with Adobe Design Standard CS3, so I don't have the "PDF Print Options" under "Form Properties". Is there any possiblity to set the DuplexMode anyway? I'm not used to coding, so I would be pleased for an eas

  • Diskwarrior cd booting problem

    Hi! This is my first post and i need help. My hard drive was giving me problems(freezing, etc), so I went out and bought Diskwarrior to repair it. Unfortunately, it would not boot from the disk no matter what I tried(held down c, tried the option key